Overte open source metaverse platform.
Find a file
Anthony J. Thibault 38a2ce67bb Add tools/atp-extract.py
Tool to list and extract files from the atp assets directory.
2016-11-04 11:23:10 -07:00
assignment-client CR feedback 2016-11-03 13:23:05 -07:00
cmake Merge pull request #8969 from huffman/feat/task-manager-app-name 2016-11-02 14:21:19 -07:00
domain-server allow assignment client scripts to create ATP assets 2016-10-26 11:22:33 -04:00
gvr-interface initial changes needed for android interface cmake 2016-08-31 10:53:29 -07:00
ice-server don't change DF or buffer sizes for ice-server 2016-10-25 11:20:10 -07:00
interface Merge pull request #8997 from howard-stearns/raise-desktop-when-showing-it 2016-11-04 10:45:05 -07:00
libraries Merge pull request #8993 from samcake/blue 2016-11-03 16:48:52 -07:00
plugins Add proper adding and removal of subdeviceNames in SDL2Manager after startup 2016-11-03 14:02:58 -07:00
script-archive Fix assets example not using correct API 2016-08-15 09:28:26 -07:00
scripts Merge pull request #8990 from howard-stearns/centered-toolbar 2016-11-03 14:18:32 -07:00
server-console Merge pull request #8969 from huffman/feat/task-manager-app-name 2016-11-02 14:21:19 -07:00
tests Merge branch 'master' of github.com:highfidelity/hifi into possible-fix-for-2068 2016-10-28 16:41:39 -07:00
tools Add tools/atp-extract.py 2016-11-04 11:23:10 -07:00
tutorial Merge pull request #8988 from huffman/fix/tutorial-smooth-turn 2016-11-02 17:17:51 -07:00
unpublishedScripts Update portal to ensure that properties exist 2016-10-27 15:03:15 -07:00
.eslintrc.js eslintrc: accept spaces after function keyword in anonymous functions 2016-08-08 15:20:58 -07:00
.gitattributes make the rsrc icon a binary 2016-01-20 10:48:48 -08:00
.gitignore Add the ability to ignore invisible entities in findRayIntersection 2016-10-04 20:19:32 -07:00
BUILD.md updated build instructions 2016-09-06 17:36:52 -07:00
BUILD_ANDROID.md update ndk version in BUILD_ANDROID 2016-09-01 10:50:10 -07:00
BUILD_LINUX.md Add additional linux dependencies. 2015-09-06 21:41:36 -04:00
BUILD_OSX.md updated build instructions to use official qt release instead of homebrew 2016-09-06 17:38:48 -07:00
BUILD_WIN.md updated build instructions 2016-09-06 17:36:52 -07:00
CMakeGraphvizOptions.cmake Support QML and Web content in overlay windows 2015-12-30 09:14:49 -08:00
CMakeLists.txt GLM update and GLI integration 2016-09-09 10:18:15 -07:00
CONTRIBUTING.md fix accidentally violated style rule 3.1.2.1 2016-04-04 17:33:47 +02: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 Update readme 2016-03-23 13:19:34 -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).

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!