-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtutorial.ts
More file actions
349 lines (309 loc) · 10.2 KB
/
tutorial.ts
File metadata and controls
349 lines (309 loc) · 10.2 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
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
class TutoralState
{
public title: string;
public text: string;
public btnText: string;
public btnFunc: Function | undefined;
public anchorId: string;
public position: number; // 0: up, 1: right, 2: down, 3: left
public continueCommand: string;
public allowedCommands: string;
public constructor(title: string, text: string, anchorId: string, position: number, continueCommand = "", allowedCommands="", btnText = "", btnFunc: Function | undefined = undefined)
{
this.title = title;
this.text = text;
this.btnText = btnText;
this.btnFunc = btnFunc;
this.anchorId = anchorId;
this.position = position;
this.continueCommand = continueCommand;
this.allowedCommands = allowedCommands;
}
}
const tutorial = [
new TutoralState(
"Welcome!",
"Welcome to SimplePixel. This tutorial will show you the basics of the editor.",
"tuto-left-anchor",
1,
"", "",
"Ignore tutorial", () => CloseTutorial(),
),
new TutoralState(
"Drawing",
"Use the left mouse button to draw with your primary color, and the right mouse button to draw with your secondary color.<br>By default, the secondary color is transparent so that it can be used for erasing.<br>Try drawing something before you continue!",
"tuto-left-anchor",
1,
),
new TutoralState(
"Drawing",
"The primary and secondary colors are shown here.",
"info-icons",
0,
),
new TutoralState(
"Drawing",
"You can also change the size of the stroke with the mouse wheel.",
"tuto-right-anchor",
3,
),
new TutoralState(
"Commands",
"To perform other actions, you will have to run a command, usually with a keyboard shortcut.<br>Try to execute [mirrorx].",
"tuto-right-anchor",
3,
"mirrorx"
),
new TutoralState(
"Commands",
"Your image has been mirrored!<br>But if you forgot the keyboard shortcut for your command, don't panic! Press <span class='key'>Space</span>!",
"tuto-right-anchor",
3,
"commandbar",
),
new TutoralState(
"Commands",
"Search \"turn\" and press <span class='key'>Enter</span>.",
"main-input",
1,
"turn",
),
new TutoralState(
"Tools",
"You can change the current tool with these commands:<br>- [free] Draw freely (default)<br>- [line] Draw line<br>- [rect] Draw rect<br>- [paintpot] Fill area with same color<br>",
"tuto-left-anchor",
1,
"", "free line rect paintpot"
),
new TutoralState(
"Colors",
"To change the color, use [color]",
"tuto-left-anchor",
1,
"color"
),
new TutoralState(
"Colors",
"Now select a nice color!",
"color-select",
1,
"", "color"
),
new TutoralState(
"Colors",
"Complete this masterpiece!",
"tuto-left-anchor",
1,
),
new TutoralState(
"Colors",
"To reuse a previous color, use the color picker, with [colorpicker].",
"tuto-left-anchor",
1,
"colorpicker"
),
new TutoralState(
"Colors",
"Select a color on the image with your mouse",
"tuto-left-anchor",
1,
"", "colorpicker"
),
new TutoralState(
"Undo",
"Mmm... The last change you made doesn't seem right. Undo it with [undo]",
"tuto-left-anchor",
1,
"undo"
),
new TutoralState(
"Undo",
"No, it was not so bad after all, redo it with [redo]",
"tuto-left-anchor",
1,
"redo"
),
new TutoralState(
"Saving",
"This is beautiful! Save this masterpiece on your computer with [export].",
"tuto-left-anchor",
1,
"export"
),
new TutoralState(
"Saving",
"Select export options and click export.",
"tuto-left-anchor",
1,
"", "export"
),
new TutoralState(
"Saving",
"To continue your work the next time you come, you can:<br>- Load a file with [open]<br>- Open a recent file in the editor with [recent]",
"tuto-left-anchor",
1,
"", "open recent"
),
new TutoralState(
"Commands with parameters",
"Some commands needs a parameter.<br>Press <span class='key'>Space</span>",
"tuto-left-anchor",
1,
"commandbar",
),
new TutoralState(
"Commands with parameters",
"Search imgsize.<br>This commands needs one or two numbers, so enter 'imgsize 50' to get a larger canvas",
"main-input",
1,
"imgsize",
),
new TutoralState(
"Commands with parameters",
"Perfect! You can zoom out with <span class='key'>Ctrl</span> + Mouse wheel",
"tuto-left-anchor",
1,
),
new TutoralState(
"Other commands",
"We're almost done!<br>Here are some other important commands to know:<br>- [copy] and [paste]<br>- [grid] and [nogrid] to display a grid<br>- [theme] to change the editor's theme",
"tuto-left-anchor",
1,
"", "copy paste grid nogrid theme"
),
new TutoralState(
"Congratulations",
"The tutorial is finished!",
"tuto-left-anchor",
1,
),
]
const continueBtnTexts = [
"Continue", "Next", "Okay", "Next step"
]
const tutorialMargin = 10; // Margin btw panel and anchor, in px
let tutorialActive = false;
let currentTutorialStateId = 0;
let currentTutorialState = tutorial[currentTutorialStateId];
let forceTutorialCommand = "";
setInterval(UpdateTutorialPosition, 20);
function InitTutorial() {
tutoHighlight.style.display = "none"; // Remove highlight
if (localStorage.getItem("finishedTutorial") == null)
StartTutorial();
}
function StartTutorial() {
tutorialActive = true;
currentTutorialStateId = 0;
tutoPanel.classList.remove("hidden");
UpdateTutoralPanel();
}
function UpdateTutoralPanel() {
currentTutorialState = tutorial[currentTutorialStateId];
tutoTitle.innerHTML = currentTutorialState.title;
// Replace command names in text
let newText = "";
let match: RegExpExecArray | null = null;
let lastMatch: any = null;
let regex = /\[[^\[\]]+\]/gm;
while (true)
{
match = regex.exec(currentTutorialState.text)!!;
if (match == null) break;
let command = GetCommandByName(match[0].slice(1, -1))!!;
let commandText = `<span class="tuto-command">${command.name}<span> (${command.GetHotkeyString()})`;
newText += currentTutorialState.text.slice(lastMatch == null ? 0 : lastMatch.index + lastMatch[0].length, match.index);
newText += commandText;
lastMatch = match;
}
if (lastMatch != null)
newText += currentTutorialState.text.slice(lastMatch.index + lastMatch[0].length, currentTutorialState.text.length);
else
newText = currentTutorialState.text;
tutoText.innerHTML = newText;
// Progress bar
let progress = currentTutorialStateId / (tutorial.length - 1);
tutoProgressFill.style.width = `${Math.round(progress * 100)}%`;
tutoButtonsContainer.innerHTML = "";
if (currentTutorialState.continueCommand == "") // Continue button
{
let continueBtn = document.createElement("button");
let text = currentTutorialStateId == tutorial.length - 1
? "Close"
: continueBtnTexts[Math.floor(Math.random() * continueBtnTexts.length)];
continueBtn.innerText = text;
continueBtn.addEventListener("click", NextTutorialStep);
tutoButtonsContainer.appendChild(continueBtn);
}
if (currentTutorialState.btnText != "" && currentTutorialState.btnFunc != undefined) // Secondary button
{
let btn = document.createElement("button");
btn.innerText = currentTutorialState.btnText;
btn.addEventListener("click", () => currentTutorialState.btnFunc!());
tutoButtonsContainer.appendChild(btn);
}
// Commands
forceTutorialCommand = currentTutorialState.continueCommand;
}
function UpdateTutorialPosition()
{
if (!tutorialActive) return;
let anchor = document.getElementById(currentTutorialState.anchorId)!!;
let rect = anchor.getBoundingClientRect();
let sizeX = tutoPanel.clientWidth;
let sizeY = tutoPanel.clientHeight
let left = 0;
let top = 0;
if (currentTutorialState.position == 0) // Up
{
left = (rect.left + rect.right) / 2 - (sizeX / 2);
top = rect.top - tutorialMargin - sizeY;
}
else if (currentTutorialState.position == 1) // Right
{
left = rect.right + tutorialMargin;
top = (rect.bottom + rect.top) / 2 - (sizeY / 2);
}
else if (currentTutorialState.position == 2) // Down
{
left = (rect.left + rect.right) / 2 - (sizeX / 2);
top = rect.bottom + tutorialMargin;
}
else if (currentTutorialState.position == 3) // Left
{
left = rect.left - tutorialMargin - sizeX;
top = (rect.bottom + rect.top) / 2 - (sizeY / 2);
}
left = Math.max(tutorialMargin, left);
left = Math.min(window.innerWidth - sizeX - tutorialMargin, left);
top = Math.max(tutorialMargin, top);
top = Math.min(window.innerHeight - sizeY - tutorialMargin, top);
tutoPanel.style.left = left + "px";
tutoPanel.style.top = top + "px";
if (rect.width != 0 || rect.height != 0)
{
tutoHighlight.style.display = "block";
tutoHighlight.style.left = rect.left + "px";
tutoHighlight.style.top = rect.top + "px";
tutoHighlight.style.width = rect.width + "px";
tutoHighlight.style.height = rect.height + "px";
}
else
{
tutoHighlight.style.display = "none";
}
}
function NextTutorialStep() {
currentTutorialStateId++;
if (currentTutorialStateId == tutorial.length) {
localStorage.setItem("finishedTutorial", "true");
CloseTutorial();
}
else
UpdateTutoralPanel();
}
function CloseTutorial() {
tutoPanel.classList.add("hidden");
localStorage.setItem("finishedTutorial", "true");
tutorialActive = false;
}