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

#ifndef __INCLUDED_INTRO_H__
#define __INCLUDED_INTRO_H__

#include "core/core.h"
#include "intro/convoy.h"

/// introduction game module
namespace intro
{

/// introduction game module
class Intro : public core::Module
{
public:
	/// create an introduction game module
	Intro();
	/// delete an introduction game module
	virtual ~Intro();

	/// run one frame
	virtual void frame(float seconds);

	/// is called when a player connects
	virtual void player_connect(core::Player *player);

	/// is called when a player disconnects
	virtual void player_disconnect(core::Player *player);

private:
	core::Zone	*intro_zone;
	Convoy		*intro_convoy;

	bool load_world();
};

/// factory function
core::Module *factory();

}

#endif // __INCLUDED_INTRO_H__