Tic Tac Toe Implemented in C# with Computer Player






4.22/5 (16 votes)
A simple game in C# that can run on Windows, Linux(mono) and Mac(mono)
Introduction
![]() |
|
The game in Windows (.NET)
|
The Game in Linux (Mono)
|
This is a program for Tic Tac Toe game written in C#. It has a built in Computer Player module and can even be played in two player mode. It can be run anywhere where .NET or mono runtime is installed. The source is compatible with Visual Studio and #Develop.
Background
During my exploration of Java and C#, I found some interesting similarities and differences and ultimately learned that with study of one of them, the other one can also be learned. This program is my attempt to demonstrate the same to beginners in programming.
Using the Code
For ease of learning the program, it is divided into modules which are represented as functions in the program. Simple labels are used for display of the nine blocks involved, and corresponding code to be executed is triggered through click event of them. First, the variables used are explained as below:
pos
: is a two dimensional array to represent the nine blocks as the operations are easy to perform on an array.cnt
: is a counter to track the number of moves played.val
: is a value corresponding to the letter.1
forX
and4
forO
. In array, the values are used instead of letters.let
: is to hold the letter,X
orO
.a
,b
,c
,d
: are the integers to hold the co-ordinates of second last and last move respectively, used by computer player logic.diff
andvs
: are used to identify difficulty level and game mode selected by the user.rnd
&turn
: are used to generate random number and to toggle comp player mode.pl1
&pl2
: are used to hold the names to be displayed in status strip.
The functions with their use are as explained below:
reset()
: This function is used to restart the game from start anytime or after win or draw is declared as well as to initialize certain components.play()
: This function does the work of commencing a move, thus updating the corresponding label and the array position as well as calling other functionsflip()
andcheckwin()
. It uses functionlink()
to evaluate coordinates to corresponding labels.flip()
: It does the job of toggling betweenX
andO
during the moves eventually doing the same for values1
&4
for variableslet
andval
respectively.checkwin()
: This function checks forwin
ordraw
condition after a move is played in the program. It also declares so usingdeclare()
and also manages toggle of opponents as per the rule: The first player continues to play if he wins or game draws, else the 2nd player will play first the next time.compplay()
: This is the computer player module which makes a computer move using the difficulty level selected by the player and calling functionswinorstop()
anddoany()
appropriately.winorstop()
: This function is used to play the winning move if such a situation exists as well as to stop opponents win if a losing situation exists.
The arrangement of labels and array positions are as below:
labe1 | label2 | label3 | 0,0 0,1 0,2 |
label6 | label5 | label4 | 1,0 1,1 1,2 |
label9 | label8 | label7 | 2,0 2,1 2,2 |
The variables as well as the code for different functions is as below:
int[,] pos=new int[3,3];
int cnt,val,a,b,c=1,d=1,diff=1,vs=1;
char let;
String pl1="You",pl2="Computer";
Random rnd=new Random();
bool turn=true;
void reset()
{
for (int i=0;i<3 ;i++ )
{
for (int j=0;j<3 ;j++ ){pos[i,j]=0;} //Fill array with zeros
}
foreach(Control ctrl in this.Controls)
{
if (ctrl is Label)
{
ctrl.ResetText(); //Clear text for
//all labels
}
}
cnt=0;
val=1; // X->1 and O->4
let='X';
label10.Text=pl1+" to Play NOW."; //Setting status label.
}
bool play(int l,int m)
{
if(pos[l,m]==0)// Check to avoid overplays.
{
a=c;b=d;c=l;d=m; //Hold coordinates of 2nd last and last moves.
Label ctrl=link(l,m); //Link the coordinates to the label.
// (used for computer player)
ctrl.Text=let.ToString(); //Reflecting move to screen.
pos[l,m]=val; //Reflecting move in array
flip(); //Toggling between X and O
checkwin(l,m,pos[l,m]); // Check for win or Draw situation.
return true;
}
else
return false; //Useful if move is to be replayed.
}
Label link(int l,int m) //Returning appropriate label for the passed coordinates.
{
if(l==0)
{
if(m==0)
return label1;
if(m==1)
return label2;
if(m==2)
return label3;
}
if(l==1)
{
if(m==0)
return label6;
if(m==1)
return label5;
if(m==2)
return label4;
}
if(l==2)
{
if(m==0)
return label9;
if(m==1)
return label8;
if(m==2)
return label7;
}
return null;
}
void flip() //Logic for toggle
{
if(let=='X')
{
let = 'O';
val=4;
cnt++;
}
else
{
let = 'X';
val=1;
cnt++;
}
}
void checkwin(int l,int m,int n)
{
if(cnt==1)
if(vs==1)
turn=true;
if(cnt>4)
{ // Check for corresponding row first.
if((pos[l,0]+pos[l,1]+pos[l,2]==n*3)||
(pos[0,m]+pos[1,m]+pos[2,m]==n*3))
{
cnt=n;
}
else
{ //Checking for corresponding column.
if((pos[0,0]+pos[1,1]+pos[2,2]==n*3)||
(pos[2,0]+pos[1,1]+pos[0,2]==n*3))
{
cnt=n;
}
else
{
if(cnt==9)
{ //In a draw situation.
cnt=0;
}
}
}
if(cnt==1||cnt==0)
{ // If the first player wins or Draw occurs.
if(cnt==1)
declare(pl1+" (Playing X) Wins!");
if(cnt==0)
declare("The Game is a Draw!");
reset();
if(vs==1)
if(pl1=="Computer")
{
turn=false;
compplay(val); //If the First player happens
//to be computer we need to call it.
}
else
turn=false;
}
else
if(cnt==4)
{
declare(pl2+" (Playing O) Wins!");
String temp=pl1;
pl1=pl2;
pl2=temp;
reset();
if(vs==1)
if(pl1=="Computer")
compplay(val); // If the first palyer is computer,
// we need to call this.
else
turn=false;
}
}
}
void declare(string stmt)
{
if(MessageBox.Show(stmt+" Do you want to continue?",
"",MessageBoxButtons.YesNo,MessageBoxIcon.Question)
!=DialogResult.Yes)
{
Application.Exit(); //Exit if user does
//not click yes.
}
}
void compplay(int n)
{
bool carry=true; // Is used so that multiple moves are not played
// by computer.
if(diff==3) //Is called only if Hard difficulty is set.
carry=winorstop(a,b,n); // a & b are used so that check
// is performed only at last computers move.
if((diff==2||diff==3) && carry) //Is called if Hard or Medium
// difficulty is set.
{// For stop require to check for opponents pieces using c & d
if(n==1)
carry=winorstop(c,d,4);
else
carry=winorstop(c,d,1);
}
if(carry)
doany(); // Executed in all three difficulty levels
}
bool winorstop(int l,int m,int n)
{
if(pos[l,0]+pos[l,1]+pos[l,2]==n*2) //check for row,
// if two of three are filled.
{
for(int i=0;i<3;i++)
{
if(play(l,i))
return false;
}
}
else
if(pos[0,m]+pos[1,m]+pos[2,m]==n*2) //Check for column for 2/3
{
for(int i=0;i<3;i++)
{
if(play(i,m))
return false;
}
}
else
if(pos[0,0]+pos[1,1]+pos[2,2]==n*2) //Check for diagonal
//for 2/3 situation.
{
for(int i=0;i<3;i++)
{
if(play(i,i))
return false;
}
}
else
if(pos[2,0]+pos[1,1]+pos[0,2]==n*2) //Check for
//other diagonal for 2/3 situation.
{
for(int i=0,j=2;i<3;i++,j--)
{
if(play(i,j))
return false;
}
}
return true;
}
void doany()
{
int l=2,m=0;
switch(cnt)
{
case 0: play(0,0); //First two moves are certainly played.
break;
case 1: if(!(play(1,1)))
play(0,0);
break;
case 2: if(!(play(2,2)))
play(0,2);
break;
case 3: if((pos[0,1]+pos[1,1]+pos[2,1])==val)
play(0,1);
else
if((pos[1,0]+pos[1,1]+pos[1,2])==val)
play(1,0);
else
if(pos[0,1]!=0)
play(0,2);
else
play(2,0);
break;
default : while(!(play(l,m)))
{
l=rnd.Next(3); // Random moves are played
m=rnd.Next(3); //Until at least one is successful
}
break;
}
}
void Label1Click(object sender, EventArgs e)
{
if(play(0,0)&&turn==true)
compplay(val); // Is executed only if Players move
//was successful and the game is in Vs computer mod.
}
The fow of operation is as follows
- The player will click on label transferring control to
play()
. Play()
will check if the corresponding array position is empty, which is necessary for not overlapping a move by player as well as computer player module.- If the move succeeds, the corresponding label is updated as well the array element corresponding to the label. And soon
flip()
andcheckwin()
are called. flip()
will change the value oflet
andval
for use by next move.checkwin()
will use the coordinates passed byplay()
to check only the corresponding row and column, if that fails both diagonals are checked. The function is active only after at least four moves are played.- The control returns to the click event function where turn determines if comp player module should be activated, in two player mode it waits for second player.
- If vs computer is selected, the
compplay()
is called. compplay()
calls the other functions as per the difficulty level selected by user:Easy
: Onlydoany()
is called.Medium
:winorstop()
is called in stop mode first and thendoany()
.Hard
:winorstop()
is called in win mode, then stop mode and finallydoany()
is called.- When a
win
ordraw
is encountered, the first player plays again. If it happens to be the computer players turn, thecompplay()
is called from within thecheckwin()
itself. - Though
doany()
is meant to do random moves, certain moves are played so that the Easy mode does not appear CRAZY.
Points of Interest
Applying effects such as transparency in C# and implementing the same in Java was really funny and at the same time educative. Going through the equivalent code the C#, a developer can learn Java and vice versa.
History
This is a replacement for the two player version uploaded earlier, at the same time improvement for the same. The previous version is deleted to eliminate redundancy. ;)