[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" |
---|
[3107] | 32 | #include "SpecialConfig.h" |
---|
[1670] | 33 | |
---|
| 34 | #include "core/input/InputManager.h" |
---|
| 35 | #include "core/CommandLine.h" |
---|
[2087] | 36 | #include "core/Core.h" |
---|
[1670] | 37 | #include "network/Client.h" |
---|
[3106] | 38 | #ifdef GGZMOD_FOUND |
---|
| 39 | #include "GGZClient.h" |
---|
| 40 | #endif /* GGZMOD_FOUND */ |
---|
[1670] | 41 | |
---|
| 42 | namespace orxonox |
---|
| 43 | { |
---|
[2087] | 44 | SetCommandLineArgument(ip, "127.0.0.1").information("#.#.#.#"); |
---|
[1670] | 45 | |
---|
| 46 | GSClient::GSClient() |
---|
[3107] | 47 | : GameState<GSGraphics>("client"), |
---|
| 48 | client_(0), |
---|
| 49 | ggzClient(0) |
---|
[1670] | 50 | { |
---|
| 51 | } |
---|
| 52 | |
---|
| 53 | GSClient::~GSClient() |
---|
| 54 | { |
---|
| 55 | } |
---|
| 56 | |
---|
| 57 | void GSClient::enter() |
---|
| 58 | { |
---|
[2087] | 59 | Core::setIsClient(true); |
---|
[1907] | 60 | |
---|
[3106] | 61 | #ifdef GGZMOD_FOUND |
---|
[3107] | 62 | if (GGZClient::isActive()) |
---|
| 63 | { |
---|
| 64 | this->ggzClient = new GGZClient(this); |
---|
| 65 | return; |
---|
[3000] | 66 | } |
---|
[3106] | 67 | #endif /* GGZMOD_FOUND */ |
---|
[3000] | 68 | |
---|
[3107] | 69 | this->connect(CommandLine::getValue("ip").getString(), CommandLine::getValue("port")); |
---|
| 70 | } |
---|
[1670] | 71 | |
---|
[3107] | 72 | void GSClient::connect(const std::string& address, int port) |
---|
| 73 | { |
---|
| 74 | this->client_ = new Client(address, port); |
---|
| 75 | |
---|
[1670] | 76 | if(!client_->establishConnection()) |
---|
| 77 | ThrowException(InitialisationFailed, "Could not establish connection with server."); |
---|
| 78 | |
---|
[2087] | 79 | GSLevel::enter(this->getParent()->getViewport()); |
---|
| 80 | |
---|
[1670] | 81 | client_->tick(0); |
---|
| 82 | } |
---|
| 83 | |
---|
| 84 | void GSClient::leave() |
---|
| 85 | { |
---|
[2087] | 86 | GSLevel::leave(); |
---|
[1670] | 87 | |
---|
| 88 | client_->closeConnection(); |
---|
| 89 | |
---|
[3000] | 90 | if (ggzClient) |
---|
| 91 | { |
---|
| 92 | delete ggzClient; |
---|
| 93 | } |
---|
| 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); |
---|
[3109] | 104 | if(client_) |
---|
| 105 | { |
---|
| 106 | client_->tick(time.getDeltaTime()); |
---|
| 107 | } |
---|
[1670] | 108 | |
---|
[1674] | 109 | this->tickChild(time); |
---|
[1670] | 110 | } |
---|
| 111 | } |
---|