Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/modules/pickup/PickupRepresentation.cc @ 6711

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

Merged pickup4 branch back to trunk.

File size: 6.2 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 *      Damian 'Mozork' Frick
24 *   Co-authors:
25 *      ...
26 *
27*/
28
29/**
30    @file PickupRepresentation.cc
31    @brief Implementation of the PickupRepresentation class.
32*/
33
34#include "PickupRepresentation.h"
35
36#include "core/CoreIncludes.h"
37#include "graphics/Billboard.h"
38#include "util/StringUtils.h"
39#include "PickupManager.h"
40
41namespace orxonox
42{
43   
44    CreateFactory(PickupRepresentation);
45   
46    /**
47    @brief
48        Constructor. Registers the object and initializes its member variables.
49        This is primarily for use of the PickupManager in creating a default PickupRepresentation.
50    */
51    PickupRepresentation::PickupRepresentation() : BaseObject(NULL), spawnerRepresentation_(NULL)
52    {
53        RegisterObject(PickupRepresentation);
54       
55        this->initialize();
56    }
57   
58    /**
59    @brief
60        Default Constructor. Registers the object and initializes its member variables.
61    */
62    PickupRepresentation::PickupRepresentation(BaseObject* creator) : BaseObject(creator), spawnerRepresentation_(NULL)
63    {
64        RegisterObject(PickupRepresentation);
65       
66        this->initialize();
67    }
68   
69    /**
70    @brief
71        Destructor.
72    */
73    PickupRepresentation::~PickupRepresentation()
74    {
75        if(this->spawnerRepresentation_ != NULL)
76            this->spawnerRepresentation_->destroy();
77    }
78   
79    /**
80    @brief
81        Initializes the member variables of this PickupRepresentation.
82    */
83    void PickupRepresentation::initialize(void)
84    {
85        this->description_ = "This is a pickup.";
86        this->name_ = "Pickup";
87        this->spawnerTemplate_ = "";
88        this->inventoryRepresentation_ = "Default";
89        this->pickup_ = NULL;
90    }
91   
92    /**
93    @brief
94        Method for creating a PickupRepresentation object through XML.
95    */
96    void PickupRepresentation::XMLPort(Element& xmlelement, XMLPort::Mode mode)
97    {
98        SUPER(PickupRepresentation, XMLPort, xmlelement, mode);
99       
100        XMLPortParam(PickupRepresentation, "pickupName", setPickupName, getPickupName, xmlelement, mode);
101        XMLPortParam(PickupRepresentation, "pickupDescription", setPickupDescription, getPickupDescription, xmlelement, mode);
102        XMLPortParam(PickupRepresentation, "spawnerTemplate", setSpawnerTemplate, getSpawnerTemplate, xmlelement, mode);
103        XMLPortParam(PickupRepresentation, "inventoryRepresentation", setInventoryRepresentation, getInventoryRepresentation, xmlelement, mode);
104        XMLPortObject(PickupRepresentation, Pickupable, "pickup", setPickup, getPickup, xmlelement, mode);
105        XMLPortObject(PickupRepresentation, StaticEntity, "spawner-representation", setSpawnerRepresentation, getSpawnerRepresentationIndex, xmlelement, mode);
106       
107        PickupManager::getInstance().registerRepresentation(this->pickup_->getPickupIdentifier(), this); //!< Registers the PickupRepresentation with the PickupManager through the PickupIdentifier of the Pickupable it represents.
108       
109        if(this->spawnerRepresentation_ != NULL)
110            this->spawnerRepresentation_->setVisible(false);
111       
112        COUT(4) << "PickupRepresentation created: name: '" << this->name_ << "', description: '" << this->description_ << "', spawnerTemplate: '" << this->spawnerTemplate_ << "'." << std::endl;
113    }
114   
115    /**
116    @brief
117        Get a spawnerRepresentation for a specific PickupSpawner.
118    @param spawner
119        A pointer to the PickupSpawner.
120    @return
121        Returns a pointer to the StaticEntity.
122    */
123    StaticEntity* PickupRepresentation::getSpawnerRepresentation(PickupSpawner* spawner)
124    {
125        if(this->spawnerRepresentation_ == NULL)
126        {
127            COUT(4) << "PickupRepresentation: No spawner representation found." << std::endl;
128            if(this->spawnerTemplate_ == BLANKSTRING)
129            {
130                COUT(4) << "PickupRepresentation: Spawner template is empty." << std::endl;
131                //!< If neither spawnerRepresentation nor spawnerTemplate was specified
132                return this->getDefaultSpawnerRepresentation(spawner);
133            }
134            this->addTemplate(this->spawnerTemplate_);
135        }
136       
137        StaticEntity* representation = this->spawnerRepresentation_;
138        representation->setVisible(true);
139       
140        this->addTemplate(this->spawnerTemplate_);
141        this->spawnerRepresentation_->setVisible(false);
142       
143        return representation;
144    }
145   
146    /**
147    @brief
148        Get the default spawnerRepresentation for a specific PickupSpawner.
149        Helper method of internal use.
150    @param spawner
151        A pointer to the PickupSpawner.
152    @return
153        Returns a pointer to the StaticEntity.
154    */
155    //TODO: Possibility to define default representation through XML.
156    StaticEntity* PickupRepresentation::getDefaultSpawnerRepresentation(PickupSpawner* spawner)
157    {
158        StaticEntity* representation = new StaticEntity(spawner);
159        Billboard* sphere = new Billboard(spawner);
160        sphere->setColour(ColourValue(0.95f, 0.85f, 0.27f));
161        sphere->setMaterial("Sphere2");
162        sphere->setScale(0.1f);
163        Billboard* icon = new Billboard(spawner);
164        icon->setColour(ColourValue(0.89f, 0.79f, 0.08f));
165        icon->setMaterial("Asterix");
166        icon->setScale(0.5);
167        sphere->attach(icon);
168        representation->attach(sphere);
169        return representation;
170    }
171   
172}
Note: See TracBrowser for help on using the repository browser.