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 | * ... |
---|
26 | * |
---|
27 | */ |
---|
28 | |
---|
29 | #include "GSRoot.h" |
---|
30 | |
---|
31 | #include "util/Clock.h" |
---|
32 | #include "core/ConsoleCommand.h" |
---|
33 | #include "core/Game.h" |
---|
34 | #include "core/GameMode.h" |
---|
35 | #include "network/NetworkFunction.h" |
---|
36 | #include "tools/Timer.h" |
---|
37 | #include "tools/interfaces/TimeFactorListener.h" |
---|
38 | #include "tools/interfaces/Tickable.h" |
---|
39 | |
---|
40 | namespace orxonox |
---|
41 | { |
---|
42 | DeclareGameState(GSRoot, "root", false, false); |
---|
43 | SetConsoleCommandShortcut(GSRoot, printObjects); |
---|
44 | |
---|
45 | GSRoot::GSRoot(const GameStateInfo& info) |
---|
46 | : GameState(info) |
---|
47 | , timeFactor_(1.0f) |
---|
48 | , bPaused_(false) |
---|
49 | , timeFactorPauseBackup_(1.0f) |
---|
50 | { |
---|
51 | } |
---|
52 | |
---|
53 | GSRoot::~GSRoot() |
---|
54 | { |
---|
55 | NetworkFunctionBase::destroyAllNetworkFunctions(); |
---|
56 | } |
---|
57 | |
---|
58 | void GSRoot::printObjects() |
---|
59 | { |
---|
60 | unsigned int nr=0; |
---|
61 | for(ObjectList<BaseObject>::iterator it = ObjectList<BaseObject>::begin(); it; ++it){ |
---|
62 | if( dynamic_cast<Synchronisable*>(*it) ) |
---|
63 | COUT(0) << "object: " << it->getIdentifier()->getName() << " id: " << dynamic_cast<Synchronisable*>(*it)->getObjectID() << std::endl; |
---|
64 | else |
---|
65 | COUT(0) << "object: " << it->getIdentifier()->getName() << std::endl; |
---|
66 | nr++; |
---|
67 | } |
---|
68 | COUT(0) << "currently got " << nr << " objects" << std::endl; |
---|
69 | |
---|
70 | } |
---|
71 | |
---|
72 | void GSRoot::activate() |
---|
73 | { |
---|
74 | // reset game speed to normal |
---|
75 | this->timeFactor_ = 1.0f; |
---|
76 | |
---|
77 | // time factor console command |
---|
78 | ConsoleCommand* command = createConsoleCommand(createFunctor(&GSRoot::setTimeFactor, this), "setTimeFactor"); |
---|
79 | CommandExecutor::addConsoleCommandShortcut(command).accessLevel(AccessLevel::Offline).defaultValue(0, 1.0); |
---|
80 | |
---|
81 | // time factor console command |
---|
82 | command = createConsoleCommand(createFunctor(&GSRoot::pause, this), "pause"); |
---|
83 | CommandExecutor::addConsoleCommandShortcut(command).accessLevel(AccessLevel::Offline); |
---|
84 | } |
---|
85 | |
---|
86 | void GSRoot::deactivate() |
---|
87 | { |
---|
88 | } |
---|
89 | |
---|
90 | void GSRoot::update(const Clock& time) |
---|
91 | { |
---|
92 | for (ObjectList<Timer>::iterator it = ObjectList<Timer>::begin(); it; ) |
---|
93 | (it++)->tick(time); |
---|
94 | |
---|
95 | /*** HACK *** HACK ***/ |
---|
96 | // Call the Tickable objects |
---|
97 | float leveldt = time.getDeltaTime(); |
---|
98 | if (leveldt > 1.0f) |
---|
99 | { |
---|
100 | // just loaded |
---|
101 | leveldt = 0.0f; |
---|
102 | } |
---|
103 | for (ObjectList<Tickable>::iterator it = ObjectList<Tickable>::begin(); it; ) |
---|
104 | (it++)->tick(leveldt * this->timeFactor_); |
---|
105 | /*** HACK *** HACK ***/ |
---|
106 | } |
---|
107 | |
---|
108 | /** |
---|
109 | @brief |
---|
110 | Changes the speed of Orxonox |
---|
111 | @remark |
---|
112 | This function is a hack when placed here! |
---|
113 | Timefactor should be related to the scene (level or so), not the game |
---|
114 | */ |
---|
115 | void GSRoot::setTimeFactor(float factor) |
---|
116 | { |
---|
117 | if (GameMode::isMaster()) |
---|
118 | { |
---|
119 | if (!this->bPaused_) |
---|
120 | { |
---|
121 | TimeFactorListener::timefactor_s = factor; |
---|
122 | |
---|
123 | for (ObjectList<TimeFactorListener>::iterator it = ObjectList<TimeFactorListener>::begin(); it != ObjectList<TimeFactorListener>::end(); ++it) |
---|
124 | it->changedTimeFactor(factor, this->timeFactor_); |
---|
125 | |
---|
126 | this->timeFactor_ = factor; |
---|
127 | } |
---|
128 | else |
---|
129 | this->timeFactorPauseBackup_ = factor; |
---|
130 | } |
---|
131 | } |
---|
132 | |
---|
133 | void GSRoot::pause() |
---|
134 | { |
---|
135 | if (GameMode::isMaster()) |
---|
136 | { |
---|
137 | if (!this->bPaused_) |
---|
138 | { |
---|
139 | this->timeFactorPauseBackup_ = this->timeFactor_; |
---|
140 | this->setTimeFactor(0.0f); |
---|
141 | this->bPaused_ = true; |
---|
142 | } |
---|
143 | else |
---|
144 | { |
---|
145 | this->bPaused_ = false; |
---|
146 | this->setTimeFactor(this->timeFactorPauseBackup_); |
---|
147 | } |
---|
148 | } |
---|
149 | } |
---|
150 | } |
---|