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