-
Notifications
You must be signed in to change notification settings - Fork 0
/
canvas.js
367 lines (354 loc) · 18.1 KB
/
canvas.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
357
358
359
360
361
362
363
364
365
366
367
$(document).ready(function () {
const canvas = document.getElementById("tictactoe");
const ctx = canvas.getContext('2d');
const width = canvas.getAttribute("width");
const height = canvas.getAttribute("height");
var sayfa = 1;
var oyunSirasi = 1;
var oyunBitti=false;
var kazanan="";
var tiles = [[0,0,0],[0,0,0],[0,0,0]];
const mouse = {x:0,y:0};
function mouseEvents(e){
const bounds = canvas.getBoundingClientRect();
mouse.x = e.pageX - bounds.left - scrollX;
mouse.y = e.pageY - bounds.top - scrollY;
}
document.addEventListener("mousemove", mouseEvents);
function ButonOlustur(buton){
ctx.drawImage(buton.src,buton.x,buton.y,buton.w,buton.h);
}
const oyna_butonu_Image = new Image();
oyna_butonu_Image.src = "img/oyna_butonu_deactive.png";
const hakkimda_butonu_Image = new Image();
hakkimda_butonu_Image.src = "img/hakkimda_butonu_deactive.png";
const geridon_butonu_Image = new Image();
geridon_butonu_Image.src = "img/geridon_butonu_deactive.png";
const oyna_butonu = {x:336,y:250,w:128,h:32,src:oyna_butonu_Image};
const hakkimda_butonu = {x:336,y:300,w:128,h:32,src:hakkimda_butonu_Image};
const geridon_butonu = {x:336,y:175,w:128,h:32,src:geridon_butonu_Image};
function temizle() {
ctx.clearRect(0,0,width,height);
}
function hoverButton(sayfa){
if(sayfa == 1){ // Ana Menü
if(mouse.x>oyna_butonu.x&&mouse.x<oyna_butonu.x+oyna_butonu.w&&mouse.y>oyna_butonu.y&&mouse.y<oyna_butonu.y+oyna_butonu.h){
oyna_butonu.src.src = "img/oyna_butonu_active.png";
ButonOlustur(oyna_butonu);
}else{
oyna_butonu.src.src = "img/oyna_butonu_deactive.png";
ButonOlustur(oyna_butonu);
}
if(mouse.x>hakkimda_butonu.x&&mouse.x<hakkimda_butonu.x+hakkimda_butonu.w&&mouse.y>hakkimda_butonu.y&&mouse.y<hakkimda_butonu.y+hakkimda_butonu.h){
hakkimda_butonu.src.src = "img/hakkimda_butonu_active.png";
ButonOlustur(hakkimda_butonu);
}else{
hakkimda_butonu.src.src = "img/hakkimda_butonu_deactive.png";
ButonOlustur(hakkimda_butonu);
}
}else if(sayfa == 2){ // Hakkımda
ctx.font = 'bold 25px calibri';
ctx.fillStyle = 'red';
ctx.fillText(`Tic-Tac-Toe Nedir?`,300,50);
ctx.font = '15px calibri';
ctx.fillStyle = 'black';
ctx.fillText(`Oyun X/O'larını çapraz,dikey ya da yatay olarak üçlemeye çalışmaktır.`,50,75,750);
ctx.fillText(`Üçlerseniz oyunu kazanmış oluruz. 9 tane kareye ayrılır.`,50,100,750)
ctx.font = 'bold 25px calibri';
ctx.fillStyle = 'red';
ctx.fillText(`Oyun Nasıl Oynanır?`,290,125);
ctx.font = '15px calibri';
ctx.fillStyle = 'black';
ctx.fillText(`Oyunda belirtilen karelere basarak çapraz/dikey/yatay olarak üçlemeye çalışın.`,50,150,750);
if(mouse.x>geridon_butonu.x&&mouse.x<geridon_butonu.x+geridon_butonu.w&&mouse.y>geridon_butonu.y&&mouse.y<geridon_butonu.y+geridon_butonu.h){
geridon_butonu.src.src = "img/geridon_butonu_active.png";
ButonOlustur(geridon_butonu);
}else{
geridon_butonu.src.src = "img/geridon_butonu_deactive.png";
ButonOlustur(geridon_butonu);
}
}else if(sayfa == 3){ // Oyun
ctx.beginPath(); // Çizgileri Koy
ctx.strokeStyle = "black";
ctx.moveTo(265,0);
ctx.lineTo(265,600);
ctx.stroke();
ctx.closePath();
ctx.beginPath();
ctx.moveTo(530,0);
ctx.lineTo(530,600);
ctx.stroke();
ctx.closePath();
ctx.beginPath();
ctx.moveTo(0,200);
ctx.lineTo(800,200);
ctx.stroke();
ctx.closePath();
ctx.beginPath();
ctx.moveTo(0,400);
ctx.lineTo(800,400);
ctx.stroke();
ctx.closePath();
}else if(sayfa == 4){
ctx.font = 'bold 25px calibri';
ctx.fillStyle = 'red';
ctx.fillText(`Oyun Bitmiştir!`,300,50);
ctx.font = 'bold 15px calibri';
ctx.fillStyle = 'black';
ctx.fillText(`Kazanan! => `+kazanan,300,75);
ctx.fillText(`Dipnot : Oyuna yeniden başlamak için R tuşuna basın.`,50,100)
}
}
function sayfa_no(sayfa){
if(sayfa == 1){
hoverButton(1);
}else if(sayfa == 2){
hoverButton(2);
}else if(sayfa == 3){
hoverButton(3);
}else if(sayfa == 4){
hoverButton(4);
}
}
function guncelle(){
temizle();
sayfa_no(sayfa);
if(sayfa == 3){
tictactoe_guncelle();
IsWin();
if(oyunSirasi == 2){
bot();
}
}
requestAnimationFrame(guncelle);
}
guncelle();
function IsWin(){ // X'in kazaabilme koordinatları
if(JSON.stringify(tiles[0]) == "[1,1,1]" || JSON.stringify(tiles[1]) == "[1,1,1]" || JSON.stringify(tiles[2]) == "[1,1,1]" ||
(tiles[0][0] == 1 && JSON.stringify(tiles[1][0]) == 1 && JSON.stringify(tiles[2][0]) == 1) ||
(tiles[0][1] == 1 && JSON.stringify(tiles[1][1]) == 1 && JSON.stringify(tiles[2][1]) == 1) ||
(tiles[0][2] == 1 && JSON.stringify(tiles[1][2]) == 1 && JSON.stringify(tiles[2][2]) == 1) ||
(tiles[0][0] == 1 && JSON.stringify(tiles[1][1]) == 1 && JSON.stringify(tiles[2][2]) == 1) ||
(tiles[0][2] == 1 && JSON.stringify(tiles[1][1]) == 1 && JSON.stringify(tiles[2][0]) == 1)
){
oyunBitti = true;
kazanan = "X";
if(oyunBitti == true){
sayfa = 4;
}
}else if(JSON.stringify(tiles[0]) == "[2,2,2]" || JSON.stringify(tiles[1]) == "[2,2,2]" || JSON.stringify(tiles[2]) == "[2,2,2]" ||
(tiles[0][0] == 2 && JSON.stringify(tiles[1][0]) == 2 && JSON.stringify(tiles[2][0]) == 2) ||
(tiles[0][1] == 2 && JSON.stringify(tiles[1][1]) == 2 && JSON.stringify(tiles[2][1]) == 2) ||
(tiles[0][2] == 2 && JSON.stringify(tiles[1][2]) == 2 && JSON.stringify(tiles[2][2]) == 2) ||
(tiles[0][0] == 2 && JSON.stringify(tiles[1][1]) == 2 && JSON.stringify(tiles[2][2]) == 2) ||
(tiles[0][2] == 2 && JSON.stringify(tiles[1][1]) == 2 && JSON.stringify(tiles[2][0]) == 2)){
oyunBitti = true;
kazanan = "O";
if(oyunBitti == true){
sayfa = 4;
}
}
}
function tictactoe_guncelle(){
if(sayfa == 3 && oyunBitti == false){
if(tiles[0][0] == 1){ // tiles_1
ctx.beginPath();ctx.moveTo(15,15);ctx.lineTo(250,185);ctx.strokeStyle = "red";ctx.stroke();ctx.closePath();
ctx.beginPath();ctx.moveTo(250,15);ctx.lineTo(15,185);ctx.strokeStyle = "red";ctx.stroke();ctx.closePath();
}else if(tiles[0][0] == 2){
ctx.beginPath();ctx.arc(135,100,90,0*Math.PI,2*Math.PI);ctx.strokeStyle = "blue";ctx.stroke();ctx.closePath();
}
if(tiles[0][1] == 1){ // tiles_2
ctx.beginPath();ctx.moveTo(280,15);ctx.lineTo(515,185);ctx.strokeStyle = "red";ctx.stroke();ctx.closePath();
ctx.beginPath();ctx.moveTo(515,15);ctx.lineTo(280,185);ctx.strokeStyle = "red";ctx.stroke();ctx.closePath();
}else if(tiles[0][1] == 2){
ctx.beginPath();ctx.arc(400,100,90,0*Math.PI,2*Math.PI);ctx.strokeStyle = "blue";ctx.stroke();ctx.closePath();
}
if(tiles[0][2] == 1){ // tiles_3
ctx.beginPath();ctx.moveTo(545,15);ctx.lineTo(780,185);ctx.strokeStyle = "red";ctx.stroke();ctx.closePath();
ctx.beginPath();ctx.moveTo(780,15);ctx.lineTo(545,185);ctx.strokeStyle = "red";ctx.stroke();ctx.closePath();
}else if(tiles[0][2] == 2){
ctx.beginPath();ctx.arc(665,100,90,0*Math.PI,2*Math.PI);ctx.strokeStyle = "blue";ctx.stroke();ctx.closePath();
}
if(tiles[1][0] == 1){ // tiles_4
ctx.beginPath();ctx.moveTo(15,215);ctx.lineTo(250,385);ctx.strokeStyle = "red";ctx.stroke();ctx.closePath();
ctx.beginPath();ctx.moveTo(250,215);ctx.lineTo(15,385);ctx.strokeStyle = "red";ctx.stroke();ctx.closePath();
}else if(tiles[1][0] == 2){
ctx.beginPath();ctx.arc(135,300,90,0*Math.PI,2*Math.PI);ctx.strokeStyle = "blue";ctx.stroke();ctx.closePath();
}
if(tiles[1][1] == 1){ // tiles_5
ctx.beginPath();ctx.moveTo(280,215);ctx.lineTo(515,385);ctx.strokeStyle = "red";ctx.stroke();ctx.closePath();
ctx.beginPath();ctx.moveTo(515,215);ctx.lineTo(280,385);ctx.strokeStyle = "red";ctx.stroke();ctx.closePath();
}else if(tiles[1][1] == 2){
ctx.beginPath();ctx.arc(400,300,90,0*Math.PI,2*Math.PI);ctx.strokeStyle = "blue";ctx.stroke();ctx.closePath();
}
if(tiles[1][2] == 1){ // tiles_6
ctx.beginPath();ctx.moveTo(545,215);ctx.lineTo(780,385);ctx.strokeStyle = "red";ctx.stroke();ctx.closePath();
ctx.beginPath();ctx.moveTo(780,215);ctx.lineTo(545,385);ctx.strokeStyle = "red";ctx.stroke();ctx.closePath();
}else if(tiles[1][2] == 2){
ctx.beginPath();ctx.arc(665,300,90,0*Math.PI,2*Math.PI);ctx.strokeStyle = "blue";ctx.stroke();ctx.closePath();
}
if(tiles[2][0] == 1){ // tiles_7
ctx.beginPath();ctx.moveTo(15,415);ctx.lineTo(250,585);ctx.strokeStyle = "red";ctx.stroke();ctx.closePath();
ctx.beginPath();ctx.moveTo(250,415);ctx.lineTo(15,585);ctx.strokeStyle = "red";ctx.stroke();ctx.closePath();
}else if(tiles[2][0] == 2){
ctx.beginPath();ctx.arc(135,500,90,0*Math.PI,2*Math.PI);ctx.strokeStyle = "blue";ctx.stroke();ctx.closePath();
}
if(tiles[2][1] == 1){ // tiles_8
ctx.beginPath();ctx.moveTo(280,415);ctx.lineTo(515,585);ctx.strokeStyle = "red";ctx.stroke();ctx.closePath();
ctx.beginPath();ctx.moveTo(515,415);ctx.lineTo(280,585);ctx.strokeStyle = "red";ctx.stroke();ctx.closePath();
}else if(tiles[2][1] == 2){
ctx.beginPath();ctx.arc(400,500,90,0*Math.PI,2*Math.PI);ctx.strokeStyle = "blue";ctx.stroke();ctx.closePath();
}
if(tiles[2][2] == 1){ // tiles_9
ctx.beginPath();ctx.moveTo(545,415);ctx.lineTo(780,585);ctx.strokeStyle = "red";ctx.stroke();ctx.closePath();
ctx.beginPath();ctx.moveTo(780,415);ctx.lineTo(545,585);ctx.strokeStyle = "red";ctx.stroke();ctx.closePath();
}else if(tiles[2][2] == 2){
ctx.beginPath();ctx.arc(665,500,90,0*Math.PI,2*Math.PI);ctx.strokeStyle = "blue";ctx.stroke();ctx.closePath();
}
}
}
function koy(){
if(oyunSirasi == 2){
if(tiles[0][0] != 0 && tiles[0][1] != 0 && tiles[0][2] != 0 && tiles[1][0] != 0 && tiles[1][1] != 0 && tiles[1][2] != 0 && tiles[2][0] != 0 && tiles[2][1] != 0 && tiles[2][2] != 0){
kazanan = "Berabere";
sayfa = 4;
}else{
var sutun = Math.floor(Math.random()*3);
var satir = Math.floor(Math.random()*3);
for(var i = 0;tiles[satir][sutun] == 1 || tiles[satir][sutun] == 2;i++){
sutun = Math.floor(Math.random()*2);
satir = Math.floor(Math.random()*2);
}
tiles[satir][sutun] = 2;
oyunSirasi = 1;
}
}
}
function bot(){
if(sayfa == 3 && oyunBitti == false){
if(tiles[0][0] == 2 && tiles[0][1] == 2 && tiles[0][2] == 0){tiles[0][2] = 2;oyunSirasi = 1;/* XXO 1.Satır OK!*/}
else if(tiles[0][0] == 2 && tiles[0][2] == 2 && tiles[0][1] == 0){tiles[0][1] = 2;oyunSirasi = 1;/* XOX 1.SatırOK! */}
else if(tiles[0][1] == 2 && tiles[0][2] == 2 && tiles[0][0] == 0){tiles[0][0] = 2;oyunSirasi = 1; /*OXX 1.SatırOK!*/}
else if(tiles[1][0] == 2 && tiles[1][1] == 2 && tiles[1][2] == 0){tiles[1][2] = 2;oyunSirasi = 1;/* XXO 2.SatırOK! */}
else if(tiles[1][0] == 2 && tiles[1][2] == 2 && tiles[1][1] == 0){tiles[1][1] = 2;oyunSirasi = 1; /* XOX 2.SatırOK!*/}
else if(tiles[1][1] == 2 && tiles[1][2] == 2 && tiles[1][0] == 0){tiles[1][0] = 2;oyunSirasi = 1; /*OXX* 2.SatırOK!*/}
else if(tiles[2][0] == 2 && tiles[2][1] == 2 && tiles[2][2] == 0){tiles[2][2] = 2;oyunSirasi = 1;/* XXO 3.SatırOK!*/}
else if(tiles[2][0] == 2 && tiles[2][2] == 2 && tiles[2][1] == 0){tiles[2][1] = 2;oyunSirasi = 1; /* XOX 3.SatırOK!*/}
else if(tiles[2][1] == 2 && tiles[2][2] == 2 && tiles[2][0] == 0){tiles[2][0] = 2;oyunSirasi = 1; /*OXX 3.SatırOK!*/}
else if(tiles[0][0] == 2 && tiles[1][0] == 2 && tiles[2][0] == 0){tiles[2][0] = 2;oyunSirasi = 1;/* X|X|O 1.OK!*/}
else if(tiles[0][0] == 2 && tiles[2][0] == 2 && tiles[1][0] == 0){tiles[1][0] = 2;oyunSirasi = 1; /* X|O|X 1.OK!*/}
else if(tiles[1][0] == 2 && tiles[2][0] == 2 && tiles[0][0] == 0){tiles[0][0] = 2;oyunSirasi = 1; /*O|X|X* 1.OK!*/}
else if(tiles[0][1] == 2 && tiles[1][1] == 2 && tiles[2][1] == 0){tiles[2][1] = 2;oyunSirasi = 1;/* X|X|O 2.OK!*/}
else if(tiles[0][1] == 2 && tiles[2][1] == 2 && tiles[1][1] == 0){tiles[1][1] = 2;oyunSirasi = 1; /* X|O|X 2.OK!*/}
else if(tiles[1][1] == 2 && tiles[2][1] == 2 && tiles[0][1] == 0){tiles[0][1] = 2;oyunSirasi = 1; /*O|X|X 2.OK!*/}
else if(tiles[0][2] == 2 && tiles[1][2] == 2 && tiles[2][2] == 0){tiles[2][2] = 2;oyunSirasi = 1;/* X|X|O 3.OK!*/}
else if(tiles[0][2] == 2 && tiles[2][2] == 2 && tiles[1][2] == 0){tiles[1][2] = 2;oyunSirasi = 1;/* X|O|X 3.OK! */}
else if(tiles[1][2] == 2 && tiles[2][2] == 2 && tiles[0][2] == 0){tiles[0][2] = 2;oyunSirasi = 1;/*O|X|X 3.OK!*/}
else if(tiles[0][0] == 2 && tiles[1][1] == 2 && tiles[2][2] == 0){tiles[2][2] = 2;oyunSirasi = 1; /* X|X|O Çarpraz*/}
else if(tiles[0][0] == 2 && tiles[2][2] == 2 && tiles[1][1] == 0){tiles[1][1] = 2;oyunSirasi = 1;/* X|O|X Çarpraz */}
else if(tiles[1][1] == 2 && tiles[2][2] == 2 && tiles[0][0] == 0){tiles[0][0] = 2;oyunSirasi = 1; /*O|X|X Çarpraz*/}
else if(tiles[0][2] == 2 && tiles[1][1] == 2 && tiles[2][0] == 0){tiles[2][0] = 2;oyunSirasi = 1;/* X|X|O Ters Çarpraz*/}
else if(tiles[0][2] == 2 && tiles[2][0] == 2 && tiles[1][1] == 0){tiles[1][1] = 2;oyunSirasi = 1; /* X|O|X Ters Çarpraz */}
else if(tiles[1][1] == 2 && tiles[2][0] == 2 && tiles[0][2] == 0){tiles[0][2] = 2;oyunSirasi = 1; /*O|X|X Ters Çarpraz*/}
else if(tiles[0][0] == 1 && tiles[0][1] == 1 && tiles[0][2] != 2){tiles[0][2] = 2;oyunSirasi = 1;/* XXO 1.Satır OK!*/}
else if(tiles[0][0] == 1 && tiles[0][2] == 1 && tiles[0][1] != 2){tiles[0][1] = 2;oyunSirasi = 1;/* XOX 1.SatırOK! */}
else if(tiles[0][1] == 1 && tiles[0][2] == 1 && tiles[0][0] != 2){tiles[0][0] = 2;oyunSirasi = 1; /*OXX 1.SatırOK!*/}
else if(tiles[1][0] == 1 && tiles[1][1] == 1 && tiles[1][2] != 2){tiles[1][2] = 2;oyunSirasi = 1;/* XXO 2.SatırOK! */}
else if(tiles[1][0] == 1 && tiles[1][2] == 1 && tiles[1][1] != 2){tiles[1][1] = 2;oyunSirasi = 1; /* XOX 2.SatırOK!*/}
else if(tiles[1][1] == 1 && tiles[1][2] == 1 && tiles[1][0] != 2){tiles[1][0] = 2;oyunSirasi = 1; /*OXX* 2.SatırOK!*/}
else if(tiles[2][0] == 1 && tiles[2][1] == 1 && tiles[2][2] != 2){tiles[2][2] = 2;oyunSirasi = 1;/* XXO 3.SatırOK!*/}
else if(tiles[2][0] == 1 && tiles[2][2] == 1 && tiles[2][1] != 2){tiles[2][1] = 2;oyunSirasi = 1; /* XOX 3.SatırOK!*/}
else if(tiles[2][1] == 1 && tiles[2][2] == 1 && tiles[2][0] != 2){tiles[2][0] = 2;oyunSirasi = 1; /*OXX 3.SatırOK!*/}
else if(tiles[0][0] == 1 && tiles[1][0] == 1 && tiles[2][0] != 2){tiles[2][0] = 2;oyunSirasi = 1;/* X|X|O 1.OK!*/}
else if(tiles[0][0] == 1 && tiles[2][0] == 1 && tiles[1][0] != 2){tiles[1][0] = 2;oyunSirasi = 1; /* X|O|X 1.OK!*/}
else if(tiles[1][0] == 1 && tiles[2][0] == 1 && tiles[0][0] != 2){tiles[0][0] = 2;oyunSirasi = 1; /*O|X|X* 1.OK!*/}
else if(tiles[0][1] == 1 && tiles[1][1] == 1 && tiles[2][1] != 2){tiles[2][1] = 2;oyunSirasi = 1;/* X|X|O 2.OK!*/}
else if(tiles[0][1] == 1 && tiles[2][1] == 1 && tiles[1][1] != 2){tiles[1][1] = 2;oyunSirasi = 1; /* X|O|X 2.OK!*/}
else if(tiles[1][1] == 1 && tiles[2][1] == 1 && tiles[0][1] != 2){tiles[0][1] = 2;oyunSirasi = 1; /*O|X|X 2.OK!*/}
else if(tiles[0][2] == 1 && tiles[1][2] == 1 && tiles[2][2] != 2){tiles[2][2] = 2;oyunSirasi = 1;/* X|X|O 3.OK!*/}
else if(tiles[0][2] == 1 && tiles[2][2] == 1 && tiles[1][2] != 2){tiles[1][2] = 2;oyunSirasi = 1;/* X|O|X 3.OK! */}
else if(tiles[1][2] == 1 && tiles[2][2] == 1 && tiles[0][2] != 2){tiles[0][2] = 2;oyunSirasi = 1;/*O|X|X 3.OK!*/}
else if(tiles[0][0] == 1 && tiles[1][1] == 1 && tiles[2][2] != 2){tiles[2][2] = 2;oyunSirasi = 1; /* X|X|O Çarpraz*/}
else if(tiles[0][0] == 1 && tiles[2][2] == 1 && tiles[1][1] != 2){tiles[1][1] = 2;oyunSirasi = 1;/* X|O|X Çarpraz */}
else if(tiles[1][1] == 1 && tiles[2][2] == 1 && tiles[0][0] != 2){tiles[0][0] = 2;oyunSirasi = 1; /*O|X|X Çarpraz*/}
else if(tiles[0][2] == 1 && tiles[1][1] == 1 && tiles[2][0] != 2){tiles[2][0] = 2;oyunSirasi = 1;/* X|X|O Ters Çarpraz*/}
else if(tiles[0][2] == 1 && tiles[2][0] == 1 && tiles[1][1] != 2){tiles[1][1] = 2;oyunSirasi = 1; /* X|O|X Ters Çarpraz */}
else if(tiles[1][1] == 1 && tiles[2][0] == 1 && tiles[0][2] != 2){tiles[0][2] = 2;oyunSirasi = 1; /*O|X|X Ters Çarpraz*/}
else{koy();}
}}
function tiklanma(e) {
if(sayfa == 1 && mouse.x>hakkimda_butonu.x&&mouse.x<hakkimda_butonu.x+hakkimda_butonu.w&&mouse.y>hakkimda_butonu.y&&mouse.y<hakkimda_butonu.y+hakkimda_butonu.h){
sayfa = 2;
}else if(sayfa == 2 && mouse.x>geridon_butonu.x&&mouse.x<geridon_butonu.x+geridon_butonu.w&&mouse.y>geridon_butonu.y&&mouse.y<geridon_butonu.y+geridon_butonu.h){
sayfa = 1;
}else if(sayfa == 1 && mouse.x>oyna_butonu.x&&mouse.x<oyna_butonu.x+oyna_butonu.w&&mouse.y>oyna_butonu.y&&mouse.y<oyna_butonu.y+oyna_butonu.h){
sayfa = 3;
}else if(sayfa == 3 && oyunBitti == false){
if(mouse.x>0&&mouse.x<265&&mouse.y>0&&mouse.y<200&&tiles[0][0] == 0){ //tile_1
if(oyunSirasi == 1){ // X'in sırası / Sende
tiles[0][0] = 1;
oyunSirasi = 2;
}
}
if(mouse.x>265&&mouse.x<530&&mouse.y>0&&mouse.y<200&&tiles[0][1] == 0){ //tile_2
if(oyunSirasi == 1){ // X'in sırası / Sende
tiles[0][1] = 1;
oyunSirasi = 2;
}
}
if(mouse.x>530&&mouse.x<795&&mouse.y>0&&mouse.y<200 && tiles[0][2] == 0){ //tile_3
if(oyunSirasi == 1){ // X'in sırası / Sende
tiles[0][2] = 1;
oyunSirasi = 2;
}
}
if(mouse.x>0&&mouse.x<265&&mouse.y>200&&mouse.y<400&&tiles[1][0] == 0){ //tile_4
if(oyunSirasi == 1){ // X'in sırası / Sende
tiles[1][0] = 1;
oyunSirasi = 2;
}
}
if(mouse.x>265&&mouse.x<530&&mouse.y>200&&mouse.y<400&&tiles[1][1] == 0){ //tile_5
if(oyunSirasi == 1){ // X'in sırası / Sende
tiles[1][1] = 1;
oyunSirasi = 2;
}
}
if(mouse.x>530&&mouse.x<795&&mouse.y>200&&mouse.y<400&&tiles[1][2] == 0){ //tile_6
if(oyunSirasi == 1){ // X'in sırası / Sende
tiles[1][2] = 1;
oyunSirasi = 2;
}
}
if(mouse.x>0&&mouse.x<265&&mouse.y>400&&mouse.y<600&&tiles[2][0]==0){ //tile_7
if(oyunSirasi == 1){ // X'in sırası / Sende
tiles[2][0] = 1;
oyunSirasi = 2;
}
}
if(mouse.x>265&&mouse.x<530&&mouse.y>400&&mouse.y<600&&tiles[2][1]==0){ //tile_8
if(oyunSirasi == 1){ // X'in sırası / Sende
tiles[2][1] = 1;
oyunSirasi = 2;
}
}
if(mouse.x>530&&mouse.x<795&&mouse.y>400&&mouse.y<600&&tiles[2][2]==0){ //tile_9
if(oyunSirasi == 1){ // X'in sırası / Sende
tiles[2][2] = 1;
oyunSirasi = 2;
}
}
}
}
function yeniden_baslat(e){
if(e.key == "r"){
tiles = [[0,0,0],[0,0,0],[0,0,0]];
oyunSirasi = 1;
oyunBitti=false;
kazanan="";
sayfa=3;
};
}
document.addEventListener("click", tiklanma)
document.addEventListener("keyup", yeniden_baslat);
})