-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayer.js
413 lines (351 loc) · 8.59 KB
/
player.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
/*
Ajipack Player
Copyright (c) 2023 Sora Arakawa
Licensed under the MIT License
*/
const AJIPACK_WIDTH = 320;
const AJIPACK_HEIGHT = 240;
const AJIPACK_FPS = 33.0;
let ajiDate = new Date();
let ajiDrawTime = Date.now();
let ajiCanvas, ajiContext, ajiVideo;
let ajiBG = [new Image(), new Image(), new Image(), new Image()];
let ajiSprite = [];
let ajiAudioContext = new AudioContext();
let ajiAudio = [];
let ajiMouse = { x: 0, y: 0, flag: false, count: 0 };
window.onload = function () {
ajiInit();
};
function ajiInit() {
ajiCanvas = document.createElement("canvas");
ajiCanvas.style.position = "fixed";
ajiCanvas.style.left = "0";
ajiCanvas.style.top = "0";
ajiCanvas.width = 320;
ajiCanvas.height = 240;
ajiContext = ajiCanvas.getContext("2d");
ajiContext.fillStyle = "#000";
ajiContext.fillRect(0, 0, AJIPACK_WIDTH, AJIPACK_HEIGHT);
document.body.appendChild(ajiCanvas);
ajiVideo = document.createElement("video");
ajiVideo.width = 320;
ajiVideo.height = 240;
ajiVideo.style.display = "none";
document.body.appendChild(ajiVideo);
if (typeof setup == "function") {
setup();
}
ajiCanvas.addEventListener("touchstart", ajiMouseDown, false);
ajiCanvas.addEventListener("touchend", ajiMouseUp);
ajiCanvas.addEventListener("mousedown", ajiMouseDown, false);
ajiCanvas.addEventListener("mouseup", ajiMouseUp);
ajiMain();
}
function ajiMain() {
ajiDate = new Date();
const ajiNowTime = Date.now();
if (ajiNowTime - ajiDrawTime >= 1000 / AJIPACK_FPS) {
ajiDrawTime = ajiNowTime;
if (ajiMouse.flag == true) {
ajiMouse.count++;
} else {
if (ajiMouse.count == 1 || ajiMouse.count == 2) {
ajiMouse.count++;
} else {
ajiMouse.count = 0;
}
}
if (typeof loop == "function") {
loop();
}
}
requestAnimationFrame(ajiMain);
}
function ajiGetData(id) {
for (let i = 0; i < ajiData.length; i++) {
if (ajiData[i].id == id) {
return ajiData[i].data;
}
}
}
function ajiExistData(id) {
for (let i = 0; i < ajiData.length; i++) {
if (ajiData[i].id == id) {
return true;
}
}
return false;
}
function ajiSetFillColor(color) {
ajiContext.fillStyle = color;
}
function ajiSetStrokeColor(color) {
ajiContext.strokeStyle = color;
}
function ajiSetLineCap(cap) {
ajiContext.lineCap = cap;
}
function ajiSetLineWidth(width) {
ajiContext.lineWidth = width;
}
function ajiSetFont(font) {
ajiContext.font = font;
}
function ajiFillRect(x, y, w, h) {
ajiContext.fillRect(x, y, w, h);
}
function ajiStrokeRect(x, y, w, h) {
ajiContext.strokeRect(x, y, w, h);
}
function ajiFillCircle(x, y, w, h) {
const cx = x + w / 2;
const cy = y + h / 2;
const rx = w / 2;
const ry = h / 2;
ajiContext.beginPath();
ajiContext.ellipse(cx, cy, rx, ry, 0, 0, Math.PI * 2);
ajiContext.fill();
}
function ajiStrokeCircle(x, y, w, h) {
const cx = x + w / 2;
const cy = y + h / 2;
const rx = w / 2;
const ry = h / 2;
ajiContext.beginPath();
ajiContext.ellipse(cx, cy, rx, ry, 0, 0, Math.PI * 2);
ajiContext.stroke();
}
function ajiLine(x1, y1, x2, y2) {
ajiContext.beginPath();
ajiContext.moveTo(x1, y1);
ajiContext.lineTo(x2, y2);
ajiContext.stroke();
}
function ajiDrawText(text, x, y) {
ajiContext.fillText(text, x, y);
}
function ajiDrawAlignText(text, x, y, w, align) {
if (align == "center") {
ajiContext.fillText(
text,
x + (w - ajiContext.measureText(text).width) / 2,
y
);
} else if (align == "right") {
ajiContext.fillText(text, x + w - ajiContext.measureText(text).width, y);
}
}
// BG
async function ajiSetBG(id, src) {
if (ajiExistData(src) == true) {
await new Promise((resolve, reject) => {
ajiBG[id].onload = () => resolve(ajiBG[id]);
ajiBG[id].onerror = (e) => reject(e);
ajiBG[id].src = ajiGetData(src);
});
}
}
function ajiDrawBG(id, x, y) {
ajiContext.drawImage(ajiBG[id], x, y, AJIPACK_WIDTH, AJIPACK_HEIGHT);
}
// Sprite
async function ajiAddSprite(id, src) {
if (ajiExistSprite(id) == false) {
ajiSprite.push({
id: id,
image: new Image(),
});
await ajiSetSprite(id, src);
}
}
function ajiGetSprite(id) {
for (let i = 0; i < ajiSprite.length; i++) {
if (ajiSprite[i].id == id) {
return ajiSprite[i].image;
}
}
}
async function ajiSetSprite(id, src) {
if (ajiExistSprite(id) == true && ajiExistData(src) == true) {
const i = await ajiFindSpriteNumber(id);
await new Promise((resolve, reject) => {
ajiSprite[i].image.onload = () => resolve(ajiSprite[i].image);
ajiSprite[i].image.onerror = (e) => reject(e);
ajiSprite[i].image.src = ajiGetData(src);
});
}
}
function ajiDeleteSprite(id) {
if (ajiExistSprite(id) == true) {
ajiSprite.splice(ajiFindSpriteNumber(id), 1);
}
}
function ajiExistSprite(id) {
if (ajiFindSpriteNumber(id) >= 0) {
return true;
} else {
return false;
}
}
function ajiFindSpriteNumber(id) {
for (let i = 0; i < ajiSprite.length; i++) {
if (ajiSprite[i].id == id) {
return i;
}
}
return undefined;
}
function ajiDrawSprite(id, x, y) {
if (ajiExistSprite(id) == true) {
ajiContext.drawImage(ajiSprite[ajiFindSpriteNumber(id)].image, x, y);
}
}
function ajiDrawSpriteZoom(id, x, y, w, h) {
if (ajiExistSprite(id) == true) {
ajiContext.drawImage(ajiSprite[ajiFindSpriteNumber(id)].image, x, y, w, h);
}
}
// Audio
async function ajiAddAudio(id, src) {
if (ajiExistAudio(id) == false) {
ajiAudio.push({
id: id,
buffer: null,
source: null,
});
await ajiSetAudio(id, src);
}
}
async function ajiSetAudio(id, src) {
if (ajiExistAudio(id) == true) {
let promise = new Promise(function (resolve) {
let audioRequest = new XMLHttpRequest();
audioRequest.open("GET", ajiGetData(src), true);
audioRequest.responseType = "arraybuffer";
audioRequest.send();
audioRequest.onload = function () {
ajiAudioContext.decodeAudioData(audioRequest.response, function (buf) {
ajiAudio[ajiFindAudioNumber(id)].buffer = buf;
resolve();
});
};
});
await promise;
}
}
function ajiDeleteAudio(id) {
if (ajiExistAudio(id) == true) {
ajiAudio.splice(ajiFindAudioNumber(id), 1);
}
}
function ajiExistAudio(id) {
if (ajiFindAudioNumber(id) >= 0) {
return true;
} else {
return false;
}
}
function ajiFindAudioNumber(id) {
for (let i = 0; i < ajiAudio.length; i++) {
if (ajiAudio[i].id == id) {
return i;
}
}
return undefined;
}
function ajiPlayAudio(id) {
const number = ajiFindAudioNumber(id);
ajiAudio[number].source = ajiAudioContext.createBufferSource();
ajiAudio[number].source.buffer = ajiAudio[number].buffer;
ajiAudio[number].source.connect(ajiAudioContext.destination);
ajiAudio[number].source.start(0);
}
function ajiStopAudio(id) {
ajiAudio[ajiFindAudioNumber(id)].source.stop();
}
// Video
async function ajiLoadVideo(src) {
if (ajiExistData(src) == true) {
await new Promise((resolve, reject) => {
ajiVideo.onload = () => resolve(ajiVideo);
ajiVideo.onerror = (e) => reject(e);
ajiVideo.src = ajiGetData(src);
});
}
}
function ajiPlayVideo() {
ajiVideo.play();
}
function ajiPauseVideo() {
ajiVideo.pause();
}
function ajiUpdateVideo() {
ajiContext.drawImage(ajiVideo, 0, 0, 320, 240);
}
function ajiGetVideoDuration() {
return ajiVideo.duration;
}
function ajiGetVideoCurrentTime() {
return ajiVideo.currentTime;
}
function ajiSetVideoCurrentTime(time) {
ajiVideo.currentTime = time;
}
// Mouse
function ajiMouseX() {
return ajiMouse.x;
}
function ajiMouseY() {
return ajiMouse.y;
}
function ajiMouseDown(e) {
if (e.touches != undefined) {
e.preventDefault();
ajiMouse.x = e.touches[0].pageX;
ajiMouse.y = e.touches[0].pageY;
} else {
const rect = e.target.getBoundingClientRect();
ajiMouse.x = e.clientX - rect.left;
ajiMouse.y = e.clientY - rect.top;
}
ajiMouse.flag = true;
}
function ajiMouseUp() {
ajiMouse.flag = false;
}
function ajiClick() {
if (ajiMouse.count == 1) {
return true;
} else {
return false;
}
}
// Date & Time
function ajiGetYear() {
return ajiDate.getFullYear();
}
function ajiGetMonth() {
return ajiDate.getMonth() + 1;
}
function ajiGetDate() {
return ajiDate.getDate();
}
function ajiGetDay() {
return ajiDate.getDay();
}
function ajiGetHours() {
return ajiDate.getHours();
}
function ajiGetMinutes() {
return ajiDate.getMinutes();
}
function ajiGetSeconds() {
return ajiDate.getSeconds();
}
function ajiGetDateString() {
return ajiDate.toLocaleDateString();
}
function ajiGetTimeString() {
return ajiDate.toLocaleTimeString();
}