-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
522 lines (477 loc) · 18.3 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
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
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
<head>
<meta charset="utf-8">
<script src="./build/easycanvas.standalone.prod.js"></script>
<script src="./build/plugin.physics.standalone.prod.js"></script>
<script src="./build/plugin.webgl.standalone.prod.js"></script>
</head>
<style>
body, html {
margin: 0;
text-align: center;
background: black;
overflow: hidden;
}
canvas {
border: 1px solid grey;
height: 100%;
max-width: 100%;
background-color: #ccc;
background-image: url(https://c-zhuo.github.io/tanyitan/bg.jpg);
background-size: auto 100%;
background-position: 50% 50%;
}
</style>
<body>
<canvas id="el"></canvas>
</body>
<script>
// 在html直接写代码,不编译、不构建,不然应该用const的
var width = 400, height = 600, ballSize = 20;
// 记录鼠标轨迹
var mouse = {x: 300, y: 50};
var mouseRecord = function ($e) {
mouse.x = $e.canvasX;
mouse.y = Math.max(30, $e.canvasY);
};
// 游戏状态
var canShoot = true;
var score = 0, ballLeft = 0, ballCount = 5;
var blockArray = [];
var $Painter = new Easycanvas.painter();
// 图片
var BALL = 'https://raw.githubusercontent.com/c-zhuo/tanyitan/master/docs/ball.png';
var BLOCK = 'https://raw.githubusercontent.com/c-zhuo/tanyitan/master/docs/block.jpg';
var TRIANGLE = 'https://raw.githubusercontent.com/c-zhuo/tanyitan/master/docs/triangle.png';
// 用于碰撞检测
var BALL_TYPE = 1, BLOCK_TYPE = 2, BORDER_TYPE = 3, BOTTOM_TYPE = 4, BONUS_TYPE = 5;
// 初始化easycanvas实例
$Painter.register(el, {
webgl: {
fudgeFactor: 1,
},
width: width,
height: height,
events: {
mousemove: mouseRecord,
touchmove: mouseRecord,
mouseup: shoot,
touchend: shoot,
}
});
var BLOCK3D = $Painter.imgLoader('https://c-zhuo.github.io/tanyitan/stone.jpg');
var BALL3D = $Painter.imgLoader('https://c-zhuo.github.io/tanyitan/star.jpg');
$Painter.start();
$Painter.add({
name: '得分',
content: {
text: function () {
return '得分:' + score;
}
},
style: {
tx: 5, ty: 5, zIndex: 99,
textAlign: 'left', textVerticalAlign: 'top',
color: 'white'
}
});
$Painter.add({
name: '小球个数',
content: {
text: function () {
return '小球个数:' + ballCount;
}
},
style: {
tx: 395, ty: 5, zIndex: 99,
textAlign: 'right', textVerticalAlign: 'top',
color: 'white'
}
});
// 初始化easycanvas物理引擎
var $space = new Easycanvas.class.sprite({
name: '物理空间',
physics: {
gravity: 2,
accuracy: 2,
},
});
$Painter.add($space);
$space.launch();
// 显示瞄准轨迹
var startAim = function () {
for (var i = 0; i < 7; i ++) {
$Painter.add({
name: '瞄准小球',
content: {
// img: BALL,
},
data: {
gap: i / 6,
},
webgl: window.Easycanvas.webglShapes.ball({
r: ballSize / 2,
rx: function () {
return mouse.x;
},
ry: function () {
return mouse.x;
},
rz: function () {
return mouse.y;
},
img: BALL3D,
}),
style: {
tx: function () {
return 200 + (mouse.x - 200) * this.data.gap;
},
ty: function () {
return 20 + (mouse.y - 20) * this.data.gap;
},
tw: 20, th: 20,
opacity: 0.4,
},
hooks: {
shoot: function () {
this.remove();
}
}
});
}
};
startAim();
function shoot () {
if (!canShoot) return;
$Painter.broadcast('shoot');
canShoot = false;
// 防止过程中鼠标移动引起多个小球方向不同
var currentMouse = JSON.parse(JSON.stringify(mouse));
// 防止过程中增加了小球数量
var currentBallCount = ballCount;
for (var i = 0; i < currentBallCount; i++) {
setTimeout(function () {
addBall(currentMouse);
}, i * 100);
}
mouse = {x: 300, y: 50};
};
function addBall (mouse) {
ballLeft++;
var $ball = new Easycanvas.class.sprite({
name: '物理小球',
content: {
// img: BALL,
},
physics: {
shape: [
// 形状是一个以(ballSize / 2, ballSize / 2)为圆心的,半径也是ballSize / 2的圆
[ballSize / 2, ballSize / 2, ballSize / 2],
],
mass: 1, // 质量
friction: 0.2, // 摩擦(摩擦太大了会损失能量)
elasticity: 0.8, // 弹性
collisionType: BALL_TYPE,
},
style: {
tw: ballSize, th: ballSize,
sx: 0, sy: 0,
tx: 200,
ty: 20,
zIndex: 1,
},
webgl: window.Easycanvas.webglShapes.ball({
r: ballSize / 2,
rx: function () {
return -this.style.rotate / 3;
},
ry: function () {
return -this.style.rotate;
},
rz: function () {
return -this.style.rotate / 2;
},
img: BALL3D,
}),
hooks: {
physicsCollisionBegin: function ($other, collisionType) {
switch (collisionType) {
case BALL_TYPE:
return true;
case BOTTOM_TYPE:
var ball = this;
var block = $other;
if (ball.toRemove) {
return;
}
ball.toRemove = true;
ball.style.opacity = Easycanvas.transition.linear(1, 0, 500);
setTimeout(function () {
ball.physicsOff();
ball.remove();
ballLeft--;
if (ballLeft === 0) {
canShoot = true;
blockArray.forEach(function (block) {
block.physicsOff();
if (block.style.ty < 100) {
if (block.name === '物理方块') {
canShoot = false;
} else {
if (block.$canvas) {
block.remove();
}
}
} else {
setTimeout(function () {
block.style.ty = block.style.ty();
block.physicsOn();
}, 300)
}
block.style.ty = Easycanvas.transition.linear(block.style.ty, block.style.ty - 50, 100 + Math.random() * 200);
});
if (!canShoot) {
alert('You lose');
} else {
setTimeout(startAim, 300);
addBlock(5 + score / 10, true);
Math.random() < 0.5 && addBlock(5 + score / 10, true);
Math.random() < 0.3 && addBlock(5 + score / 9, true);
Math.random() < 0.2 && addBlock(5 + score / 8, true);
Math.random() < 0.3 && addBonus();
Math.random() < 0.3 && addBonus();
}
}
}, 500);
return;
}
},
physicsCollisionPreSolve: function ($other, collisionType) {
switch (collisionType) {
case BLOCK_TYPE:
if (Math.abs(this.physicsGetVelocity().y) < 1) {
// 防止小球停到方块上
this.physicsSetVelocity({
x: Math.random() * 10 - 5,
y: -300,
});
}
return;
}
},
physicsCollisionSeparate: function ($other, collisionType) {
// 撞过一次就重置作用力(这样只剩下重力了,就开始往下掉)
this.physicsResetForces();
switch (collisionType) {
case BLOCK_TYPE:
var block = $other;
// 碰撞效果
var deltaXScale = Math.random() * 0.6 - 0.3;
block.webgl.scaleX = Easycanvas.transition.pendulum(1 + deltaXScale, 1, 300);
block.webgl.scaleY = Easycanvas.transition.pendulum(1 - deltaXScale, 1, 300);
block.webgl.scaleZ = Easycanvas.transition.pendulum(1.3, 1, 300);
block.webgl.rx = Easycanvas.transition.pendulum(30 + deltaXScale * 50, 20, 300);
// 这里直接通过父对象从子对象拿数据,这种数据的依赖方式不好,但是这么简单个应用,无所谓了
// 更好的是例如通过easycanvas的自定义事件广播下去
block.children[0].content.text--;
score++;
if (!block.children[0].content.text) {
// 把方块撞成0了,先隐藏
block.physicsOff();
block.children[0].style.visible = false;
blockArray.splice(blockArray.indexOf(block), 1);
block.webgl.ty = Easycanvas.transition.linear(this.style.ty + 20, height / 2, Math.random() * 200 + 1000);
block.webgl.tz = Easycanvas.transition.linear(0, 10100, Math.random() * 400 + 200);
block.webgl.rx = Easycanvas.transition.linear(0, 360, 600);
setTimeout(function () {
block.remove();
}, 600);
}
return;
case BONUS_TYPE:
var bonus = $other;
// 一个球被连续撞,只加一次
if (bonus.used) return false;
bonus.used = 1;
bonus.physicsOff();
bonus.remove();
blockArray.splice(blockArray.indexOf(bonus), 1);
ballCount++;
return;
}
}
}
});
$space.add($ball);
$ball.physicsOn();
// 抵消重力
$ball.physicsApplyForce({x: 0, y: -1000}, {x: 0, y: 0});
// 初速度
var speed = {
x: (mouse.x - 200) / (mouse.y - 20),
y: 1
};
// 修正速度,确保从各个角度射出小球的速度差不多
var muti = Math.sqrt(Math.pow(speed.x, 2) + Math.pow(speed.y, 2)) / 700;
$ball.physicsSetVelocity({
x: speed.x / muti,
y: speed.y / muti,
});
}
// 防止方块重叠,记录上一次方块的X坐标
var lastBlockPositionX = 50;
var transitionTime = 500;
function addBlock (max, boolAddToBottom) {
var deg = Math.floor(Math.random() * 360);
var tx = lastBlockPositionX + Math.floor(Math.random() * 20 - 10);
var ty = boolAddToBottom ? 500 : height - 100 - Math.floor(Math.random() * 100);
var sprite = $space.add(new Easycanvas.class.sprite({
name: '物理方块',
content: {
// img: BLOCK,
},
physics: {
shape: [
[[0, 0], [30, 0], [30, 30], [0, 30], [0, 0]],
],
mass: 1,
friction: 0.1,
elasticity: 0.9,
collisionType: BLOCK_TYPE,
static: true,
},
style: {
tw: 30, th: 30,
tx: tx, ty: ty,
locate: 'lt',
zIndex: Math.random(),
rotate: deg,
},
children: [{
name: '次数',
content: {
text: Math.floor(Math.random() * max) + 1,
},
style: {
visible: false,
color: 'yellow',
textAlign: 'center',
textVerticalAlign: 'middle',
textFont: '16px Arial',
tx: 15, ty: 15,
zIndex: 2,
}
}],
webgl: window.Easycanvas.webglShapes.block({
a: 30, b: 30, c: 30,
rz: -deg,
rx: Easycanvas.transition.linear(Math.random() * 1000, 20, Math.random() * 200 + transitionTime),
ry: Easycanvas.transition.linear(Math.random() * 1000, 20, Math.random() * 200 + transitionTime),
tx: tx + 20,
ty: Easycanvas.transition.linear(Math.random() * 300, ty + 10, Math.random() * 200 + transitionTime),
tz: Easycanvas.transition.linear(-10000, 0, Math.random() * 200 + transitionTime),
img: BLOCK3D,
// colors: [255,255,100,10],
}),
}));
setTimeout(function () {
sprite.children[0].style.visible = true;
sprite.webgl.ty = function () {
return sprite.getStyle('ty') + 10;
};
}, transitionTime + 200);
sprite.physicsOn();
blockArray.push(sprite);
lastBlockPositionX += 50;
if (lastBlockPositionX > 350) {
lastBlockPositionX = 50;
}
}
function addBonus () {
var sprite = $space.add(new Easycanvas.class.sprite({
name: '奖励小球',
content: {
// img: BALL,
},
physics: {
shape: [
[ballSize / 2, ballSize / 2, ballSize / 2],
],
mass: 1,
friction: 0.1,
elasticity: 0.5,
collisionType: BONUS_TYPE,
static: true,
},
webgl: window.Easycanvas.webglShapes.ball({
r: ballSize / 1.5,
rz: Easycanvas.transition.linear(0, 360, 1800).loop(),
ry: Easycanvas.transition.linear(0, 360, 2800).loop(),
rz: Easycanvas.transition.linear(0, 360, 3800).loop(),
img: BALL3D,
}),
style: {
tw: 30, th: 30,
tx: lastBlockPositionX + Math.floor(Math.random() * 20 - 10),
ty: 500,
locate: 'center',
zIndex: 2,
fv: Easycanvas.transition.pendulum(0, 0.2, 200).loop(),
fh: Easycanvas.transition.pendulum(0.2, 0, 200).loop(),
},
}));
sprite.physicsOn();
blockArray.push(sprite);
lastBlockPositionX += 50;
if (lastBlockPositionX > 350) {
lastBlockPositionX = 50;
}
}
// 上半部分的边,摩擦小、弹性大
var borderSprite = $space.add(new Easycanvas.class.sprite({
name: '边界1',
physics: {
shape: [
[[0, 0], [width, 0]],
[[0, 0], [0, height * 0.9]],
[[width, 0], [width, height * 0.9]],
],
friction: 0.1,
elasticity: 0.8,
collisionType: BORDER_TYPE,
static: true
},
style: {
tx: 0, ty: 0, tw: width, th: height,
locate: 'lt',
},
}));
borderSprite.physicsOn();
// 下半部分的边,摩擦大、弹性小
var bottomSprite = $space.add(new Easycanvas.class.sprite({
name: '边界2',
physics: {
shape: [
[[0, height], [width, height]],
[[0, height * 0.9], [0, height]],
[[width, height * 0.9], [width, height]],
],
friction: 5,
elasticity: 0,
collisionType: BOTTOM_TYPE,
static: true
},
style: {
tx: 0, ty: 0, tw: width, th: height,
locate: 'lt',
},
}));
bottomSprite.physicsOn();
// 第一关7个方块
for (var i = 0; i < 7; i++) {
addBlock(5);
}
// 阻止微信浏览器的默认下拉
document.body.addEventListener('touchmove' , function (e) {
e.preventDefault();
});
</script>