-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModule.h
More file actions
43 lines (33 loc) · 766 Bytes
/
Module.h
File metadata and controls
43 lines (33 loc) · 766 Bytes
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
#ifndef __MODULE_H__
#define __MODULE_H__
class Module
{
private:
bool enabled = true;
public:
virtual ~Module() {}
virtual bool Init() { return true; }
virtual bool Start() { return true; }
virtual update_status PreUpdate() { return update_status::UPDATE_CONTINUE; }
virtual update_status Update() { return update_status::UPDATE_CONTINUE; }
virtual update_status PostUpdate() { return update_status::UPDATE_CONTINUE; }
virtual bool CleanUp() { return true; }
bool IsEnabled() const { return enabled; }
void Enable()
{
if (enabled == false)
{
enabled = true;
Start();
}
}
void Disable()
{// TODO 0: Call CleanUp() for disabling a module
if (enabled == true)
{
enabled = false;
CleanUp();
}
}
};
#endif // __MODULE_H__