Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/modules/pickup/items/InvisiblePickup.cc @ 7547

Last change on this file since 7547 was 7547, checked in by dafrick, 14 years ago

Documenting and cleanup.

  • Property svn:eol-style set to native
File size: 6.8 KB
Line 
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 *      Benedict Simlinger
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29/**
30    @file InvisiblePickup.cc
31    @brief Implementation of the InvisiblePickup class.
32*/
33
34#include "InvisiblePickup.h"
35
36#include <sstream>
37//#include <OgreEntity.h>
38//#include <OgreAnimationState.h>
39#include "core/CoreIncludes.h"
40#include "core/XMLPort.h"
41
42#include "pickup/PickupIdentifier.h"
43#include "worldentities/pawns/Pawn.h"
44
45namespace orxonox
46{
47
48    CreateFactory(InvisiblePickup);
49
50    /**
51    @brief
52        Constructor. Registers the object and initializes the member variables.
53    */
54    InvisiblePickup::InvisiblePickup(BaseObject* creator) : Pickup(creator)
55    {
56        RegisterObject(InvisiblePickup);
57        this->initialize();
58    }
59
60    /**
61    @brief
62        Destructor.
63    */
64    InvisiblePickup::~InvisiblePickup()
65    {
66    }
67
68    /**
69    @brief
70    Initializes the member variables.
71    */
72    void InvisiblePickup::initialize(void)
73    {
74        this->duration_ = 0.0f;
75        // Defines who is allowed to pick up the pickup.
76        this->addTarget(ClassIdentifier<Pawn>::getIdentifier());
77    }
78
79    /**
80    @brief
81        Initializes the PickupIdentifier of this pickup.
82    */
83    void InvisiblePickup::initializeIdentifier(void)
84    {
85        std::stringstream stream;
86        stream << this->getDuration();
87        std::string type1 = "duration";
88        std::string val1 = stream.str();
89        this->pickupIdentifier_->addParameter(type1, val1);
90    }
91
92    /**
93    @brief
94        Method for creating a HealthPickup object through XML.
95    */
96    void InvisiblePickup::XMLPort(Element& xmlelement, orxonox::XMLPort::Mode mode)
97    {
98        SUPER(InvisiblePickup, XMLPort, xmlelement, mode);
99        XMLPortParam(InvisiblePickup, "duration", setDuration, getDuration, xmlelement, mode);
100
101        this->initializeIdentifier();
102    }
103
104    /**
105    @brief
106        Is called when the pickup has transited from used to unused or the other way around.
107    */
108    void InvisiblePickup::changedUsed(void)
109    {
110        SUPER(InvisiblePickup, changedUsed);
111
112        // If the pickup is not picked up nothing must be done.
113        if(!this->isPickedUp())
114            return;
115
116        // If the pickup has transited to used.
117        if (this->isUsed())
118        {
119            // If its durationType is continuous, we set a Timer to be reminded, when the time has run out.
120            if(this->isContinuous())
121            {
122                if(!this->durationTimer_.isActive() && this->durationTimer_.getRemainingTime() > 0.0f)
123                {
124                    this->durationTimer_.unpauseTimer();
125                }
126                else
127                {
128                    this->durationTimer_.setTimer(this->getDuration(), false, createExecutor(createFunctor(&InvisiblePickup::pickupTimerCallback, this)));
129                }
130            }
131
132            this->setInvisible(true);
133
134        }
135        else
136        {
137            this->setInvisible(false);
138
139            // We destroy the pickup if either, the pickup has activationType immediate and durationType once or it has durationType continuous and the duration was exceeded.
140            if((!this->isContinuous() && this->isImmediate()) || (this->isContinuous() && !this->durationTimer_.isActive() && this->durationTimer_.getRemainingTime() == this->getDuration()))
141            {
142                this->Pickupable::destroy();
143            }
144            // We pause the Timer if the pickup is continuous and the duration is not yet exceeded,
145            else if(this->isContinuous() && this->durationTimer_.isActive())
146            {
147                this->durationTimer_.pauseTimer();
148            }
149        }
150    }
151
152    /**
153    @brief
154        Creates a duplicate of the input OrxonoxClass.
155    @param item
156        A pointer to the Orxonox class.
157    */
158    void InvisiblePickup::clone(OrxonoxClass*& item)
159    {
160        if(item == NULL)
161            item = new InvisiblePickup(this);
162
163        SUPER(InvisiblePickup, clone, item);
164
165        InvisiblePickup* pickup = dynamic_cast<InvisiblePickup*>(item);
166        pickup->setDuration(this->getDuration());
167        pickup->initializeIdentifier();
168    }
169
170    /**
171    @brief
172        Sets the invisibility.
173    @param invisibility
174        The invisibility.
175    */
176    bool InvisiblePickup::setInvisible(bool invisibility)
177    {
178        Pawn* pawn = this->carrierToPawnHelper();
179        if(pawn == NULL)
180            return false;
181
182        pawn->setVisible(!invisibility);
183        pawn->setRadarVisibility(!invisibility);
184
185// Test to change Material at runtime!
186
187//      Ogre::MaterialPtr mat = this->mesh_.getEntity()->getSubEntity(0)->getMaterial();
188//      mat->setDiffuse(0.4, 0.3, 0.1, 0.1);
189//      mat->setAmbient(0.3, 0.7, 0.8);
190//      mat->setSpecular(0.5, 0.5, 0.5, 0.1);
191//      Ogre::SceneBlendType sbt = Ogre::SBT_ADD;
192//
193//      mat->setSceneBlending(sbt);
194
195        return true;
196    }
197
198    /**
199    @brief
200        Helper to transform the PickupCarrier to a Pawn, and throw an error message if the conversion fails.
201    @return
202        A pointer to the Pawn, or NULL if the conversion failed.
203    */
204    Pawn* InvisiblePickup::carrierToPawnHelper(void)
205    {
206        PickupCarrier* carrier = this->getCarrier();
207        Pawn* pawn = dynamic_cast<Pawn*>(carrier);
208
209        if(pawn == NULL)
210        {
211            COUT(1) << "Invalid PickupCarrier in InvisiblePickup." << std::endl;
212        }
213        return pawn;
214    }
215
216    /**
217    @brief
218        Sets the time the InvisibilityPickup will last.
219    @param duration
220        The duration in seconds.
221    */
222    void InvisiblePickup::setDuration(float duration)
223    {
224        if(duration >= 0.0f)
225        {
226            this->duration_ = duration;
227        }
228        else
229        {
230            COUT(1) << "Invalid duration in InvisiblePickup." << std::endl;
231            this->duration_ = 0.0f;
232        }
233    }
234
235    /**
236    @brief
237        Helper method. Is called by the Timer as soon as it expires.
238    */
239    void InvisiblePickup::pickupTimerCallback(void)
240    {
241        this->setUsed(false);
242    }
243
244}
Note: See TracBrowser for help on using the repository browser.