Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 664bbb418cd76f515fbbe0415b40cad50f2a4e74 (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
/*
   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"

/// 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(std::string const & message);

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

	/// clear zone notification
	virtual void notify_zoneclear(core::Zone *zone);
};


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

Client *client();

}

#endif // __INCLUDED_CLIENT_H__