X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fsprite%2Fsprite.hpp;h=b85b62ed48304236fef929d52c406d5ecdd67835;hb=4434ccd7364d603d6bf952ff1df56e28e1978a63;hp=df0f9c718827b6d708e61bfb57bab65a4da329c7;hpb=e19e93b038e0feb50d7895371827b24e58de3edd;p=supertux.git diff --git a/src/sprite/sprite.hpp b/src/sprite/sprite.hpp index df0f9c718..b85b62ed4 100644 --- a/src/sprite/sprite.hpp +++ b/src/sprite/sprite.hpp @@ -24,12 +24,16 @@ #include #include -#include "video/surface.hpp" #include "math/vector.hpp" #include "math/rect.hpp" #include "sprite_data.hpp" +#include "video/color.hpp" +#include "video/drawing_context.hpp" +class Surface; class DrawingContext; +class Color; +class Blend; class Sprite { @@ -86,19 +90,33 @@ public: /** return current action's hitbox, relative to 0,0 */ Rect get_current_hitbox() const; + /** Set the angle of the sprite rotation in degree */ + void set_angle(float angle); + + /** Get the angle of the sprite rotation in degree */ + float get_angle() const; + + void set_color(const Color& color); + + Color get_color() const; + + void set_blend(const Blend& blend); + + Blend get_blend() const; + /** Get current frame */ int get_frame() const { return (int)frame; } /** Set current frame */ void set_frame(int frame) - { - this->frame = (frame % get_frames()); + { + this->frame = (float) (frame % get_frames()); } Surface* get_frame(unsigned int frame) { assert(frame < action->surfaces.size()); return action->surfaces[frame]; - } + } private: void update(); @@ -106,11 +124,13 @@ private: SpriteData& data; float frame; - int animation_loops; + int animation_loops; float last_ticks; + float angle; + Color color; + Blend blend; SpriteData::Action* action; }; #endif -