pacman/lib/Canvas.hpp

36 lines
1.0 KiB
C++
Raw Normal View History

#pragma once
#include "SDLWindow.hpp"
class PacMan;
class Pellets;
class SuperPellets;
class Canvas {
public:
Canvas();
void update(const PacMan & pacMan, const Pellets & pellets, const SuperPellets & superPellets);
private:
static constexpr int16_t LEFT_MARGIN = 40;
static constexpr int16_t TOP_MARGIN = 40;
static constexpr int16_t BOTTOM_MARGIN = 40;
static constexpr int16_t MAZE_WIDTH = 448;
static constexpr int16_t MAZE_HEIGHT = 496;
static constexpr int16_t SCORE_WIDTH = 200;
static constexpr int16_t DEFAULT_SPRITE_WIDTH = 32;
static constexpr int16_t DEFAULT_SPRITE_HEIGHT = 32;
static constexpr float TEXTURE_SCALE_FACTOR = 0.5;
void renderMaze() const;
void renderPacMan(const PacMan & pac_man) const;
void renderPellets(const Pellets & pellets) const;
void renderSuperPellets(const SuperPellets & superPellets) const;
void renderSprite(Sprite sprite, SDL_Point point) const;
void renderScore(int score);
SDL_Rect windowDimensions() const;
Sprite getSprite(SDL_Point rect) const;
SDLWindow window;
};