Cytopia  0.3
A city building simulation game
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Sprite.hxx
Go to the documentation of this file.
1 #ifndef SPRITE_HXX_
2 #define SPRITE_HXX_
3 
4 #include <SDL.h>
5 #include <vector>
6 
7 #include "basics/Point.hxx"
8 #include "common/enums.hxx"
9 
10 struct SpriteData
11 {
12  SDL_Texture *texture = nullptr;
13  SDL_Rect clipRect{0, 0, 0, 0};
14  SDL_Rect destRect{0, 0, 0, 0};
15  unsigned char alpha = 255;
16 };
17 
19 {
20  uint8_t r;
21  uint8_t g;
22  uint8_t b;
23 };
24 
26 {
27 public:
28  static constexpr SpriteRGBColor GRAY{150, 150, 150};
29  static constexpr SpriteRGBColor RED{150, 15, 15};
31 
32 class Sprite
33 {
34 public:
35  explicit Sprite(Point isoCoordinates);
36  virtual ~Sprite() = default;
37 
38  void render() const;
39  void refresh(const Layer &layer = Layer::NONE);
40 
41  void setTexture(SDL_Texture *m_texture, Layer layer = Layer::TERRAIN);
42  void setClipRect(SDL_Rect clipRect, Layer layer = Layer::TERRAIN);
43  void setDestRect(SDL_Rect clipRect, Layer layer = Layer::TERRAIN);
44 
45  void clearSprite(Layer layer);
46 
52  void setRenderFlag(const Layer &layer, bool render) { m_renderLayer[layer] = render; };
53 
54  size_t spriteCount = 1;
55  bool highlightSprite = false;
56  SpriteRGBColor highlightColor = SpriteHighlightColor::GRAY;
57 
58  SDL_Rect getDestRect(Layer layer = Layer::TERRAIN) { return m_SpriteData[layer].destRect; };
59  SDL_Rect getClipRect(Layer layer = Layer::TERRAIN) { return m_SpriteData[layer].clipRect; };
60  SDL_Rect getActiveClipRect();
61  SDL_Rect getActiveDestRect();
62  void setSpriteTranparencyFactor(const Layer &layer, unsigned char alpha) { m_SpriteData[layer].alpha = alpha; }
63  bool isLayerUsed(Layer layer);
64 
65  Point isoCoordinates{0, 0, 0, 0};
66 
67 private:
68  SDL_Point m_screenCoordinates{0, 0};
69 
70  bool m_needsRefresh = false;
71  double m_currentZoomLevel = 0;
72 
73  std::vector<SpriteData> m_SpriteData;
74  std::vector<bool> m_renderLayer;
75 };
76 
77 #endif
Sprite::m_screenCoordinates
SDL_Point m_screenCoordinates
Definition: Sprite.hxx:68
Sprite::getActiveClipRect
SDL_Rect getActiveClipRect()
Definition: Sprite.cxx:142
Sprite::highlightSprite
bool highlightSprite
Definition: Sprite.hxx:55
Sprite::getDestRect
SDL_Rect getDestRect(Layer layer=Layer::TERRAIN)
Definition: Sprite.hxx:58
Sprite::m_SpriteData
std::vector< SpriteData > m_SpriteData
Definition: Sprite.hxx:73
Sprite::~Sprite
virtual ~Sprite()=default
Sprite
Definition: Sprite.hxx:32
Sprite::Sprite
Sprite(Point isoCoordinates)
Definition: Sprite.cxx:17
SpriteRGBColor::r
uint8_t r
Definition: Sprite.hxx:20
Sprite::render
void render() const
Definition: Sprite.cxx:23
_sprite_highlight_color_t::GRAY
static constexpr SpriteRGBColor GRAY
Definition: Sprite.hxx:28
SpriteRGBColor::g
uint8_t g
Definition: Sprite.hxx:21
SpriteData::alpha
unsigned char alpha
Definition: Sprite.hxx:15
NONE
@ NONE
0- this must be FIRST !!!
Definition: enums.hxx:11
Sprite::isLayerUsed
bool isLayerUsed(Layer layer)
Definition: Sprite.cxx:155
enums.hxx
SpriteData::texture
SDL_Texture * texture
Definition: Sprite.hxx:12
SpriteHighlightColor
class _sprite_highlight_color_t SpriteHighlightColor
Sprite::m_currentZoomLevel
double m_currentZoomLevel
Definition: Sprite.hxx:71
_sprite_highlight_color_t::RED
static constexpr SpriteRGBColor RED
Definition: Sprite.hxx:29
Sprite::setSpriteTranparencyFactor
void setSpriteTranparencyFactor(const Layer &layer, unsigned char alpha)
Definition: Sprite.hxx:62
Sprite::setRenderFlag
void setRenderFlag(const Layer &layer, bool render)
enable/disable rendering for this sprite on a specific layer
Definition: Sprite.hxx:52
Sprite::m_needsRefresh
bool m_needsRefresh
Definition: Sprite.hxx:70
SpriteData::destRect
SDL_Rect destRect
Definition: Sprite.hxx:14
_sprite_highlight_color_t
Definition: Sprite.hxx:25
Sprite::getActiveDestRect
SDL_Rect getActiveDestRect()
Definition: Sprite.cxx:160
Sprite::setClipRect
void setClipRect(SDL_Rect clipRect, Layer layer=Layer::TERRAIN)
Definition: Sprite.cxx:139
SpriteRGBColor
Definition: Sprite.hxx:18
Sprite::getClipRect
SDL_Rect getClipRect(Layer layer=Layer::TERRAIN)
Definition: Sprite.hxx:59
Sprite::highlightColor
SpriteRGBColor highlightColor
Definition: Sprite.hxx:56
TERRAIN
@ TERRAIN
3- Terrain tiles, decorations, ... - must always be a "full" tile
Definition: enums.hxx:14
Sprite::setTexture
void setTexture(SDL_Texture *m_texture, Layer layer=Layer::TERRAIN)
Definition: Sprite.cxx:130
Sprite::isoCoordinates
Point isoCoordinates
Definition: Sprite.hxx:65
Sprite::m_renderLayer
std::vector< bool > m_renderLayer
Definition: Sprite.hxx:74
SpriteData::clipRect
SDL_Rect clipRect
Definition: Sprite.hxx:13
Sprite::refresh
void refresh(const Layer &layer=Layer::NONE)
Definition: Sprite.cxx:73
Point
Definition: Point.hxx:7
Sprite::clearSprite
void clearSprite(Layer layer)
Definition: Sprite.cxx:174
SpriteRGBColor::b
uint8_t b
Definition: Sprite.hxx:22
Sprite::setDestRect
void setDestRect(SDL_Rect clipRect, Layer layer=Layer::TERRAIN)
Definition: Sprite.cxx:140
SpriteData
Definition: Sprite.hxx:10
Layer
Layer
All Layers we have.
Definition: enums.hxx:9
Sprite::spriteCount
size_t spriteCount
Definition: Sprite.hxx:54
Point.hxx