Visual.h 653 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // Created by jovian on 18/07/17.
  3. //
  4. #ifndef TINYSHOOTER_VISUAL_H
  5. #define TINYSHOOTER_VISUAL_H
  6. #include <Box2D/Box2D.h>
  7. /* class Visual :
  8. * Describe something to show.
  9. */
  10. #define DEFAULT_ZOOM 100.0f // Default Box2D/pixel scale
  11. class Visual {
  12. public :
  13. Visual(unsigned int imgId, const b2Vec2 &relPos, float angle);
  14. unsigned int getImgId() const;
  15. const b2Vec2 &getPos() const;
  16. float getAngle() const;
  17. protected:
  18. unsigned int m_imgId; // Id of SDL texture
  19. b2Vec2 m_relPos; // From left top corner
  20. float m_angle; // Angle of object
  21. };
  22. void clearVisuals(std::vector<Visual*> &scope);
  23. #endif //TINYSHOOTER_VISUAL_H