Project

General

Profile

Wiki » History » Version 23

Josip Almasi, 05/22/2021 08:18 PM

1 4 Josip Almasi
{{toc}}
2
3 1 Josip Almasi
h1. Welcome!
4 2 Josip Almasi
5 18 Josip Almasi
h2. External resources
6 4 Josip Almasi
7 14 Josip Almasi
Demo site: https://www.vrspace.org/
8
9 15 Josip Almasi
Github project page: https://github.com/jalmasi/vrspace
10 2 Josip Almasi
11 16 Josip Almasi
OpenSource.com article (motivation): https://opensource.com/article/20/12/virtual-reality-server
12 3 Josip Almasi
13 15 Josip Almasi
VR Days video (features, technologies): https://vimeo.com/475142708
14 3 Josip Almasi
15 15 Josip Almasi
Youtube channel: https://www.youtube.com/channel/UCLdSg22i9MZ3u7ityj_PBxw
16 1 Josip Almasi
17 16 Josip Almasi
Facebook page: https://fb.com/vrspace.org
18 14 Josip Almasi
19
Client API jsdoc: https://www.vrspace.org/docs/jsdoc/index.html
20
21
Server javadoc: https://www.vrspace.org/docs/javadoc/index.html?overview-summary.html
22 4 Josip Almasi
23 23 Josip Almasi
h2. Playgrounds
24
25
Multi-user interaction, shared objects: https://playground.babylonjs.com/#ZBK155
26
Multi-user world: https://playground.babylonjs.com/#Y6ILJ5
27
Avatar selection, portals: https://playground.babylonjs.com/#HDV7LA
28
29 17 Josip Almasi
h1. Frequently Asked Questions
30
31
h2. Is this open source, free to use and share?
32
33
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.
34
35
h2. Is there any documentation?
36
37
This is good place to start, this page links to all available resources.
38
39
h2. How many users can share a “world/space” simultaneously?
40
41
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.
42
43 4 Josip Almasi
h1. Setting up development environment
44
45
Here's all you need to start development on Windows.
46 20 Josip Almasi
Linux distributions include all these tools as native packages, so no additional downloads should be required.
47 4 Josip Almasi
48
h2. Basic setup
49
50
h3. Git bash
51
52
IDEs can work with github directly, but whatever you ask, you'll get a command line answer.
53
Command line git is simply a must have. Bash also includes a lot of goodies like ssh.
54
55
https://git-scm.com/downloads
56
57
h3. Java
58
59 21 Josip Almasi
Java 8 will work, java 11 recommended. JDK is required to build the server.
60
Get it either from Oracle or elsewhere, e.g. Zulu OpenJDK: https://www.azul.com/downloads/zulu-community/?package=jdk
61 4 Josip Almasi
62
h3. Node.js
63
64
Node is used by IDE to evaluate javascript. You'll also may need it if you modify any of babylon.js source.
65
Mind that IDE will complain if you installed unsupported version of Node; should that happen, remove Node, and install latest one supported.
66
67
Get it from https://nodejs.org/
68
69 19 Josip Almasi
h3. Maven
70
71
Apache Maven is used to build the server from command prompt.
72
73
Get it from https://maven.apache.org/download.cgi
74
75
76 4 Josip Almasi
h3. IDE
77
78
Eclipse for Java developers (not enterprise), with Spring and Web plugins:
79
80
Download eclipse here: https://www.eclipse.org/
81
82
And then go to Help -> Eclipse Marketplace
83
Search and install Spring Tools 4 and Wild Web Developer plugins.
84
85 6 Josip Almasi
You'll also need to download and install https://projectlombok.org/
86 8 Josip Almasi
Once done, restart the eclipse.
87 6 Josip Almasi
88 5 Josip Almasi
h2. Import and start the project
89
90 22 Josip Almasi
h3. IDE
91
92 5 Josip Almasi
In Eclipse, you can use either default or new workspace for the project.
93
Assuming you have cloned the project from the github, 
94
Go to File -> Open Projects From the Filesystem
95
Then choose vrspace directory.
96
97
This will import vrspace folders and project subfolders, click Finish.
98
99
In vrspace project folder, in src/main/java, there's org.vrspace.server.ServerApplication.java.
100
Open it, then right click on the code.
101
From the menu, choose either Run as or Debug as -> Spring Boot App.
102
103
Open http://localhost:8080/babylon/connect.html with two browsers, and navigate around.
104
105
That's all, you're all set!
106 22 Josip Almasi
107
h3. git bash
108
109
git clone https://github.com/jalmasi/vrspace.git
110
cd vrspace
111
mvn clean install
112
java -jar server/target/server-0.2.2.jar
113 4 Josip Almasi
114
h2. Advanced setup
115
116 12 Josip Almasi
h3. SSL
117 4 Josip Almasi
118 12 Josip Almasi
HTTPS is required for pretty much everything - WebXR, camera, mic access.
119
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:
120 1 Josip Almasi
121 12 Josip Almasi
<pre>
122
server.ssl.enabled=false
123
# default port 8080
124
#server.port=8443
125 13 Josip Almasi
</pre>
126 12 Josip Almasi
127
h3. Apache
128
129
Apache reverse proxy setup, linux, windows, TBD
130 4 Josip Almasi
131
h3. Docker and OpenVidu
132
133
OpenVidu voice/video chat server runs as docker image. This is only required for development of voice chat functions.
134
135 10 Josip Almasi
Local execution (development):
136 11 Josip Almasi
docker run -p 4443:4443 --rm -e OPENVIDU_SECRET=YOUR_SECRET -e DOMAIN_OR_PUBLIC_IP=YOUR_IP openvidu/openvidu-server-kms:2.17.0
137 10 Josip Almasi
138
Running on server:
139 1 Josip Almasi
https://docs.openvidu.io/en/2.17.0/deployment/deploying-on-premises/
140 11 Josip Almasi
141
Then either modify openvidu.publicurl and openvidu.secret in application.properties, or run server.jar with -Dopenvidu.publicurl=YOUR_URL and -Dopenvidu.secret=YOUR_SECRET