|
VRPN 07.15 How to acknowledge VRPN in your papers |
VRPN FAQHow do I get started with VRPN?See the Installing and Testing page. Hidden down in the middle of the index page is an "Other Resources" section. It includes a link to a paper that describes the philosophy and has simple examples for a client and server and a Powerpoint presentation given at that talk. Included in the downloaded source code are Makefiles and Visual Studio 6.0/.NET projects that will build test applications and examples. The standard vrpn_server project runs from a configuration file (server_src/vrpn.cfg) that includes an example that has a NULL tracker (which reports "I'm at the origin" over and over). You can connect to it with "vrpn_print_devices" to get an example of how to read from various devices in a client. I'm having a problem: how do I troubleshoot?See the troubleshooting page. How do I redirect VRPN messages?The "VRPN Text Handling"
web page describes how to do that. The ones that are generated as
text messages (like the server responses you mention) are actually printed
by the vrpn_System_TextPrinter object. You can either set the level of
severity very high or else completely disable it or redirect it to a file. How do I make VRPN link with the InterSense libraries?Several of the Intersense trackers run in "Fastrak compatibility mode" and can be run using the Fastrak interface as described in the comments of the vrpn.cfg file in server_src. It is also possible to link and run using the InterSense-supplied control library. This has been tested on Windows with version 3.45 of the InterSense library. The first step is to download the Intersense library into a folder called 'isense' that should be placed in the same directory as 'vrpn'; they should be sister folders. Then, uncomment the definition of VRPN_INCLUDE_INTERSENSE in vrpn_Configurtation.h and build the server. When the program runs, the isense.dll file must either be in the Windows system32 folder or else be in the directory where the server runs. What is the difference between the vrpn project and the vrpndll project; when would I want to use the DLL version?The DLL version is intended for those who want to link to and run VRPN from languages other than C++. VRPN itself is pretty small, so that static linkage is normally what you want. If you don't have a reason to change it, don't change it. Why doesn't the VRPN server run when compiled with shared libraries?The DLL file needs to be copied from the build directory (pc_win32/DLL/Debug or Release) into the executable directory (pc_win32/server_src/vrpn_server/Debug or Release) before it can be run. |