Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/pickups2/src/orxonox/objects/pickup/ShipEquipmentClasses.h @ 2202

Last change on this file since 2202 was 2136, checked in by landauf, 15 years ago

merged changes from pickups1 to pickups2, not merged (probably) accidentally added files

  • Property svn:eol-style set to native
File size: 1.1 KB
Line 
1
2#ifndef _ShipEquipment_H__
3#define _ShipEquipment_H__
4#include <string>
5#include "SpaceShip.h"
6#include <map>
7
8
9/*
10multimap<std::string, Item*> equipment_;
11equipment_.insert(pair<std::string, Item*>("Weapon", new Item()));*/
12
13
14/*          std::map<std::itemtype, Item*> EQClasses;
15            EQClasses["jacke"] = 0;
16            Item* item = itemMap_["jacke"];
17
18           if (itemMap_["jacke"])
19           if (itemMap_.find("jacke") != itemMap_.end()) */
20namespace orxonox
21{
22    class _OrxonoxExport ShipEquipment
23    {
24        public:
25            void AddItem(Shipitem* toAddItem);
26            void RemoveItem(Shipitem* toRemoveItem);
27            bool CheckifValid(Shipitem* toBeChecked);
28            bool CheckifSpace();
29            void SwitchItem(Permanent* toSwitchItem);
30            string GetNameofPermanent (subItemTypePermanent NametoGet); //holt den Namen des getragenen Items im jeweiligen Slot.
31
32        private:
33            multimap<std::string, ShipItem*> Equipment;
34            multimap<std::string, ShipItem*> Usable;
35            multimap<std::string, ShipItem*> Trunk;
36    };
37}
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52#endif
Note: See TracBrowser for help on using the repository browser.