Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/objecthierarchy/src/orxonox/gamestates/GSServer.cc @ 2003

Last change on this file since 2003 was 2003, checked in by rgrieder, 16 years ago

Simplified CommandLineArgument by using the new MultiType.
That also enables to get a cmd argument even if you don't know the exact type. It simply gets converted.

  • Property svn:eol-style set to native
File size: 2.5 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Reto Grieder
24 *   Co-authors:
25 *      Fabian 'x3n' Landau
26 *
27 */
28
29#include "OrxonoxStableHeaders.h"
30#include "GSServer.h"
31
32#include "core/ConsoleCommand.h"
33#include "core/input/InputManager.h"
34#include "core/CommandLine.h"
35#include "core/Core.h"
36#include "network/Server.h"
37
38namespace orxonox
39{
40    SetCommandLineArgument(port, 55556).shortcut("p").information("0-65535");
41
42    GSServer::GSServer()
43        : GSLevel("server")
44        , server_(0)
45    {
46    }
47
48    GSServer::~GSServer()
49    {
50    }
51
52    void GSServer::enter()
53    {
54        Core::setHasServer(true);
55
56        GSLevel::enter();
57
58        this->server_ = new network::Server(CommandLine::getValue("port"));
59        COUT(0) << "Loading scene in server mode" << std::endl;
60
61        this->loadLevel();
62
63        server_->open();
64
65        // add console commands
66        FunctorMember<GSLevel>* functor = createFunctor(&GSLevel::setTimeFactor);
67        functor->setObject(this);
68        CommandExecutor::addConsoleCommandShortcut(createConsoleCommand(functor, "setTimeFactor")).accessLevel(AccessLevel::Offline).defaultValue(0, 1.0);;
69
70        // level is loaded: we can start capturing the input
71        InputManager::getInstance().requestEnterState("game");
72    }
73
74    void GSServer::leave()
75    {
76        InputManager::getInstance().requestLeaveState("game");
77
78        // TODO: Remove and destroy console command
79
80        this->unloadLevel();
81
82        this->server_->close();
83        delete this->server_;
84
85        GSLevel::leave();
86
87        Core::setHasServer(false);
88    }
89
90    void GSServer::ticked(const Clock& time)
91    {
92        GSLevel::ticked(time);
93        server_->tick(time.getDeltaTime());
94        this->tickChild(time);
95    }
96}
Note: See TracBrowser for help on using the repository browser.