Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/script_trigger.cc @ 8777

Last change on this file since 8777 was 8711, checked in by bensch, 18 years ago

merged the script_engine back here

File size: 6.9 KB
Line 
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
25/**
26 * Constructs a new ScriptTrigger.
27 * @param root the xml element to load the parameters from.
28 *
29 */
30ScriptTrigger::ScriptTrigger(const TiXmlElement* root)
31{
32  this->setClassID(CL_SCRIPT_TRIGGER, "ScriptTrigger");
33  this->toList(OM_COMMON);
34
35  returnCount = 1;
36  actionFinished = false;
37  doDebugDraw = false;
38  invert = false;
39  scriptCalled = false;
40  scriptIsOk = false;
41  triggerLasts = false;
42  loadParams(root);
43
44}
45
46/**
47 * Deletes the ScriptTrigger.
48 *
49 */
50ScriptTrigger::~ScriptTrigger()
51{
52
53}
54
55/**
56 * Reads the values from the tml element and sets them.
57 * @param root the xml element to load the parameters from.
58 *
59 */
60void ScriptTrigger::loadParams(const TiXmlElement* root)
61{
62  if(root != NULL)
63  {
64    WorldEntity ::loadParams(root);
65
66    LoadParam(root, "file", this, ScriptTrigger, setScript)
67        .describe("the fileName of the script, that should be triggered by this script trigger")
68        .defaultValues("");
69    LoadParam(root, "function", this, ScriptTrigger, setFunction)
70        .describe("the function of the script, that should be triggered by this script trigger")
71        .defaultValues("");
72    LoadParam(root, "abs-coor", this, ScriptTrigger, setAbsCoor)
73        .describe("where this script trigger should be located")
74        .defaultValues("");
75    LoadParam(root, "radius", this, ScriptTrigger, setRadius)
76        .describe("the fileName of the script, that should be triggered by this script trigger")
77        .defaultValues(0);
78    LoadParam(root, "delay", this, ScriptTrigger, setDelay)
79        .describe("the delay after which the funtion sould be triggered")
80        .defaultValues(0);
81    LoadParam(root, "worldentity", this, ScriptTrigger, setTarget)
82        .describe("The name of the target as it is in the *.oxw file")
83        .defaultValues("");
84    LoadParam(root, "triggerparent", this, ScriptTrigger, setTriggerParent)
85        .describe("The name of the parent as it is in the *.oxw file")
86        .defaultValues("");
87    LoadParam(root, "callonce", this, ScriptTrigger, setCallOnce)
88        .describe("True if the script shoul only be called once")
89        .defaultValues("");
90    LoadParam(root, "invert", this, ScriptTrigger, setInvert)
91        .describe("")
92        .defaultValues("");
93    LoadParam(root, "triggerlasts", this, ScriptTrigger, setTriggerLasts)
94        .describe("")
95        .defaultValues("");
96    LoadParam(root, "debugdraw", this, ScriptTrigger, setDebugDraw)
97        .describe("True if the script should only be called once")
98        .defaultValues("");
99  }
100
101}
102
103
104/**
105 * 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.
106 * @param target The worldentity that the script supervises.
107 */
108void ScriptTrigger::setTarget(const std::string& target)
109{
110  BaseObject* targetEntity = ClassList::getObject(target, CL_WORLD_ENTITY);
111
112  if (targetEntity != NULL)
113  {
114    this->setTarget(dynamic_cast<WorldEntity*>(targetEntity));
115  }
116  else
117  {
118    PRINTF(2)("Target %s for %s::%s does not Exist\n", target.c_str(), this->getClassName(), this->getName());
119  }
120}
121
122/**
123 * Sets the parent of the trigger.
124 * @param parent The parrent.
125 */
126void ScriptTrigger::setTriggerParent(const std::string& parent)
127{
128  BaseObject* parentEntity = ClassList::getObject(parent, CL_WORLD_ENTITY);
129
130  if (parentEntity != NULL)
131  {
132    this->setParent(dynamic_cast<WorldEntity*>(parentEntity));
133    this->setParentMode(PNODE_MOVEMENT);
134  }
135  else
136  {
137    PRINTF(2)("Parent %s for %s::%s does not Exist\n", parent.c_str(), this->getClassName(), this->getName());
138  }
139}
140
141void ScriptTrigger::tick(float timestep)
142{
143  if(actionFinished) return;
144
145  if(triggerLasts && scriptCalled)
146  {
147    executeAction(timestep);
148    return;
149  }
150 
151  if( !invert && this->distance(target) < radius)
152 {
153  if(!callOnce)
154   {
155    executeAction(timestep);
156    scriptCalled = true;
157   }
158  else if(callOnce && !scriptCalled)
159  {
160   executeAction(timestep);
161   scriptCalled = true;
162  }
163 
164 }
165 else if( invert && this->distance(target) > radius)
166 {
167   if(!callOnce)
168   {
169     executeAction(timestep);
170   }
171   else if(callOnce && !scriptCalled)
172   {
173     executeAction(timestep);
174     scriptCalled = true;
175   }
176   
177 }
178 //else
179   //printf("SCRIPTTRIGGER: target out of range\n");
180
181}
182
183
184void ScriptTrigger::executeAction(float timestep)
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     actionFinished = script->getReturnedBool();
198     }
199     
200     
201}
202
203
204void 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}*/
Note: See TracBrowser for help on using the repository browser.