Project

General

Profile

Wiki » History » Version 91

Josip Almasi, 01/01/2026 08:20 PM

1 4 Josip Almasi
{{toc}}
2
3 91 Josip Almasi
change test
4
5 1 Josip Almasi
h1. Welcome!
6 2 Josip Almasi
7 18 Josip Almasi
h2. External resources
8 4 Josip Almasi
9 14 Josip Almasi
Demo site: https://www.vrspace.org/
10
11 15 Josip Almasi
Github project page: https://github.com/jalmasi/vrspace
12 2 Josip Almasi
13 63 Josip Almasi
OpenSource.com articles: 
14
https://opensource.com/article/20/12/virtual-reality-server
15
https://opensource.com/article/22/1/open-source-metaverse
16 3 Josip Almasi
17 15 Josip Almasi
VR Days video (features, technologies): https://vimeo.com/475142708
18 3 Josip Almasi
19 87 Josip Almasi
Open Source Metaverse talk in London, Open Source in Finance conference: https://www.youtube.com/watch?v=lIQd_3935Gk
20
Open Source NFT part of it starts around 27:30: https://www.youtube.com/watch?v=lIQd_3935Gk&t=27m30s
21 70 Josip Almasi
22 15 Josip Almasi
Youtube channel: https://www.youtube.com/channel/UCLdSg22i9MZ3u7ityj_PBxw
23 1 Josip Almasi
24 16 Josip Almasi
Facebook page: https://fb.com/vrspace.org
25 14 Josip Almasi
26
Client API jsdoc: https://www.vrspace.org/docs/jsdoc/index.html
27
28 72 Josip Almasi
Server javadoc: https://www.vrspace.org/docs/javadoc/index.html?overview-summary.html
29
30 23 Josip Almasi
h2. Playgrounds
31
32
Multi-user interaction, shared objects: https://playground.babylonjs.com/#ZBK155
33
Multi-user world: https://playground.babylonjs.com/#Y6ILJ5
34
Avatar selection, portals: https://playground.babylonjs.com/#HDV7LA
35 24 Josip Almasi
VR Avatar template world: https://www.babylonjs-playground.com/#VXA0R3
36 23 Josip Almasi
37 17 Josip Almasi
h1. Frequently Asked Questions
38
39
h2. Is this open source, free to use and share?
40
41
Yes, it's all free and open. Server and client code is published under Apache 2 license, all 3D models published by their respective authors under Creative Commons Attribution license.
42
43
h2. Is there any documentation?
44
45
This is good place to start, this page links to all available resources.
46
47 45 Josip Almasi
h2. I want to build my space, where do I start?
48
49 46 Josip Almasi
This question prompted writing Getting Started section of this wiki, but set up basic development environment first.
50
You don't need to modify any of the server code, but you need to be able to get it from github and build it.
51
Once you do, start it up, and everything else is html 5 and javascript ES6.
52 45 Josip Almasi
53 66 Josip Almasi
h2. How do I create my own world(s)?
54
55
You can use any authoring tool that exports glTF: Blender, Unity, Unreal, to name a few. You will likely need some glTF exporter plugin.
56 67 Josip Almasi
Export your model in a folder under vrspace/content/worlds, vrspace server automatically picks it up, and creates another portal for it.
57 68 Josip Almasi
Save a screenshot of your world as jpg file in vrspace/content/worlds, and it will be used as portal texture.
58 66 Josip Almasi
59 17 Josip Almasi
h2. How many users can share a “world/space” simultaneously?
60
61
By default, number of users per space is not limited. There is a server parameter to limit that (org.vrspace.server.maxSessions) that can be specified either in config file or command line. Users that hit the limit remain in the queue for configurable timeout (org.vrspace.server.sessionStartTimeout, zero by default) until someone leaves. An error is raised on timeout.
62
63 39 Josip Almasi
h2. How can I implement custom authentication and/or authorization?
64 1 Josip Almasi
65 39 Josip Almasi
Typically you will authenticate users on your web server, before they enter the world. 
66
If that's not enough, you can implement your own "ClientFactory":https://github.com/jalmasi/vrspace/blob/master/server/src/main/java/org/vrspace/server/core/ClientFactory.java and configure it in "application.properties":https://github.com/jalmasi/vrspace/blob/master/server/src/main/resources/application.properties file.
67 1 Josip Almasi
This allows you to do your own database queries, REST calls or whatever else you may need to identify your users.
68
69 39 Josip Almasi
h2. How is that different from a game server?
70 38 Josip Almasi
71 40 Josip Almasi
It's not all that different, though the emphasis is different: vrspace.org is not focused on games specifically. It's more about multi-user 3D web, in particular WebXR, open standards and open source.
72 39 Josip Almasi
So while game servers usually don't bother with video/audio streaming, vrspace.org provides it out of the box, using WebRTC. On the other hand, there's nothing like game level in vrspace.org.
73 59 Josip Almasi
Basic difference is that, while game servers focus on sharing the state of the game, vrspace.org server shares the state of any number of objects. No object in particular special in any way, there's no 'game loop' object.
74 38 Josip Almasi
75 42 Josip Almasi
h2. How does inverse kinematics and motion tracking work in vrspace.org characters?
76 41 Josip Almasi
77 62 Josip Almasi
Everything is encapsulated "Avatar class":https://github.com/jalmasi/vrspace/blob/master/babylon/js/ui/avatar.js, but relies on observed glTF avatar structure. Heuristics used to analyze the character structure is explained in depth in "this research paper":https://www.researchgate.net/publication/356987355_TOWARDS_AUTOMATIC_SKELETON_RECOGNITION_OF_HUMANOID_3D_CHARACTER.
78 41 Josip Almasi
79 56 Josip Almasi
h2. Why websockets?
80
81
Since death of internet explorer, websockets just work, in any browser. Some reliable multicast protocol would do better job for object state distribution, but no such protocol is supported by web browsers. WebRTC on the other hand is widely supported, but is unreliable, and requires complex development environment setup.
82
83 60 Josip Almasi
h2. Can I make/buy and use my own unique avatar?
84
85
Sure you can, but note that technically you can't prevent anybody else from copying and using it. Using video avatar is the only practical option to have unique appearance.
86
87 64 Josip Almasi
h2. How to enable https?
88
89 65 Josip Almasi
The server comes bundled with self-signed certificate, so all you need to do to enable SSL is change *server.ssl.enabled* property in "application.properties":https://github.com/jalmasi/vrspace/blob/master/server/src/main/resources/application.properties to true. You may also want to set *server.port* to 443.
90 64 Josip Almasi
91 75 Nate Lager
h2. Running in a container (docker, podman, OCI compliant)
92 74 Josip Almasi
93 76 Nate Lager
h3. Build your own
94 77 Nate Lager
95 74 Josip Almasi
See step-by-step guide and the discussion here: https://redmine.vrspace.org/boards/2/topics/226
96 1 Josip Almasi
97 76 Nate Lager
h3. Run the pre-built community maintained container image
98 77 Nate Lager
99 76 Nate Lager
Pull the container from Docker Hub.  https://hub.docker.com/r/gangrif/vrspace
100 74 Josip Almasi
101 47 Josip Almasi
h1. Getting started
102
103
So, you're new to VRSpace, and you want to make yourself a new virtual world.
104
You will not need to change any of the server code, but you need to get it from github, build it, and start it.
105
Once done, familiarize yourself with directory structure, and especially with template world, as this is intended stating point.
106
107
h2. Directory structure
108
109
h3. server
110
111
Contains the server code and configuration. Generally you don't need to change the code, but you may want to change the configuration. Main configuration file is in src/main/resources/application.properties, have a look at what you can change.
112 50 Josip Almasi
The server executable is a jar file in target subdirectory.
113 47 Josip Almasi
114
h3. babylon
115
116
This is reference Babylon.js client implementation. You don't really need any of it, but it is highly recommended to build on top of it, using javascript code provided there.
117
Html files there implement and/or test different functions available, like avatar loading and movement, video/audio streaming etc.
118
Most important one is avatar-selection.html, this is main entry point that allows user to select avatar and enter a world.
119
120
h3. web
121
122
This is the actual web site that's available online on vrspace.org, your final web site will probably look somewhat like this.
123
124
h3. content
125
126
Actual web content used to build virtual worlds, with self-explanatory directory names. Two of these contain special attention though:
127
128
h4. char
129
130
Characters, under female, male and other subdirectories. These directories are listed and presented by avatar-selection.html, you will probably to change how it works eventually.
131 48 Josip Almasi
But adding or removing characters is as simple as dropping them here.
132 47 Josip Almasi
133
h4. worlds
134
135 48 Josip Almasi
Available worlds, also listed by avatar-selection.html, and displayed as portals. Every subdirectory contains one world, and also note there's an image with the same name - that's thumbnail displayed on the portal.
136 49 Josip Almasi
Every world has some specific features.
137
Paris is huge, a real-life model.
138
Persian city and Aladin both feature the same procedural terrain and plants.
139 1 Josip Almasi
Cave is an actual game level, and utilizes floors built with vrspace.org floor editor.
140 50 Josip Almasi
Classrooom allows for sharing screen.
141
But the template is where you start - copy it over to another directory, and edit to suit your needs.
142
143
h2. Your first world
144
145 51 Josip Almasi
So with the server running, copy the template directory to your own. This world is immediately listed at http://localhost:8080/content/worlds/ and also available in http://localhost:8080/babylon/avatar-selection.html as a portal.
146 1 Josip Almasi
All you need to do to replace that dolphin with your own world is to replace this.file='dolphin.glb' in world.js with your own file name. Or really, delete the entire constructor, and save your world as scene.gltf in the same directory.
147 51 Josip Almasi
Hit reload button/key in your web browser, changes become visible immediately.
148 50 Josip Almasi
149
There are two files there, a html and a js, but html also contains some javascript.
150 52 Josip Almasi
The idea behind this separation of concerns is that world.js contains all programming logic that relates to the world itself, it should not depend on any server functionality. So build your world first, then add multi-user functions to it. Javascript in the world.html file shows some basic multiuser functions. As these grow, you'll probably want them in another javascript file, but these are minimum to get started.
151 50 Josip Almasi
152 51 Josip Almasi
Hopefully comments world.js and world.html explain enough to get started. As you need more functionality, look at other worlds and copy it over.
153 47 Josip Almasi
154 4 Josip Almasi
h1. Setting up development environment
155
156
Here's all you need to start development on Windows.
157 20 Josip Almasi
Linux distributions include all these tools as native packages, so no additional downloads should be required.
158 4 Josip Almasi
159
h2. Basic setup
160
161
h3. Git bash
162
163
IDEs can work with github directly, but whatever you ask, you'll get a command line answer.
164
Command line git is simply a must have. Bash also includes a lot of goodies like ssh.
165
166
https://git-scm.com/downloads
167
168
h3. Java
169
170 86 Josip Almasi
Java 17 is required run, JDK is required to build the server.
171 21 Josip Almasi
Get it either from Oracle or elsewhere, e.g. Zulu OpenJDK: https://www.azul.com/downloads/zulu-community/?package=jdk
172 4 Josip Almasi
173
h3. Node.js
174
175
Node is used by IDE to evaluate javascript. You'll also may need it if you modify any of babylon.js source.
176
Mind that IDE will complain if you installed unsupported version of Node; should that happen, remove Node, and install latest one supported.
177
178
Get it from https://nodejs.org/
179
180 19 Josip Almasi
h3. Maven
181
182
Apache Maven is used to build the server from command prompt.
183
184
Get it from https://maven.apache.org/download.cgi
185
186 4 Josip Almasi
h3. IDE
187
188 79 Josip Almasi
Eclipse for Java Enterprise Java and Web Developers: https://www.eclipse.org/
189
Install Lombok plugin https://projectlombok.org/
190 1 Josip Almasi
191 78 Josip Almasi
And then go to Help -> Eclipse Marketplace
192 79 Josip Almasi
Search and install Spring Tools 4.
193 6 Josip Almasi
194 81 Josip Almasi
h2. Import and start the project
195 79 Josip Almasi
196 81 Josip Almasi
h3. git bash
197 1 Josip Almasi
198 81 Josip Almasi
git clone https://github.com/jalmasi/vrspace.git
199
cd vrspace
200
mvn clean install
201 82 Josip Almasi
cd server
202 83 Josip Almasi
java -jar target/server-VERSION-executable.jar
203
204
(server version is printed after the build, e.g. 0.6.3-SNAPSHOT)
205 5 Josip Almasi
206 22 Josip Almasi
h3. IDE
207
208 5 Josip Almasi
In Eclipse, you can use either default or new workspace for the project.
209
Assuming you have cloned the project from the github, 
210
Go to File -> Open Projects From the Filesystem
211
Then choose vrspace directory.
212
213
This will import vrspace folders and project subfolders, click Finish.
214
215
In vrspace project folder, in src/main/java, there's org.vrspace.server.ServerApplication.java.
216
Open it, then right click on the code.
217
From the menu, choose either Run as or Debug as -> Spring Boot App.
218
219 80 Josip Almasi
To run with java 17, you'll need to specify run configuration instead, with VM arguments: --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.nio=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.util.concurrent=ALL-UNNAMED --add-opens java.base/sun.net.www.protocol.http=ALL-UNNAMED --add-opens java.base/sun.nio.ch=ALL-UNNAMED
220 22 Josip Almasi
221
Open http://localhost:8080/babylon/connect.html with two browsers, and navigate around.
222
223
That's all, you're all set!
224
225 4 Josip Almasi
h2. Advanced setup
226
227 12 Josip Almasi
h3. SSL
228 4 Josip Almasi
229 12 Josip Almasi
HTTPS is required for pretty much everything - WebXR, camera, mic access.
230
By default, the server runs on 8080 port with plain HTTP. To enable HTTPS, edit application.properties (found in src/main/resources), and change following properties:
231 1 Josip Almasi
232 12 Josip Almasi
<pre>
233
server.ssl.enabled=false
234
# default port 8080
235
#server.port=8443
236 13 Josip Almasi
</pre>
237 12 Josip Almasi
238
h3. Apache
239
240
Apache reverse proxy setup, linux, windows, TBD
241 4 Josip Almasi
242
h3. Docker and OpenVidu
243
244
OpenVidu voice/video chat server runs as docker image. This is only required for development of voice chat functions.
245
246 71 Josip Almasi
Modify openvidu.publicurl and openvidu.secret in application.properties, or run server.jar with -Dopenvidu.publicurl=YOUR_URL and -Dopenvidu.secret=YOUR_SECRET
247
248
h4. Local execution (development)
249
250 85 Josip Almasi
docker run -p 4443:4443 --rm -e FORCE_PLAIN_HTTP=false -e SERVER_SSL_ENABLED=true -e OPENVIDU_SECRET=YOUR_SECRET -e DOMAIN_OR_PUBLIC_IP=YOUR_IP openvidu/openvidu-server-kms:2.30.1
251 1 Josip Almasi
252 71 Josip Almasi
Enter a space. You may get
253
WebSocket connection to 'wss://YOUR_IP:4443/openvidu?sessionId=cave' failed: Error in connection establishment: net::ERR_CERT_AUTHORITY_INVALID
254
in the console. To get rid of it, open https://YOUR_IP:4443/ and accept the cert.
255
(using localhost as YOUR_IP may not work)
256
257
h4. Running on server
258 1 Josip Almasi
259 90 Josip Almasi
https://docs.openvidu.io/en/2.31.0/deployment/deploying-on-premises/
260 88 Josip Almasi
261
h3. Setting up Oauth2
262
263
Oauth2 client for localhost is set up in application.properties and enabled by default.
264
For live servers, generate client id/secret pair with providers:
265
266
Github: https://github.com/settings/developers
267
FB: https://developers.facebook.com/apps/
268
Google: https://console.cloud.google.com/auth/clients/
269 25 Josip Almasi
270
h1. Software Architecture
271 26 Josip Almasi
272 89 Josip Almasi
!https://redmine.vrspace.org/attachments/download/41/vrspace-diagram.png!
273 26 Josip Almasi
274
h2. Client-Server Communication
275
276 31 Josip Almasi
Clients communicate with server by sending JSON messages over "WebSockets":https://en.wikipedia.org/wiki/WebSocket. Reference javascript implementation of client communication layer is in "VRSpace.js":https://www.vrspace.org/docs/jsdoc/VRSpace.html.
277 26 Josip Almasi
278
General approach to communication is rather obscure Half-Object pattern: server-side and client-side object have same properties, but different implementations.
279
Whenever an object's property changes in (any) client's address space, it's transmitted to the server, that broadcasts it to all clients currently 'watching' the object.
280
281
Whenever a client wants to perform any change to any object in the space, it has to go through the VRSpace server.
282
Clients may or may not communicate directly, but this is out of the scope of VRSpace server.
283
284
h2. Server Responsibilities
285
286
Sole responsibility of VRSpace server is management of 3D space: persisting space objects, tracking their properties, processing and distributing events from/to objects.
287 27 Josip Almasi
Whenever we talk about objects, that includes clients, i.e. users - a client is a special case of an object.
288
The server does not even handle the authentication - it is assumed to be responsibility of web app serving the space.
289
3D geometry is also not in server's scope, it's just another property of an object (mesh).
290
291
h2. Server design
292
293
Key concepts here are Active Objects, Actor model, and Live distributed object.
294
295 53 Josip Almasi
"VRObject":https://github.com/jalmasi/vrspace/blob/master/server/src/main/java/org/vrspace/server/obj/VRObject.java is a basic shared object, with some basic properties like position and rotation, and of course, mesh. It essentially a "Business object":https://en.wikipedia.org/wiki/Business_object acting as a "Live distributed object":https://en.wikipedia.org/wiki/Live_distributed_object.
296 27 Josip Almasi
297 28 Josip Almasi
"Client":https://github.com/jalmasi/vrspace/blob/master/server/src/main/java/org/vrspace/server/obj/Client.java extends VRObject, and adds capabilities to communicate over web sockets, and listen to changes to other objects. Typically, a client represents a remote user, but it can also represent a robot connected over a web socket, or be a base class for a server-side robot.
298
A Client can be thought of as "Active Object":https://en.wikipedia.org/wiki/Active_object or an "Actor":https://en.wikipedia.org/wiki/Actor_model, 
299 27 Josip Almasi
300
Server relies on Spring Boot and embedded Tomcat to handle all I/O and threads.
301 29 Josip Almasi
302 55 Josip Almasi
Design does not require websockets in particular, in fact some reliable multicast protocol would surely fit better. Websockets work in web browsers.
303
304 33 Josip Almasi
h3. Client
305 29 Josip Almasi
306 30 Josip Almasi
Each "Client":https://github.com/jalmasi/vrspace/blob/master/server/src/main/java/org/vrspace/server/obj/Client.java has it's own "Scene":https://github.com/jalmasi/vrspace/blob/master/server/src/main/java/org/vrspace/server/core/Scene.java that tracks all shared objects - including other clients - visible by the client. The scene is initially populated once the client logs in to the server, and starts the session. Scene is refreshed periodically, after a movement, or explicitly.
307 29 Josip Almasi
308
Scene maintains the event model, by adding the Client as listener to all other active objects (usually other users) in the scene.
309 1 Josip Almasi
310 30 Josip Almasi
Client simply notifies it's own listeners on any changes to any of it's own properties. As a listener, it propagates any observed change on any other object over the network, to the user.
311
312
Client has just a couple of persistent properties, like position, rotation and name. The name must be unique.
313
All other properties are transient.
314
315 33 Josip Almasi
"ClientFactory":https://github.com/jalmasi/vrspace/blob/master/server/src/main/java/org/vrspace/server/core/ClientFactory.java allows for customization of Client class and instances.
316 1 Josip Almasi
317 33 Josip Almasi
h3. Events and messages
318
319 30 Josip Almasi
Typically events exchanged are changes to properties of active objects, e.g. user moves around, changing own position and rotation. However, an object may emit any event, and the event gets propagated to all listeners.
320 1 Josip Almasi
This is to simplify client development: simply emit any custom event you want.
321 32 Josip Almasi
All distributed events are encapsulated in "VREvent":https://github.com/jalmasi/vrspace/blob/master/server/src/main/java/org/vrspace/server/dto/VREvent.java class.
322
323
However, there are other types of messages that are not distributed to other clients: commands and their return values, and errors.
324 1 Josip Almasi
Client will typically execute at least one command during the session - "Session":https://github.com/jalmasi/vrspace/blob/master/server/src/main/java/org/vrspace/server/dto/Session.java start. It will not receive any messages before that.
325
Should any server-side exception occur during the session, errors are sent to the client as simple JSON maps.
326 33 Josip Almasi
327
"WorldManager":https://github.com/jalmasi/vrspace/blob/master/server/src/main/java/org/vrspace/server/core/WorldManager.java manages clients and event distribution between them.
328
329
h3. Worlds
330
331
A server can host many worlds, i.e. shared spaces. A world contains users and other objects that are shared only within the world. It can be thought of as a chatroom, but mind the difference: being in the same world does not mean that users can see and talk to each other.
332
Client can enter another world by issuing "Enter":https://github.com/jalmasi/vrspace/blob/master/server/src/main/java/org/vrspace/server/dto/Enter.java command.
333
334 35 Josip Almasi
h3. Ownership and privacy
335
336
A class can be annotated as Owned, and all of instances automatically become owned as they are created. An owned object does not receive events from anyone by owner(s). A Client is owned, and nobody but himself can change his name.
337
On the other hand, a generic VRObject is public, and receives events from anyone. Like a door, anybody can open and close it. But even public objects can have some properties annotated as Owned, that can't be change by anyone but owner.
338
Fields of a class can be annotated as Private, and their contents will never be published.
339
340
"Dispatcher":https://github.com/jalmasi/vrspace/blob/master/server/src/main/java/org/vrspace/server/core/Dispatcher.java takes care of it before property changes are applied, and before they are published to listeners.
341
342 33 Josip Almasi
h3. Package structure
343
344
Package "org.vrspace.server":https://github.com/jalmasi/vrspace/tree/master/server/src/main/java/org/vrspace/server contains only main application class. Under it,
345
- config package contains server configuration classes that are executed only on server statup
346
- core is the core of the server
347 34 Josip Almasi
- dto is misnomer that stands Data Transfer Objects, though this package contains all objects that are not shared nor persisted
348 33 Josip Almasi
- obj contains persistent objects, most importantly Client and VRObject
349
- types are custom types used elsewhere, be it interfaces or annotations
350
- web is a primitive admin interface, disabled by default
351 54 Josip Almasi
- api contains REST controllers