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