-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathImmersiveSpace.js
More file actions
131 lines (112 loc) · 2.59 KB
/
Copy pathImmersiveSpace.js
File metadata and controls
131 lines (112 loc) · 2.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/* ImmersiveSpace.js */
/* Reference files
// !ref: helpers.js
// !ref: server.js
// !ref: masterclient.js
// !ref: slaveclients.js
// !ref: assets/class.js
// !ref: assets/compass.png
// !ref: assets/needle.png
// !ref: assets/metal1.png
// !ref: assets/Metal.material
// !ref: assets/Arrow.mesh
// !ref: assets/Arrow.mesh.xml
// !ref: assets/needle.png
*/
var _loaderInstance = null;
var masterClientName = "client1";
/**
* Includes another javascript files.
* @method engine.IncludeFile
* @param file {String} File name
*/
engine.IncludeFile("helpers.js");
engine.IncludeFile("assets/class.js");
/**
* The loader class.
* @class LoaderClass
* @extension Class
* @constructor
*/
var LoaderClass = Class.extend
({
/**
* Main class initialisation.
* @method init
* @static
*/
init: function()
{
/**
* File which we want to include.
* @property file
* @type String
*/
/**
* Checks if this instance is running as a server.
* @method isServer
*/
if (isServer())
file = "server.js";
/**
* Checks if this instance is running as a client.
* @method isClient
*/
else if (isClient())
{
/**
* Regular expression pattern for matching slaveclient name
* @property regexp
* @type regular expression string
* @static
* @final
*/
var regexp = /client[2-6]/;
/**
* Returns username from login properties
* @method client.LoginProperty
* @param "username" {String}
* @return {String} Username
*/
var username = client.LoginProperty("username");
// match for the masterclient
if (username == masterClientName)
file = "masterclient.js";
/**
* Use regular expression to match for the slaveclients name.
* @method username.match
* @param regexp {Regular expression string} Returns true if match
* @return {Boolean} Boolean value
*/
else if (username.match(regexp))
file = "slaveclients.js";
else
{
/**
* Outputs log error message.
* @method LogError
* @param string {String} Text to output
*/
LogError("Client's username '" + username + "' invalid!");
return;
}
/**
* Imports Qt extensions.
* @method engine.ImportExtension
* @param file {String} Qt extension file name
*/
engine.ImportExtension("qt.core");
engine.ImportExtension("qt.gui");
engine.ImportExtension("qt.webkit");
}
/**
* Outputs log message.
* @method Log
* @param string {String} Text to output
*/
Log(file + " has been included");
engine.IncludeFile(file);
}
});
// Startup
_loaderInstance = new LoaderClass();