Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/ggz/src/orxonox/gamestates/GSClient.cc @ 3106

Last change on this file since 3106 was 3106, checked in by adrfried, 15 years ago

ggz build configuration bug fixed

  • Property svn:eol-style set to native
File size: 2.6 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 *      Adrian Friedli
27 *
28 */
29
30#include "OrxonoxStableHeaders.h"
31#include "GSClient.h"
32
33#include "core/input/InputManager.h"
34#include "core/CommandLine.h"
35#include "core/Core.h"
36#include "network/Client.h"
37#ifdef GGZMOD_FOUND
38#include "GGZClient.h"
39#endif /* GGZMOD_FOUND */
40
41namespace orxonox
42{
43    SetCommandLineArgument(ip, "127.0.0.1").information("#.#.#.#");
44
45    GSClient::GSClient()
46        : GameState<GSGraphics>("client")
47        , client_(0)
48    {
49    }
50
51    GSClient::~GSClient()
52    {
53    }
54
55    void GSClient::enter()
56    {
57        Core::setIsClient(true);
58
59#ifdef GGZMOD_FOUND
60        ggzClient = NULL;
61        if (GGZClient::isActive()) {
62            COUT(3) << "Initializing GGZ\n";
63            ggzClient = new GGZClient;
64        }
65        else {
66            COUT(3) << "Not using GGZ\n";
67        }
68#else  /* GGZMOD_FOUND */
69        COUT(3) << "GGZ support disabled\n";
70#endif /* GGZMOD_FOUND */
71
72        this->client_ = new Client(CommandLine::getValue("ip").getString(), CommandLine::getValue("port"));
73
74        if(!client_->establishConnection())
75            ThrowException(InitialisationFailed, "Could not establish connection with server.");
76
77        GSLevel::enter(this->getParent()->getViewport());
78
79        client_->tick(0);
80    }
81
82    void GSClient::leave()
83    {
84        GSLevel::leave();
85
86        client_->closeConnection();
87
88#ifdef GGZMOD_FOUND
89        if (ggzClient)
90        {
91            delete ggzClient;
92        }
93#endif /* GGZMOD_FOUND */
94
95        // destroy client
96        delete this->client_;
97
98        Core::setIsClient(false);
99    }
100
101    void GSClient::ticked(const Clock& time)
102    {
103        GSLevel::ticked(time);
104        client_->tick(time.getDeltaTime());
105
106        this->tickChild(time);
107    }
108}
Note: See TracBrowser for help on using the repository browser.