Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/orxonox/interfaces/PickupCarrier.h @ 6551

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

Removed some TODO's. Finished up documenting pickup module.

File size: 7.4 KB
RevLine 
[6405]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 *      Damian 'Mozork' Frick
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29/**
[6540]30    @file PickupCarrier.h
[6405]31    @brief Definition of the PickupCarrier class.
32*/
33
34#ifndef _PickupCarrier_H__
35#define _PickupCarrier_H__
36
37#include "OrxonoxPrereqs.h"
38
[6474]39#include <list>
[6405]40#include <set>
[6474]41#include "Pickupable.h"
[6512]42#include "core/Identifier.h"
[6533]43#include "core/WeakPtr.h"
[6405]44
[6474]45#include "core/OrxonoxClass.h"
46
[6405]47namespace orxonox
48{
[6521]49
[6540]50    //! Pre-declarations.
[6512]51    class Pickup;
52    class HealthPickup;
[6518]53    class MetaPickup;
[6405]54
[6474]55    /**
56    @brief
57        The PickupCarrier interface provides the means, for any class implementing it, to possess Pickupables.
58    @author
59        Damian 'Mozork' Frick
60    */
[6466]61    class _OrxonoxExport PickupCarrier : virtual public OrxonoxClass
[6405]62    {
[6540]63         //! So that the different Pickupables have full access to their PickupCarrier.
64        friend class Pickupable;
[6512]65        friend class Pickup;
66        friend class HealthPickup;
[6518]67        friend class MetaPickup;
[6405]68       
69        public:
[6474]70            PickupCarrier(); //!< Constructor.
71            virtual ~PickupCarrier(); //!< Destructor.
[6466]72           
[6474]73            /**
74            @brief Can be called to pick up a Pickupable.
75            @param pickup A pointer to the Pickupable.
76            @return Returns true if the Pickupable was picked up, false if not.
77            */
[6475]78            bool pickup(Pickupable* pickup)
[6466]79                {
80                    bool pickedUp = this->pickups_.insert(pickup).second;
[6474]81                    if(pickedUp)
[6512]82                    {
83                        COUT(4) << "Picked up Pickupable " << pickup->getIdentifier()->getName() << "(&" << pickup << ")." << std::endl;
[6474]84                        pickup->pickedUp(this);
[6512]85                    }
[6466]86                    return pickedUp;
87                }
88               
[6474]89            /**
90            @brief Can be called to drop a Pickupable.
91            @param pickup A pointer to the Pickupable.
[6477]92            @param drop If the Pickupable should just be removed from the PickupCarrier without further action, this can be set to false. true is default.
[6474]93            @return Returns true if the Pickupable has been dropped, false if not.
94            */
[6477]95            bool drop(Pickupable* pickup, bool drop = true)
[6466]96                { 
[6512]97                    bool dropped = this->pickups_.erase(pickup) == 1;
98                    if(dropped && drop)
99                    {
100                        COUT(4) << "Dropping Pickupable " << pickup->getIdentifier()->getName() << "(&" << pickup << ")." << std::endl;
101                        pickup->dropped();
102                    }
103                    return dropped;
[6466]104                }
105               
[6475]106            /**
107            @brief Can be used to check whether the PickupCarrier or a child of his is a target ot the input Pickupable.
108            @param pickup A pointer to the Pickupable.
109            @return Returns true if the PickupCarrier or one of its children is a target, false if not.
110            */
111            bool isTarget(const Pickupable* pickup)
[6466]112                {
[6475]113                    if(pickup->isTarget(this)) //!< If the PickupCarrier itself is a target.
[6466]114                        return true;
[6475]115                   
116                    //! Go recursively through all children to check whether they are a target.
117                    std::list<PickupCarrier*>* children = this->getCarrierChildren();
[6466]118                    for(std::list<PickupCarrier*>::const_iterator it = children->begin(); it != children->end(); it++)
119                    {
120                        if((*it)->isTarget(pickup))
121                            return true;
122                    }
123                   
[6475]124                    children->clear();
125                    delete children;
126                   
[6466]127                    return false;
128                }
[6475]129               
130            /**
131            @brief Get the carrier that is both a child of the PickupCarrier (or the PickupCarrier itself) and a target of the input Pickupable.
132            @param pickup A pounter to the Pickupable.
133            @return Returns a pointer to the PickupCarrier that is the target of the input Pickupable.
134            */
135            PickupCarrier* getTarget(const Pickupable* pickup)
136                {
137                    if(!this->isTarget(pickup))
138                        return NULL;
139                   
140                    if(pickup->isTarget(this)) //!< If the PickupCarrier itself is a target.
141                        return this;
142                   
143                    //! Go recursively through all children to check whether they are the target.
144                    std::list<PickupCarrier*>* children = this->getCarrierChildren();
145                    for(std::list<PickupCarrier*>::iterator it = children->begin(); it != children->end(); it++)
146                    {
147                        if(pickup->isTarget(*it))
148                            return *it;
149                    }
150                   
151                    children->clear();
152                    delete children;
153                   
154                    return NULL;
155                }
[6540]156               
157            /**
158            @brief Get the (absolute) position of the PickupCarrier.
159                   This method needs to be implemented by any direct derivative class of PickupCarrier.
160            @return Returns the position as a Vector3.
161            */
162            virtual const Vector3& getCarrierPosition(void) = 0;
[6466]163           
[6475]164        protected:       
165            /**
166            @brief Get all direct children of this PickupSpawner.
167                   This method needs to be implemented by any direct derivative class of PickupCarrier.
[6540]168                   The returned list will be deleted by the methods calling this function.
[6475]169            @return Returns a pointer to a list of all direct children.
170            */
171            virtual std::list<PickupCarrier*>* getCarrierChildren(void) = 0;
172            /**
173            @brief Get the parent of this PickupSpawner
174                   This method needs to be implemented by any direct derivative class of PickupCarrier.
175            @return Returns a pointer to the parent.
176            */
177            virtual PickupCarrier* getCarrierParent(void) = 0;
[6512]178                           
[6521]179            /**
180            @brief Get all Pickupables this PickupCarrier has.
181            @return  Returns the set of all Pickupables this PickupCarrier has.
182            */
[6512]183            std::set<Pickupable*>& getPickups(void)
184                { return this->pickups_; }
[6405]185       
186        private:
[6475]187            std::set<Pickupable*> pickups_; //!< The list of Pickupables carried by this PickupCarrier.
[6405]188           
189    };
190}
191
192#endif /* _PickupCarrier_H__ */
Note: See TracBrowser for help on using the repository browser.