Orxonox  0.0.5 Codename: Arcturus
EventTrigger.h
Go to the documentation of this file.
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 
35 #ifndef _EventTrigger_H__
36 #define _EventTrigger_H__
37 
38 #include "objects/ObjectsPrereqs.h"
39 
40 #include "Trigger.h"
41 
42 namespace orxonox
43 {
44 
70  {
71  public:
72  EventTrigger(Context* context); // Constructor. Registers and initializes the object.
73  virtual ~EventTrigger();
74 
75  virtual void XMLEventPort(Element& xmlelement, XMLPort::Mode mode) override; // Creates an event port.
76 
82  inline void trigger(bool bTriggered)
83  { this->bEventTriggered_ = bTriggered; this->tick(0); }
84 
85  protected:
86  virtual bool isTriggered(TriggerMode mode) override; // Check whether the EventTrigger should be triggered.
87 
88  private:
90  };
91 }
92 
93 #endif /* _EventTrigger_H__ */
#define _ObjectsExport
Definition: ObjectsPrereqs.h:60
The EventTrigger class provides a way to have a Trigger triggered by any kinds of Events...
Definition: EventTrigger.h:69
TriggerMode
The different modes the trigger can be in.
Definition: TriggerBase.h:54
Definition of the Trigger class.
xmlelement
Definition: Super.h:519
A Trigger is an object that can either be active or inactive, with a specified behavior how to switch...
Definition: Trigger.h:79
Die Wagnis Klasse hat die folgenden Aufgaben:
Definition: ApplicationPaths.cc:66
Mode
Definition: CorePrereqs.h:102
Definition: Context.h:45
void trigger(bool bTriggered)
Method that is called when a new event comes in.
Definition: EventTrigger.h:82
bool bEventTriggered_
Boolean to keep track of what the state of the last event was.
Definition: EventTrigger.h:89
Shared library macros, enums, constants and forward declarations for the objects module ...