From 583ec3285c41e9d253c4aaabd2af4dadac75f3a7 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 23 Nov 2008 12:34:07 +0000 Subject: clean module consturction/destruction --- src/game/example/example.cc | 26 +++++++++++--------------- src/game/example/example.h | 19 +++++++------------ 2 files changed, 18 insertions(+), 27 deletions(-) (limited to 'src/game/example') diff --git a/src/game/example/example.cc b/src/game/example/example.cc index 9c3d55a..25daef7 100644 --- a/src/game/example/example.cc +++ b/src/game/example/example.cc @@ -10,15 +10,12 @@ namespace example { -Example::Example() : core::Module("example", "The Osirion Project Example", true) +core::Module *factory() { + return new Example(); } -Example::~Example() -{ -} - -void Example::init() +Example::Example() : core::Module("The Osirion Project Example", true) { /* Initialize engine game variables @@ -81,6 +78,14 @@ void Example::init() } +Example::~Example() +{ + /* + The world is automaticly deleted on shutdown, + but local variables have to be cleaned up + */ + zone = 0; +} void Example::player_connect(core::Player *player) { @@ -113,13 +118,4 @@ void Example::frame(float elapsed) } -void Example::shutdown() -{ - /* - The world is automaticly deleted on shutdown, - but local variables have to be cleaned up - */ - zone = 0; -} - } diff --git a/src/game/example/example.h b/src/game/example/example.h index ba8aa72..64e9e4d 100644 --- a/src/game/example/example.h +++ b/src/game/example/example.h @@ -34,31 +34,26 @@ public: Example(); /// desctructor, called on module unload - ~Example(); + virtual ~Example(); /// called once every server frame /** @param elapsed time elapsed since the precious server frame, in seconds */ - void frame(float elapsed); + virtual void frame(float elapsed); /// called when a player connects - void player_connect(core::Player *player); + virtual void player_connect(core::Player *player); /// called when a player disconnects - void player_disconnect(core::Player *player); - -protected: - /// called when the game starts - void init(); - - /// called when the game is shut down - void shutdown(); - + virtual void player_disconnect(core::Player *player); private: core::Zone *zone; }; +/// factory function +core::Module *factory(); + } #endif // __INCLUDED_EXAMPLE_H__ -- cgit v1.2.3