Overte open source virtual worlds platform.
Find a file
2017-06-01 13:23:21 -07:00
assignment-client Merge branch 'master' of https://github.com/highfidelity/hifi into audio-noisegate-new 2017-05-23 17:31:03 -07:00
cmake Merge pull request #10243 from birarda/bake-textures 2017-05-12 12:26:33 -07:00
domain-server Focus is now changed when adding a new list item in DS settings 2017-05-25 09:20:04 -07:00
gvr-interface initial changes needed for android interface cmake 2016-08-31 10:53:29 -07:00
ice-server Logging improvements 2016-11-04 14:26:19 -07:00
interface Merge pull request #10530 from Atlante45/fix/default-scripts 2017-05-25 18:33:11 -07:00
libraries Merge pull request #10530 from Atlante45/fix/default-scripts 2017-05-25 18:33:11 -07:00
plugins don't create prefs for pucks if vive not supported 2017-05-23 09:05:14 -07:00
script-archive Fix gracefulControls not working on multi-monitor setups 2017-06-01 13:23:21 -07:00
scripts whitespace 2017-05-25 09:54:40 -07:00
server-console Update content set URL for RC40 2017-05-18 16:36:01 -07:00
tests Merge pull request #10458 from jherico/ktx_validation 2017-05-25 16:02:23 -07:00
tools fix model check for filenames with periods 2017-05-23 15:46:45 -07:00
tutorial Merge pull request #10405 from huffman/fix/ac-audio-randfloat 2017-05-10 10:05:52 -07:00
unpublishedScripts Fix rotation axes of stopwatch hands 2017-05-25 09:35:51 +12:00
.editorconfig adjust indentation and implement editorconfig at root of repo 2016-11-28 17:10:59 -08:00
.eslintrc.js add "Resource" API global 2017-04-26 17:49:14 -04:00
.gitattributes make the rsrc icon a binary 2016-01-20 10:48:48 -08:00
.gitignore add release/debug/gprof/valgrind to gitignore 2016-11-27 18:03:02 -05:00
BUILD.md Changed references from Qt 5.6.1 to 5.6.2 2017-04-26 14:47:03 -07:00
BUILD_ANDROID.md Changed Qt version for android 2017-04-25 13:05:59 -07:00
BUILD_LINUX.md Fix: 2017-01-08 08:51:56 +01:00
BUILD_OSX.md Updated downloads to direct links 2017-04-26 15:17:34 -07:00
BUILD_WIN.md Use generic dir syntax 2017-04-27 10:56:56 -07:00
CMakeGraphvizOptions.cmake Support QML and Web content in overlay windows 2015-12-30 09:14:49 -08:00
CMakeLists.txt Add unpublishedScripts content to the JS project 2017-05-21 11:15:51 +12:00
CONTRIBUTING.md Fix coding standards link 2017-03-07 22:37:54 +01:00
INSTALL.md use backticks for CMAKE_INSTALL_PREFIX` 2016-01-20 12:07:23 -08:00
LICENSE update LICENSE to include "and other platform" 2016-05-16 14:45:04 -07:00
README.md Link to coding standards. 2017-04-06 15:57:32 -04: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.

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!