Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/modules/objects/Attacher.cc @ 11071

Last change on this file since 11071 was 11071, checked in by landauf, 8 years ago

merged branch cpp11_v3 back to trunk

  • Property svn:eol-style set to native
File size: 3.2 KB
RevLine 
[3077]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 *      Fabian 'x3n' Landau
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#include "Attacher.h"
30
31#include "core/CoreIncludes.h"
32#include "core/XMLPort.h"
33
34namespace orxonox
35{
[9667]36    RegisterClass(Attacher);
[3077]37
[9667]38    Attacher::Attacher(Context* context) : StaticEntity(context)
[3077]39    {
40        RegisterObject(Attacher);
41
[11071]42        this->target_ = nullptr;
[3077]43    }
44
45    void Attacher::XMLPort(Element& xmlelement, XMLPort::Mode mode)
46    {
47        SUPER(Attacher, XMLPort, xmlelement, mode);
48
49        XMLPortParam(Attacher, "target", setTarget, getTarget, xmlelement, mode);
50        XMLPortObject(Attacher, WorldEntity, "", addObject, getObject, xmlelement, mode);
51    }
52
53    void Attacher::processEvent(Event& event)
54    {
[5929]55        if (this->target_)
56            this->target_->processEvent(event);
[3077]57    }
58
59    void Attacher::changedActivity()
60    {
61        SUPER(Attacher, changedActivity);
62
[11071]63        for (WorldEntity* object : this->objects_)
64            object->setActive(this->isActive());
[3077]65    }
66
67    void Attacher::changedVisibility()
68    {
69        SUPER(Attacher, changedVisibility);
70
[11071]71        for (WorldEntity* object : this->objects_)
72            object->setVisible(this->isVisible());
[3077]73    }
74
75    void Attacher::addObject(WorldEntity* object)
76    {
77        this->objects_.push_back(object);
78
79        this->attach(object);
80    }
81
82    WorldEntity* Attacher::getObject(unsigned int index) const
83    {
84        unsigned int i = 0;
[11071]85        for (WorldEntity* object : this->objects_)
[3077]86        {
87            if (i == index)
[11071]88                return object;
[3077]89
90            ++i;
91        }
[11071]92        return nullptr;
[3077]93    }
94
95    void Attacher::setTarget(const std::string& target)
96    {
97        this->targetname_ = target;
[11071]98        this->target_ = nullptr;
[3077]99
[6417]100        if (this->targetname_.empty())
[3077]101            return;
102
[11071]103        for (WorldEntity* worldEntity : ObjectList<WorldEntity>())
[5929]104        {
[11071]105            if (worldEntity->getName() == this->targetname_)
[5929]106            {
[11071]107                this->target_ = worldEntity;
108                this->attachToParent(worldEntity);
[5929]109            }
110        }
[3077]111    }
112
113    void Attacher::loadedNewXMLName(BaseObject* object)
114    {
[6417]115        if (this->target_ || this->targetname_.empty())
[3077]116            return;
117
[3325]118        WorldEntity* entity = orxonox_cast<WorldEntity*>(object);
[3077]119        if (entity && entity->getName() == this->targetname_)
120        {
121            this->target_ = entity;
122            this->attachToParent(entity);
123        }
124    }
125}
Note: See TracBrowser for help on using the repository browser.