X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fsprite%2Fsprite.hpp;h=b85b62ed48304236fef929d52c406d5ecdd67835;hb=4434ccd7364d603d6bf952ff1df56e28e1978a63;hp=b97b65cdecae61a82482a028d0aa2cb52dca28e9;hpb=49796e6cc2385aea989d7c44c789b406190f2bf7;p=supertux.git diff --git a/src/sprite/sprite.hpp b/src/sprite/sprite.hpp index b97b65cde..b85b62ed4 100644 --- a/src/sprite/sprite.hpp +++ b/src/sprite/sprite.hpp @@ -27,9 +27,13 @@ #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 { @@ -92,19 +96,27 @@ public: /** 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(); @@ -115,9 +127,10 @@ private: int animation_loops; float last_ticks; float angle; - + Color color; + Blend blend; + SpriteData::Action* action; }; #endif -