mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-04-04 22:42:28 +02:00
update last tool and drawMode when clicking too, fixes some issues
This commit is contained in:
parent
d4e3196070
commit
66863b7578
@ -1061,6 +1061,11 @@ void GameController::SetActiveTool(int toolSelection, Tool * tool)
|
||||
((PropertyTool *)tool)->OpenWindow(gameModel->GetSimulation());
|
||||
}
|
||||
|
||||
void GameController::SetLastTool(Tool * tool)
|
||||
{
|
||||
gameModel->SetLastTool(tool);
|
||||
}
|
||||
|
||||
int GameController::GetReplaceModeFlags()
|
||||
{
|
||||
return gameModel->GetSimulation()->replaceModeFlags;
|
||||
|
@ -105,6 +105,7 @@ public:
|
||||
std::vector<Menu*> GetMenuList();
|
||||
Tool * GetActiveTool(int selection);
|
||||
void SetActiveTool(int toolSelection, Tool * tool);
|
||||
void SetLastTool(Tool * tool);
|
||||
int GetReplaceModeFlags();
|
||||
void SetReplaceModeFlags(int flags);
|
||||
void ActiveToolChanged(int toolSelection, Tool *tool);
|
||||
|
@ -1122,12 +1122,17 @@ void GameView::OnMouseDown(int x, int y, unsigned button)
|
||||
}
|
||||
if (currentMouse.X >= 0 && currentMouse.X < XRES && currentMouse.Y >= 0 && currentMouse.Y < YRES)
|
||||
{
|
||||
// update tool index, set new "last" tool so GameView can detect certain tools properly
|
||||
if (button == BUTTON_LEFT)
|
||||
toolIndex = 0;
|
||||
if (button == BUTTON_RIGHT)
|
||||
toolIndex = 1;
|
||||
if (button == BUTTON_MIDDLE)
|
||||
toolIndex = 2;
|
||||
Tool *lastTool = c->GetActiveTool(toolIndex);
|
||||
c->SetLastTool(lastTool);
|
||||
UpdateDrawMode();
|
||||
|
||||
isMouseDown = true;
|
||||
c->HistorySnapshot();
|
||||
if (drawMode == DrawRect || drawMode == DrawLine)
|
||||
|
Loading…
x
Reference in New Issue
Block a user