Changeset 10045 for code/branches/ScriptableController/src/orxonox
- Timestamp:
- May 6, 2014, 4:02:07 PM (11 years ago)
- Location:
- code/branches/ScriptableController/src/orxonox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/ScriptableController/src/orxonox/CMakeLists.txt
r9348 r10045 64 64 infos/PlayerInfo.h 65 65 sound/SoundManager.h 66 controllers/ScriptController.h 66 67 PCH_FILE 67 68 OrxonoxPrecompiledHeaders.h -
code/branches/ScriptableController/src/orxonox/controllers/ScriptController.cc
r10038 r10045 30 30 #include "core/CoreIncludes.h" 31 31 #include "worldentities/ControllableEntity.h" 32 #include "core/LuaState.h" 32 33 #include <cmath> 33 34 … … 64 65 } 65 66 67 ScriptController* ScriptController::getScriptController() 68 { 69 orxout() << "Great success!" << std::endl; 70 for(ObjectList<ScriptController>::iterator it = 71 ObjectList<ScriptController>::begin(); 72 it != ObjectList<ScriptController>::end(); ++it) 73 { 74 // TODO: do some selection here. Currently just returns the first one 75 return *it; 76 77 } 78 return NULL; 79 } 80 81 82 66 83 void ScriptController::moveToPosition_beta(float x, float y, float z ) 67 84 { -
code/branches/ScriptableController/src/orxonox/controllers/ScriptController.h
r10034 r10045 59 59 60 60 61 const Vector3& getPosition();61 static ScriptController* getScriptController(); 62 62 63 63 /* virtual void tick(float dt);*/ 64 64 65 65 // tolua_end 66 const Vector3& getPosition(); 66 67 67 68 private:
Note: See TracChangeset
for help on using the changeset viewer.