This repository has been archived on 2025-03-20. You can view files and clone it, but cannot push or open issues or pull requests.
The-Powder-Toy/src/game/GameModel.h

96 lines
2.0 KiB
C++

#ifndef GAMEMODEL_H
#define GAMEMODEL_H
#include <vector>
#include "search/Save.h"
#include "simulation/Simulation.h"
#include "Renderer.h"
#include "GameView.h"
#include "Brush.h"
#include "client/User.h"
#include "Tool.h"
#include "Menu.h"
using namespace std;
class GameView;
class Simulation;
class Renderer;
class ToolSelection
{
public:
enum
{
ToolPrimary, ToolSecondary, ToolTertiary
};
};
class GameModel
{
private:
vector<GameView*> observers;
vector<Tool*> toolList;
vector<Menu*> menuList;
Menu * activeMenu;
int currentBrush;
vector<Brush *> brushList;
Save * currentSave;
Simulation * sim;
Renderer * ren;
Tool * activeTools[3];
User currentUser;
//bool zoomEnabled;
void notifyRendererChanged();
void notifySimulationChanged();
void notifyPausedChanged();
void notifyDecorationChanged();
void notifySaveChanged();
void notifyBrushChanged();
void notifyMenuListChanged();
void notifyToolListChanged();
void notifyActiveToolsChanged();
void notifyUserChanged();
void notifyZoomChanged();
public:
GameModel();
~GameModel();
void SetVote(int direction);
Save * GetSave();
Brush * GetBrush();
void SetSave(Save * newSave);
void AddObserver(GameView * observer);
Tool * GetActiveTool(int selection);
void SetActiveTool(int selection, Tool * tool);
bool GetPaused();
void SetPaused(bool pauseState);
bool GetDecoration();
void SetDecoration(bool decorationState);
void ClearSimulation();
vector<Menu*> GetMenuList();
vector<Tool*> GetToolList();
void SetActiveMenu(Menu * menu);
Menu * GetActiveMenu();
void FrameStep(int frames);
User GetUser();
void SetUser(User user);
void SetBrush(int i);
int GetBrushID();
Simulation * GetSimulation();
Renderer * GetRenderer();
void SetZoomEnabled(bool enabled);
bool GetZoomEnabled();
void SetZoomSize(int size);
int GetZoomSize();
void SetZoomFactor(int factor);
int GetZoomFactor();
void SetZoomPosition(ui::Point position);
ui::Point GetZoomPosition();
void SetZoomWindowPosition(ui::Point position);
ui::Point GetZoomWindowPosition();
};
#endif // GAMEMODEL_H