![]() |
|
#1
|
|||
|
|||
|
Vizard Tip of the Month: Use Tasks to Simplify your Code
Vizard's Task feature makes writing code that you want to happen over time easier. Tasks are functions that pause as they wait for some condition (like 2 seconds to pass or spacebar pressed) before continuing with their local variables preserved.
Say you want a traffic light that changes color every second. Using timers, you could create a Vizard timer event that sets the next color based on a global variable that remembers the previous color. Or you could create a self-contained task function. Code:
import viztask
ball = viz.add('white_ball.wrl', pos=[0, 1.7, 1])
def doStoplight(theBall):
while True:
theBall.color(viz.GREEN)
yield viztask.waitTime(1)
theBall.color(viz.YELLOW)
yield viztask.waitTime(.5)
theBall.color(viz.RED)
yield viztask.waitTime(1)
viztask.schedule(doStoplight(ball))
Creating tasks that wait for other tasks can simplify programs that progress though a series of states. Research experiments often progress though these states: get parameters; present a number of trials; finalize data recording. Here is a experiment framework using tasks: Code:
import viztask
def doExperimentTask():
NUMBER_OF_TRIALS = 3
for i in range(NUMBER_OF_TRIALS):
yield doTrialTask(i)
print 'experiment done'
viztask.schedule(doExperimentTask())
def doTrialTask(trialNumber):
#present stimulus
yield viztask.waitKeyDown(' ') #gather response
#record data
print 'trial number', trialNumber
http://www.worldviz.com/vizhelp/VizTask_basics.htm
__________________
Paul Elliott WorldViz LLC |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Vizard and Augmented Reality | realvision | Vizard | 4 | 04-04-2008 11:59 AM |
| Vizard won't run | wouters | Vizard | 5 | 02-05-2008 12:12 PM |
| Vizard 3.0 beta activation code | vnacooper | Vizard | 3 | 09-21-2006 01:03 PM |
| wxPython with Vizard | farshizzo | Vizard | 18 | 09-29-2005 09:49 AM |
| Vizard Crashes: causes are hard to determine, possible problem with the viz code | vr_boyko | Vizard | 1 | 01-07-2005 11:52 AM |