|
I ran into a problem when I tried to load my model files into CCC instead of the default file. The following guidelines were developed from my experiment and suggestions from John Kelso, Kevin Curry, and Dr. R.D.Kriz. This page also describes how to grab and move objects in CCC, and also the use of voice commands in CCC How to load other .iv or .pfb files into CCCAssuming that you have already install /limAware and /ccc and /CAVERN in your SGI IRIX.
if (obj = pfdLoadFile("amyoffice.pfb")) { g_modelDCS = new pfDCS; g_modelDCS->setTrans(50, 15, -10); g_modelDCS->addChild(obj); parent->addChild(g_modelDCS); if (obj = pfdLoadFile("YourFile.pfb or .iv")) { g_modelDCS = new pfDCS; g_modelDCS->setTrans(30, 20, -5); g_modelDCS->addChild(obj); parent->addChild(g_modelDCS); Default: home1/kcurry/CAVERN/CAVERN_MAKEFILE_INCLUDES Change to: ~YourPath/CAVERN/CAVERN_MAKEFILE_INCLUDES 5.2 Edit the first line in /CAVERN/CAVERN_MAKEFILE_INCLUDES to indicate where the /CAVERN is located CAVERN=/~YourPath/CAVERN
This will compile all your program files including lim_perf.c++ Try %limbo YourName, you should now be able to see your model .iv or .pfb file instead of the default amyoffice. Back To TopHow to grab an and relocate an object in CCC environmentObjects are .iv files that you load into the virtual environment. Objects also includes Radar and Participants List
Back To TopUsing Voice Commands:It is not practical to communicate with the computer using a keyboard while we are walking in virtual building. Instead of typing commands with a keyboard to tell the computer to perform various tasks, CCC allows us to communicate with the computer via a voice command. Voice command enables participants to send commands to the computer using their voice, thus eliminating the need to navigate the wand to push virtual buttons. Users wear hand-free headset and issue commands by simply talking to the microphone. The computer picks up the voice and perform the operation. Voice command capability in CCC is very useful in the CAVE environment because users can totally focus on the model. All voice activated commands starts with "Computer" and ends with "Please". The following line depicts the format Syntax: >Computer "Your Command" Please; Examples: >Computer radar 1 Please; >Computer Teleport to Kevin Please; The first example tells the computer to show 2Dradar on the Screen. The second example moves you directly to where Kevin is. Here is the complete set of commands located in /ccc/demo_cmds: computer show radar 1 pleasecomputer hide radar 1 pleasecomputer show radar 0 pleasecomputer hide radar 0 pleasecomputer show list 2 pleasecomputer hide list 2 pleasecomputer teleport to 10 10 0 pleasecomputer port to 50.5 75.35 0.0 pleasecomputer jump to -10 -10 0 pleasecomputer teleport to jose pleasecomputer tether to jose pleasecomputer detach from jose pleasecomputer exit please Back To Top |
Last updated: 05/09/99
|