IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Vote des utilisateurs
1 
0 
Détails
Licence : Non renseignée
Mise en ligne le 28 novembre 2021
Langue : Français
Référencé dans
Navigation

2048

Le jeu du printemps 2014, dans une adaptation JS maison.
Principale nouveauté: possibilité de corriger en permanence ses déplacements!
Merci à ma fille de me l'avoir fait découvrir il y a une semaine (oui, je sais, je suis en retard d'un an).

(Mise à jour du code pour des raisons de propreté...;
Je mets le HTML aussi, mais sans l'affichage des scores, qui nécessite juste un ptit insert via php)

Démo en ligne
Nos ressources disponibles
Code JavaScript : Sélectionner tout
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
var f={ 
	bal : function(q){return document.getElementById(q)}, 
	tag : function(q){return document.getElementsByTagName(q)}, 
	el : function(q){return document.createElement(q)}, 
	perdu : "Vous avez perdu!", 
	t : [],  
	fin : false,  
	nbr : 0,  
	lose : false, 
	lose2 : false,  
	sc : 0,  
	scb : [0],  
	final : 0, 
	tableau : [], 
	global : [], 
	coul : { 
	" ": "rgb(143, 138, 234)", 
	2: "rgb(143, 138, 234)", 
	4:"rgb(199, 246, 108)", 
	8:"rgb(199, 246, 10)", 
	16:"rgb(199, 198, 0)", 
	32:"rgb(199, 135, 10)", 
	64:"rgb(199, 72, 10)", 
	128:"rgb(248,72, 10)", 
	256:"rgb(140,31, 10)", 
	512:"rgb(239, 39, 47)", 
	1024: "rgb(249, 216, 0)", 
	2048:"rgb(255, 0, 0)", 
	4096:"rgb(255, 0, 0)"}, 
	// Grille de départ 
	init : function(){ 
		// création d'un tableau html de 4 X 4 cases 
		var tab=f.el("table"); 
		tab.id="plateau"; 
		var tb=f.el("tbody"); 
		tab.appendChild(tb); 
		for(var i=0;i<4;i++){ 
			var ligne=f.el("tr"); 
			for(var j=0;j<4;j++){ 
				var ch=f.el("td"); 
				ch.appendChild(document.createTextNode(" ")); 
				ligne.appendChild(ch); 
			}; 
			tb.appendChild(ligne); 
		}; 
		f.bal("cadre").appendChild(tab); 
		for(i=0;i<16;i++){ 
			f.t.push(" ") 
		} 
		for(i=0;i<2;i++){ 
			f.nbr=Math.floor(Math.random()*16); 
			if(f.t[f.nbr]==" "){ 
				f.t[f.nbr]=Math.random()>0.9 ? 4 : 2; 
			} 
			else{ 
				i-- 
			} 
		}; 
		// attribution valeur et couleur aux cases 
		for(i=0;i<16;i++){ 
			f.tag("td")[i].firstChild.data=f.t[i]; 
			f.tag("td")[i].style.backgroundColor=f.coul[f.t[i]] 
		}; 
		 f.bal("valido").onclick=function(){f.go(f.bal('nom').value,f.sc)}; 
		 f.bal("rest").onclick=f.back; 
		document.onkeydown=f.keys; 
	}, 
	//Nouveau coup 
	next : function(){ 
		// sauvegarde du coup et du score précédents 
		for(i=0;i<16;i++){ 
			f.global.push([f.tag("td")[i].firstChild.data, f.tag("td")[i].style.backgroundColor]) 
		}; 
		f.scb.push(f.sc); 
  
		// nouvelle case "2" ou "4" 
		f.tableau=[]; 
		for(i in f.t){ 
			if(f.t[i]==" "){ 
				f.tableau.push(i) 
			}; 
		}; 
		for(i in f.t){ 
			if(f.t[i]==2048){ 
				f.bal("replay").firstChild.data="Bravo! Et vous pouvez encore continuer!"; 
				f.bal("replay").style.visibility="visible"; 
				break 
			} 
		}; 
		f.nbr=f.tableau[Math.floor(Math.random()*f.tableau.length)]; 
		f.t[f.nbr]=Math.random()>0.9 ? 4 : 2; 
		for(i in f.t){ 
			f.tag("td")[i].firstChild.data=f.t[i]; 
			// mise à jour de la couleur des cases 
			f.tag("td")[i].style.backgroundColor=f.coul[f.t[i]] 
		}	 
	}, 
	// Gestion des espaces à réduire 
	space : function(k){ 
		for(i=4;i<16;i++){ 
			if(k==38){ 
				if(f.t[i]!=" " &&  f.t[i-4]==" "){ 
					f.t[i-4]= f.t[i] 
					f.t[i]=" ";	 
					i=4;					 
				}; 
			} 
			if(k==40){ 
				if(f.t[i-4]!=" " &&  f.t[i]==" "){ 
					f.t[i]= f.t[i-4] 
					f.t[i-4]=" "; 
					i=4;						 
				}; 
			}	 
		} 
		for(i=0;i<16;i++){ 
			if(i%4!=0){ 
				if(k==39){ 
					if( f.t[i]==" "&&  f.t[i-1]!=" "){ 
						f.t[i]=f.t[i-1];	 
						f.t[i-1]=" ";	 
						i=0; 
					} 
				} 
				if(k==37){ 
					if( f.t[i-1]==" "&&   f.t[i]!=" "){ 
						f.t[i-1]=f.t[i];	 
						f.t[i]=" ";	 
						i=0; 
					} 
				} 
			} 
		} 
	}, 
	// Corriger une ou plusieurs actions 
	back : function(){ 
		if(f.scb.length>1 && !f.fin){ 
			for(i=0;i<16;i++){ 
				f.tag("td")[i].firstChild.data=f.global[f.global.length-(16-i)][0]; 
				f.tag("td")[i].style.backgroundColor=f.global[f.global.length-(16-i)][1]; 
			} 
			for(i=0;i<16;i++){ 
				f.global.pop() 
			} 
			for(i=0;i<16;i++){ 
				f.t[i]=f.tag("td")[i].firstChild.data; 
				f.tag("td")[i].style.backgroundColor=f.coul[f.t[i]] 
			} 
			f.scb.pop(); 
			f.sc=f.scb[f.scb.length-1]; 
			f.bal("score").firstChild.data=f.sc; 
			if(f.scb.length==1){ 
				f.bal("rest").style.visibility="hidden" 
			} 
		} 
	}, 
	// Test de défaite 
	over : function(){ 
		f.bal("rest").style.visibility= (f.scb.length>1 && !f.fin) ? "visible" : "hidden"; 
		f.lose=false; 
		f.lose2=false; 
		for(i in f.t){ 
			if(f.t[i]==" "){ 
				f.lose=true; 
				break 
			} 
		}; 
		if(!f.lose){ 
			for(i=0;i<16;i++){ 
				if(i%4!=0){ 
					if(f.t[i]==f.t[i-1]){ 
						f.lose2=true; 
						break 
					}; 
				} 
			} 
			for(i=4;i<16;i++){ 
				if(f.t[i]==f.t[i-4]){ 
					f.lose2=true; 
					break 
				}; 
			}; 
			if(!f.lose2){ 
				f.bal("rest").style.visibility="hidden"; 
				f.fin=true;	 
				f.bal("champ").style.visibility="visible"; 
				setInterval(	function(){ 
						f.final++; 
						for(i=0;i<16;i++) { 
							if(f.final%2==1){ 
								f.bal("replay").firstChild.data="Mais vous pouvez rejouer en rechargeant la page!"; 
								f.bal("replay").style.visibility="visible"; 
								f.tag("table")[0].style.opacity="1"; 
								f.tag("td")[i].firstChild.data=perdu.charAt(i) 
							} 
							else{	 
								f.bal("replay").style.visibility="hidden"; 
								f.tag("table")[0].style.opacity="0.3"; 
								f.tag("td")[i].firstChild.data=t[i]; 
							}; 
						} 
					}, 
					2000);			 
			}; 
		}; 
	}, 
	// Envoi des données au serveur 
	go : function(t,s){ 
		try{ 
			req = (window.XMLHttpRequest) ? new XMLHttpRequest() : new ActiveXObject("Microsoft.XMLHTTP"); 
			req.open("POST", "***.php", true);    
			req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");    
			txt = "t="+escape(t)+"&s="+s;    
			req.send(txt);   
			req.onreadystatechange=function(){ 
				if(req.readyState==4){ 
					location.reload() 
				} 
			} 
		} 
		catch(e){ 
			alert("votre navigateur est trop pourri: changez-le.") 
		};   
	}, 
	// Gestion des touches de direction 
	keys : function(e){ 
		ev= (e) ? e.which : event.keyCode; 
		if(!f.fin){ 
			switch(ev){ 
				default: 	break; 
				case 39: 
					var feu39; 
					for(i in f.t){ 
						if(i%4!=0){ 
							if((f.t[i-1]!=" " && f.t[i]==" ")  || (f.t[i-1]!=" " && f.t[i-1]==f.t[i])) { 
								feu39=true; 
								break; 
							} 
						} 
					} 
  
					if(feu39==true){				 
						f.space(39); 
						for(i=15;i>-1;i--){ 
							if(i%4!=0){ 
								if( f.t[i-1]!=" " && f.t[i]==f.t[i-1]){ 
									f.t[i]=parseInt(f.t[i-1])*2; 
									f.t[i-1]=" "; 
									f.sc+=parseInt(f.t[i]); 
									f.bal("score").firstChild.data=f.sc; 
								}; 
							} 
						}; 
						f.space(39); 
						f.next() 
					}; 
  
					f.over(); 
					return false; 
					break; 
  
				case 37: 
					var feu37; 
					for(i in f.t){ 
						if(i%4!=0){ 
							if((f.t[i]!=" " && f.t[i-1]==" ") || (f.t[i]!=" " && f.t[i-1]==f.t[i])) { 
								feu37=true; 
								break 
							} 
						} 
					} 
					if(feu37==true){	 
						f.space(37); 
						for(i=0;i<16;i++){ 
							if(i%4!=0){ 
								if(f.t[i]!=" " && f.t[i]==f.t[i-1]){ 
									f.t[i-1]=parseInt(f.t[i])*2; 
									f.t[i]=" "; 
									f.sc+=parseInt(f.t[i-1]); 
									f.bal("score").firstChild.data=f.sc; 
								}; 
							} 
						}; 
						f.space(37); 
						f.next() 
					}; 
					f.over(); 
					return false; 
					break; 
  
				case 38: 
					var feu38; 
					for(i=4;i<16;i++){ 
						if((f.t[i]!=" " && f.t[i-4]==" ") || (f.t[i]!=" " &&  f.t[i]==f.t[i-4])){ 
							feu38=true; 
							break 
						} 
					} 
					if(feu38==true){ 
						f.space(38);	 
						for(i=4;i<16;i++){ 
							if(f.t[i]!=" " && f.t[i]==f.t[i-4]){ 
								f.t[i-4]=parseInt(f.t[i])*2; 
								f.t[i]=" "; 
								f.sc+=parseInt(f.t[i-4]);	 
								f.bal("score").firstChild.data=f.sc;					 
							}; 
						}; 
						f.space(38); 
						f.next() 
					}; 
  
					f.over(); 
					return false; 
					break; 
  
				case 40:  
					var feu40; 
					for(i=4;i<16;i++){ 
						if((f.t[i-4]!=" " && f.t[i]==" ") || (f.t[i]!=" " && f.t[i]==f.t[i-4])){ 
							feu40=true; 
							break 
						} 
					} 
					if(feu40==true){	 
						f.space(40); 
						for(i=15;i>3;i--){ 
							if(f.t[i]!=" " && f.t[i]==f.t[i-4]){ 
								f.t[i]=parseInt(f.t[i-4])*2; 
								f.t[i-4]=" "; 
								f.sc+=parseInt(f.t[i]);	 
								f.bal("score").firstChild.data=f.sc;					 
							}; 
  
						}; 
						f.space(40); 
						f.next() 
					}; 
					f.over(); 
					return false; 
					break; 
			} 
		} 
	} 
} 
  
window.onload=f.init;
Code CSS : Sélectionner tout
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
body { 
	background-color:rgb(143, 138, 234); 
	font-weight:bold; 
} 
  
table{ 
	margin:20px auto 20px auto; 
	border-collapse:collapse; 
} 
  
td { 
	color:#000000; 
	font-size:50px; 
	border:inset 6px gray; 
	width:120px; 
	height:120px; 
	text-align:center; 
} 
  
p {	 
	text-align:center; 
	color:white; 
} 
  
a { 
color:yellow; 
text-decoration:none; 
} 
  
#monscore { 
	font-weight:bold; 
	color:rgb(199, 246, 108); 
	margin-top:100px; 
	margin-left:100px; 
	float:left; 
	font-size:40px; 
} 
  
#score{ 
	font-weight:bold; 
	width:100px; 
	color:rgb(199, 246, 108); 
	margin-top:100px; 
	margin-left:50px; 
	font-size:40px; 
} 
  
#champ { 
	visibility:hidden; 
	text-align:center 
} 
  
#liste{ 
	text-align:center; 
} 
  
#donnees { 
	float:left; 
	font-size:30px 
} 
  
#replay{ 
	visibility:hidden; 
	margin-top:100px; 
	width:200px; 
}
Code HTML : Sélectionner tout
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> 
  
<title>2048</title> 
  
<link rel="StyleSheet" type="text/css" href="2048.css" /> 
  
<script type="text/javascript" src="2048.js"></script> 
  
</head> 
<body> 
  
<div  id="cadre"> 
	<div id="monscore">Votre score:</div> 
	<div id="donnees"> 
		<div id="score">0</div> 
		<div id="replay">?</div> 
	</div> 
</div> 
  
<div id="champ"> 
	<input type="text" id="nom" value="Votre nom" /> 
	<input type="button" id="valido" value="enregistrer" /> 
</div> 
  
<div id="liste"> 
<input type="button" id="rest" value="corriger" /><br /> 
</div> 
  
</body> 
</html>
Avatar de javatwister
Expert confirmé https://www.developpez.com
Le 07/02/2016 à 10:47
salut!

Petite maj tactile, à tester.
(Le code n'est pas encore à jour sur la "fiche" mais le lien "démo" vous donnera une idée.)
Developpez.com décline toute responsabilité quant à l'utilisation des différents éléments téléchargés.