Overte open source virtual worlds platform.
Find a file
Grayson Stebbins 4d16547362 Note about shortcut for domain dialog
(set your domain via Cmnd+D/Cntrl+D)
2014-03-28 14:50:26 -07:00
animation-server more warnings fixes 2014-03-15 22:00:44 -07:00
assignment-client use a shared pointer for more elegant cleanup at assignment conclusion 2014-03-28 10:48:44 -07:00
cmake Patched the Qt CMake function for auto-translations so that *.ts files 2014-03-12 01:24:31 +02:00
domain-server add a button on DS admin page to kill all nodes 2014-03-26 11:37:30 -07:00
examples fix for AudioMixer kill and re-add and no sound load in bot 2014-03-26 13:19:20 -07:00
interface Fixed a typo that resulted in a wrong padding of a widget. 2014-03-28 22:21:55 +02:00
jenkins Adding assignment-client to DSL 2013-09-09 15:51:52 -06:00
libraries use a shared pointer for more elegant cleanup at assignment conclusion 2014-03-28 10:48:44 -07:00
tests merge upstream/master into enforce-standard 2014-03-27 10:53:54 -07:00
tools click harder 2014-03-08 18:22:30 -08:00
voxel-edit click harder 2014-03-08 18:22:30 -08:00
.gitignore Applied Ryan's tweaks to Visage mapping and config file. 2014-03-10 15:13:24 -07:00
BUILD.md fix BUILD.md instructions and CMakeLists so QT_CMAKE_PREFIX_PATH can be passed 2014-03-24 17:15:53 -07:00
CMakeLists.txt fix BUILD.md instructions and CMakeLists so QT_CMAKE_PREFIX_PATH can be passed 2014-03-24 17:15:53 -07:00
CONTRIBUTING.md add an extra line before emphasis line for pull requests 2014-03-05 16:31:51 -08:00
Doxyfile changes for docset identification 2013-09-19 12:19:38 -07:00
hifi.podspec add the voxels library to the hifi podspec 2013-08-05 17:38:47 -07:00
LICENSE add an all rights reserved license 2013-07-01 11:56:19 -07:00
README.md Note about shortcut for domain dialog 2014-03-28 14:50:26 -07:00

High Fidelity (hifi) is an early-stage technology lab experimenting with Virtual Worlds and VR.

In this repository you'll find the source to many of the components in our alpha-stage virtual world. The project embraces distributed development and if you'd like to help, we'll pay you -- find out more at Worklist.net. If you find a small bug and have a fix, pull requests are welcome. If you'd like to get paid for your work, make sure you report the bug via a job on Worklist.net.

We're hiring! We're looking for skilled developers; send your resume to hiring@highfidelity.io

Chat with us

Come chat with us in our Gitter if you have any questions or just want to say hi!

Build Instructions

All information required to build is found in the build guide.

Running Interface

When you launch interface, you will automatically connect to our default domain: "root.highfidelity.io".

If you don't see anything, make sure your preferences are pointing to root.highfidelity.io (set your domain via Cmnd+D/Cntrl+D), if you still have no luck it's possible our servers are simply down; if you're experiencing a major bug, let us know by adding an issue to this repository. Make sure to include details about your computer and how to reproduce the bug.

To move around in-world, use the arrow keys (and Shift + up/down to fly up or down) or W A S D, and E or C to fly up/down. All of the other possible options and features are available via menus in the Interface application.

Running your own servers

The assignment-client and domain-server are architectural components that will allow you to run the full stack of the virtual world.

In order to set up your own virtual world, you need to set up and run your own local "domain".

The domain-server gives a number different types of assignments to the assignment-client for different features: audio, avatars, voxels, particles, and meta-voxels.

Follow the instructions in the build guide to build the various components.

From the domain-server build directory, launch a domain-server.

./domain-server

Then, run an assignment-client. The assignment-client uses localhost as its assignment-server and talks to it on port 40102 (the default domain-server port).

In a new Terminal window, run:

./assignment-client

Any target can be terminated with Ctrl-C (SIGINT) in the associated Terminal window.

This assignment-client will grab one assignment from the domain-server. You can tell the assignment-client what type you want it to be with the -t option. You can also run an assignment-client that forks off n assignment-clients with the -n option.

./assignment-client -n 5

To test things out you'll want to run the Interface client.

To access your local domain in Interface, open your Preferences -- on OS X this is available in the Interface menu, on Linux you'll find it in the File menu. Enter "localhost" in the "Domain server" field.

If everything worked you should see that you are connected to at least one server. Nice work!