PDA

View Full Version : game devices


jkelly
11-09-2004, 07:44 PM
I would like to access multiple USB game devices (a joystick and a steering wheel). Is there a simple way to do this? To access a single device I just use sid.get()

Thanks

farshizzo
11-10-2004, 01:48 PM
Hi,

Currently you can only access one device with the sid library.

hotspur1
01-19-2005, 12:06 PM
Would this be accomplished by writing a plug-in? Is it possible to access multiple devices at the same time via DirectX? Or would it be possible to modify the sid library?

Thanks, I'm interested in using two joysticks at the same time...

tobin
01-19-2005, 01:07 PM
We can get you access to the sid module. It's a DLL compiled as a Python extension module and actually operates entirely independently of Vizard. You'd be largely on your own, though, in terms of support for modifying this project.

hotspur1
01-19-2005, 01:21 PM
OK -great. Let me know how to get the project and we'll give it a shot. IT may be useful to others, as well...

Thanks

Geoffrey
04-24-2006, 01:46 AM
Hello,

I would like to use a joystick and the pedals of a steering wheel.
Is it already possible to use both at same time ?

thanks,
geoffrey.

farshizzo
04-24-2006, 10:01 AM
Hi,

As long as windows detects the pedals as a standard gamepad then you can use them. Here is some sample code:import sid

#First joystick is automatically created when sid is imported
#Add second joystick
pedals = sid.add()

#Get joystick data (see command reference for sid library)
pedals.get()

Geoffrey
04-25-2006, 04:26 AM
works,
thanks :)

geoffrey.

softscan2
02-02-2007, 03:19 AM
Is there anyone trying to develope games using Vizard.
Ifso I would like to talk with you !!!

Gladsomebeast
02-02-2007, 12:09 PM
Many of the demo and projects we have worked on at WorldViz have gameish elements. Would you like some asstance on where to start or are you looking for some people to work on a project with you?


BTW, what kind of game are you interested in making with Vizard?

softscan2
03-27-2007, 02:16 AM
Basically a natural language & narrative driven role playing game.
I have all the sets and avatars buil and am starting to add functionality.