-
Notifications
You must be signed in to change notification settings - Fork 0
/
my tic tac toe auto.bat
472 lines (406 loc) · 14.8 KB
/
my tic tac toe auto.bat
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
@echo off
title TIC TAC TOE
set gamer1=Rami
set gamer2= computer
set p1=0
set p2=0
set played=0
:start
set z1=1
set z2=2
set z3=3
set z4=4
set z5=5
set z6=6
set z7=7
set z8=8
set z9=9
:player1
cls
echo.
echo.
echo.
echo %z7% : %z8% : %z9%
echo .................
echo %z4% : %z5% : %z6%
echo .................
echo %z1% : %z2% : %z3%
echo.
echo %b%
:main1
set /p a=%gamer1% (0) :
if %a%==0. goto exit
if %a%==+ goto start
if %a%==* goto resultat
if %a%==1 goto p1
if %a%==2 goto p2
if %a%==3 goto p3
if %a%==4 goto p4
if %a%==5 goto p5
if %a%==6 goto p6
if %a%==7 goto p7
if %a%==8 goto p8
if %a%==9 goto p9
if not %a%==0. goto main1
if not %a%==+ goto main1
if not %a%==* goto main1
if not %a%==1 goto main1
if not %a%==2 goto main1
if not %a%==3 goto main1
if not %a%==4 goto main1
if not %a%==5 goto main1
if not %a%==6 goto main1
if not %a%==7 goto main1
if not %a%==8 goto main1
if not %a%==9 goto main1
:p1
if %z1%==x goto main1
if %z1%==0 goto main1
set z1=0
if %z1%==0 goto check
:p2
if %z2%==x goto main1
if %z2%==0 goto main1
set z2=0
if %z2%==0 goto check
:p3
if %z3%==x goto main1
if %z3%==0 goto main1
set z3=0
if %z3%==0 goto check
:p4
if %z4%==x goto main1
if %z4%==0 goto main1
set z4=0
if %z4%==0 goto check
:p5
if %z5%==x goto main1
if %z5%==0 goto main1
set z5=0
if %z5%==0 goto check
:p6
if %z6%==x goto main1
if %z6%==0 goto main1
set z6=0
if %z6%==0 goto check
:p7
if %z7%==x goto main1
if %z7%==0 goto main1
set z7=0
if %z7%==0 goto check
:p8
if %z8%==x goto main1
if %z8%==0 goto main1
set z8=0
if %z8%==0 goto check
:p9
if %z9%==x goto main1
if %z9%==0 goto main1
set z9=0
if %z9%==0 goto check
:check
if %z1%==0 , if %z2%==0 , if %z3%==0 goto pl1
if %z4%==0 , if %z5%==0 , if %z6%==0 goto pl1
if %z7%==0 , if %z8%==0 , if %z9%==0 goto pl1
if %z1%==0 , if %z5%==0 , if %z9%==0 goto pl1
if %z3%==0 , if %z5%==0 , if %z7%==0 goto pl1
if %z1%==0 , if %z4%==0 , if %z7%==0 goto pl1
if %z2%==0 , if %z5%==0 , if %z8%==0 goto pl1
if %z3%==0 , if %z6%==0 , if %z9%==0 goto pl1
if %z1%==0 , if %z2%==x , if %z3%==0 , if %z4%==x , if %z5%==0 , if %z6%==0 , if %z7%==x , if %z8%==0 , if %z9%==x goto tie
if %z1%==x , if %z2%==x , if %z3%==0 , if %z4%==0 , if %z5%==0 , if %z6%==x , if %z7%==x , if %z8%==0 , if %z9%==0 goto tie
if %z1%==0 , if %z2%==x , if %z3%==x , if %z4%==x , if %z5%==0 , if %z6%==0 , if %z7%==0 , if %z8%==0 , if %z9%==x goto tie
if %z1%==0 , if %z2%==x , if %z3%==0 , if %z4%==0 , if %z5%==0 , if %z6%==x , if %z7%==x , if %z8%==0 , if %z9%==x goto tie
if %z1%==0 , if %z2%==x , if %z3%==0 , if %z4%==0 , if %z5%==x , if %z6%==x , if %z7%==x , if %z8%==0 , if %z9%==0 goto tie
if %z1%==x , if %z2%==0 , if %z3%==0 , if %z4%==0 , if %z5%==x , if %z6%==x , if %z7%==0 , if %z8%==x , if %z9%==0 goto tie
if %z1%==x , if %z2%==0 , if %z3%==x , if %z4%==0 , if %z5%==0 , if %z6%==x , if %z7%==0 , if %z8%==x , if %z9%==0 goto tie
if %z1%==x , if %z2%==0 , if %z3%==x , if %z4%==x , if %z5%==0 , if %z6%==0 , if %z7%==0 , if %z8%==x , if %z9%==0 goto tie
if %z1%==0 , if %z2%==0 , if %z3%==x , if %z4%==x , if %z5%==0 , if %z6%==0 , if %z7%==0 , if %z8%==x , if %z9%==x goto tie
if %z1%==0 , if %z2%==0 , if %z3%==x , if %z4%==x , if %z5%==x , if %z6%==0 , if %z7%==0 , if %z8%==x , if %z9%==0 goto tie
if %z1%==x , if %z2%==0 , if %z3%==x , if %z4%==0 , if %z5%==x , if %z6%==x , if %z7%==0 , if %z8%==x , if %z9%==0 goto tie
if %z1%==x , if %z2%==0 , if %z3%==0 , if %z4%==0 , if %z5%==0 , if %z6%==x , if %z7%==x , if %z8%==x , if %z9%==0 goto tie
if %z1%==x , if %z2%==0 , if %z3%==0 , if %z4%==0 , if %z5%==x , if %z6%==x , if %z7%==x , if %z8%==0 , if %z9%==0 goto tie
if %z1%==0 , if %z2%==x , if %z3%==x , if %z4%==x , if %z5%==0 , if %z6%==0 , if %z7%==x , if %z8%==0 , if %z9%==x goto tie
if %z1%==x , if %z2%==0 , if %z3%==0 , if %z4%==0 , if %z5%==x , if %z6%==x , if %z7%==x , if %z8%==x , if %z9%==0 goto tie
if %z1%==0 , if %z2%==x , if %z3%==0 , if %z4%==x , if %z5%==0 , if %z6%==x , if %z7%==x , if %z8%==0 , if %z9%==x goto tie
if %z1%==x , if %z2%==x , if %z3%==0 , if %z4%==0 , if %z5%==0 , if %z6%==x , if %z7%==x , if %z8%==0 , if %z9%==x goto tie
if %z1%==x , if %z2%==0 , if %z3%==x , if %z4%==0 , if %z5%==0 , if %z6%==x , if %z7%==x , if %z8%==x , if %z9%==0 goto tie
if %z1%==x , if %z2%==0 , if %z3%==x , if %z4%==x , if %z5%==x , if %z6%==0 , if %z7%==0 , if %z8%==x , if %z9%==0 goto tie
if %z1%==x , if %z2%==x , if %z3%==0 , if %z4%==0 , if %z5%==0 , if %z6%==x , if %z7%==x , if %z8%==x , if %z9%==0 goto tie
if %z1%==x , if %z2%==0 , if %z3%==x , if %z4%==x , if %z5%==0 , if %z6%==0 , if %z7%==0 , if %z8%==x , if %z9%==x goto tie
if %z1%==0 , if %z2%==0 , if %z3%==x , if %z4%==x , if %z5%==x , if %z6%==0 , if %z7%==0 , if %z8%==x , if %z9%==x goto tie
if %z1%==0 , if %z2%==x , if %z3%==0 , if %z4%==0 , if %z5%==x , if %z6%==x , if %z7%==x , if %z8%==0 , if %z9%==x goto tie
if %z1%==x , if %z2%==x , if %z3%==0 , if %z4%==0 , if %z5%==x , if %z6%==x , if %z7%==x , if %z8%==0 , if %z9%==0 goto tie
if %z1%==0 , if %z2%==x , if %z3%==0 , if %z4%==x , if %z5%==x , if %z6%==0 , if %z7%==x , if %z8%==0 , if %z9%==x goto tie
if %z1%==0 , if %z2%==x , if %z3%==x , if %z4%==x , if %z5%==x , if %z6%==0 , if %z7%==0 , if %z8%==0 , if %z9%==x goto tie
if %z1%==0 , if %z2%==x , if %z3%==x , if %z4%==x , if %z5%==0 , if %z6%==0 , if %z7%==0 , if %z8%==x , if %z9%==x goto tie
goto player2
:pl1
cls
echo.
echo.
echo.
echo %z7% : %z8% : %z9%
echo .................
echo %z4% : %z5% : %z6%
echo .................
echo %z1% : %z2% : %z3%
echo.
echo %gamer1% Win
:p1
cls
set /a played=%played% +1
set /a p1=%p1% +1
echo GAME OVER
goto go1
echo ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
:start1
set z1=1
set z2=2
set z3=3
set z4=4
set z5=5
set z6=6
set z7=7
set z8=8
set z9=9
:player2
cls
echo.
echo.
echo.
echo %z7% : %z8% : %z9%
echo .................
echo %z4% : %z5% : %z6%
echo .................
echo %z1% : %z2% : %z3%
echo.
:main2
if %z7%==0 , if %z5%==0 goto x3
if %z1%==0 , if %z2%==0 goto x3
if %z2%==0 , if %z3%==0 goto x1
if %z4%==0 , if %z5%==0 goto x6
if %z5%==0 , if %z6%==0 goto x4
if %z7%==0 , if %z8%==0 goto x9
if %z8%==0 , if %z9%==0 goto x7
if %z1%==0 , if %z4%==0 goto x7
if %z4%==0 , if %z7%==0 goto x1
if %z2%==0 , if %z5%==0 goto x8
if %z5%==0 , if %z8%==0 goto x2
if %z3%==0 , if %z6%==0 goto x9
if %z6%==0 , if %z9%==0 goto x3
if %z1%==0 , if %z5%==0 goto x9
if %z5%==0 , if %z3%==0 goto x7
if %z1%==0 , if %z5%==0 goto x9
if %z5%==0 , if %z9%==0 goto x1
if %z7%==0 , if %z9%==0 goto x8
if %z7%==0 , if %z1%==0 goto x4
if %z1%==0 , if %z3%==0 goto x2
if %z3%==0 , if %z9%==0 goto x6
if %z7%==0 , if %z3%==0 goto x5
if %z1%==0 , if %z9%==0 goto x5
if %z1%==0 , if %z2%==0 , if %z3%==x goto rand
if %z1%==x , if %z2%==0 , if %z3%==0 goto rand
if %z1%==0 , if %z2%==x , if %z3%==0 goto rand
if %z4%==0 , if %z5%==0 , if %z6%==x goto rand
if %z4%==x , if %z5%==0 , if %z6%==0 goto rand
if %z4%==0 , if %z5%==x , if %z6%==0 goto rand
if %z7%==0 , if %z8%==0 , if %z9%==x goto rand
if %z7%==x , if %z8%==0 , if %z9%==0 goto rand
if %z7%==0 , if %z8%==x , if %z9%==0 goto rand
if %z1%==0 , if %z4%==0 , if %z7%==x goto rand
if %z1%==x , if %z4%==0 , if %z7%==0 goto rand
if %z1%==0 , if %z4%==x , if %z7%==0 goto rand
if %z2%==0 , if %z5%==0 , if %z8%==x goto rand
if %z2%==x , if %z5%==0 , if %z8%==0 goto rand
if %z2%==0 , if %z5%==x , if %z8%==0 goto rand
if %z3%==0 , if %z6%==0 , if %z9%==x goto rand
if %z3%==x , if %z6%==0 , if %z9%==0 goto rand
if %z3%==0 , if %z6%==x , if %z9%==0 goto rand
if %z1%==0 , if %z5%==0 , if %z9%==x goto rand
if %z1%==x , if %z5%==0 , if %z9%==0 goto rand
if %z1%==0 , if %z5%==x , if %z9%==0 goto rand
if %z3%==0 , if %z5%==0 , if %z7%==x goto rand
if %z3%==x , if %z5%==0 , if %z7%==0 goto rand
if %z3%==0 , if %z5%==x , if %z7%==0 goto rand
if %z3%==0 , if %z5%==0 , if %z7%==x , if %z6%==x goto rand
:rand
set/a b=%random%/1000
echo %b%
if %b%==1 goto x1
if %b%==2 goto x2
if %b%==3 goto x3
if %b%==4 goto x4
if %b%==5 goto x5
if %b%==6 goto x6
if %b%==7 goto x7
if %b%==8 goto x8
if %b%==9 goto x9
if not %b%==1 goto rand
if not %b%==2 goto rand
if not %b%==3 goto rand
if not %b%==4 goto rand
if not %b%==5 goto rand
if not %b%==6 goto rand
if not %b%==7 goto rand
if not %b%==8 goto rand
if not %b%==9 goto rand
:x1
if %z1%==0 goto rand
if %z1%==x goto rand
set z1=x
if %z1%==x goto checkp
:x2
if %z2%==0 goto rand
if %z2%==x goto rand
set z2=x
if %z2%==x goto checkp
:x3
if %z3%==0 goto rand
if %z3%==x goto rand
set z3=x
if %z3%==x goto checkp
:x4
if %z4%==0 goto rand
if %z4%==x goto rand
set z4=x
if %z4%==x goto checkp
:x5
if %z5%==0 goto rand
if %z5%==x goto rand
set z5=x
if %z5%==x goto checkp
:x6
if %z6%==0 goto rand
if %z6%==x goto rand
set z6=x
if %z6%==x goto checkp
:x7
if %z7%==0 goto rand
if %z7%==x goto rand
set z7=x
if %z7%==x goto checkp
:x8
if %z8%==0 goto rand
if %z8%==x goto rand
set z8=x
if %z8%==x goto checkp
:x9
if %z9%==0 goto rand
if %z9%==x goto rand
set z9=x
if %z9%==x goto checkp
:checkp
if %z1%==x , if %z2%==x , if %z3%==x goto pl2
if %z4%==x , if %z5%==x , if %z6%==x goto pl2
if %z7%==x , if %z8%==x , if %z9%==x goto pl2
if %z1%==x , if %z5%==x , if %z9%==x goto pl2
if %z3%==x , if %z5%==x , if %z7%==x goto pl2
if %z1%==x , if %z4%==x , if %z7%==x goto pl2
if %z2%==x , if %z5%==x , if %z8%==x goto pl2
if %z3%==x , if %z6%==x , if %z9%==x goto pl2
if %z1%==0 , if %z2%==x , if %z3%==0 , if %z4%==x , if %z5%==0 , if %z6%==0 , if %z7%==x , if %z8%==0 , if %z9%==x goto tie
if %z1%==x , if %z2%==x , if %z3%==0 , if %z4%==0 , if %z5%==0 , if %z6%==x , if %z7%==x , if %z8%==0 , if %z9%==0 goto tie
if %z1%==0 , if %z2%==x , if %z3%==x , if %z4%==x , if %z5%==0 , if %z6%==0 , if %z7%==0 , if %z8%==0 , if %z9%==x goto tie
if %z1%==0 , if %z2%==x , if %z3%==0 , if %z4%==0 , if %z5%==0 , if %z6%==x , if %z7%==x , if %z8%==0 , if %z9%==x goto tie
if %z1%==0 , if %z2%==x , if %z3%==0 , if %z4%==0 , if %z5%==x , if %z6%==x , if %z7%==x , if %z8%==0 , if %z9%==0 goto tie
if %z1%==x , if %z2%==0 , if %z3%==0 , if %z4%==0 , if %z5%==x , if %z6%==x , if %z7%==0 , if %z8%==x , if %z9%==0 goto tie
if %z1%==x , if %z2%==0 , if %z3%==x , if %z4%==0 , if %z5%==0 , if %z6%==x , if %z7%==0 , if %z8%==x , if %z9%==0 goto tie
if %z1%==x , if %z2%==0 , if %z3%==x , if %z4%==x , if %z5%==0 , if %z6%==0 , if %z7%==0 , if %z8%==x , if %z9%==0 goto tie
if %z1%==0 , if %z2%==0 , if %z3%==x , if %z4%==x , if %z5%==0 , if %z6%==0 , if %z7%==0 , if %z8%==x , if %z9%==x goto tie
if %z1%==0 , if %z2%==0 , if %z3%==x , if %z4%==x , if %z5%==x , if %z6%==0 , if %z7%==0 , if %z8%==x , if %z9%==0 goto tie
if %z1%==x , if %z2%==0 , if %z3%==x , if %z4%==0 , if %z5%==x , if %z6%==x , if %z7%==0 , if %z8%==x , if %z9%==0 goto tie
if %z1%==x , if %z2%==0 , if %z3%==0 , if %z4%==0 , if %z5%==0 , if %z6%==x , if %z7%==x , if %z8%==x , if %z9%==0 goto tie
if %z1%==x , if %z2%==0 , if %z3%==0 , if %z4%==0 , if %z5%==x , if %z6%==x , if %z7%==x , if %z8%==0 , if %z9%==0 goto tie
if %z1%==0 , if %z2%==x , if %z3%==x , if %z4%==x , if %z5%==0 , if %z6%==0 , if %z7%==x , if %z8%==0 , if %z9%==x goto tie
if %z1%==x , if %z2%==0 , if %z3%==0 , if %z4%==0 , if %z5%==x , if %z6%==x , if %z7%==x , if %z8%==x , if %z9%==0 goto tie
if %z1%==0 , if %z2%==x , if %z3%==0 , if %z4%==x , if %z5%==0 , if %z6%==x , if %z7%==x , if %z8%==0 , if %z9%==x goto tie
if %z1%==x , if %z2%==x , if %z3%==0 , if %z4%==0 , if %z5%==0 , if %z6%==x , if %z7%==x , if %z8%==0 , if %z9%==x goto tie
if %z1%==x , if %z2%==0 , if %z3%==x , if %z4%==0 , if %z5%==0 , if %z6%==x , if %z7%==x , if %z8%==x , if %z9%==0 goto tie
if %z1%==x , if %z2%==0 , if %z3%==x , if %z4%==x , if %z5%==x , if %z6%==0 , if %z7%==0 , if %z8%==x , if %z9%==0 goto tie
if %z1%==x , if %z2%==x , if %z3%==0 , if %z4%==0 , if %z5%==0 , if %z6%==x , if %z7%==x , if %z8%==x , if %z9%==0 goto tie
if %z1%==x , if %z2%==0 , if %z3%==x , if %z4%==x , if %z5%==0 , if %z6%==0 , if %z7%==0 , if %z8%==x , if %z9%==x goto tie
if %z1%==0 , if %z2%==0 , if %z3%==x , if %z4%==x , if %z5%==x , if %z6%==0 , if %z7%==0 , if %z8%==x , if %z9%==x goto tie
if %z1%==0 , if %z2%==x , if %z3%==0 , if %z4%==0 , if %z5%==x , if %z6%==x , if %z7%==x , if %z8%==0 , if %z9%==x goto tie
if %z1%==x , if %z2%==x , if %z3%==0 , if %z4%==0 , if %z5%==x , if %z6%==x , if %z7%==x , if %z8%==0 , if %z9%==0 goto tie
if %z1%==0 , if %z2%==x , if %z3%==0 , if %z4%==x , if %z5%==x , if %z6%==0 , if %z7%==x , if %z8%==0 , if %z9%==x goto tie
if %z1%==0 , if %z2%==x , if %z3%==x , if %z4%==x , if %z5%==x , if %z6%==0 , if %z7%==0 , if %z8%==0 , if %z9%==x goto tie
if %z1%==0 , if %z2%==x , if %z3%==x , if %z4%==x , if %z5%==0 , if %z6%==0 , if %z7%==0 , if %z8%==x , if %z9%==x goto tie
goto player1
:pl2
cls
echo.
echo.
echo.
echo %z7% : %z8% : %z9%
echo .................
echo %z4% : %z5% : %z6%
echo .................
echo %z1% : %z2% : %z3%
echo.
:p2
set /a played=%played% +1
set /a p2=%p2% +1
echo GAME OVER
goto game over
:game over
cls
echo.
echo.
echo.
echo %z7% : %z8% : %z9%
echo .................
echo %z4% : %z5% : %z6%
echo .................
echo %z1% : %z2% : %z3%
echo.
echo %gamer2% Win
:tiee
echo %gamer1% = %p1% : %gamer2% = %p2%
:aaa
pause
goto start
:go1
cls
echo.
echo.
echo.
echo %z7% : %z8% : %z9%
echo .................
echo %z4% : %z5% : %z6%
echo .................
echo %z1% : %z2% : %z3%
echo.
echo %gamer1% Win
echo %gamer1% = %p1% : %gamer2% = %p2%
pause
goto start1
:tie
cls
echo.
echo.
echo.
echo %z7% : %z8% : %z9%
echo .................
echo %z4% : %z5% : %z6%
echo .................
echo %z1% : %z2% : %z3%
echo.
echo.
set /a played=%played% +1
echo TIE
echo %gamer1% = %p1% : %gamer2% = %p2%
pause
goto start
:resultat
echo [ played = %played%]
echo.
echo [ %gamer1% = %p1% ] [ %gamer2% = %p2% ]
goto aaa
:exit
cls
:h
echo [ played = %played%]
echo.
echo [ %gamer1% = %p1% ] [ %gamer2% = %p2% ]
timeout/t 3