[1383] | 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 | * Benjamin Knecht |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
[7601] | 29 | /** |
---|
| 30 | @file Trigger.cc |
---|
| 31 | @brief Implementation of the Trigger class. |
---|
| 32 | @ingroup NormalTrigger |
---|
| 33 | */ |
---|
| 34 | |
---|
[1383] | 35 | #include "Trigger.h" |
---|
| 36 | |
---|
| 37 | #include "core/CoreIncludes.h" |
---|
[3196] | 38 | #include "core/GameMode.h" |
---|
[1693] | 39 | #include "core/XMLPort.h" |
---|
[7284] | 40 | #include "core/command/ConsoleCommand.h" |
---|
[5735] | 41 | #include "Scene.h" |
---|
[1383] | 42 | |
---|
| 43 | namespace orxonox |
---|
| 44 | { |
---|
[1671] | 45 | |
---|
[7284] | 46 | SetConsoleCommand("Trigger", "debugFlares", &Trigger::debugFlares).defaultValues(false); |
---|
[1671] | 47 | |
---|
[1383] | 48 | CreateFactory(Trigger); |
---|
| 49 | |
---|
[7601] | 50 | Trigger::Trigger(BaseObject* creator) : TriggerBase(creator) |
---|
[1383] | 51 | { |
---|
| 52 | RegisterObject(Trigger); |
---|
| 53 | |
---|
[2029] | 54 | this->bActive_ = false; |
---|
| 55 | this->bTriggered_ = false; |
---|
| 56 | this->latestState_ = 0x0; |
---|
| 57 | |
---|
[2071] | 58 | this->remainingTime_ = 0.0f; |
---|
| 59 | this->timeSinceLastEvent_ = 0.0f; |
---|
[2029] | 60 | |
---|
| 61 | // this->bUpdating_ = false; |
---|
| 62 | |
---|
[2896] | 63 | if (this->getScene() && GameMode::showsGraphics()) |
---|
[2019] | 64 | { |
---|
[2029] | 65 | this->debugBillboard_.setBillboardSet(this->getScene()->getSceneManager(), "Examples/Flare", ColourValue(1.0, 0.0, 0.0), 1); |
---|
| 66 | this->debugBillboard_.setVisible(false); |
---|
[2171] | 67 | |
---|
| 68 | if (this->debugBillboard_.getBillboardSet()) |
---|
[2662] | 69 | this->attachOgreObject(this->debugBillboard_.getBillboardSet()); |
---|
[2019] | 70 | } |
---|
[1969] | 71 | |
---|
[5929] | 72 | this->setSyncMode(0x0); |
---|
[1383] | 73 | } |
---|
| 74 | |
---|
| 75 | Trigger::~Trigger() |
---|
| 76 | { |
---|
| 77 | } |
---|
| 78 | |
---|
[2029] | 79 | void Trigger::XMLPort(Element& xmlelement, XMLPort::Mode mode) |
---|
[1383] | 80 | { |
---|
[2029] | 81 | SUPER(Trigger, XMLPort, xmlelement, mode); |
---|
[1969] | 82 | } |
---|
| 83 | |
---|
[1671] | 84 | void Trigger::tick(float dt) |
---|
| 85 | { |
---|
[7601] | 86 | if(this->bFirstTick_) |
---|
[2069] | 87 | { |
---|
| 88 | this->bFirstTick_ = false; |
---|
[3033] | 89 | this->triggered(false); |
---|
[2069] | 90 | } |
---|
[1693] | 91 | |
---|
[2071] | 92 | // Check if the object is active (this is NOT Trigger::isActive()!) |
---|
| 93 | if (!this->BaseObject::isActive()) |
---|
| 94 | return; |
---|
| 95 | |
---|
[2662] | 96 | SUPER(Trigger, tick, dt); |
---|
| 97 | |
---|
[7601] | 98 | bool newTriggered = this->isTriggered() ^ this->getInvert(); |
---|
[1693] | 99 | |
---|
[1954] | 100 | // check if new triggering event is really new |
---|
[2029] | 101 | if ((this->latestState_ & 0x1) != newTriggered) |
---|
[1954] | 102 | { |
---|
| 103 | // create new state |
---|
[2029] | 104 | if (newTriggered) |
---|
[1671] | 105 | { |
---|
[2029] | 106 | this->latestState_ |= 1; // set trigger bit to 1 |
---|
[1954] | 107 | this->switchState(); |
---|
| 108 | } |
---|
| 109 | else |
---|
| 110 | { |
---|
[2029] | 111 | this->latestState_ &= 0xFE; // set trigger bit to 0 |
---|
[7601] | 112 | if (!this->getSwitch()) |
---|
[1851] | 113 | this->switchState(); |
---|
[1671] | 114 | } |
---|
[1954] | 115 | } |
---|
[1693] | 116 | |
---|
[2029] | 117 | if (this->remainingTime_ > 0.0) |
---|
[1693] | 118 | { |
---|
[2029] | 119 | this->remainingTime_ -= dt; |
---|
[8572] | 120 | // only increase when actually waiting for a state in the queue |
---|
[2029] | 121 | if (this->timeSinceLastEvent_ >= 0.0) |
---|
| 122 | this->timeSinceLastEvent_ += dt; |
---|
[1693] | 123 | } |
---|
| 124 | |
---|
[2029] | 125 | while (this->remainingTime_ <= 0.0 && this->stateChanges_.size() > 0) |
---|
[1693] | 126 | { |
---|
| 127 | // time ran out, change state to new one |
---|
[2029] | 128 | char newState = this->stateChanges_.front().second; |
---|
| 129 | this->bTriggered_ = (newState & 0x1); |
---|
| 130 | this->bActive_ = newState & 2; |
---|
[8572] | 131 | COUT(4) << this->getIdentifier()->getName() << " '" << this->getName() << "' (&" << this << ") changed state. active: " << this->bActive_ << ", triggered: " << this->bTriggered_ << "." << std::endl; |
---|
[3033] | 132 | this->triggered(this->bActive_); |
---|
[1693] | 133 | this->stateChanges_.pop(); |
---|
[2029] | 134 | if (this->stateChanges_.size() != 0) |
---|
| 135 | this->remainingTime_ = this->stateChanges_.front().first; |
---|
[1693] | 136 | else |
---|
[7601] | 137 | this->timeSinceLastEvent_ = this->getDelay(); |
---|
[1693] | 138 | } |
---|
| 139 | |
---|
[2029] | 140 | if (this->bTriggered_ && this->bActive_) |
---|
[1693] | 141 | this->setBillboardColour(ColourValue(0.5, 1.0, 0.0)); |
---|
[2029] | 142 | else if (!this->bTriggered_ && this->bActive_) |
---|
[1693] | 143 | this->setBillboardColour(ColourValue(0.0, 1.0, 0.0)); |
---|
[2029] | 144 | else if (this->bTriggered_ && !this->bActive_) |
---|
[1693] | 145 | this->setBillboardColour(ColourValue(1.0, 0.5, 0.0)); |
---|
| 146 | else |
---|
| 147 | this->setBillboardColour(ColourValue(1.0, 0.0, 0.0)); |
---|
[1671] | 148 | } |
---|
| 149 | |
---|
[3033] | 150 | void Trigger::triggered(bool bIsTriggered) |
---|
| 151 | { |
---|
| 152 | this->fireEvent(bIsTriggered); |
---|
| 153 | } |
---|
| 154 | |
---|
[3280] | 155 | bool Trigger::isTriggered(TriggerMode::Value mode) |
---|
[1541] | 156 | { |
---|
[2029] | 157 | // if (this->bUpdating_) |
---|
| 158 | // return this->bTriggered_; |
---|
[1693] | 159 | |
---|
[2029] | 160 | // this->bUpdating_ = true; |
---|
| 161 | if (this->children_.size() != 0) |
---|
[1541] | 162 | { |
---|
[1693] | 163 | bool returnval = false; |
---|
[2029] | 164 | |
---|
| 165 | switch (mode) |
---|
[1671] | 166 | { |
---|
[3280] | 167 | case TriggerMode::EventTriggerAND: |
---|
[1693] | 168 | returnval = checkAnd(); |
---|
[1671] | 169 | break; |
---|
[3280] | 170 | case TriggerMode::EventTriggerOR: |
---|
[1693] | 171 | returnval = checkOr(); |
---|
[1671] | 172 | break; |
---|
[3280] | 173 | case TriggerMode::EventTriggerXOR: |
---|
[1693] | 174 | returnval = checkXor(); |
---|
[1671] | 175 | break; |
---|
| 176 | default: |
---|
[1693] | 177 | returnval = false; |
---|
[1671] | 178 | break; |
---|
| 179 | } |
---|
[2029] | 180 | // this->bUpdating_ = false; |
---|
| 181 | |
---|
[2069] | 182 | return returnval; |
---|
[1541] | 183 | } |
---|
[1671] | 184 | return true; |
---|
[1541] | 185 | } |
---|
| 186 | |
---|
[2029] | 187 | bool Trigger::checkAnd() |
---|
| 188 | { |
---|
[7601] | 189 | std::set<TriggerBase*>::iterator it; |
---|
[2029] | 190 | for(it = this->children_.begin(); it != this->children_.end(); ++it) |
---|
| 191 | { |
---|
| 192 | if (!(*it)->isActive()) |
---|
| 193 | return false; |
---|
| 194 | } |
---|
| 195 | return true; |
---|
| 196 | } |
---|
| 197 | |
---|
| 198 | bool Trigger::checkOr() |
---|
| 199 | { |
---|
[7601] | 200 | std::set<TriggerBase*>::iterator it; |
---|
[2029] | 201 | for(it = this->children_.begin(); it != this->children_.end(); ++it) |
---|
| 202 | { |
---|
| 203 | if ((*it)->isActive()) |
---|
| 204 | return true; |
---|
| 205 | } |
---|
| 206 | return false; |
---|
| 207 | } |
---|
| 208 | |
---|
| 209 | bool Trigger::checkXor() |
---|
| 210 | { |
---|
[7601] | 211 | std::set<TriggerBase*>::iterator it; |
---|
[2029] | 212 | bool test = false; |
---|
| 213 | for(it = this->children_.begin(); it != this->children_.end(); ++it) |
---|
| 214 | { |
---|
| 215 | if (test && (*it)->isActive()) |
---|
| 216 | return false; |
---|
| 217 | if ((*it)->isActive()) |
---|
| 218 | test = true; |
---|
| 219 | } |
---|
| 220 | return test; |
---|
| 221 | } |
---|
| 222 | |
---|
| 223 | bool Trigger::switchState() |
---|
| 224 | { |
---|
[7601] | 225 | if (( (this->latestState_ & 2) && this->getStayActive() && (this->remainingActivations_ <= 0)) |
---|
| 226 | || (!(this->latestState_ & 2) && (this->remainingActivations_ == 0))) |
---|
[2029] | 227 | return false; |
---|
| 228 | else |
---|
| 229 | { |
---|
| 230 | this->latestState_ ^= 2; // toggle state bit |
---|
| 231 | |
---|
| 232 | // increase activation count |
---|
| 233 | if (this->latestState_ & 2 && this->remainingActivations_ > 0) |
---|
| 234 | this->remainingActivations_--; |
---|
| 235 | |
---|
| 236 | this->storeState(); |
---|
| 237 | |
---|
| 238 | return true; |
---|
| 239 | } |
---|
| 240 | } |
---|
| 241 | |
---|
| 242 | void Trigger::storeState() |
---|
| 243 | { |
---|
| 244 | // put state change into queue |
---|
| 245 | this->stateChanges_.push(std::pair<float, char>(this->timeSinceLastEvent_, this->latestState_)); |
---|
| 246 | // reset time since last event |
---|
| 247 | this->timeSinceLastEvent_ = 0.0; |
---|
| 248 | |
---|
| 249 | if (this->stateChanges_.size() == 1) |
---|
| 250 | this->remainingTime_ = this->stateChanges_.front().first; |
---|
| 251 | } |
---|
| 252 | |
---|
[7601] | 253 | void Trigger::delayChanged(void) |
---|
[1693] | 254 | { |
---|
[7601] | 255 | this->timeSinceLastEvent_ = this->getDelay(); |
---|
[1693] | 256 | } |
---|
| 257 | |
---|
[2029] | 258 | void Trigger::debugFlares(bool bVisible) |
---|
[1541] | 259 | { |
---|
[2029] | 260 | for (ObjectList<Trigger>::iterator it = ObjectList<Trigger>::begin(); it != ObjectList<Trigger>::end(); ++it) |
---|
| 261 | it->setVisible(bVisible); |
---|
[1541] | 262 | } |
---|
| 263 | |
---|
[2029] | 264 | void Trigger::setBillboardColour(const ColourValue& colour) |
---|
[1541] | 265 | { |
---|
[2171] | 266 | this->debugBillboard_.setColour(colour); |
---|
[1541] | 267 | } |
---|
| 268 | |
---|
[2029] | 269 | void Trigger::changedVisibility() |
---|
[1671] | 270 | { |
---|
[2029] | 271 | SUPER(Trigger, changedVisibility); |
---|
| 272 | |
---|
| 273 | this->debugBillboard_.setVisible(this->isVisible()); |
---|
[1671] | 274 | } |
---|
[1383] | 275 | } |
---|