Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/presentationFS15merge/src/orxonox/controllers/ScriptController.h @ 10614

Last change on this file since 10614 was 10614, checked in by landauf, 8 years ago

merged branch SciptableControllerFS15

  • Property svn:eol-style set to native
File size: 3.9 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 *      ...
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#ifndef _ScriptController_H__
30#define _ScriptController_H__
31
32#include "OrxonoxPrereqs.h"                 /* die ganzen tolua, kopiert aus Dock.h*/
33#include "ArtificialController.h"
34#include "core/EventIncludes.h"
35
36
37
38namespace orxonox  // tolua_export
39{  // tolua_export
40
41    /** Structure to describe a single event */
42    struct event
43    {   
44        /** Instruction for this event */
45        std::string fctName;
46
47        /** Final position we want to be at **/
48        Vector3 v1;
49
50        /** Where we are looking **/
51        Vector3 v2;
52
53        /** The parameters are additionally stored as a set of 6 numerical values **/
54        float a, b, c, d, e, f;
55
56        /** Time span of the event */
57        float duration;
58
59        /** Start point in time of the event */
60        float eventTime;
61    }; 
62
63    class _OrxonoxExport ScriptController // tolua_export
64       : public ArtificialController, public Tickable
65    {  // tolua_export
66        public:
67            ScriptController(Context* context);
68            virtual ~ScriptController() { }
69
70            void takeControl(int ctrlid);
71            void setPlayer(PlayerInfo* player) { this->player_ = player; }
72           
73            virtual void tick(float dt);
74
75            // LUA interface
76            // tolua_begin
77            void eventScheduler(std::string instruction = "", 
78              float x1 = 0, float y1 = 0, float z1 = 0, 
79              float x2 = 0, float y2 = 0, float z2 = 0, 
80              float duration = 0, float executionTime = 0);
81
82            static ScriptController* getScriptController();
83
84            int getID() { return ctrlid_; }
85
86            // tolua_end
87            const Vector3& getPosition();
88
89            void execute(event ev);
90
91        private:
92            /* Information about the player that this ScriptController will
93             * control */
94            /* - Player pointer */
95            PlayerInfo* player_;
96
97            /* - Entity pointer, this is for convenience and will be the same as
98             *   player_->getControllableEntity()
99             */
100            ControllableEntity* entity_;
101
102            /* Controller ID, defaults to 0 and is set using takeControl() */
103            int ctrlid_;
104
105            /* List of events to walk through */
106            std::vector<event> eventList;
107            unsigned int eventno;
108
109            /* Time since the creation of this ScriptController object */
110            float scTime; 
111
112            /* Boolean that specifies whether we're processing an event right
113             * now */
114            bool processing;
115
116            /* Data about the event currently being processed */
117            /* - The event itself */
118            event currentEvent;
119
120            /* - Time this event has been going on for */
121            float eventTime;
122            Vector3 startpos;
123
124            /* Time of the previously scheduled event */
125            float prevEventTime;
126
127            /* - Position to look at during that transition */
128            //Vector3 lookAtPosition;
129
130    };// tolua_export
131} // tolua_export
132
133#endif /* _ScriptController_H__ */
Note: See TracBrowser for help on using the repository browser.