forked from MrAntares/roBrowserLegacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.js
503 lines (404 loc) · 11.7 KB
/
api.js
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
/**
* api.js
*
* Robrowser application entry, starting instance.
*
* This file is part of ROBrowser, (http://www.robrowser.com/).
*
* @author Vincent Thibault
*/
(function ROAPI(){
'use strict';
/**
* @Constructor
*/
function ROBrowser( options ){
if (typeof options === 'object') {
var key;
for (key in options) {
if (ROBrowser.prototype.hasOwnProperty( key )) {
this[ key ] = options[key];
}
}
}
}
/**
* @Enum Robrowser type
*/
ROBrowser.TYPE = {
POPUP: 1,
FRAME: 2
};
/**
* @Enum Robrowser Applications
*/
ROBrowser.APP = {
ONLINE: 1,
MAPVIEWER: 2,
GRFVIEWER: 3,
MODELVIEWER: 4,
STRVIEWER: 5,
GRANNYMODELVIEWER: 6, //sound weird O_o
EFFECTVIEWER: 7,
};
/**
* @var {number} screen width
*/
ROBrowser.prototype.width = 0;
/**
* @var {number} screen height
*/
ROBrowser.prototype.height = 0;
/**
* @var {mixed} grf listing
*
* a) {Array} of GRFs:
* [ 'custom.grf', 'palette.grf', 'data.grf' ]
*
* b) {string} DATA.INI filename to load
* 'DATA.INI'
*
* c) {RegExp} to filter grf files:
* /\.grf$/i
*/
ROBrowser.prototype.grfList = null;
/**
* @var {servers} server listing
*
* a) {string} clientinfo file to load
* 'data/clientinfo.xml'
*
* b) {Array} server list to display:
*/
ROBrowser.prototype.servers = 'data/clientinfo.xml';
/**
* @var {string} Host where to download files
*/
ROBrowser.prototype.remoteClient = 'http://grf.robrowser.com/';
/**
* @var {number|string} packet version
*
* Supported value:
* a) YYYYMMDD (number: date you want)
* c) 'executable' (detect packetver from executable compilation date)
*/
ROBrowser.prototype.packetver = 'auto';
/**
* @var {number} character info block size
* If not set, it will try to guess the type based on the packetver and the block total length
*/
ROBrowser.prototype.charBlockSize = 0;
/**
* @var {string} client hash to send to server
*/
ROBrowser.prototype.clientHash = null;
/**
* @var {string} calculate client hash
*/
ROBrowser.prototype.calculateHash = false;
/**
* @var {string} files to hash for hash calculation
*/
ROBrowser.prototype.hashFiles = [];
/**
* @var {constant} application name (see: ROBrowser.APP.* )
*
* Known applications:
* a) ROBrowser.APP.ONLINE - RoBrowser online mode
* b) ROBrowser.APP.GRFVIEWER - parse and visualize GRF contents
* c) ROBrowser.APP.MAPVIEWER - parse and visualize maps
*/
ROBrowser.prototype.application = ROBrowser.APP.ONLINE;
/**
* @var {constant} container type (see: ROBrowser.TYPE.POPUP)
*/
ROBrowser.prototype.type = ROBrowser.TYPE.POPUP;
/**
* @var {string} element ID
* If using container type 'frame', place the content in the HTMLElement specify
*/
ROBrowser.prototype.target = null;
/**
* @var {boolean} is in development mode ?
*/
ROBrowser.prototype.development = false;
/**
* @var {boolean} load lua files ?
*/
ROBrowser.prototype.loadLua = false;
/**
* @var {function} callback to execute once roBrowser is ready
*/
ROBrowser.prototype.onReady = null;
/**
* @var {boolean} use API once ready ?
*/
ROBrowser.prototype.api = false;
/**
* @var {string} proxy server ex: 'ws://pserver.com:5200/'
*/
ROBrowser.prototype.socketProxy = null;
/**
* @var {boolean}dump packet as hex in console ?
*/
ROBrowser.prototype.packetDump = false;
/**
* @var {integer|boolean|array} packetKeys
* see: http://hercules.ws/board/topic/1105-hercules-wpe-free-june-14th-patch/
*
* Supported value:
* - integer : client date,
* ex: packetKeys: 20131223,
* - boolean : supported ? If it's the case, will use the executable compiled date to get the keys
* ex: packetKeys: true,
* - array: the keys you want to use:
* ex: packetKeys: [0xFF2615DE, 0x96AAE533, 0x1166CC33],
*/
ROBrowser.prototype.packetKeys = false;
/**
* @var {boolean} should we save files in chrome filesystem ?
*
* If set to true, then we try to save the files loaded from server/grfs on a filesystem to load
* them faster the next time.
*
* Only working on Chrome, status: deprecated.
*/
ROBrowser.prototype.saveFiles = true;
/**
* @var {boolean} skip server list if only one server define ?
*
* If set to true and the server list (clientinfo, char-server list) just have one
* element defined, the window will be skipped and you will auto-connect to the server.
*
* Set to false, will display the server list even if there is just one server set.
*/
ROBrowser.prototype.skipServerList = true;
/**
* @var {boolean} do we skip the intro ?
* Note: if you skip it, the user will not be able to load their local fullclient
*/
ROBrowser.prototype.skipIntro = false;
/**
* @var {Array} do you want to auto-login to the server ?
* Can be used in a securized session to auto-connect to the server without inserting login-pass (ie: Facebook app ?)
* Using as autoLogin: ["username", "userpass"]
*/
ROBrowser.prototype.autoLogin = [];
/**
* @var {boolean} Enable Cash Shop UI
*/
ROBrowser.prototype.enableCashShop = false;
/**
* @var {boolean} Enable Bank UI
*/
ROBrowser.prototype.enableBank = false;
/**
* @var {boolean} Enable Refine UI
*/
ROBrowser.prototype.enableRefineUI = false;
/**
* @var {boolean} Enable Damage Suffix
*/
ROBrowser.prototype.enableDmgSuffix = false;
/**
* @var {boolean} Enable Map Name Banner
*/
ROBrowser.prototype.enableMapName = false;
/**
* @var {boolean} Enable Check Attendance UI
*/
ROBrowser.prototype.enableCheckAttendance = false;
/**
* @var {boolean} User interface version selection mode (PacketVer | PreRenewal | Renewal)
*/
ROBrowser.prototype.clientVersionMode = "PacketVer";
/**
* @var {mixed} set a version to avoid browser cache problem so
* your users wil get the latest version running instead of a
* cached one.
*/
ROBrowser.prototype.version = '';
/**
* @var {URL} URL to the server's registration site
*/
ROBrowser.prototype.registrationweb = '';
/**
* @var {Object} Dettings for World Map
*/
ROBrowser.prototype.worldMapSettings = {};
/**
* @var {boolean} Enable use address to connect in all servers (login, char, map)
*/
ROBrowser.prototype.forceUseAddress = false;
/**
* @var {boolean} Enable console in non-development environment
*/
ROBrowser.prototype.enableConsole = false;
/**
* @var {boolean} Force disable console in any environment
*/
ROBrowser.prototype.disableConsole = false;
/**
* @var {Array} list of extensions you want to use for your BGMs.
* It will test each extensions until there is one it can read.
*
* Examples: ['ogg', 'mp4', 'mp3']
* Will try to see if it can load '.ogg' audio file, if it fail, will try to see if it can load .mp4, etc.
*/
ROBrowser.prototype.BGMFileExtension = ['mp3'];
/**
* @var {Object} Define plugin to execute
* It will test each extensions until there is one it can read.
*/
ROBrowser.prototype.plugins = {};
/**
* @var {string} roBrowser api window path
*/
ROBrowser.prototype.baseUrl = (function(){
var script = document.getElementsByTagName('script');
return script[ script.length -1 ].src
.replace(/\/[^\/]+\.js.*/, '/api.js') // redirect compiled script
.replace(/\/src\/.*/, '/api.js'); // fix error with cache (FF)
})().replace('.js', '.html');
/**
* Start ROBrowser Instance
*/
ROBrowser.prototype.start = function Start()
{
switch (this.type) {
// Create Popup
case ROBrowser.TYPE.POPUP:
this.width = this.width || '800';
this.height = this.height || '600';
this._APP = window.open(
this.baseUrl + '?' + this.version,
'_blank',
[
'directories=0',
'fullscreen=0',
'top=' + ( (window.innerHeight||document.body.clientHeight)-this.height) / 2,
'left=' + ( (window.innerWidth ||document.body.clientWidth) -this.width ) / 2,
'height='+ this.height,
'width=' + this.width,
'location=0',
'menubar=0',
'resizable=0',
'scrollbars=0',
'status=0',
'toolbar=0'
].join(',')
);
break;
// Append ROBrowser to an element
case ROBrowser.TYPE.FRAME:
this.width = this.width || '100%';
this.height = this.height || '100%';
var frame = document.createElement('iframe');
frame.src = this.baseUrl + '?' + Math.random() + location.hash; // fix bug on firefox
frame.width = this.width;
frame.height = this.height;
frame.style.border = 'none';
frame.setAttribute('allowfullscreen', 'true');
frame.setAttribute('webkitallowfullscreen', 'true');
frame.setAttribute('mozallowfullscreen', 'true');
if (this.target) {
while (this.target.firstChild) {
this.target.removeChild( this.target.firstChild );
}
this.target.appendChild(frame);
}
this._APP = frame.contentWindow;
break;
}
// Get back application name
switch (this.application) {
case ROBrowser.APP.ONLINE:
this.application = 'Online';
break;
case ROBrowser.APP.MAPVIEWER:
this.application = 'MapViewer';
break;
case ROBrowser.APP.GRFVIEWER:
this.application = 'GrfViewer';
break;
case ROBrowser.APP.MODELVIEWER:
this.application = 'ModelViewer';
break;
case ROBrowser.APP.STRVIEWER:
this.application = 'StrViewer';
break;
case ROBrowser.APP.GRANNYMODELVIEWER:
this.application = 'GrannyModelViewer';
break;
case ROBrowser.APP.EFFECTVIEWER:
this.application = 'EffectViewer';
break;
}
// Wait for robrowser to be ready
var _this = this;
function OnMessage( event ) {
if (_this.baseUrl.indexOf(event.origin) === 0) {
clearInterval( _this._Interval );
window.removeEventListener( 'message', OnMessage, false );
if (_this.onReady) {
_this.onReady();
}
}
}
// Start waiting for robrowser
this._Interval = setInterval( WaitForInitialization.bind(this), 100 );
window.addEventListener('message', OnMessage, false );
};
// Custom camera support
ROBrowser.prototype.ThirdPersonCamera = false;
ROBrowser.prototype.FirstPersonCamera = false;
ROBrowser.prototype.CameraMaxZoomOut = 5;
/**
* Spam the window until there is an answer
* No onload event from external iframe/popup
*/
function WaitForInitialization()
{
this._APP.postMessage({
application: this.application,
servers: this.servers,
grfList: this.grfList,
remoteClient: this.remoteClient,
packetver: this.packetver,
development: this.development,
loadLua: this.loadLua,
api: this.api,
socketProxy: this.socketProxy,
packetKeys: this.packetKeys,
saveFiles: this.saveFiles,
skipServerList: this.skipServerList,
skipIntro: this.skipIntro,
autoLogin: this.autoLogin,
enableCashShop: this.enableCashShop,
enableBank: this.enableBank,
enableMapName: this.enableMapName,
enableRefineUI: this.enableRefineUI,
enableDmgSuffix: this.enableDmgSuffix,
enableCheckAttendance: this.enableCheckAttendance,
version: this.version,
registrationweb: this.registrationweb,
worldMapSettings: this.worldMapSettings,
clientHash: this.clientHash,
calculateHash: this.calculateHash,
hashFiles: this.hashFiles,
plugins: this.plugins,
charBlockSize: this.charBlockSize,
BGMFileExtension: this.BGMFileExtension,
ThirdPersonCamera: this.ThirdPersonCamera,
FirstPersonCamera: this.FirstPersonCamera,
clientVersionMode: this.clientVersionMode,
CameraMaxZoomOut: this.CameraMaxZoomOut,
packetDump: this.packetDump,
forceUseAddress: this.forceUseAddress,
}, '*');
}
/**
* Export
*/
window.ROBrowser = ROBrowser;
})();