1 | /* |
---|
2 | orxonox - the future of 3D-vertical-scrollers |
---|
3 | |
---|
4 | Copyright (C) 2004 orx |
---|
5 | |
---|
6 | This program is free software; you can redistribute it and/or modify |
---|
7 | it under the terms of the GNU General Public License as published by |
---|
8 | the Free Software Foundation; either version 2, or (at your option) |
---|
9 | any later version. |
---|
10 | |
---|
11 | ### File Specific: |
---|
12 | main-programmer: Silvan Nellen |
---|
13 | co-programmer: ... |
---|
14 | */ |
---|
15 | |
---|
16 | |
---|
17 | #include "script_trigger.h" |
---|
18 | #include "class_list.h" |
---|
19 | #include "script.h" |
---|
20 | |
---|
21 | #include "state.h" |
---|
22 | |
---|
23 | |
---|
24 | CREATE_SCRIPTABLE_CLASS(ScriptTrigger, CL_SCRIPT_TRIGGER, |
---|
25 | addMethod("setAbsCoor", ExecutorLua3<PNode,float,float,float>(&PNode::setAbsCoor)) |
---|
26 | ->addMethod("getAbsCoorX", ExecutorLua0ret<PNode, float>(&PNode::getAbsCoorX)) |
---|
27 | ->addMethod("getAbsCoorY", ExecutorLua0ret<PNode, float>(&PNode::getAbsCoorY)) |
---|
28 | ->addMethod("getAbsCoorZ", ExecutorLua0ret<PNode, float>(&PNode::getAbsCoorZ)) |
---|
29 | ); |
---|
30 | |
---|
31 | |
---|
32 | /** |
---|
33 | * Constructs a new ScriptTrigger. |
---|
34 | * @param root the xml element to load the parameters from. |
---|
35 | * |
---|
36 | */ |
---|
37 | ScriptTrigger::ScriptTrigger(const TiXmlElement* root) |
---|
38 | { |
---|
39 | this->setClassID(CL_SCRIPT_TRIGGER, "ScriptTrigger"); |
---|
40 | this->toList(OM_COMMON); |
---|
41 | |
---|
42 | returnCount = 1; |
---|
43 | scriptFinished = false; |
---|
44 | doDebugDraw = false; |
---|
45 | invert = false; |
---|
46 | scriptCalled = false; |
---|
47 | scriptIsOk = false; |
---|
48 | triggerLasts = true; |
---|
49 | addToScript = false; |
---|
50 | |
---|
51 | if(root != NULL) |
---|
52 | { |
---|
53 | |
---|
54 | loadParams(root); |
---|
55 | |
---|
56 | if(addToScript && scriptIsOk) |
---|
57 | { |
---|
58 | script->addObject( "ScriptTrigger", this->getName()); |
---|
59 | } |
---|
60 | |
---|
61 | } |
---|
62 | } |
---|
63 | |
---|
64 | /** |
---|
65 | * Deletes the ScriptTrigger. |
---|
66 | * |
---|
67 | */ |
---|
68 | ScriptTrigger::~ScriptTrigger() |
---|
69 | { |
---|
70 | |
---|
71 | } |
---|
72 | |
---|
73 | /** |
---|
74 | * Reads the values from the tml element and sets them. |
---|
75 | * @param root the xml element to load the parameters from. |
---|
76 | * |
---|
77 | */ |
---|
78 | void ScriptTrigger::loadParams(const TiXmlElement* root) |
---|
79 | { |
---|
80 | |
---|
81 | WorldEntity ::loadParams(root); |
---|
82 | |
---|
83 | LoadParam(root, "file", this, ScriptTrigger, setScript) |
---|
84 | .describe("the fileName of the script, that should be triggered by this script trigger") |
---|
85 | .defaultValues(""); |
---|
86 | LoadParam(root, "function", this, ScriptTrigger, setFunction) |
---|
87 | .describe("the function of the script, that should be triggered by this script trigger") |
---|
88 | .defaultValues(""); |
---|
89 | LoadParam(root, "abs-coor", this, ScriptTrigger, setAbsCoor) |
---|
90 | .describe("where this script trigger should be located") |
---|
91 | .defaultValues(""); |
---|
92 | LoadParam(root, "radius", this, ScriptTrigger, setRadius) |
---|
93 | .describe("the fileName of the script, that should be triggered by this script trigger") |
---|
94 | .defaultValues(0); |
---|
95 | LoadParam(root, "delay", this, ScriptTrigger, setDelay) |
---|
96 | .describe("the delay after which the funtion sould be triggered") |
---|
97 | .defaultValues(0); |
---|
98 | LoadParam(root, "worldentity", this, ScriptTrigger, setTarget) |
---|
99 | .describe("The name of the target as it is in the *.oxw file") |
---|
100 | .defaultValues(""); |
---|
101 | LoadParam(root, "triggerparent", this, ScriptTrigger, setTriggerParent) |
---|
102 | .describe("The name of the parent as it is in the *.oxw file") |
---|
103 | .defaultValues(""); |
---|
104 | LoadParam(root, "invert", this, ScriptTrigger, setInvert) |
---|
105 | .describe("") |
---|
106 | .defaultValues("false"); |
---|
107 | LoadParam(root, "triggerlasts", this, ScriptTrigger, setTriggerLasts) |
---|
108 | .describe("") |
---|
109 | .defaultValues("true"); |
---|
110 | LoadParam(root, "debugdraw", this, ScriptTrigger, setDebugDraw) |
---|
111 | .describe("") |
---|
112 | .defaultValues("false"); |
---|
113 | LoadParam(root, "addtoscript", this, ScriptTrigger, setAddToScript) |
---|
114 | .describe("True if this scripttrigger should be aviable in the script") |
---|
115 | .defaultValues("false"); |
---|
116 | } |
---|
117 | |
---|
118 | |
---|
119 | /** |
---|
120 | * Sets the target(a world entity) of the ScriptTrigger. If the distance between the target and this trigger is smaller than the radius, the script gets triggered. |
---|
121 | * @param target The worldentity that the script supervises. |
---|
122 | */ |
---|
123 | void ScriptTrigger::setTarget(const std::string& target) |
---|
124 | { |
---|
125 | BaseObject* targetEntity = ClassList::getObject(target, CL_WORLD_ENTITY); |
---|
126 | |
---|
127 | if (targetEntity != NULL) |
---|
128 | { |
---|
129 | this->setTarget(dynamic_cast<WorldEntity*>(targetEntity)); |
---|
130 | } |
---|
131 | else |
---|
132 | { |
---|
133 | PRINTF(2)("Target %s for %s::%s does not Exist\n", target.c_str(), this->getClassName(), this->getName()); |
---|
134 | } |
---|
135 | } |
---|
136 | |
---|
137 | /** |
---|
138 | * Sets the parent of the trigger. |
---|
139 | * @param parent The parrent. |
---|
140 | */ |
---|
141 | void ScriptTrigger::setTriggerParent(const std::string& parent) |
---|
142 | { |
---|
143 | BaseObject* parentEntity = ClassList::getObject(parent, CL_WORLD_ENTITY); |
---|
144 | |
---|
145 | if (parentEntity != NULL) |
---|
146 | { |
---|
147 | this->setParent(dynamic_cast<WorldEntity*>(parentEntity)); |
---|
148 | this->setParentMode(PNODE_MOVEMENT); |
---|
149 | } |
---|
150 | else |
---|
151 | { |
---|
152 | PRINTF(2)("Parent %s for %s::%s does not Exist\n", parent.c_str(), this->getClassName(), this->getName()); |
---|
153 | } |
---|
154 | } |
---|
155 | |
---|
156 | void ScriptTrigger::tick(float timestep) |
---|
157 | { |
---|
158 | if(scriptFinished) return; |
---|
159 | |
---|
160 | if(triggerLasts && scriptCalled) |
---|
161 | { |
---|
162 | executeAction(timestep); |
---|
163 | return; |
---|
164 | } |
---|
165 | |
---|
166 | if( !invert && this->distance(target) < radius) |
---|
167 | { |
---|
168 | executeAction(timestep); |
---|
169 | scriptCalled = true; |
---|
170 | |
---|
171 | } |
---|
172 | else if( invert && this->distance(target) > radius) |
---|
173 | { |
---|
174 | executeAction(timestep); |
---|
175 | scriptCalled = true; |
---|
176 | } |
---|
177 | //else |
---|
178 | //printf("SCRIPTTRIGGER: target out of range\n"); |
---|
179 | |
---|
180 | } |
---|
181 | |
---|
182 | |
---|
183 | void ScriptTrigger::executeAction(float timestep) |
---|
184 | { |
---|
185 | |
---|
186 | if(scriptIsOk) |
---|
187 | { |
---|
188 | //testScriptingFramework(); |
---|
189 | if(!(script->selectFunction(this->functionName,returnCount)) ) |
---|
190 | printf("Error ScriptTrigger: Selection of %s in %s failed.\n",functionName.c_str(), script->getFileName().c_str()); |
---|
191 | |
---|
192 | script->pushParam( timestep, this->functionName); |
---|
193 | |
---|
194 | if( !(script->executeFunction()) ) |
---|
195 | printf("Error ScriptTrigger: Execution of %s in %s failed.\n",functionName.c_str(), script->getFileName().c_str()); |
---|
196 | |
---|
197 | scriptFinished = script->getReturnedBool(); |
---|
198 | } |
---|
199 | |
---|
200 | |
---|
201 | } |
---|
202 | |
---|
203 | |
---|
204 | void ScriptTrigger::setScript(const std::string& file) |
---|
205 | { |
---|
206 | |
---|
207 | ScriptManager* scriptManager = State::getScriptManager(); |
---|
208 | if (scriptManager != NULL) |
---|
209 | { |
---|
210 | |
---|
211 | script = scriptManager->getScriptByFile(file); |
---|
212 | if(script != NULL) |
---|
213 | { |
---|
214 | scriptIsOk = true; |
---|
215 | } |
---|
216 | } |
---|
217 | } |
---|
218 | |
---|
219 | /* |
---|
220 | void ScriptTrigger::testScriptingFramework() |
---|
221 | { |
---|
222 | std::string file("lunartest2.lua"); |
---|
223 | //get script |
---|
224 | Script* script = State::getScriptManager()->getScriptByFile(file); |
---|
225 | printf("-------------------------- top of the stack:%i\n",lua_gettop(script->getLuaState())); |
---|
226 | |
---|
227 | //execute a function |
---|
228 | printf("----------- main -----------\n"); |
---|
229 | std::string main("main"); |
---|
230 | if( script->selectFunction(main,3)) |
---|
231 | printf("function %s selected\n",main.c_str()); |
---|
232 | |
---|
233 | script->pushParam(3.14159,main); |
---|
234 | printf("-------------------------- top of the stack:%i\n",lua_gettop(script->getLuaState())); |
---|
235 | script->executeFunction(); |
---|
236 | |
---|
237 | int ret = script->getReturnedInt(); |
---|
238 | printf("main returned %i\n",ret); |
---|
239 | |
---|
240 | if(script->getReturnedBool()) |
---|
241 | printf("main returned true\n"); |
---|
242 | else |
---|
243 | printf("main returned false\n"); |
---|
244 | |
---|
245 | float retf = script->getReturnedFloat(); |
---|
246 | printf("main returned %f\n",retf); |
---|
247 | |
---|
248 | |
---|
249 | printf("-------------------------- top of the stack:%i\n",lua_gettop(script->getLuaState())); |
---|
250 | //execute a 2nd function |
---|
251 | printf("----------- test -----------\n"); |
---|
252 | std::string test("test"); |
---|
253 | if( script->selectFunction(test,0)) |
---|
254 | printf("function %s selected\n",test.c_str()); |
---|
255 | |
---|
256 | script->executeFunction(); |
---|
257 | |
---|
258 | |
---|
259 | //if(argc>1) lua_dofile(script.getLuaState(), argv[1]); |
---|
260 | printf("-------------------------- top of the stack:%i\n",lua_gettop(script->getLuaState())); |
---|
261 | |
---|
262 | }*/ |
---|