#ifndef DECORATIONTOOL_H_ #define DECORATIONTOOL_H_ #include "Tool.h" #include "graphics/Graphics.h" class DecorationTool: public Tool { public: unsigned char Red; unsigned char Green; unsigned char Blue; unsigned char Alpha; VideoBuffer * GetIcon(int toolID, int width, int height) { VideoBuffer * newTexture = new VideoBuffer(width, height); for (int y=0; ySetPixel(x, y, 0, 255-5*x, 255+5*x, 255); else if (toolID == DECO_DRAW || toolID == DECO_CLEAR) newTexture->SetPixel(x, y, Red, Green, Blue, Alpha); else newTexture->SetPixel(x, y, 50, 50, 50, 255); } } if (toolID == DECO_CLEAR) { int reverseRed = (Red+127)%256; int reverseGreen = (Green+127)%256; int reverseBlue = (Blue+127)%256; for (int y=4; y<12; y++) { newTexture->SetPixel(y+5, y-1, reverseRed, reverseGreen, reverseBlue, 255); newTexture->SetPixel(y+6, y-1, reverseRed, reverseGreen, reverseBlue, 255); newTexture->SetPixel(20-y, y-1, reverseRed, reverseGreen, reverseBlue, 255); newTexture->SetPixel(21-y, y-1, reverseRed, reverseGreen, reverseBlue, 255); } } else if (toolID == DECO_ADD) newTexture->AddCharacter(11, 4, '+', Red, Green, Blue, 255); else if (toolID == DECO_SUBTRACT) newTexture->AddCharacter(11, 4, '-', Red, Green, Blue, 255); else if (toolID == DECO_MULTIPLY) newTexture->AddCharacter(11, 3, 'x', Red, Green, Blue, 255); else if (toolID == DECO_DIVIDE) newTexture->AddCharacter(11, 4, '/', Red, Green, Blue, 255); return newTexture; } DecorationTool(int decoMode, string name, string description, int r, int g, int b, std::string identifier): Tool(decoMode, name, description, r, g, b, identifier), Red(0), Green(0), Blue(0), Alpha(0) { } virtual ~DecorationTool() {} virtual void Draw(Simulation * sim, Brush * brush, ui::Point position){ sim->ApplyDecorationPoint(position.X, position.Y, Red, Green, Blue, Alpha, toolID, brush); } virtual void DrawLine(Simulation * sim, Brush * brush, ui::Point position1, ui::Point position2, bool dragging) { sim->ApplyDecorationLine(position1.X, position1.Y, position2.X, position2.Y, Red, Green, Blue, Alpha, toolID, brush); } virtual void DrawRect(Simulation * sim, Brush * brush, ui::Point position1, ui::Point position2) { sim->ApplyDecorationBox(position1.X, position1.Y, position2.X, position2.Y, Red, Green, Blue, Alpha, toolID); } virtual void DrawFill(Simulation * sim, Brush * brush, ui::Point position) { } }; #endif