WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #3  
Old 08-19-2014, 01:49 AM
johnallen johnallen is offline
Member
 
Join Date: Nov 2013
Location: Canterbury, UK
Posts: 36
Quote:
Originally Posted by Jeff View Post
Can you post example code that reproduces the issue?
pressing '1' displays a message, pressing '2' clears it, however it blocks waiting for the keyboard input on the viz.input() call.

i would like to flush the screen update before blocking for the keyboard input if possible.

Thanks,
John

Code:
import viz, vizconnect, vizact, vizinput, viztask

viz.setMultiSample(4)
gScreenTextObj = None

def keyPressed_1():
    global gScreenTextObj
    gScreenTextObj.message("1 pressed")

def keyPressed_2():
    global gScreenTextObj
    gScreenTextObj.message("") # try to clear the message
    gCurrentPID = int( vizinput.input("Enter ID : "))
    gGAB = vizinput.choose( "Gender: ", ['Male', 'Female'] )

def exitExperiment():
    viz.quit()
    
def vizconn_kbd_mouse():
	vizconnect.go('vizconnect_kbd_mouse_monitor.py')

def experiment():
    global gTracker, gScreenTextObj

    vizconn_kbd_mouse()
    gTracker = vizconnect.getTracker('mouse_and_keyboard_walking')
    room = viz.add('room4.osgb')
    
    vizact.onkeydown('x', exitExperiment )
    vizact.onkeydown('1', keyPressed_1 )
    vizact.onkeydown('2', keyPressed_2 )
    
    gScreenTextObj = viz.addText3D('',parent=viz.SCREEN, pos=( 0, 0, 0 ) ) #write on screen messages here
    
# We've defined all our functions, now lets start our experiment!
viztask.schedule(experiment)
Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Vizard exits full screen after 30 seconds derek Vizard 3 08-21-2014 12:02 PM
Displaying screen text in 3D (Oculus Rift) pjayaram Vizard 2 05-27-2014 08:06 PM
Screen Size and Scaling javadi Vizard 2 04-02-2013 05:56 PM
Attach a TexQuad to pit.osgb screen Ducky Vizard 1 01-17-2013 02:57 PM
position of html-file on screen active_world Vizard 1 05-16-2008 07:24 PM


All times are GMT -7. The time now is 04:51 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC