Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/weapon2/src/orxonox/objects/weaponSystem/WeaponSystem.cc @ 2337

Last change on this file since 2337 was 2337, checked in by polakma, 15 years ago

fixed parentWeaponSystem-Pointer for all WeaponPacks and its Weapons

  • Property svn:eol-style set to native
  • Property svn:mergeinfo set to (toggle deleted branches)
    /code/branches/ceguilua/src/orxonox/objects/WeaponSystem.cc1802-1808
    /code/branches/core3/src/orxonox/objects/WeaponSystem.cc1572-1739
    /code/branches/gcc43/src/orxonox/objects/WeaponSystem.cc1580
    /code/branches/gui/src/orxonox/objects/WeaponSystem.cc1635-1723
    /code/branches/input/src/orxonox/objects/WeaponSystem.cc1629-1636
    /code/branches/objecthierarchy/src/orxonox/objects/WeaponSystem.cc1911-2085,​2100
    /code/branches/pickups/src/orxonox/objects/WeaponSystem.cc1926-2086
    /code/branches/questsystem/src/orxonox/objects/WeaponSystem.cc1894-2088
    /code/branches/script_trigger/src/orxonox/objects/WeaponSystem.cc1295-1953,​1955
    /code/branches/weapon/src/orxonox/objects/WeaponSystem.cc1925-2094
File size: 4.0 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 "OrxonoxStableHeaders.h"
30
31#include <vector>
32
33#include "core/CoreIncludes.h"
34#include "core/XMLPort.h"
35#include "util/Debug.h"
36
37#include "WeaponSystem.h"
38
39
40/* WEAPONSYSTEM
41 * creates the WeaponSystem and the ability to use weapons and munition
42 * loads the weapon the whole weaponSystem setting from an xml file
43 *
44 */
45
46namespace orxonox
47{
48    CreateFactory(WeaponSystem);
49
50    WeaponSystem::WeaponSystem(BaseObject* creator) : BaseObject(creator)
51    {
52        RegisterObject(WeaponSystem);
53
54        this->activeWeaponSet_ = 0;
55        this->parentPawn_ = 0;
56    }
57
58    WeaponSystem::~WeaponSystem()
59    {
60    }
61
62    void WeaponSystem::attachWeaponPack(WeaponPack *wPack, unsigned int firemode)
63    {
64        wPack->setParentWeaponSystem(this);
65        if (firemode < this->weaponSets_.size())
66            this->weaponSets_[firemode]->attachWeaponPack(wPack);
67        this->weaponPacks_.push_back(wPack);
68    }
69
70    void WeaponSystem::attachWeaponSlot(WeaponSlot *wSlot)
71    {
72        wSlot->setParentWeaponSystem(this);
73        this->weaponSlots_.push_back(wSlot);
74    }
75
76    void WeaponSystem::attachWeaponSet(WeaponSet *wSet)
77    {
78        wSet->setParentWeaponSystem(this);
79        this->weaponSets_.push_back(wSet);
80    }
81
82    void WeaponSystem::setNewMunition(std::string munitionType, Munition * munitionToAdd)
83    {
84        this->munitionSet_[munitionType] = munitionToAdd;
85    }
86
87    //returns the Pointer to the munitionType
88    Munition * WeaponSystem::getMunitionType(std::string munitionType)
89    {
90        std::map<std::string, Munition *>::const_iterator it = this->munitionSet_.find(munitionType);
91        if (it != this->munitionSet_.end())
92            return it->second;
93        else
94            return 0;
95    }
96
97
98/*
99    //the first weaponSet is at n=0
100    void WeaponSystem::setActiveWeaponSet(unsigned int n)
101    {
102        if (n < this->weaponSets_.size())
103            this->activeWeaponSet_ = this->weaponSets_[n];
104        else
105            this->activeWeaponSet_ = this->weaponSets_[0];
106    }
107*/
108
109
110    //n is the n'th weaponSet, starting with zero
111    //SpaceShip.cc only needs to have the keybinding to a specific Set-number n
112    void WeaponSystem::fire(WeaponMode::Enum n)
113    {
114COUT(0) << "WeaponSystem::fire" << std::endl;
115        if (n < (int)this->weaponSets_.size())
116COUT(0) << "WeaponSystem::fire - after if" << std::endl;
117            this->weaponSets_[n]->fire();
118    }
119
120
121    WeaponSet * WeaponSystem::getWeaponSetPointer(unsigned int n)
122    {
123        if (n < this->weaponSets_.size())
124            return this->weaponSets_[n];
125        else
126            return 0;
127    }
128
129    WeaponSlot * WeaponSystem::getWeaponSlotPointer(unsigned int n)
130    {
131        if (n < this->weaponSlots_.size())
132            return this->weaponSlots_[n];
133        else
134            return 0;
135    }
136
137    WeaponPack * WeaponSystem::getWeaponPackPointer(unsigned int n)
138    {
139        if (n < this->weaponPacks_.size())
140            return this->weaponPacks_[n];
141        else
142            return 0;
143    }
144
145    void WeaponSystem::XMLPort(Element& xmlelement, XMLPort::Mode mode)
146    {
147
148    }
149
150}
Note: See TracBrowser for help on using the repository browser.