Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 67fba139d8b65d134c8b09763ee454434ec1efde (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
/*
   client/client.h
   This file is part of the Osirion project and is distributed under 
   the terms and conditions of the GNU General Public License version 2 
*/

#ifndef __INCLUDED_CLIENT_H__
#define __INCLUDED_CLIENT_H__

#include "core/application.h"
#include "client/console.h"
#include "client/view.h"

/// client part of the engine
namespace client {

/// client application implementation
class Client : public core::Application
{
public:
	/// initialize the client
	virtual void init(int count, char **arguments);

	/// run the client
	virtual void run();

	/// shutdown the client
	virtual void shutdown();

	/// quit the client
	virtual void quit(int status);

	/// sound notifications from the core
	virtual void notify_sound(const char * name);

	/// text notifications from the core
	virtual void notify_message(core::Message::Channel const channel, std::string const  message);

	/// remove sound source notification
	virtual void notify_remove_sound(size_t source);

	/// clear zone notification
	virtual void notify_zonechange();

	/// connect notification
	virtual void notify_connect();

	/// disconnect notification
	virtual void notify_disconnect();

	/// the main client view
	inline View *view() { return client_view; }

	/// the client console
	inline Console *console() { return client_console; }

protected:
	/// run a client frame
	virtual void frame(unsigned long timestamp);

private:
	View		*client_view;
	Console		*client_console;

	unsigned long	previous_timestamp;
};


/// the client main loop
void client_main(int count, char **arguments);

Client *client();

}

#endif // __INCLUDED_CLIENT_H__