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
7
namespace
Grindstone {
8
namespace
SceneManagement {
9
class
Scene;
10
}
11
12
namespace
Editor {
13
class
BaseCommand
{
14
public
:
15
virtual
void
Redo() = 0;
16
virtual
void
Undo() = 0;
17
virtual
~BaseCommand
() {}
18
};
19
20
class
CommandList
{
21
public
:
22
CommandList
();
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
}
Grindstone::ECS::Entity
Definition
Entity.hpp:14
Grindstone::Editor::BaseCommand
Definition
CommandList.hpp:13
Grindstone::Editor::CommandList
Definition
CommandList.hpp:20
Grindstone::SceneManagement::Scene
Definition
Scene.hpp:21
sources
code
Editor
Commands
CommandList.hpp
Generated by
1.12.0