-
Notifications
You must be signed in to change notification settings - Fork 25
/
main.js
356 lines (325 loc) · 12.8 KB
/
main.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
$(function () {
//是否产生新元素
var isNewRndItem = false;
var gameScore = 0;
//最高分
var maxScore = 0;
if (localStorage.maxScore) {
maxScore = localStorage.maxScore - 0;
} else {
maxScore = 0;
}
//游戏初始化
gameInit();
function refreshGame() {
var items = $('.gameBody .row .item');
for (var i = 0; i < items.length; i++) {
items.eq(i).html('').removeClass('nonEmptyItem').addClass('emptyItem');
}
gameScore = 0;
//分数清零
$('#gameScore').html(gameScore);
//随机生成两个新元素
newRndItem();
newRndItem();
//刷新颜色
refreshColor();
$('#gameOverModal').modal('hide');
}
function getSideItem(currentItem, direction) {
//当前元素的位置
var currentItemX = currentItem.attr('x') - 0;
var currentItemY = currentItem.attr('y') - 0;
//根据方向获取旁边元素的位置
switch (direction) {
case 'left':
var sideItemX = currentItemX;
var sideItemY = currentItemY - 1;
break;
case 'right':
var sideItemX = currentItemX;
var sideItemY = currentItemY + 1;
break;
case 'up':
var sideItemX = currentItemX - 1;
var sideItemY = currentItemY;
break;
case 'down':
var sideItemX = currentItemX + 1;
var sideItemY = currentItemY;
break;
}
//旁边元素
var sideItem = $('.gameBody .row .x' + sideItemX + 'y' + sideItemY);
return sideItem;
}
function itemMove(currentItem, direction) {
var sideItem = getSideItem(currentItem, direction);
if (sideItem.length == 0) {//当前元素在最边上
//不动
} else if (sideItem.html() == '') { //当前元素不在最后一个且左(右、上、下)侧元素是空元素
sideItem.html(currentItem.html()).removeClass('emptyItem').addClass('nonEmptyItem');
currentItem.html('').removeClass('nonEmptyItem').addClass('emptyItem');
itemMove(sideItem, direction);
isNewRndItem = true;
} else if (sideItem.html() != currentItem.html()) {//左(右、上、下)侧元素和当前元素内容不同
//不动
} else {//左(右、上、下)侧元素和当前元素内容相同
//向右合并
sideItem.html((sideItem.html() - 0) * 2);
currentItem.html('').removeClass('nonEmptyItem').addClass('emptyItem');
gameScore += (sideItem.text() - 0) * 10;
$('#gameScore').html(gameScore);
// itemMove(sideItem, direction);
maxScore = maxScore < gameScore ? gameScore : maxScore;
$('#maxScore').html(maxScore);
localStorage.maxScore = maxScore;
isNewRndItem = true;
return;
}
}
function move(direction) {
//获取所有非空元素
var nonEmptyItems = $('.gameBody .row .nonEmptyItem');
//如果按下的方向是左或上,则正向遍历非空元素
if (direction == 'left' || direction == 'up') {
for (var i = 0; i < nonEmptyItems.length; i++) {
var currentItem = nonEmptyItems.eq(i);
itemMove(currentItem, direction);
}
} else if (direction == 'right' || direction == 'down') {//如果按下的方向是右或下,则反向遍历非空元素
for (var i = nonEmptyItems.length - 1; i >= 0; i--) {
var currentItem = nonEmptyItems.eq(i);
itemMove(currentItem, direction);
}
}
//是否产生新元素
if (isNewRndItem) {
newRndItem();
refreshColor();
}
}
function isGameOver() {
//获取所有元素
var items = $('.gameBody .row .item');
//获取所有非空元素
var nonEmptyItems = $('.gameBody .row .nonEmptyItem');
if (items.length == nonEmptyItems.length) {//所有元素的个数 == 所有非空元素的个数 即没有空元素
//遍历所有非空元素
for (var i = 0; i < nonEmptyItems.length; i++) {
var currentItem = nonEmptyItems.eq(i);
if (getSideItem(currentItem, 'up').length != 0 && currentItem.html() == getSideItem(currentItem, 'up').html()) {
//上边元素存在 且 当前元素中的内容等于上边元素中的内容
return;
} else if (getSideItem(currentItem, 'down').length != 0 && currentItem.html() == getSideItem(currentItem, 'down').html()) {
//下边元素存在 且 当前元素中的内容等于下边元素中的内容
return;
} else if (getSideItem(currentItem, 'left').length != 0 && currentItem.html() == getSideItem(currentItem, 'left').html()) {
//左边元素存在 且 当前元素中的内容等于左边元素中的内容
return;
} else if (getSideItem(currentItem, 'right').length != 0 && currentItem.html() == getSideItem(currentItem, 'right').html()) {
//右边元素存在 且 当前元素中的内容等于右边元素中的内容
return;
}
}
} else {
return;
}
$('#gameOverModal').modal('show');
}
//游戏初始化
function gameInit() {
//初始化分数
$('#gameScore').html(gameScore);
//最大分值
$('#maxScore').html(maxScore);
//为刷新按钮绑定事件
$('.refreshBtn').click(refreshGame);
//随机生成两个新元素
newRndItem();
newRndItem();
//刷新颜色
refreshColor();
}
//随机生成新元素
function newRndItem() {
//随机生成新数字
var newRndArr = [2, 2, 4];
var newRndNum = newRndArr[getRandom(0, 2)];
console.log('newRndNum: ' + newRndNum);
//随机生成新数字的位置
var emptyItems = $('.gameBody .row .emptyItem');
var newRndSite = getRandom(0, emptyItems.length - 1);
emptyItems.eq(newRndSite).html(newRndNum).removeClass('emptyItem').addClass('nonEmptyItem');
}
//产生随机数,包括min、max
function getRandom(min, max) {
return min + Math.floor(Math.random() * (max - min + 1));
}
//刷新颜色
function refreshColor() {
var items = $('.gameBody .item');
for (var i = 0; i < items.length; i++) {
// console.log(items.eq(i).parent().index());
switch (items.eq(i).html()) {
case '':
items.eq(i).css('background', '');
break;
case '2':
items.eq(i).css('background', 'rgb(250, 225, 188)');
break;
case '4':
items.eq(i).css('background', 'rgb(202, 240, 240)');
break;
case '8':
items.eq(i).css('background', 'rgb(117, 231, 193)');
break;
case '16':
items.eq(i).css('background', 'rgb(240, 132, 132)');
break;
case '32':
items.eq(i).css('background', 'rgb(181, 240, 181)');
break;
case '64':
items.eq(i).css('background', 'rgb(182, 210, 246)');
break;
case '128':
items.eq(i).css('background', 'rgb(255, 207, 126)');
break;
case '256':
items.eq(i).css('background', 'rgb(250, 216, 216)');
break;
case '512':
items.eq(i).css('background', 'rgb(124, 183, 231)');
break;
case '1024':
items.eq(i).css('background', 'rgb(225, 219, 215)');
break;
case '2048':
items.eq(i).css('background', 'rgb(221, 160, 221)');
break;
case '4096':
items.eq(i).css('background', 'rgb(250, 139, 176)');
break;
}
}
}
// 电脑的方向键监听事件
$('body').keydown(function (e) {
switch (e.keyCode) {
case 37:
// left
console.log('left');
isNewRndItem = false;
move('left');
isGameOver();
break;
case 38:
// up
console.log('up');
isNewRndItem = false;
move('up');
isGameOver();
break;
case 39:
// right
console.log('right');
isNewRndItem = false;
move('right');
isGameOver();
break;
case 40:
// down
console.log('down');
isNewRndItem = false;
move('down');
isGameOver();
break;
}
});
// 手机屏幕划动触发
(function () {
mobilwmtouch(document.getElementById("gameBody"))
document.getElementById("gameBody").addEventListener('touright', function (e) {
e.preventDefault();
// alert("方向向右");
console.log('right');
isNewRndItem = false;
move('right');
isGameOver();
});
document.getElementById("gameBody").addEventListener('touleft', function (e) {
// alert("方向向左");
console.log('left');
isNewRndItem = false;
move('left');
isGameOver();
});
document.getElementById("gameBody").addEventListener('toudown', function (e) {
// alert("方向向下");
console.log('down');
isNewRndItem = false;
move('down');
isGameOver();
});
document.getElementById("gameBody").addEventListener('touup', function (e) {
// alert("方向向上");
console.log('up');
isNewRndItem = false;
move('up');
isGameOver();
});
function mobilwmtouch(obj) {
var stoux, stouy;
var etoux, etouy;
var xdire, ydire;
obj.addEventListener("touchstart", function (e) {
stoux = e.targetTouches[0].clientX;
stouy = e.targetTouches[0].clientY;
//console.log(stoux);
}, false);
obj.addEventListener("touchend", function (e) {
etoux = e.changedTouches[0].clientX;
etouy = e.changedTouches[0].clientY;
xdire = etoux - stoux;
ydire = etouy - stouy;
chazhi = Math.abs(xdire) - Math.abs(ydire);
//console.log(ydire);
if (xdire > 0 && chazhi > 0) {
console.log("right");
//alert(evenzc('touright',alerts));
obj.dispatchEvent(evenzc('touright'));
} else if (ydire > 0 && chazhi < 0) {
console.log("down");
obj.dispatchEvent(evenzc('toudown'));
} else if (xdire < 0 && chazhi > 0) {
console.log("left");
obj.dispatchEvent(evenzc('touleft'));
} else if (ydire < 0 && chazhi < 0) {
console.log("up");
obj.dispatchEvent(evenzc('touup'));
}
}, false);
function evenzc(eve) {
if (typeof document.CustomEvent === 'function') {
this.event = new document.CustomEvent(eve, {//自定义事件名称
bubbles: false,//是否冒泡
cancelable: false//是否可以停止捕获
});
if (!document["evetself" + eve]) {
document["evetself" + eve] = this.event;
}
} else if (typeof document.createEvent === 'function') {
this.event = document.createEvent('HTMLEvents');
this.event.initEvent(eve, false, false);
if (!document["evetself" + eve]) {
document["evetself" + eve] = this.event;
}
} else {
return false;
}
return document["evetself" + eve];
}
}
})();
});