WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

Reply
 
Thread Tools Rate Thread Display Modes
  #1  
Old 04-30-2014, 10:17 AM
Chris Coffin Chris Coffin is offline
WorldViz Team Member
 
Join Date: Jan 2010
Posts: 6
Unfortunately, at this time, there's no method for redirecting vizconnect to another port. I'll work to add a search option for available ports into a future release. Without that, the configuration utility is currently unavailable, unless the other process which is holding that port can be redirected.

I noticed that you've also posted regarding inverse kinematics. Even without using the interface you can still access the inverse kinematics modules, if you'd like to use that code directly.

Here's a sample.

Code:
import viz
import vizconnect

# need to get the raw tracker dict for animating the avatars
from vizconnect.util.avatar import animator
from vizconnect.util.avatar import skeleton

# press key 1 to control head, key 2 to control hand
# keys w,a,s,d,z,x control position, keys t,f,g,h,v,b control orientation
from vizconnect.util import virtual_trackers
YOUR_HEAD_TRACKER = virtual_trackers.Keyboard()
YOUR_HEAD_TRACKER.setPosition(0, 1.5, 0)
YOUR_RIGHT_HAND_TRACKER = virtual_trackers.Keyboard()

avatar = viz.add('vcc_female.cfg')
# get the skeleton from the avatar
mySkeleton = skeleton.CompleteCharacters(avatar)

#VC: set which trackers animate which body part
# format is: bone: (tracker, parent, degrees of freedom used)
# The hand is set to move with the head.
# Set the parent (2nd param) to None to disable parenting.
_trackerAssignmentDict = {
vizconnect.AVATAR_HEAD:(YOUR_HEAD_TRACKER, None, vizconnect.DOF_6DOF),
vizconnect.AVATAR_R_HAND:(YOUR_RIGHT_HAND_TRACKER, vizconnect.AVATAR_HEAD, vizconnect.DOF_POS),
}

#VC: create the raw object
myAnimator = animator.InverseKinematics(avatar, mySkeleton, _trackerAssignmentDict)

viz.go()

viz.add('piazza.osgb')
Cheers,
Chris
Reply With Quote
  #2  
Old 05-09-2014, 08:28 AM
Erikvdb Erikvdb is offline
Member
 
Join Date: May 2013
Posts: 63
Unrelated to sockets, but I'll dump it here anyway:
I can't seem to get the Vizconnect interface working on Firefox. It opens the start, but whenever I click any of the options it shows the loading icon for a bit and then just jumps back to the start again. In IE it works fine.
Am I just missing some plugin, or..?
Reply With Quote
  #3  
Old 05-16-2014, 08:57 AM
Chris Coffin Chris Coffin is offline
WorldViz Team Member
 
Join Date: Jan 2010
Posts: 6
Thanks for your feedback! There is an issue with how firefox handles the timing for page redirections. This will be fixed in the next release.

Cheers,
Chris
Reply With Quote
Reply

Tags
beta3, server, socket, vizconnect

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

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
Vizconnect ckharrison Vizard 3 02-17-2014 10:26 PM


All times are GMT -7. The time now is 08:47 AM.


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