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 | |
---|
38 | namespace orxonox |
---|
39 | { |
---|
40 | SetCommandLineArgument(ip, "127.0.0.1").information("#.#.#.#"); |
---|
41 | |
---|
42 | GSClient::GSClient() |
---|
43 | : GameState<GSGraphics>("client") |
---|
44 | , client_(0) |
---|
45 | { |
---|
46 | } |
---|
47 | |
---|
48 | GSClient::~GSClient() |
---|
49 | { |
---|
50 | } |
---|
51 | |
---|
52 | void GSClient::enter() |
---|
53 | { |
---|
54 | Core::setIsClient(true); |
---|
55 | |
---|
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 | |
---|
69 | this->client_ = new Client(CommandLine::getValue("ip").getString(), CommandLine::getValue("port")); |
---|
70 | |
---|
71 | if(!client_->establishConnection()) |
---|
72 | ThrowException(InitialisationFailed, "Could not establish connection with server."); |
---|
73 | |
---|
74 | GSLevel::enter(this->getParent()->getViewport()); |
---|
75 | |
---|
76 | client_->tick(0); |
---|
77 | } |
---|
78 | |
---|
79 | void GSClient::leave() |
---|
80 | { |
---|
81 | GSLevel::leave(); |
---|
82 | |
---|
83 | client_->closeConnection(); |
---|
84 | |
---|
85 | #ifdef HAS_GGZ |
---|
86 | if (ggzClient) |
---|
87 | { |
---|
88 | delete ggzClient; |
---|
89 | } |
---|
90 | #endif /* HAS_GGZ */ |
---|
91 | |
---|
92 | // destroy client |
---|
93 | delete this->client_; |
---|
94 | |
---|
95 | Core::setIsClient(false); |
---|
96 | } |
---|
97 | |
---|
98 | void GSClient::ticked(const Clock& time) |
---|
99 | { |
---|
100 | GSLevel::ticked(time); |
---|
101 | client_->tick(time.getDeltaTime()); |
---|
102 | |
---|
103 | this->tickChild(time); |
---|
104 | } |
---|
105 | } |
---|