Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/particles2/src/orxonox/weaponsystem/WeaponPack.cc @ 6076

Last change on this file since 6076 was 6076, checked in by scheusso, 14 years ago

some fixes in the weaponsystem and weaponsettings3.oxi

  • Property svn:eol-style set to native
File size: 4.4 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 *      Martin Polak
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#include "WeaponPack.h"
30
31#include "core/CoreIncludes.h"
32#include "core/XMLPort.h"
33
34#include "Weapon.h"
35#include "WeaponSystem.h"
36#include "DefaultWeaponmodeLink.h"
37
38namespace orxonox
39{
40    CreateFactory(WeaponPack);
41
42    WeaponPack::WeaponPack(BaseObject* creator) : BaseObject(creator)
43    {
44        RegisterObject(WeaponPack);
45
46        this->weaponSystem_ = 0;
47    }
48
49    WeaponPack::~WeaponPack()
50    {
51        if (this->isInitialized())
52        {
53            if( this->weaponSystem_ )
54                this->weaponSystem_->removeWeaponPack(this);
55
56            while (!this->weapons_.empty())
57                (*this->weapons_.begin())->destroy();
58
59            for (std::set<DefaultWeaponmodeLink*>::iterator it = this->links_.begin(); it != this->links_.end(); )
60                (*(it++))->destroy();
61        }
62    }
63
64    void WeaponPack::XMLPort(Element& xmlelement, XMLPort::Mode mode)
65    {
66        SUPER(WeaponPack, XMLPort, xmlelement, mode);
67
68        XMLPortObjectExtended(WeaponPack, Weapon, "", addWeapon, getWeapon, xmlelement, mode, false, false);
69        XMLPortObject(WeaponPack, DefaultWeaponmodeLink, "links", addDefaultWeaponmodeLink, getDefaultWeaponmodeLink, xmlelement, mode);
70    }
71
72    void WeaponPack::fire(unsigned int weaponmode)
73    {
74        for (std::vector<Weapon *>::iterator it = this->weapons_.begin(); it != this->weapons_.end(); ++it)
75            (*it)->fire(weaponmode);
76    }
77
78    void WeaponPack::reload()
79    {
80        for (std::vector<Weapon *>::iterator it = this->weapons_.begin(); it != this->weapons_.end(); ++it)
81            (*it)->reload();
82    }
83
84    void WeaponPack::addWeapon(Weapon * weapon)
85    {
86        if (!weapon)
87            return;
88
89        this->weapons_.push_back(weapon);
90        weapon->setWeaponPack(this);
91    }
92
93    void WeaponPack::removeWeapon(Weapon * weapon)
94    {
95        if (!weapon)
96            return;
97
98        assert( std::find(this->weapons_.begin(), this->weapons_.end(), weapon)!=this->weapons_.end() );
99        this->weapons_.erase( std::find(this->weapons_.begin(), this->weapons_.end(), weapon) );
100        weapon->setWeaponPack(0);
101    }
102
103    Weapon * WeaponPack::getWeapon(unsigned int index) const
104    {
105        unsigned int i = 0;
106
107        for (std::vector<Weapon *>::const_iterator it = this->weapons_.begin(); it != this->weapons_.end(); ++it)
108        {
109            if (i == index)
110                return (*it);
111            ++i;
112        }
113
114        return 0;
115    }
116
117    void WeaponPack::addDefaultWeaponmodeLink(DefaultWeaponmodeLink* link)
118    {
119        this->links_.insert(link);
120    }
121
122    DefaultWeaponmodeLink* WeaponPack::getDefaultWeaponmodeLink(unsigned int index) const
123    {
124        unsigned int i = 0;
125        for (std::set<DefaultWeaponmodeLink*>::const_iterator it = this->links_.begin(); it != this->links_.end(); ++it)
126        {
127            if (i == index)
128                return (*it);
129
130            ++i;
131        }
132        return 0;
133    }
134
135    unsigned int WeaponPack::getDesiredWeaponmode(unsigned int firemode) const
136    {
137        for (std::set<DefaultWeaponmodeLink*>::const_iterator it = this->links_.begin(); it != this->links_.end(); ++it)
138            if ((*it)->getFiremode() == firemode)
139                return (*it)->getWeaponmode();
140
141        return WeaponSystem::WEAPON_MODE_UNASSIGNED;
142    }
143
144    void WeaponPack::notifyWeapons()
145    {
146        for (std::vector<Weapon *>::const_iterator it = this->weapons_.begin(); it != this->weapons_.end(); ++it)
147            (*it)->setWeaponPack(this);
148    }
149}
Note: See TracBrowser for help on using the repository browser.