X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fspecial.h;h=304d209071e5335cf73412bb56a79b7a918641a2;hb=157cef71aeb9ae25b7bb90f37dda11bc09329d11;hp=24ce8c21cf3490eca34a626a6e79124a43b0e13b;hpb=edfad8a1de4efa71a86f7e643a0bcc2a709a8052;p=supertux.git diff --git a/src/special.h b/src/special.h index 24ce8c21c..304d20907 100644 --- a/src/special.h +++ b/src/special.h @@ -32,6 +32,7 @@ enum UpgradeKind { UPGRADE_GROWUP, + UPGRADE_FIREFLOWER, UPGRADE_ICEFLOWER, UPGRADE_HERRING, UPGRADE_1UP @@ -40,50 +41,49 @@ enum UpgradeKind { void load_special_gfx(); void free_special_gfx(); -class Upgrade : public GameObject +class Upgrade : public MovingObject, public Drawable { public: UpgradeKind kind; Direction dir; Physic physic; - void init(float x, float y, Direction dir, UpgradeKind kind); - void action(double frame_ratio); - void draw(); - void collision(void* p_c_object, int c_object, CollisionType type); - std::string type() { return "Upgrade"; }; + Upgrade(DisplayManager& display_manager, const Vector& pos, Direction dir, + UpgradeKind kind); + virtual ~Upgrade(); - ~Upgrade() {}; + virtual void action(float frame_ratio); + virtual void draw(Camera& viewport, int layer); -private: - /** removes the Upgrade from the global upgrade list. Note that after this - * call the class doesn't exist anymore! So don't use any member variables - * anymore then - */ - void remove_me(); + virtual void collision(const MovingObject& other, int); + void collision(void* p_c_object, int c_object, CollisionType type); +private: void bump(Player* player); }; -class Bullet : public GameObject +enum BulletsKind { + FIRE_BULLET, + ICE_BULLET +}; + +class Bullet : public MovingObject, public Drawable { - public: - int life_count; - base_type base; - base_type old_base; +public: + Bullet(DisplayManager& manager, const Vector& pos, float xm, int dir, + int kind); - void init(float x, float y, float xm, Direction dir); - void action(double frame_ratio); - void draw(); + virtual void action(float frame_ratio); + virtual void draw(Camera& viewport, int layer); void collision(int c_object); - std::string type() { return "Bullet"; }; + virtual void collision(const MovingObject& other_object, int type); + + int kind; + private: - /** removes the Upgrade from the global upgrade list. Note that after this - * call the class doesn't exist anymore! So don't use any member variables - * anymore then - */ - void remove_me(); + int life_count; + Physic physic; }; #endif /*SUPERTUX_SPECIAL_H*/