36 lines
1.5 KiB
C++
36 lines
1.5 KiB
C++
#ifndef BLOCKS_H
|
|
#define BLOCKS_H
|
|
|
|
#include "../sdlpp/sdlpp_rectrenderer.hpp"
|
|
#include <memory>
|
|
|
|
class MarioBlock : public SDLPP::RectangleRender {
|
|
public:
|
|
MarioBlock(int x, int y, std::shared_ptr<SDLPP::Renderer> renderer, std::shared_ptr<SDLPP::Texture> texture, SDL_Rect src);
|
|
void visit( SDLPP::Visitor &visitor ) override;
|
|
void setTool(bool tool = true);
|
|
void setTerrain(bool terrain = true);
|
|
private:
|
|
bool _tool = false;
|
|
bool _terrain = true;
|
|
};
|
|
|
|
extern const std::vector<uint64_t> possibleBlocks;
|
|
|
|
enum BlockType {
|
|
OVERWORLD = 0,
|
|
UNDERWORLD = 1,
|
|
WATER = 2,
|
|
BOWSER = 4
|
|
};
|
|
|
|
std::shared_ptr<SDLPP::RectangleRender> createTerrainBlock( uint64_t block_id, BlockType type, std::shared_ptr<SDLPP::Renderer> &renderer, bool collision = false );
|
|
std::shared_ptr<SDLPP::RectangleRender> createTerrainBlock( uint64_t block_id, BlockType type, std::shared_ptr<SDLPP::Renderer> &renderer, int x, int y, bool collision = false );
|
|
std::shared_ptr<SDLPP::RectangleRender> createTerrainBlock( uint64_t block_id, BlockType type, std::shared_ptr<SDLPP::Renderer> &renderer, std::shared_ptr<SDLPP::Texture> texture, bool collision = false );
|
|
std::shared_ptr<SDLPP::RectangleRender> createTerrainBlock( uint64_t block_id, BlockType type, std::shared_ptr<SDLPP::Renderer> &renderer, int x, int y, std::shared_ptr<SDLPP::Texture> texture, bool collision = false );
|
|
std::shared_ptr<SDLPP::RectangleRender> createMario( BlockType type, std::shared_ptr<SDLPP::Renderer> &renderer, int x, int y );
|
|
|
|
SDL_Rect getSourceRectByID( uint64_t id, BlockType type );
|
|
|
|
#endif
|