2021-05-07 07:43:57 +00:00
|
|
|
#include "tool_box.hpp"
|
|
|
|
#include "objectids.hpp"
|
|
|
|
#include "blocks.hpp"
|
|
|
|
#include "sprites.hpp"
|
|
|
|
|
2021-05-29 17:17:45 +00:00
|
|
|
ToolBox::ToolBox(int x, int y, double start_x, double start_y, std::shared_ptr<SDLPP::Renderer> renderer, bool coliders) : SDLPP::RectangleRender(start_x + x*BLOCK_SIZE, start_y + y*BLOCK_SIZE, BLOCK_SIZE, BLOCK_SIZE, renderer) {
|
2021-05-07 07:43:57 +00:00
|
|
|
_x = x;
|
|
|
|
_y = y;
|
|
|
|
setId(EDITOR_TOOL_ID);
|
|
|
|
setColiderColor("#FF00AA");
|
|
|
|
setColor("#FFFFFF88");
|
|
|
|
setPermanent();
|
|
|
|
setAlignment(SDLPP::OBJ_CENTER, SDLPP::OBJ_CENTER);
|
2021-05-29 17:17:45 +00:00
|
|
|
if(coliders)
|
|
|
|
addCollision(SDLPP::RectColider(0,0,1,1));
|
2021-05-07 07:43:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SDLPP::Vec2D<int> ToolBox::getIndexes() const {
|
|
|
|
return {_x, _y};
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolBox::visit( SDLPP::Visitor &visitor ) {
|
|
|
|
visitor.visit( *this );
|
|
|
|
}
|