123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- #pragma once
- #include "Team.h"
- #include "Gegenstand.h"
- #include "SSKlient.h"
- #include "Effect.h"
- class Spiel;
- #define INVENTORY_SLOTS 8
- class Inventar
- {
- private:
- GegenstandTyp slots[ INVENTORY_SLOTS ];
- int anzahl[ INVENTORY_SLOTS ];
- float abklingzeit[ INVENTORY_SLOTS ];
- int selected;
- public:
- Inventar();
- void addItem( GegenstandTyp typ, int anzahl );
- void setSelected( int slot );
- bool hatAbklingzeit( GegenstandTyp typ ) const;
- GegenstandTyp useItem();
- void tick( double zeit );
- bool canAddItem( GegenstandTyp typ ) const;
- GegenstandTyp selectedItem() const;
- int getItemAnzahl() const;
- int getItemAnzahl( GegenstandTyp typ ) const;
- GegenstandTyp getItemTyp( int index ) const;
- void removeItem( GegenstandTyp typ, int anzahl );
- };
- class Spieler : public GameObject
- {
- private:
- RCArray< Effect > effekte;
- Klient *klient;
- int accountId;
- int spielerNummer;
- Team *team;
- bool amLeben;
- int maxWiederbelebungsZeit;
- float wiederbelebungsZeit;
- GegenstandTyp zuletztAufgehoben;
- GegenstandTyp zuletztAktiviert;
- float leben;
- int maxLeben;
- int level;
- float erfahrung;
- int maxErfahrung;
- int spawnX;
- int spawnY;
- float laufTempo;
- float geschossTempo;
- float armor;
- float schadensBonus;
- float lebensraub;
- float lebensRegeneration;
- float abklingZeitVerringerung;
- int color;
- int kills;
- int tode;
- int treffer;
- int getroffen;
- float schadenGenommen;
- float schadenGemacht;
- float lebenGeheilt;
- float erhalteneErfahrung;
- int itemsAufgehoben;
- int itemsVerwendet;
- int tunnelBenutzt;
- int schalterAktiviert;
- int geschosseGeschossen;
- bool tastenStand[ 256 ];
- Text name;
- Richtung ausrichtung;
- Inventar inv;
- public:
- Spieler( int id, Team *team, int spawnX, int spawnY, int farbe );
- ~Spieler();
- bool setTastenStand( unsigned char taste, bool pressed );
- void setTeam( Team *team );
- void setAccount( int id );
- void setKlient( Klient *klient );
- void addEffekt( Effect *e );
- void setLaufTempo( float pps );
- void addErfahrung( float anz, Spiel *zSpiel );
- void levelUp( Spiel *zSpiel );
- void levelDown( Spiel *zSpiel );
- void addTunnelBenutzung( Spiel *zSpiel );
- void addSchalterBenutzung( Spiel *zSpiel );
- // aktualisiert auch die team statistik
- void addKill();
- void addTreffer( Spiel *zSpiel );
- void addGetroffen();
- void move( Richtung r, double zeit );
- void wiederbelebung( Spiel *zSpiel );
- void tick( double zeit, Spiel *zSpiel );
- void useItem(Spiel *zSpiel);
- bool addItem( GegenstandTyp typ, int anz, Spiel *zSpiel );
- // heilt auch um den lebensraub prozentsatz
- void addGemachterSchaden( float schaden, Spiel *zSpiel );
- // zieht die rüstung ab
- void nimmSchaden( float schaden, Spieler *zVerursacher, Richtung r, Spiel *zSpiel );
- void heilung( float heal, Spiel *zSpiel );
- void setSchadenBonus( float bonus );
- void setLebensRaub( float raub );
- void setGeschossTempo( float tempo );
- void setArmor( float armor );
- void setLebensRegeneration( float reg );
- void setName( const char *name );
- // setzt alle eigenschafften, die mit dem level gesetzt werden entsprechend
- void setLevel( int level, Spiel *zSpiel );
- void removeItem( GegenstandTyp typ, int anzahl );
- void setLeben( float leben );
- void setMaxLeben( int leben );
- // steuert auch level up oder level downs bei negativer erfahrung
- void setErfahrung( float erf, Spiel *zSpiel );
- void setMaxErfahrung( int erf );
- void setAbklingZeitVerringerung( float verringerung );
- float getLebensRegenneration() const;
- float getArmor() const;
- float getGeschossTempo() const;
- float getLebensRaub() const;
- float getSchadenBonus() const;
- Klient *zKlient() const;
- Team *zTeam() const;
- Team *getTeam() const;
- int getFarbe() const;
- int getAccountId() const;
- int getPunkte() const;
- bool istAmLeben() const;
- float getLaufTempo() const;
- bool isVerwundbar( Richtung r ) const;
- bool istBeweglich( Richtung r ) const;
- bool istSichtbar( Team *zTeam ) const;
- bool istGegenstandErlaubt( GegenstandTyp typ ) const;
- Richtung getAusrichtung() const;
- float getAbklingZeitVerringerung() const;
- int getId() const;
- int getLevel() const;
- float getLeben() const;
- int getMaxLeben() const;
- float getErfahrung() const;
- int getMaxErfahrung() const;
- int getTode() const;
- int getKills() const;
- int getTreffer() const;
- int getGetroffen() const;
- float getErlittenerSchaden() const;
- float getGemachterSchaden() const;
- float getGeheiltesLeben() const;
- int getItemsAufgehoben() const;
- int getItemsVerwendet() const;
- int getItemsInInventory() const;
- int getItemsInInventory( GegenstandTyp typ ) const;
- int getTunnelBenutzt() const;
- int getSchalterAktiviert() const;
- int getGeschossen() const;
- GegenstandTyp getInventorySlot( int index ) const;
- const char *getName() const;
- };
|