dragonmage midshipman

Joined: 12 Apr 2005 Posts: 68 Location: Australia
|
Posted: Fri Jun 08, 2007 6:09 am Post subject: MU VW BOF at siggraph |
|
|
Hi,
As I have said to the vos/vrspace lists, I am running a 2 hr multiuser virtual world BOF at siggraph so if you want me to demo something let me know. I would want something that would not require old browser versions, old java etc if possible because I need to be able to demo other stuff with current tech as well. Of course, it would be even better if one of you could be there to demo it.
I have also been testing tcp/ip networking with an implementation of the network sensor nodes in Flux. I have been able to get the basic test examples to work with two linux servers. An example of the nodes is given below. For the mass avatar event at siggraph I will be working on modifying the communications for UDP.
This raises the possibility of testing ur own server with these nodes, but with only one implementation u would have to use the SWAMP protocol (I documented it at http://x3d.xiiris.com/viewtopic.php?t=18 )
A description of the test examples and MM server is at
http://www.mediamachines.com/hydra/
my experience with installing / running the server is at: http://planet-earth.org/smam/fluxServerInstallRun.html
tho u would be wanting to run your own vos server.
| Code: |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE X3D PUBLIC "ISO//Web3D//DTD X3D 3.0//EN" " http://www.web3d.org/specifications/x3d-3.0.dtd">
<X3D profile='Immersive' >
<Scene>
<Group>
<Transform DEF='CUBE_TRANSFORM'>
<Shape
containerField='children'>
<Appearance
containerField='appearance'>
<Material DEF='Blue'
containerField='material'
ambientIntensity='0.200'
shininess='0.200'
diffuseColor='0 0 1'/>
</Appearance>
<Box
containerField='geometry'
size='1 1 1'/>
</Shape>
</Transform>
<PlaneSensor DEF='PS'/>
</Group>
<NetworkSensor DEF='ES' networkSensorId='ES'>
<field name='translation' type='SFVec3f' accessType='inputOutput'/>
<Connection DEF='muserver'
containerField='connection'
url="'swmp://84.20.147.209:13214/MM-'"/>
</NetworkSensor>
<ROUTE fromNode='PS' fromField='translation_changed' toNode='ES' toField='set_translation'/>
<ROUTE fromNode='ES' fromField='translation_changed' toNode='CUBE_TRANSFORM' toField='set_translation'/>
</Scene>
</X3D>
|
cheers,
chris
Mod edit: fixed broken link and added Code tags |
|