Overte open source virtual worlds platform.
Find a file
2018-01-08 14:43:54 -08:00
android Merge remote-tracking branch 'gcalero/android_render_pr' into android_nov 2018-01-08 14:04:52 -08:00
assignment-client Remove legacy jurisdiction code 2017-12-29 12:46:52 -08:00
cmake Make Interface run in Android 2018-01-03 16:36:11 -03:00
domain-server list assignment types in assignment-client help 2017-12-18 15:32:32 -08:00
gvr-interface Additional thread safety 2017-06-30 09:15:06 -07:00
ice-server allow staging METAVERSE_SERVER_URL to be toggled by env 2017-12-12 16:22:08 -08:00
interface Fixes to load cubemap 2018-01-08 14:43:54 -08:00
libraries Fixes to load cubemap 2018-01-08 14:43:54 -08:00
plugins remove debug statement 2017-11-29 10:58:10 -08:00
script-archive Merge pull request #10562 from huffman/fix/graceful-controls 2017-06-21 12:52:36 -07:00
scripts Merge branch 'android' into android_render_pr 2018-01-08 12:49:52 -05:00
server-console remove unneeded dependency on electron-compilers 2017-12-08 14:09:42 -08:00
tests Merge pull request #12017 from Zvork/glcolor 2017-12-22 14:25:51 -08:00
tools Merge pull request #11984 from birarda/bug/macdeployqt-for-oven 2017-12-14 10:26:13 -08:00
unpublishedScripts removed landscaping app 2018-01-02 15:33:04 -08:00
.clang-format Add clang format specification 2017-10-16 15:19:12 -07:00
.editorconfig adjust indentation and implement editorconfig at root of repo 2016-11-28 17:10:59 -08:00
.eslintrc.js Update .eslintrc.js 2017-11-13 15:53:33 -08:00
.gitattributes New android toolchain 2017-09-19 13:45:12 -07:00
.gitignore Fixes to load cubemap 2018-01-08 14:43:54 -08:00
BUILD.md cleanup WANT_DETAILED_PROFILING 2017-10-19 14:31:50 -07:00
BUILD_ANDROID.md Fix polyvox archive, correct build errors, add additional libraries 2017-12-12 18:29:36 -08:00
BUILD_LINUX.md Create ubuntu specific documentation based on https://forums.highfidelity.com/t/how-to-compile-a-stable-build-of-the-linux-server-stack-on-ubuntu-16-04-lts/11528/16 and tested yesterday. 2017-07-14 08:44:59 +02:00
BUILD_LINUX_CHEATSHEET.md Create BUILD_LINUX_CHEATSHEET.md 2017-11-21 17:19:09 -08:00
BUILD_OSX.md Update macOS build guide 2017-10-04 15:21:52 -07:00
BUILD_WIN.md Update BUILD_WIN.md 2017-08-31 11:56:27 -07:00
CMakeGraphvizOptions.cmake Trying to fix QtQml/QtScript crashes 2017-06-22 16:39:57 -07:00
CMakeLists.txt Fix polyvox archive, correct build errors, add additional libraries 2017-12-12 18:29:36 -08:00
CONTRIBUTING.md Update CONTRIBUTING.md 2017-07-20 10:20:56 -04:00
INSTALL.md visual headers 2017-05-30 21:12:51 +02:00
LICENSE update LICENSE to include "and other platform" 2016-05-16 14:45:04 -07:00
README.md Updated the README with CLA details. 2017-10-17 13:28:07 -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.com

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.com, if something is missing, please suggest it via a new job on Worklist (add to the hifi-docs project).

There is also detailed documentation on our coding standards.

Contributor License Agreement (CLA)

Technology companies frequently receive and use code from contributors outside the company's development team. Outside code can be a tremendous resource, but it also carries responsibility. Best practice for accepting outside contributions consists of an Apache-type Contributor License Agreement (CLA). We have modeled the High Fidelity CLA after the CLA that Google presents to developers for contributions to their projects. This CLA does not transfer ownership of code, instead simply granting a non-exclusive right for High Fidelity to use the code youve contributed. In that regard, you should be sure you have permission if the work relates to or uses the resources of a company that you work for. You will be asked to sign our CLA when you create your first PR or when the CLA is updated. You can also review it here. We sincerely appreciate your contribution and efforts toward the success of the platform.

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. The -min and -max options allow you to set a range of required assignment-clients, this allows you to have flexibility in the number of assignment-clients that are running. See --help for more options.

./assignment-client --min 6 --max 20

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!