mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 11:16:09 +02:00
30 lines
1,018 B
C++
30 lines
1,018 B
C++
//
|
|
// Interface
|
|
//
|
|
// Allows you to connect to and see/hear the shared 3D space.
|
|
// Optionally uses serialUSB connection to get gyro data for head movement.
|
|
// Optionally gets UDP stream from transmitter to animate controller/hand.
|
|
//
|
|
// Usage: The interface client first attempts to contact a domain server to
|
|
// discover the appropriate audio, voxel, and avatar servers to contact.
|
|
// Right now, the default domain server is "highfidelity.below92.com"
|
|
// You can change the domain server to use your own by editing the
|
|
// DOMAIN_HOSTNAME or DOMAIN_IP strings in the file NodeList.cpp
|
|
//
|
|
//
|
|
// Welcome Aboard!
|
|
//
|
|
|
|
#include "Application.h"
|
|
#include "Log.h"
|
|
|
|
int main(int argc, const char * argv[]) {
|
|
timeval startup_time;
|
|
gettimeofday(&startup_time, NULL);
|
|
|
|
Application app(argc, const_cast<char**>(argv), startup_time);
|
|
printLog( "Created QT Application.\n" );
|
|
int exitCode = app.exec();
|
|
printLog("Normal exit.\n");
|
|
return exitCode;
|
|
}
|