- Timestamp:
- Apr 28, 2016, 4:08:07 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/plehmannFS16/src/orxonox/controllers/NewScriptController.h
r11172 r11178 31 31 32 32 #include "DebugTask.h" 33 #include "stringOutTask.h" 33 34 #include "Task.h" 34 35 #include "OrxonoxPrereqs.h" /* die ganzen tolua, kopiert aus Dock.h*/ … … 57 58 // LUA interface 58 59 59 void debugOut(float startTime);// tolua_export 60 void debugOut(float startTime);// tolua_export 61 62 void stringOut(float startTime, std::string output);// tolua_export 60 63 61 64 static NewScriptController* getNewScriptController();// tolua_export 62 65 63 66 int getID() { return ctrlid_; }// tolua_export 67 68 void printDebug() {orxout() << "fffff" << endl;} // tolua_export 64 69 65 70 … … 80 85 81 86 // List of events to walk through 82 std::queue<Task*> *taskQueue_;87 std::queue<Task*> taskQueue_; 83 88 84 89 85 90 //List of Tasks currently active 86 std::vector<Task*> *activeTasks_;91 std::vector<Task*> activeTasks_; 87 92 88 93 // Time since the creation of this ScriptController object 89 94 float scTime_; 90 95 91 DebugTask* task_;92 96 93 context* context_; 97 // context of the Controller to create the tasks 98 Context* context_; 94 99 95 100
Note: See TracChangeset
for help on using the changeset viewer.