Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/objecthierarchy/src/orxonox/objects/Trigger.h @ 2019

Last change on this file since 2019 was 2019, checked in by landauf, 16 years ago

many changes, most important: BaseObject takes now a pointer to it's creator which is needed to build a level hierarchy (with different scenes)

  • Property svn:eol-style set to native
File size: 3.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 *      Benjamin Knecht
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#ifndef _Trigger_H__
30#define _Trigger_H__
31
32#include <set>
33#include <queue>
34
35#include "OrxonoxPrereqs.h"
36
37#include "worldentities/PositionableEntity.h"
38#include "tools/BillboardSet.h"
39
40namespace orxonox {
41
42  enum TriggerMode
43  {
44    TM_EventTriggerAND,
45    TM_EventTriggerOR,
46    TM_EventTriggerXOR,
47  };
48
49  class _OrxonoxExport Trigger : public PositionableEntity
50  {
51    public:
52      Trigger(BaseObject* creator);
53      ~Trigger();
54
55      virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
56      virtual void tick(float dt);
57
58      inline bool isActive() const
59        { return bActive_; }
60
61      void addTrigger(Trigger* trig);
62      const Trigger* getTrigger(unsigned int index) const;
63
64      inline TriggerMode getMode() const
65        { return mode_; }
66      inline void setMode(TriggerMode mode)
67        { this->mode_ = mode; }
68      void setMode(const std::string& modeName);
69
70      inline void setInvert(int invert)
71        { bInvertMode_ = invert; }
72      inline void setStayOn(int stayOn)
73        { this->bStayOn_ = (stayOn == 1) ? true : false; }
74      inline void setActivations(int activations)
75        { this->remainingActivations_ = activations; }
76      void setDelay(float delay);
77      bool switchState();
78
79      static void debugFlares(bool bVisible);
80      virtual void changedVisibility();
81
82    private:
83      void init();
84      bool checkAnd();
85      bool checkOr();
86      bool checkXor();
87      void setBillboardColour(ColourValue colour);
88      void storeState();
89
90    protected:
91      inline bool isTriggered() { return this->isTriggered(this->mode_); }
92      virtual bool isTriggered(TriggerMode mode);
93
94    private:
95      std::set<Trigger*> children_;
96      std::queue<std::pair<float,char> > stateChanges_;
97      float remainingTime_;
98      float timeSinceLastEvent_;
99      TriggerMode mode_;
100      bool bActive_;
101      bool bInvertMode_;
102      bool bTriggered_;
103      bool bUpdating_;
104      BillboardSet debugBillboard_;
105      float delay_;
106      int remainingActivations_;
107      bool bStayOn_;
108      char latestState_;
109  };
110
111}
112
113#endif /* _Trigger_H__ */
Note: See TracBrowser for help on using the repository browser.