-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
136 lines (126 loc) · 6.82 KB
/
index.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
127
128
129
130
131
132
133
134
135
136
<!--
/**
*
* @licstart The following is the entire license notice for the
* JavaScript code in this page.
*
* Copyright (C) 2021 Arthur Malulley B. de O.
*
*
* The JavaScript code in this page is free software: you can
* redistribute it and/or modify it under the terms of the GNU
* General Public License (GNU GPL) as published by the Free Software
* Foundation, either version 3 of the License, or (at your option)
* any later version. The code is distributed WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
*
* As additional permission under GNU GPL version 3 section 7, you
* may distribute non-source (e.g., minimized or compacted) forms of
* that code without the copy of the GNU GPL normally required by
* section 4, provided you include this license notice and a URL
* through which recipients can access the Corresponding Source.
*
* @licend The above is the entire license notice
* for the JavaScript code in this page.
*
*/
-->
<!doctype html>
<html>
<head>
<title>Symbol Art Editor</title>
<meta charset="utf-8">
<meta name="author" content="malulleybovo @GitHub (since 2021)" />
<meta name="description" content="Pseudo-vector image creator inspired in the image editor from PSO2. Craft images made out of symbols with fluidity and agility." />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="res/stylesheets/main.css"/>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="dist/main.js"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WY5E04PHNM"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-WY5E04PHNM');
</script>
<script src="src/model/UUID.js"></script>
<script src="src/model/Identifiable.js"></script>
<script src="src/model/UIGestureRecognizer.js"></script>
<script src="src/model/UITapGestureRecognizer.js"></script>
<script src="src/model/ViewMode.js"></script>
<script src="src/model/TriggerType.js"></script>
<script src="src/model/InteractionType.js"></script>
<script src="src/model/ApplicationState.js"></script>
<script src="src/model/HistoryState.js"></script>
<script src="src/model/Color.js"></script>
<script src="src/model/Point.js"></script>
<script src="src/model/Origin.js"></script>
<script src="src/model/Size.js"></script>
<script src="src/model/Layer.js"></script>
<script src="src/model/Asset.js"></script>
<script src="src/model/Opacity.js"></script>
<script src="src/model/SymbolArtType.js"></script>
<script src="src/model/SoundOption.js"></script>
<script src="src/model/Parallelogram.js"></script>
<script src="src/model/Container.js"></script>
<script src="src/model/Symbol.js"></script>
<script src="src/model/SymbolArt.js"></script>
<script src="src/model/Object3DType.js"></script>
<script src="src/model/HelperImage.js"></script>
<script src="src/utils/BlowfishCrypto.js"></script>
<script src="src/utils/FileUtils.js"></script>
<script src="src/utils/PRSFileCompressor.js"></script>
<script src="src/utils/SARFileUtils.js"></script>
<script src="src/utils/SAMLFileUtils.js"></script>
<script src="src/components/InputDevice.js"></script>
<script src="src/components/engine/Text3D.js"></script>
<script src="src/components/engine/Button3D.js"></script>
<script src="src/components/engine/SymbolControls3D.js"></script>
<script src="src/components/engine/Layer3D.js"></script>
<script src="src/components/engine/Symbol3D.js"></script>
<script src="src/components/engine/ContainerControls3D.js"></script>
<script src="src/components/engine/Container3D.js"></script>
<script src="src/components/engine/Animation3D.js"></script>
<script src="src/components/engine/SelectionRectangle3D.js"></script>
<script src="src/components/engine/Frame3D.js"></script>
<script src="src/components/engine/HelperImageControls3D.js"></script>
<script src="src/components/engine/HelperImage3D.js"></script>
<script src="src/components/ui/UIView.js"></script>
<script src="src/components/ui/UIHint.js"></script>
<script src="src/components/ui/UIModalTextField.js"></script>
<script src="src/components/ui/UITextFieldHelper.js"></script>
<script src="src/components/ui/UICollapsibleMenu.js"></script>
<script src="src/components/ui/UIMenu.js"></script>
<script src="src/components/ui/UIColorPreview.js"></script>
<script src="src/components/ui/UIColorPicker.js"></script>
<script src="src/components/ui/UILayer.js"></script>
<script src="src/components/ui/UILayerPicker.js"></script>
<script src="src/components/ui/UICopyrightView.js"></script>
<script src="src/components/ui/UIAsset.js"></script>
<script src="src/components/ui/UIAssetPicker.js"></script>
<script src="src/components/ui/UIHelperImageSettings.js"></script>
<script src="src/components/ui/UIActionBar.js"></script>
<script src="src/view/UIOptionsView.js"></script>
<script src="src/view/UISoundOptionsView.js"></script>
<script src="src/view/UIHelperImageOptionsView.js"></script>
<script src="src/UIApplication.js"></script>
<script src="src/view/renderer/Renderer.js"></script>
<script src="src/view/renderer/RendererPresenter.js"></script>
<script src="src/utils/SupportChecker.js"></script>
</head>
<body class="disable-select" style="margin: 0;touch-action: none;overflow: hidden;font-family: Verdana;color: white;background: #3c3c3c;" oncontextmenu="return false;">
<noscript>
<p class="disable-select" style="margin: 20px;text-align: center;">Oops, it seems JavaScript is disabled for this website. Make sure JavaScript is enabled and try again.</p>
</noscript>
<div id="landing" style="z-index: 1000;position: absolute;left: 0;right: 0;top: 0;bottom: 0;background: #3c3c3c;transition: 0.2s;opacity: 0;">
<div style="position: absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);text-align: center;font-weight: bold;">
<span style="font-size: 32px;">SYMBOL ART EDITOR</span>
<div style="margin-top: 75px;height: 10px;border-radius: 6px;overflow: hidden;background: #5d5d5d;">
<div id="progressindicator" style="position: absolute;background: white;border-radius: 5px;border: 1px solid #5d5d5d;height: 8px;left: 0;bottom: 0;right: 100%;transition: 0.4s;min-width: 8px;opacity: 0;"></div>
</div>
</div>
</div>
</body>
</html>