1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #pragma once
- #include "GameObject.h"
- #include "Spieler.h"
- class Spiel;
- #define PFEIL_DAMAGE 100
- #define KUGEL_DAMAGE 100
- class Geschoss : public GameObject
- {
- private:
- float speed;
- Richtung richtung;
- Spieler *besitzer;
- GeschossTyp typ;
- int tunnelBenutzt;
- int umgelenkt;
- int geschosseGetroffen;
- int schalter;
- bool intersectWithOwner;
- int id;
- public:
- Geschoss( int id, float speed, GeschossTyp typ, Richtung r, int x, int y, Spieler *besitzer );
- ~Geschoss();
- void invertDirection();
- void addUmlenkung( Spiel *zSpiel );
- void addGeschossTreffer( Spiel *zSpiel );
- void addTunnel( Spiel *zSpiel );
- void addSchalter();
- void setSpeed( float speed );
- void setBesitzer( Spieler *besitzer );
- void setTyp( GeschossTyp typ );
- void setRichtung( Richtung r );
- void tick( double zeit );
- bool intersectsWith( GameObject *zObj ) override;
- int getId() const;
- GeschossTyp getTyp() const;
- Spieler *zBesitzer() const;
- Spieler *getBesitzer() const;
- Richtung getRichtung() const;
- };
- // size: 150x150
- class FeuerballTreffer : public GameObject
- {
- private:
- int id;
- Spieler *besitzer;
- int count;
- float timeLeft;
- public:
- FeuerballTreffer( int id, int x, int y, Spieler *besitzer, int maxZeit );
- ~FeuerballTreffer();
- void tick( double zeit );
- bool isOver() const;
- bool makeDamage() const;
- Spieler *zVerursacher() const;
- };
|