-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModule1.bas
431 lines (398 loc) · 16.3 KB
/
Module1.bas
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
Attribute VB_Name = "Module1"
Global Memoire As Range
Sub labyrinthe()
Dim ligne As Integer
Dim colonne As Integer
Dim compteur As Integer
Call initialisation
compt = 1
Do While (Range("B2") <> Range("AD30"))
aleatoire = Int(Rnd() * 4)
'Copie colonne
'paire
If aleatoire = 0 Then
colonne = Int(Rnd() * 27) + 2
Do While (colonne Mod 2 = 0)
colonne = Int(Rnd() * 27) + 2
Loop
ligne = Int(Rnd() * 29) + 2
Do While (ligne Mod 2 = 0)
ligne = Int(Rnd() * 29) + 2
Loop
If Cells(ligne, colonne).Value <> 0 Then
If Cells(ligne, colonne).Value <> Cells(ligne, colonne + 2).Value Then
If Cells(ligne, colonne).Value > Cells(ligne, colonne + 2).Value Then
Cells(ligne, colonne + 2).Value = Cells(ligne, colonne).Value
Cells(ligne, colonne + 1).Interior.Color = RGB(255, 255, 255)
Cells(ligne, colonne + 1).Value = Cells(ligne, colonne).Value
Else
Cells(ligne, colonne).Value = Cells(ligne, colonne + 2).Value
Cells(ligne, colonne + 1).Interior.Color = RGB(255, 255, 255)
Cells(ligne, colonne + 1).Value = Cells(ligne, colonne + 2).Value
End If
End If
End If
'''
ElseIf aleatoire = 1 Then
'impaire
colonne = Int(Rnd() * 27) + 2
Do While (colonne Mod 2 = 1)
colonne = Int(Rnd() * 27) + 2
Loop
ligne = Int(Rnd() * 29) + 2
Do While (ligne Mod 2 = 1)
ligne = Int(Rnd() * 29) + 2
Loop
If Cells(ligne, colonne).Value <> 0 Then
If Cells(ligne, colonne).Value <> Cells(ligne, colonne + 2).Value Then
If Cells(ligne, colonne).Value > Cells(ligne, colonne + 2).Value Then
Cells(ligne, colonne + 2).Value = Cells(ligne, colonne).Value
Cells(ligne, colonne + 1).Interior.Color = RGB(255, 255, 255)
Cells(ligne, colonne + 1).Value = Cells(ligne, colonne).Value
Else
Cells(ligne, colonne).Value = Cells(ligne, colonne + 2).Value
Cells(ligne, colonne + 1).Interior.Color = RGB(255, 255, 255)
Cells(ligne, colonne + 1).Value = Cells(ligne, colonne + 2).Value
End If
End If
End If
ElseIf aleatoire = 2 Then
'copie ligne
'Paire
colonne = Int(Rnd() * 29) + 2
Do While (colonne Mod 2 = 0)
colonne = Int(Rnd() * 29) + 2
Loop
ligne = Int(Rnd() * 27) + 2
Do While (ligne Mod 2 = 0)
ligne = Int(Rnd() * 27) + 2
Loop
If Cells(ligne, colonne).Value <> 0 Then
If Cells(ligne, colonne).Value <> Cells(ligne + 2, colonne).Value Then
If Cells(ligne, colonne).Value > Cells(ligne + 2, colonne).Value Then
Cells(ligne + 2, colonne).Value = Cells(ligne, colonne).Value
Cells(ligne + 1, colonne).Interior.Color = RGB(255, 255, 255)
Cells(ligne + 1, colonne).Value = Cells(ligne, colonne).Value
Else
Cells(ligne, colonne).Value = Cells(ligne + 2, colonne).Value
Cells(ligne + 1, colonne).Interior.Color = RGB(255, 255, 255)
Cells(ligne + 1, colonne).Value = Cells(ligne + 2, colonne).Value
End If
End If
End If
ElseIf aleatoire = 3 Then
'Impaire
colonne = Int(Rnd() * 29) + 2
Do While (colonne Mod 2 = 1)
colonne = Int(Rnd() * 29) + 2
Loop
ligne = Int(Rnd() * 27) + 2
Do While (ligne Mod 2 = 1)
ligne = Int(Rnd() * 27) + 2
Loop
If Cells(ligne, colonne).Value <> 0 Then
If Cells(ligne + 2, colonne).Value <> Cells(ligne, colonne).Value Then
If Cells(ligne, colonne).Value > Cells(ligne + 2, colonne).Value Then
Cells(ligne + 2, colonne).Value = Cells(ligne, colonne).Value
Cells(ligne + 1, colonne).Interior.Color = RGB(255, 255, 255)
Cells(ligne + 1, colonne).Value = Cells(ligne, colonne).Value
Else
Cells(ligne, colonne).Value = Cells(ligne + 2, colonne).Value
Cells(ligne + 1, colonne).Interior.Color = RGB(255, 255, 255)
Cells(ligne + 1, colonne).Value = Cells(ligne + 2, colonne).Value
End If
End If
End If
End If
'''
'copie la valeur la plus grande
For i = 0 To 2
For Each cellule In Range("B2:AD30")
If cellule.Value <> 0 Then
If cellule.Offset(0, 1) <> 0 Then
If cellule.Offset(0, 1) <> cellule Then
If cellule.Offset(0, 1) > cellule Then
cellule.Value = cellule.Offset(0, 1).Value
ElseIf cellule.Offset(0, 1) < cellule Then
cellule.Offset(0, 1).Value = cellule.Value
End If
End If
End If
End If
If cellule.Value <> 0 Then
If cellule.Offset(1, 0) <> 0 Then
If cellule.Offset(1, 0) <> cellule Then
If cellule.Offset(1, 0) > cellule Then
cellule.Value = cellule.Offset(1, 0).Value
ElseIf cellule.Offset(1, 0) < cellule Then
cellule.Offset(1, 0).Value = cellule.Value
End If
End If
End If
End If
If cellule.Value <> 0 Then
If cellule.Offset(0, -1) <> 0 Then
If cellule.Offset(0, -1) <> cellule Then
If cellule.Offset(0, -1) > cellule Then
cellule.Value = cellule.Offset(0, -1).Value
ElseIf cellule.Offset(0, -1) < cellule Then
cellule.Offset(0, -1).Value = cellule.Value
End If
End If
End If
End If
If cellule.Value <> 0 Then
If cellule.Offset(-1, 0) <> 0 Then
If cellule.Offset(-1, 0) <> cellule Then
If cellule.Offset(-1, 0) > cellule Then
cellule.Value = cellule.Offset(-1, 0).Value
ElseIf cellule.Offset(-1, 0) < cellule Then
cellule.Offset(-1, 0).Value = cellule.Value
End If
End If
End If
End If
Next cellule
Next i
compt = compt + 1
Loop
Range("A2").Value = 421
Range("AE30").Value = 421
Range("A2").Select
End Sub
Sub initialisation()
Dim ligne As Integer
Dim collone As Integer
Dim compteur As Integer
Range("A2").Value = 0
Range("AE30").Value = 421
compteur = 0
'Range("B2:AD30") = 1
Range("A1:AE31").ColumnWidth = 2.14
Range("A1:AE1").Interior.Color = RGB(0, 0, 0)
Range("A1:A31").Interior.Color = RGB(0, 0, 0)
Range("AE1:AE31").Interior.Color = RGB(0, 0, 0)
Range("A31:AE31").Interior.Color = RGB(0, 0, 0)
Range("A2").Interior.Color = RGB(255, 255, 255)
Range("AE30").Interior.Color = RGB(255, 255, 255)
Range("A31:AE31").Value = 0
Range("A3:A31").Value = 0
Range("A1:AE1").Value = 0
Range("AE1:AE29").Value = 0
compt = 1
For Each cellule In Range("B2:AD30")
If compteur Mod 2 = 0 Then
cellule.Interior.Color = RGB(255, 255, 255)
'cellule.Value = Int(Rnd * 10 + 1)
cellule.Value = compt
compt = compt + 1
Else
cellule.Interior.Color = RGB(0, 0, 0)
cellule.Value = 0
End If
compteur = compteur + 1
Next cellule
For i = 3 To 29
If i Mod 2 = 1 Then
Range("C" & i).Interior.Color = RGB(0, 0, 0)
Range("C" & i).Value = 0
Range("E" & i).Interior.Color = RGB(0, 0, 0)
Range("E" & i).Value = 0
Range("G" & i).Interior.Color = RGB(0, 0, 0)
Range("G" & i).Value = 0
Range("I" & i).Interior.Color = RGB(0, 0, 0)
Range("I" & i).Value = 0
Range("K" & i).Interior.Color = RGB(0, 0, 0)
Range("K" & i).Value = 0
Range("M" & i).Interior.Color = RGB(0, 0, 0)
Range("M" & i).Value = 0
Range("O" & i).Interior.Color = RGB(0, 0, 0)
Range("O" & i).Value = 0
Range("Q" & i).Interior.Color = RGB(0, 0, 0)
Range("Q" & i).Value = 0
Range("S" & i).Interior.Color = RGB(0, 0, 0)
Range("S" & i).Value = 0
Range("U" & i).Interior.Color = RGB(0, 0, 0)
Range("U" & i).Value = 0
Range("W" & i).Interior.Color = RGB(0, 0, 0)
Range("W" & i).Value = 0
Range("Y" & i).Interior.Color = RGB(0, 0, 0)
Range("Y" & i).Value = 0
Range("AA" & i).Interior.Color = RGB(0, 0, 0)
Range("AA" & i).Value = 0
Range("AC" & i).Interior.Color = RGB(0, 0, 0)
Range("AC" & i).Value = 0
End If
Next i
Range("A2").Activate
Set Memoire = ActiveCell
End Sub
Sub complexe()
colonne = Int(Rnd() * 27) + 2
Do While (colonne Mod 2 = 0)
colonne = Int(Rnd() * 27) + 2
Loop
ligne = Int(Rnd() * 29) + 2
Do While (ligne Mod 2 = 0)
ligne = Int(Rnd() * 29) + 2
Loop
If Cells(ligne, colonne).Value <> 0 Then
If Cells(ligne, colonne).Value > Cells(ligne, colonne + 2).Value Then
Cells(ligne, colonne + 2).Value = Cells(ligne, colonne).Value
Cells(ligne, colonne + 1).Interior.Color = RGB(255, 255, 255)
Cells(ligne, colonne + 1).Value = Cells(ligne, colonne).Value
Else
Cells(ligne, colonne).Value = Cells(ligne, colonne + 2).Value
Cells(ligne, colonne + 1).Interior.Color = RGB(255, 255, 255)
Cells(ligne, colonne + 1).Value = Cells(ligne, colonne + 2).Value
End If
End If
'''
'impaire
colonne = Int(Rnd() * 27) + 2
Do While (colonne Mod 2 = 1)
colonne = Int(Rnd() * 27) + 2
Loop
ligne = Int(Rnd() * 29) + 2
Do While (ligne Mod 2 = 1)
ligne = Int(Rnd() * 29) + 2
Loop
If Cells(ligne, colonne).Value <> 0 Then
If Cells(ligne, colonne).Value > Cells(ligne, colonne + 2).Value Then
Cells(ligne, colonne + 2).Value = Cells(ligne, colonne).Value
Cells(ligne, colonne + 1).Interior.Color = RGB(255, 255, 255)
Cells(ligne, colonne + 1).Value = Cells(ligne, colonne).Value
Else
Cells(ligne, colonne).Value = Cells(ligne, colonne + 2).Value
Cells(ligne, colonne + 1).Interior.Color = RGB(255, 255, 255)
Cells(ligne, colonne + 1).Value = Cells(ligne, colonne + 2).Value
End If
End If
'copie ligne
'Paire
colonne = Int(Rnd() * 29) + 2
Do While (colonne Mod 2 = 0)
colonne = Int(Rnd() * 29) + 2
Loop
ligne = Int(Rnd() * 27) + 2
Do While (ligne Mod 2 = 0)
ligne = Int(Rnd() * 27) + 2
Loop
If Cells(ligne, colonne).Value <> 0 Then
If Cells(ligne, colonne).Value > Cells(ligne + 2, colonne).Value Then
Cells(ligne + 2, colonne).Value = Cells(ligne, colonne).Value
Cells(ligne + 1, colonne).Interior.Color = RGB(255, 255, 255)
Cells(ligne + 1, colonne).Value = Cells(ligne, colonne).Value
Else
Cells(ligne, colonne).Value = Cells(ligne + 2, colonne).Value
Cells(ligne + 1, colonne).Interior.Color = RGB(255, 255, 255)
Cells(ligne + 1, colonne).Value = Cells(ligne + 2, colonne).Value
End If
End If
'Impaire
colonne = Int(Rnd() * 29) + 2
Do While (colonne Mod 2 = 1)
colonne = Int(Rnd() * 29) + 2
Loop
ligne = Int(Rnd() * 27) + 2
Do While (ligne Mod 2 = 1)
ligne = Int(Rnd() * 27) + 2
Loop
If Cells(ligne, colonne).Value <> 0 Then
If Cells(ligne, colonne).Value > Cells(ligne + 2, colonne).Value Then
Cells(ligne + 2, colonne).Value = Cells(ligne, colonne).Value
Cells(ligne + 1, colonne).Interior.Color = RGB(255, 255, 255)
Cells(ligne + 1, colonne).Value = Cells(ligne, colonne).Value
Else
Cells(ligne, colonne).Value = Cells(ligne + 2, colonne).Value
Cells(ligne + 1, colonne).Interior.Color = RGB(255, 255, 255)
Cells(ligne + 1, colonne).Value = Cells(ligne + 2, colonne).Value
End If
End If
End Sub
Sub effacer()
For Each cellule In Range("A1:AE31")
If cellule = 0 Then
cellule.Interior.Color = RGB(0, 0, 0)
Else
cellule.Interior.Color = RGB(255, 255, 255)
End If
Next cellule
Range("A2").Interior.Color = RGB(255, 255, 255)
Range("AE30").Interior.Color = RGB(255, 255, 255)
End Sub
Sub Noir()
For Each cellule In Range("A1:AE31")
cellule.Interior.Color = RGB(0, 0, 0)
Next cellule
End Sub
Sub Time()
timerAvant = Timer
' Application.Wait Now + TimeValue("0:00:02")
Call labyrinthe
MsgBox "Temps d'exécution : " & Timer - timerAvant & " secondes."
End Sub
Sub resoudreLabyrinthe()
Dim x As Integer
Dim y As Integer
Call remplissage
x = 1
y = 2
Do While (Cells(y, x).Value <> 1)
Cells(y, x).Select
If Cells(y + 1, x).Value <> 0 Then
If Cells(y, x).Value > Cells(y + 1, x).Value Then
y = y + 1
Cells(y, x).Select
End If
End If
If Cells(y - 1, x).Value <> 0 Then
If Cells(y, x).Value > Cells(y - 1, x).Value Then
y = y - 1
Cells(y, x).Select
End If
End If
If Cells(y, x + 1).Value <> 0 Then
If Cells(y, x).Value > Cells(y, x + 1).Value Then
x = x + 1
Cells(y, x).Select
End If
End If
If Cells(y, x - 1).Value <> 0 Then
If Cells(y, x).Value > Cells(y, x - 1).Value Then
x = x - 1
Cells(y, x).Select
End If
End If
Loop
End Sub
Sub effacer_nb()
For Each cellule In Range("A1:AE31")
If cellule.Value <> 0 Then
cellule.Value = ""
End If
Next cellule
End Sub
Sub remplissage()
Call effacer_nb
Cells(30, 31).Value = 1
Cells(2, 1).Value = "fin"
Call voisin(30, 30, 1)
End Sub
Sub voisin(x As Integer, y As Integer, N As Integer)
If Cells(x, y).Value <> "fin" Then
Cells(x, y).Value = N + 1
If Cells(x, y - 1).Value = "" Then
Call voisin(x, y - 1, N + 1)
End If
If Cells(x, y + 1).Value = "" Then
Call voisin(x, y + 1, N + 1)
End If
If Cells(x + 1, y).Value = "" Then
Call voisin(x + 1, y, N + 1)
End If
If Cells(x - 1, y).Value = "" Then
Call voisin(x - 1, y, N + 1)
End If
End If
End Sub