View Single Post
  #1  
Old 04-19-2010, 02:50 PM
v-clizzin v-clizzin is offline
Member
 
Join Date: Sep 2006
Posts: 15
Moving main viewpoint when linked to PPT

I'm currently debugging an old falling-into-a-pit demo; the problem is that the viewpoint does not actually move downwards when the user 'falls' into the pit.

I initially set up PPT tracking like so:

Code:
vrpn = viz.add('vrpn7.dle')
ppt = vrpn.addTracker('PPT0@' + PPT_HOSTNAME)
filter = viz.add("filter.dle")
ppt = filter.average(ppt, samples = 5)

view = viz.MainView
link = viz.link(ppt, view)
link.reset(viz.RESET_X|viz.RESET_Y|viz.RESET_Z)
viz.eyeheight(0.0)
The code for moving the viewpoint downward is:

Code:
fallV -= 9.8 * viz.elapsed() # fallV is initialised at 0 when the fall begins
viz.translate(viz.HEAD_POS,0,fallV*viz.elapsed(),0)
However, the viewpoint does not move downward. I do know from print statements that fallV is being updated correctly. I've tried using link.setPos(ppt.getPosition()[0], ppt.getPosition()[1] + fallV, ppt.getPosition()[2]), but that simply makes the view jump to floor level height and does not move further down thereafter. Perhaps I don't fully understand the interaction between PPT, the main viewpoint, and the link between the two.

This may also have something to do with the fact that this demo was written during our serial PPT days, and the update to make it work with VRPN may not have ironed out all the kinks.

Any ideas? Thank you!
Reply With Quote