[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" |
---|
| 37 | |
---|
| 38 | namespace orxonox |
---|
| 39 | { |
---|
[2087] | 40 | SetCommandLineArgument(ip, "127.0.0.1").information("#.#.#.#"); |
---|
[1670] | 41 | |
---|
| 42 | GSClient::GSClient() |
---|
[2087] | 43 | : GameState<GSGraphics>("client") |
---|
[1670] | 44 | , client_(0) |
---|
| 45 | { |
---|
| 46 | } |
---|
| 47 | |
---|
| 48 | GSClient::~GSClient() |
---|
| 49 | { |
---|
| 50 | } |
---|
| 51 | |
---|
| 52 | void GSClient::enter() |
---|
| 53 | { |
---|
[2087] | 54 | Core::setIsClient(true); |
---|
[1907] | 55 | |
---|
[3000] | 56 | #ifdef HAS_GGZ |
---|
| 57 | ggzClient = NULL; |
---|
| 58 | if (GGZClient::isActive()) { |
---|
| 59 | COUT(3) << "Initializing GGZ\n"; |
---|
| 60 | ggzClient = new GGZClient; |
---|
| 61 | } |
---|
| 62 | else { |
---|
| 63 | COUT(3) << "Not using GGZ\n"; |
---|
| 64 | } |
---|
| 65 | #else /* HAS_GGZ */ |
---|
| 66 | COUT(3) << "GGZ support disabled\n"; |
---|
| 67 | #endif /* HAS_GGZ */ |
---|
| 68 | |
---|
[2171] | 69 | this->client_ = new Client(CommandLine::getValue("ip").getString(), CommandLine::getValue("port")); |
---|
[1670] | 70 | |
---|
| 71 | if(!client_->establishConnection()) |
---|
| 72 | ThrowException(InitialisationFailed, "Could not establish connection with server."); |
---|
| 73 | |
---|
[2087] | 74 | GSLevel::enter(this->getParent()->getViewport()); |
---|
| 75 | |
---|
[1670] | 76 | client_->tick(0); |
---|
| 77 | } |
---|
| 78 | |
---|
| 79 | void GSClient::leave() |
---|
| 80 | { |
---|
[2087] | 81 | GSLevel::leave(); |
---|
[1670] | 82 | |
---|
| 83 | client_->closeConnection(); |
---|
| 84 | |
---|
[3000] | 85 | #ifdef HAS_GGZ |
---|
| 86 | if (ggzClient) |
---|
| 87 | { |
---|
| 88 | delete ggzClient; |
---|
| 89 | } |
---|
| 90 | #endif /* HAS_GGZ */ |
---|
| 91 | |
---|
[1755] | 92 | // destroy client |
---|
| 93 | delete this->client_; |
---|
[1670] | 94 | |
---|
[2087] | 95 | Core::setIsClient(false); |
---|
[1670] | 96 | } |
---|
| 97 | |
---|
[1674] | 98 | void GSClient::ticked(const Clock& time) |
---|
[1670] | 99 | { |
---|
[1674] | 100 | GSLevel::ticked(time); |
---|
| 101 | client_->tick(time.getDeltaTime()); |
---|
[1670] | 102 | |
---|
[1674] | 103 | this->tickChild(time); |
---|
[1670] | 104 | } |
---|
| 105 | } |
---|