Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/pickup3/src/modules/pickup/DroppedPickup.cc @ 6475

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

Additional documentation, code niceifying and potential bug fixing. Also: Renamed DroppedItem to DroppedPickup.

  • Property svn:eol-style set to native
File size: 2.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 *      Daniel 'Huty' Haggenmueller
24 *   Co-authors:
25 *      Damian 'Mozork' Frick
26 *
27 */
28
29/**
30    @file
31    @brief Implementation of the DroppedPickup class.
32*/
33
34#include "DroppedPickup.h"
35
36#include "core/CoreIncludes.h"
37#include "interfaces/Pickupable.h"
38#include "graphics/Model.h"
39
40namespace orxonox
41{
42    /**
43    @brief
44        Default constructor. Registers object and sets default values.
45    */
46    DroppedPickup::DroppedPickup(BaseObject* creator) : PickupSpawner(creator)
47    {
48        RegisterObject(DroppedPickup);
49       
50        this->initialize();
51    }
52
53    /**
54    @brief
55        Constructor. Registers the object and sets values.
56    @param creator
57        The creator of the DroppedPickup.
58    @param pickup
59        The Pickupable that was dropped.
60    @param position
61        The position at which the DroppedPickup should be created.
62    @param triggerDistance
63        The distance at which the PickupSpawner triggers. Default is 10.
64    */
65    DroppedPickup::DroppedPickup(BaseObject* creator, Pickupable* pickup, const Vector3& position, float triggerDistance) : PickupSpawner(creator, pickup, triggerDistance, 0, 1)
66    {   
67        RegisterObject(DroppedPickup);
68       
69        this->initialize();
70       
71        this->setPosition(position);
72    }
73
74    /**
75    @brief
76        Destructor.
77    */
78    DroppedPickup::~DroppedPickup()
79    {
80        if(this->gotPickedUp_ && this->pickup_ != NULL)
81        {
82            this->pickup_ = NULL;
83        }
84    }
85   
86    /**
87    @brief
88        Initializes the member variables of the object.
89    */
90    void DroppedPickup::initialize(void)
91    {
92        this->gotPickedUp_ = false;
93    }
94
95    /**
96    @brief
97        Creates the Pickupable that is going to get picked up.
98        In the case of the DroppedItem it is the one and only Pickupable that was dropped. No additional Pickupables of the same type are created.
99    */
100    Pickupable* DroppedPickup::getPickup(void)
101    {
102        return this->pickup_;
103    }
104
105}
Note: See TracBrowser for help on using the repository browser.