Published by
Aug 6, 2013 (last update: Aug 11, 2013)

TIC-TAC-TOE C++

Score: 3.7/5 (206 votes)
*****
Hello!
I would like to share my first game in C++ with you guys!
Although i have said in C++, the game does not include advanced concepts of language, such as object-oriented programming.
It is a game for those just starting out in C++ and is studying the basics like me!
As if-else, loops, arrays, multidimensional arrays and functions!

One of the best ways to learn is to put into practice what you have learned, make a simple game!

Feel free to modify the game, or try to do yourself, is the way to learn!

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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
# include <iostream>
# include <cstdio>
# include <cstdlib>
# include <string>
# include <time.h>
# include <windows.h>


# define l 3
# define c 3
using namespace std;

bool validatePosition (char pos, char mt[l][c], bool player1);
bool gameOver (char mt[l][c],short op,short &cont_p1,short &cont_p2,short &cont_cpu);
void showGame  (char mt[l][c],short op);
void cpu(char mt[l][c]);
void cpu_hard(char mt[l][c]);
string changeName1();
string changeName2();

int main()
{
    short i,j,op,cont_p1 = 0 ,cont_p2 = 0,cont_cpu = 0;
    char op2;
    char mt[l][c],pos;
    bool player1 = false,mult = false,is_cpu = false;
    string p1,p2;

    cout << "General Public License v3 \n";
    cout << "Programmer: Romulo Sorato" << endl;
    cout << "Legend: \nPlayer 1: X \nPlayer 2 and CPU: O\n\n";

    do
    {
        do
        {
            cout <<"Choose your option:\n1-Multiplayer 2-CPU\n";
            cin>>op;
            if(op == 1)
                mult = true;
            else if (op == 2)
                is_cpu = true;
            if(op!=1 && op!=2)
                cout<<"Choose your option, type only 1 or 2\n";
        }
        while(op != 1 && op != 2);

        if(is_cpu && mult)
        {
            cont_p1 = 0;
            cont_p2 = 0;
            cont_cpu = 0;
        }
        if(op == 2)
        {
            mult = false;
            cout<<"Choose level:2-Easy 3-Hard\n"<<endl;
            cin>>op;
        }
        fflush(stdin);

        if(op == 1)
        {
            is_cpu = false;
            p1 = changeName1();
            p2 = changeName2();
        }
        else
            p1 = changeName1();

        cout << "Enter the number corresponding to the desired location: \n" << endl << endl;

        //Starting matrix
        for (i = 0; i < l; i++)
        {
            for (j = 0; j < c; j ++)
            {
                mt[i][j] = '?';
            }
        }
        // -----------
        int count = 1;
        // Showing the positions
        for (i = 0; i < l*2; i++)
        {
            cout << "                    ";
            for (j = 0; j < c*2; j++)
            {
                if(i % 2 == 0)
                {
                    if(j%2 == 0)
                    {
                        cout << "["<<count<<"]" <<" ";
                        count ++;
                    }
                    else
                    {
                        if(j != c*2-1)
                            cout <<"| ";
                    }
                }
                else
                {
                    if(j%2 != 0)
                        cout <<"-----";
                }
            }
            cout << endl;
        }
        //---------
        cout  << endl;
        do
        {
            do
            {
                // Getting position player 1
                do
                {
                    cout << "Player 1:" << p1 <<"\n";
                    cin >> pos;
                }
                while (isdigit (pos) == 0);
                player1 = true;
            }
            while (!validatePosition (pos, mt, player1));
            system ("CLS");
            showGame(mt,op);

            if (gameOver(mt,op,cont_p1,cont_p2,cont_cpu))
                break;

            if(op == 2)
            {
                Sleep(1000);
                cpu(mt);
                system ("CLS");
                showGame(mt,op);
            }
            if(op == 3)
            {
                Sleep(1000);
                cpu_hard(mt);
                system ("CLS");
                showGame(mt,op);
            }
            else if(op == 1)
            {
                do
                {
                    cout << "Player 2:" << p2 <<"\n";
                    cin >> pos;
                    player1 = false;
                }
                while (!validatePosition (pos, mt, player1));
                system ("CLS");
                showGame(mt,op);
            }

            if (gameOver(mt,op,cont_p1,cont_p2,cont_cpu))
                break;
        }
        while (true);
        cout << "Do you want to continue? (y to continue or any other to quit)\nOr press c to change names" << endl;
        cin >> op2;
        tolower (op2);
        system ("CLS");
        if(op2 == 'c')
        {
            fflush(stdin);
            p1 = changeName1();
            p2 = changeName2();
        }
    }
    while (op2 == 'y' || op2 == 'c');
    return 0;
}
bool validatePosition (char pos, char mt [l][c], bool player1)
{
    if (pos == '1')
    {
        if (mt [0][0] != '?')
        {
            cout << "Position already used,type another position." << endl;
        }
        else
        {
            if (player1 == true)
                mt [0][0] = 'X';
            else
                mt [0][0] = 'O';
            return true;
        }
    }
    else if (pos == '2')
    {
        if (mt [0][1] != '?')
        {
            cout << "Position already used, type another position." << endl;
        }
        else
        {
            if (player1 == true)
                mt [0][1] = 'X';
            else
                mt [0][1] = 'O';
            return true;
        }
    }
    else if (pos == '3')
    {
        if (mt[0][2] != '?')
        {
            cout << "Position already used, type another position." << endl;
        }
        else
        {
            if (player1 == true)
                mt [0][2] = 'X';
            else
                mt [0][2] = 'O';
            return true;
        }
    }
    else if (pos == '4')
    {
        if (mt [1][0] != '?')
        {
            cout << "Position already used, type another position." << endl;
        }
        else
        {
            if (player1 == true)
                mt [1][0] = 'X';
            else
                mt [1][0] = 'O';
            return true;
        }
    }
    else if (pos == '5')
    {
        if (mt [1][1] != '?')
        {
            cout << "Position already used, type another position." << endl;
        }
        else
        {
            if (player1 == true)
                mt [1][1] = 'X';
            else
                mt [1][1] = 'O';
            return true;
        }
    }
    else if (pos == '6')
    {
        if (mt [1][2] != '?')
        {
            cout << "Position already used, type another position." << endl;
        }
        else
        {
            if (player1 == true)
                mt [1][2] = 'X';
            else
                mt [1][2] = 'O';
            return true;
        }
    }
    else if (pos == '7')
    {
        if (mt [2][0] != '?')
        {
            cout  << "Position already used, type another position." << endl;
        }
        else
        {
            if (player1 == true)
                mt [2] [0] = 'X';
            else
                mt [2] [0] = 'O';
            return true;
        }
    }
    else if (pos == '8')
    {
        if (mt [2][1] != '?')
        {
            cout << "Position already used, type another position." << endl;
        }
        else
        {
            if (player1 == true)
                mt [2][1] = 'X';
            else
                mt [2][1] = 'O';
            return true;
        }
    }
    else if (pos == '9')
    {
        if (mt [2][2] != '?')
        {
            cout << "Position already used, type another position." << endl;
        }
        else
        {
            if (player1 == true)
                mt [2] [2] = 'X';
            else
                mt [2][2] = 'O';
            return true;
        }
    }
    else
        cout << "Invalid number, type number 1-9.";
    return false;
}
void showGame(char mt[l][c],short op)
{

    cout << "General Public License v3 \n";
    cout << "Programmer: Romulo Sorato\n" << endl;
    if(op == 1)
    {
        cout << "Legend: \nPlayer 1: X \nPlayer 2: O\n" << endl << endl;
    }
    else
        cout << "Legend: \nPlayer 1: X \nCPU: O\n" << endl << endl;

    int count = 1;
    for (int i = 0; i < l; i++)
    {
        cout << "                    ";
        for  (int j = 0; j < c; j ++)
        {
            if (mt [i][j] == '?')
            {
                cout << "["<<count<<"]| ";
            }
            else if (mt [i][j] == 'X')
            {
                cout << "[X]| ";
            }
            else
                cout << "[O]| ";
            count ++;
        }
        cout <<"\n\t            --------------\n";
    }
    cout << endl;
}
bool gameOver (char mt[l][c],short op,short &cont_p1,short &cont_p2,short &cont_cpu)
{
    // Check if there was a winner or a tie
    int  ct = 0 ;// total counter
    int d = c-1 ;// auxiliary variable for secondary diagonal
    int contd = 0 ;// counter diagonal
    int contd2 = 0 ;// counter for diagonal secondary
    int contc ;// counter for column
    int contl ;// counter for line player 1
    int contdj2 = 0 ;// counter diagonal for player 2
    int contd2j2 = 0 ;// counter for diagonal secondary player 2  
    int contcj2;// counter for the column player 2
    int contlj2;// counter for line player 2

    for (int i = 0; i < l; i ++)
    {
        contc = 0;
        contcj2 = 0;
        contl = 0;
        contlj2 = 0;
        if (mt [i][i] == 'O')
            contdj2 ++;
        if (mt [i][d] == 'O')
            contd2j2 ++;
        if (mt [i][i] == 'X')
            contd ++;
        if (mt [i][d] == 'X')
            contd2 ++;
        d--;
        for (int j = 0; j < c; j ++)
        {
            if (mt[i][j] != '?')
                ct ++;
            if (mt [i][j] == 'O')
                contlj2 ++;
            if (mt [j][i] == 'O')
                contcj2 ++;
            if (mt [i][j] == 'X')
                contl ++;
            if (mt [j][i] == 'X')
                contc ++;
        }
        if (contl == 3 || contd == 3 || contc == 3 || contd2 == 3)
        {
            cont_p1++;
            cout << "Player 1 wins!" << endl;
            if(op == 1)
            {
                cout <<" Ranking:\nPlayer 1:"<< cont_p1 <<"\nPlayer 2:"<< cont_p2 <<"\n";
            }
            else
            {
                cout <<" Ranking:\nPlayer 1:"<< cont_p1 <<"\nCPU:"<< cont_cpu <<"\n";
            }

            return true;
        }
        if (contlj2 == 3 || contdj2 == 3 || contcj2 == 3 || contd2j2 == 3)
        {
            if(op == 1)
            {
                cout << "Player 2 wins!" << endl;
                cont_p2++;
                cout <<" Ranking:\nPlayer 1:"<< cont_p1 <<"\nPlayer 2:"<< cont_p2 <<"\n";
            }
            else
            {
                cout << "CPU wins!" << endl;
                cont_cpu++;
                cout <<" Ranking:\nPlayer 1:"<< cont_p1 <<"\nCPU:"<< cont_cpu <<"\n";
            }
            return true;
        }
    }
    if (ct==l*c)
    {
        cout << "We tied!\n" << endl;
        if(op == 1)
        {
            cout <<" Ranking:\nPlayer 1:"<< cont_p1 <<"\nPlayer 2:"<< cont_p2 <<"\n";
        }
        else
            cout <<" Ranking:\nPlayer 1:"<< cont_p1 <<"\nCPU:"<< cont_cpu <<"\n";
        return true;
    }
    return false;
}
void cpu(char mt[l][c])
{
    /* initialize random seed: */
    srand (time(NULL));

    int x,cont;
    bool found = false;
    while(found == false)
    {
        x = rand()%9+1;
        cont = 1;
        for(int i = 0; i < l; i++ )
        {
            for(int j = 0; j < c; j++ )
            {
                if(cont == x)
                {
                    if(mt[i][j] != 'X' && mt[i][j] != 'O')
                    {
                        mt[i][j] = 'O';
                        found = true;
                    }
                }
                cont++;
            }
        }
    }
}
void cpu_hard(char mt[l][c])
{

    int d = c-1 ;// auxiliary variable for secondary diagonal
    int contd = 0 ;// counter diagonal
    int contd2 = 0 ;// counter for secondary diagonal
    int contc ;// counter for column
    int contl ;// counter for line player 1

    int contd_Cpu = 0 ;// counter diagonal for cpu
    int contd2_Cpu = 0 ;// counter for secondary diagonal of cpu  
    int contc2;// counter for the column cpu
    int contl2;// counter for line cpu
    bool found = false;

    for (int i = 0; i < l; i ++)
    {
        contc = 0;
        contl = 0;
        contc2 = 0;
        contl2 = 0;

        if (mt [i][i] == 'X')
            contd ++;
        if (mt [i][d] == 'X')
            contd2 ++;
        if (mt [i][i] == 'O')
            contd_Cpu ++;
        if (mt [i][d] == 'O')
            contd2_Cpu ++;
        d--;
        for (int j = 0; j < c; j ++)
        {
            if (mt [i][j] == 'X')
                contl ++;
            if (mt [j][i] == 'X')
                contc ++;
            if (mt [i][j] == 'O')
                contl2 ++;
            if (mt [j][i] == 'O')
                contc2 ++;
        }
        if(contd2_Cpu == 2 || contc2 == 2 || contd_Cpu == 2 || contl2 == 2)
        {
            if (contl2 == 2)
            {
                for (int z = 0; z < c; z ++)
                {
                    if (mt [i][z] == '?')
                    {
                        mt[i][z] = 'O';
                        found = true;
                    }
                }
            }
            else if(contd_Cpu == 2)
            {
                for (int z = 0; z < c; z ++)
                {
                    if (mt [z][z] == '?')
                    {
                        mt[z][z] = 'O';
                        found = true;
                    }
                }
            }
            else if(contc2 == 2)
            {
                for (int z = 0; z < c; z ++)
                {
                    if (mt [z][i] == '?')
                    {
                        mt[z][i] = 'O';
                        found = true;
                    }
                }
            }
            else if(contd2_Cpu == 2)
            {
                int x = 0;
                for (int z = c-1; z >= 0; z --)
                {
                    if (mt [x][z] == '?')
                    {
                        mt[x][z] = 'O';
                        found = true;
                    }
                    x++;
                }
            }
        }
        else
        {
            if (contl == 2)
            {
                for (int z = 0; z < c; z ++)
                {
                    if (mt [i][z] == '?')
                    {
                        mt[i][z] = 'O';
                        found = true;
                    }
                }
            }
            else if(contd == 2)
            {
                for (int z = 0; z < c; z ++)
                {
                    if (mt [z][z] == '?')
                    {
                        mt[z][z] = 'O';
                        found = true;
                    }
                }
            }
            else if(contc == 2)
            {
                for (int z = 0; z < c; z ++)
                {
                    if (mt [z][i] == '?')
                    {
                        mt[z][i] = 'O';
                        found = true;
                    }
                }
            }
            else if(contd2 == 2)
            {
                int x = 0;
                for (int z = c-1; z >= 0; z --)
                {
                    if (mt [x][z] == '?')
                    {
                        mt[x][z] = 'O';
                        found = true;
                    }
                    x++;
                }
            }
        }
        if(found)
            break;
    }
    if(!found)
        cpu(mt);
}
string changeName1()
{
    string name1;
    cout << "Enter name of player 1" << endl;
    getline(cin, name1);
    return name1;

}
string changeName2()
{
    string name2;
    cout << "Enter name of player 2" << endl;
    getline(cin, name2);
    return name2;
}