-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathRagnarok.html
126 lines (77 loc) · 2.94 KB
/
Ragnarok.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script src="Tables/VarEnum.js"></script>
<!-- Commons -->
<script src="common.js"></script>
<script src="prototype.js"></script>
<script src="Deferred.js"></script>
<script src="settings.js"></script>
<!-- Tables -->
<script src="Tables/VarEnum.js"></script>
<script src="Tables/mp3nametable.js"></script>
<script src="Tables/fogparametertable.js"></script>
<script src="Tables/ClassResNameTable.js"></script>
<script src="Tables/pcjobtable.js"></script>
<script src="Tables/AccessoryIdTable.js"></script>
<script src="Tables/AccessoryNameTable.js"></script>
<script src="Tables/HeadIdTable.js"></script>
<!-- File formats -->
<script src="FileFormat/rsm.js"></script>
<script src="FileFormat/gat.js"></script>
<script src="FileFormat/gnd.js"></script>
<script src="FileFormat/rsw.js"></script>
<script src="FileFormat/SprParser.js"></script>
<script src="FileFormat/ActParser.js"></script>
<!-- Helpers -->
<script src="ResourceLoader.js"></script>
<!-- Input -->
<script src="InputEventHandler.js"></script>
<!-- Interface -->
<script src="Interface/InterfaceCommons.js"></script>
<script src="Interface/InterfaceComponent.js"></script>
<script src="Interface/BaseWindow.js"></script>
<script src="Interface/SelectionList.js"></script>
<script src="Interface/InputButton.js"></script>
<script src="Interface/CanvasTextfield.js"></script>
<script src="Interface/DOMTextInput.js"></script>
<script src="WindowObjects.js"></script>
<script src="InterfaceManager.js"></script>
<!-- Sound -->
<script src="SoundPlayer.js"></script>
<!-- 3D -->
<script src="graphics/include/BoundingBox.js"></script>
<script src="include/three.58.js"></script>
<script src="RagnarokControls.js"></script>
<script src="MapLoader.js"></script>
<script src="SpriteActor.js"></script>
<!-- Network -->
<script src="PacketLengthTable.js"></script>
<script src="PacketParser.js"></script>
<script src="PacketBuilder.js"></script>
<script src="PacketEventHandlers.js"></script>
<script src="NetworkSession.js"></script>
<script src="NetworkManager.js"></script>
<script src="FileManager.js"></script>
<script src="SceneManager.js"></script>
<script src="GameManager.js"></script>
<link rel="stylesheet" type="text/css" href="Ragnarok.css" />
<script>
// Main application entry point
window.onload = (function() {
return function() {
ro_text_container = document.createElement('div');
ro_text_container.id = 'ro-text-container';
document.body.appendChild( ro_text_container );
(new Ragnarok( document )).init();
//document.body.appendChild( ragnarok.scene.domElement );
document.body.appendChild(Ragnarok.Instance.gui.domElement );
};
})();
</script>
</head>
<body>
</body>
</html>