Overte open source metaverse platform.
Find a file
2016-02-10 12:03:07 -08:00
assignment-client Merge pull request #7019 from birarda/absolute-paths 2016-02-04 08:53:21 -08:00
cmake Merge pull request #6949 from birarda/installer-sixense 2016-01-27 12:17:59 -08:00
domain-server Merge pull request #7019 from birarda/absolute-paths 2016-02-04 08:53:21 -08:00
examples Convert all simple one-liners containing ') { ' to instead take up three lines. 2016-02-10 12:03:07 -08:00
gvr-interface Cleanup CMake files 2015-10-11 00:01:03 -07:00
ice-server Add status HTTP server to AC Monitor 2016-01-08 10:35:04 -08:00
interface Merge pull request #6997 from jagwire/WorkingEnergy 2016-02-05 17:17:45 -08:00
libraries Merge pull request #7031 from AndrewMeadows/simulation-ownership 2016-02-06 19:19:39 -08:00
plugins calibrate using either the 1 or 2 button on each hand 2016-02-01 16:48:00 -08:00
server-console Change server exit popup wording 2016-01-26 10:02:45 -08:00
tests Convert all simple one-liners containing ') { ' to instead take up three lines. 2016-02-10 12:03:07 -08:00
tools remove old nsis template and image 2016-01-15 15:41:34 -08:00
unpublishedScripts updated gun position 2016-02-05 15:48:34 -08:00
.gitattributes make the rsrc icon a binary 2016-01-20 10:48:48 -08:00
.gitignore add npm-debug to global gitignore 2016-01-15 15:41:34 -08:00
BUILD.md change BUILD guides for 5.5.1 and homebrew recs 2015-11-16 15:59:52 -08:00
BUILD_ANDROID.md change BUILD guides for 5.5.1 and homebrew recs 2015-11-16 15:59:52 -08:00
BUILD_LINUX.md Add additional linux dependencies. 2015-09-06 21:41:36 -04:00
BUILD_OSX.md Update BUILD_OSX for CMake env vars. 2015-11-24 20:25:17 -06:00
BUILD_WIN.md document no debug heap trick 2016-01-28 11:42:51 -08:00
CMakeGraphvizOptions.cmake Support QML and Web content in overlay windows 2015-12-30 09:14:49 -08:00
CMakeLists.txt rename console directory to server-console 2016-01-19 16:11:08 -08:00
CONTRIBUTING.md Update CONTRIBUTING.md 2014-10-07 10:15:09 -07:00
INSTALL.md use backticks for CMAKE_INSTALL_PREFIX` 2016-01-20 12:07:23 -08:00
LICENSE update to new license in root and installer 2016-01-15 15:41:34 -08:00
README.md Including Visual Studio 2010 Redistributable in installer 2015-09-04 09:28:28 -06: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!

Documentation

Documentation is available at docs.highfidelity.io, if something is missing, please suggest it via a new job on Worklist (add to the hifi-docs project).

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, meta-voxels and models.

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 4

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!