blob: f146a8febe497e65683fed2f3dbd67e0b09561f9 (
plain)
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
|
/*
client/client.cc
This file is part of the Osirion project and is distributed under
the terms and conditions of the GNU General Public License version 2
*/
#include "camera.h"
#include "view.h"
#include "video.h"
#include "input.h"
#include "console.h"
#include "game/game.h"
#include "osirion.h"
#include <SDL/SDL.h>
namespace client {
// public instances
Camera camera;
View view;
Video video;
Input input;
// private instance of the client console object
Console clientconsole;
void quit(int status)
{
SDL_Quit();
exit(status);
}
void init()
{
// set clientconsole as the common console object
common::Console::instance = &clientconsole;
// Initialize the video subsystem
video.init();
if (!video.initialized) {
quit(1);
}
// initialize input
input.init();
// initialize game
game::init();
}
void run()
{
Uint32 startup = SDL_GetTicks();
while(game::initialized) {
Uint32 chrono = SDL_GetTicks();
// overflow protection ~49 days
if (chrono < startup) {
startup = chrono;
}
// update the game chronometers
float elapsed = (float) ( chrono - startup) / 1000.0f;
game::update(elapsed);
// update the video chronometers and draw
video.draw(elapsed);
startup = chrono;
// process input
input.process();
}
input.shutdown();
video.shutdown();
quit(0);
}
} // namespace client
|