Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
CommandList.hpp
1#pragma once
2
3#include <string>
4#include <vector>
5#include "EngineCore/ECS/Entity.hpp"
6
7namespace Grindstone {
8 namespace SceneManagement {
9 class Scene;
10 }
11
12 namespace Editor {
14 public:
15 virtual void Redo() = 0;
16 virtual void Undo() = 0;
17 virtual ~BaseCommand() {}
18 };
19
21 public:
23 void AddNewEntity(SceneManagement::Scene* scene);
24 void AddComponent(
25 ECS::Entity entity,
26 const char* componentName
27 );
28 void SetUndoCount(size_t undoCount);
29 void AddCommand(BaseCommand* command);
30 bool HasAvailableUndo();
31 bool HasAvailableRedo();
32 bool Redo();
33 bool Undo();
34 private:
35 size_t GetNextNumber(size_t originalNumber);
36 size_t GetPreviousNumber(size_t originalNumber);
37 private:
38 std::vector<BaseCommand*> commands;
39 bool canUndo = false;
40 bool canRedo = false;
41 size_t commandIndex = 0;
42 size_t stackBeginIndex = 0;
43 size_t stackEndIndex = 0;
44 size_t usedCommandCount = 0;
45 };
46 }
47}
Definition Entity.hpp:14
Definition CommandList.hpp:13
Definition CommandList.hpp:20
Definition Scene.hpp:21