-
-
Notifications
You must be signed in to change notification settings - Fork 161
/
Copy pathApp.hpp
78 lines (64 loc) · 1.44 KB
/
App.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#pragma once
#include <rocket.hpp>
#include "Export.hpp"
#ifdef major
#undef major
#endif
#ifdef minor
#undef minor
#endif
namespace acid {
class ACID_EXPORT Version {
public:
Version(uint8_t major, uint8_t minor, uint8_t patch) :
major(major),
minor(minor),
patch(patch) {
}
uint8_t major, minor, patch;
};
/**
* @brief Class that represents a application.
*/
class ACID_EXPORT App : public virtual rocket::trackable {
friend class Engine;
public:
explicit App(std::string name, const Version &version = {1, 0, 0}) :
name(std::move(name)),
version(version) {
}
virtual ~App() = default;
/**
* Run when switching to this app from another.
*/
virtual void Start() = 0;
/**
* Run before the module update pass.
*/
virtual void Update() = 0;
/**
* Gets the application's name.
* @return The application's name.
*/
const std::string &GetName() const { return name; }
/**
* Sets the application's name, for driver support.
* @param name The application's name.
*/
void SetName(const std::string &name) { this->name = name; }
/**
* Gets the application's version.
* @return The application's version.
*/
const Version &GetVersion() const { return version; }
/**
* Sets the application's version, for driver support.
* @param version The application version.
*/
void SetVersion(const Version &version) { this->version = version; }
private:
bool started = false;
std::string name;
Version version;
};
}