-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApplication.cpp
More file actions
146 lines (115 loc) · 2.6 KB
/
Application.cpp
File metadata and controls
146 lines (115 loc) · 2.6 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#include "Application.h"
Application::Application()
{
window = new ModuleWindow(this);
input = new ModuleInput(this);
audio = new ModuleAudio(this, true);
scene_intro = new ModuleSceneIntro(this);
renderer3D = new ModuleRenderer3D(this);
camera = new ModuleCamera3D(this);
physics = new ModulePhysics3D(this);
player = new ModulePlayer(this);
// The order of calls is very important!
// Modules will Init() Start() and Update in this order
// They will CleanUp() in reverse order
// Main Modules
AddModule(window);
AddModule(camera);
AddModule(input);
AddModule(audio);
AddModule(physics);
// Scenes
AddModule(scene_intro);
AddModule(player);
// Renderer last!
AddModule(renderer3D);
}
Application::~Application()
{
p2List_item<Module*>* item = list_modules.getLast();
while(item != NULL)
{
delete item->data;
item = item->prev;
}
}
bool Application::Init()
{
bool ret = true;
// Call Init() in all modules
p2List_item<Module*>* item = list_modules.getFirst();
while(item != NULL && ret == true)
{
ret = item->data->Init();
item = item->next;
}
// After all Init calls we call Start() in all modules
LOG("Application Start --------------");
item = list_modules.getFirst();
while(item != NULL && ret == true)
{
ret = item->data->Start();
item = item->next;
}
ms_timer.Start();
return ret;
}
// ---------------------------------------------
void Application::PrepareUpdate()
{
dt = (float)ms_timer.Read() / 1000.0f;
float desiredDt = 0.016;
if (dt < desiredDt)
{
float difDt = (desiredDt - dt)*1000;
SDL_Delay(difDt);
dt = desiredDt;
}
ms_timer.Start();
}
// ---------------------------------------------
void Application::FinishUpdate()
{
}
// Call PreUpdate, Update and PostUpdate on all modules
update_status Application::Update()
{
update_status ret = UPDATE_CONTINUE;
PrepareUpdate();
p2List_item<Module*>* item = list_modules.getFirst();
while(item != NULL && ret == UPDATE_CONTINUE)
{
ret = item->data->PreUpdate(dt);
item = item->next;
}
item = list_modules.getFirst();
while(item != NULL && ret == UPDATE_CONTINUE)
{
ret = item->data->Update(dt);
item = item->next;
}
item = list_modules.getFirst();
while(item != NULL && ret == UPDATE_CONTINUE)
{
ret = item->data->PostUpdate(dt);
item = item->next;
}
LOG("%f", dt);
FinishUpdate();
return ret;
}
bool Application::CleanUp()
{
bool ret = true;
p2List_item<Module*>* item = list_modules.getLast();
while(item != NULL && ret == true)
{
ret = item->data->CleanUp();
item = item->prev;
}
return ret;
}
void Application::AddModule(Module* mod)
{
list_modules.add(mod);
}