109 lines
No EOL
1.7 KiB
C++
Executable file
109 lines
No EOL
1.7 KiB
C++
Executable file
#include <iostream>
|
|
#include <vector>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include "Engine.h"
|
|
|
|
|
|
Engine::Engine(){
|
|
Board b = new Board();
|
|
}
|
|
|
|
void Engine::startGame(){
|
|
cout<<"WELCOME\n";
|
|
|
|
cout<<"1. Play against AI?\n";
|
|
cout<<"2. Play against a human?\n";
|
|
//cout<<"CHANGE THIS TO PARSE THINGS\n";
|
|
cout<<"Enter choice: \n";
|
|
|
|
int choice;
|
|
cin >> choice;
|
|
cout << "OK" << endl;
|
|
|
|
string move;
|
|
|
|
bool gameOver = false;
|
|
vector<Board> record;
|
|
b.snapshot(record,b);
|
|
|
|
while (gameOver != true)
|
|
{
|
|
gameOver = b.isGameOver();
|
|
|
|
while(b.getTurn() == 'O' )
|
|
{
|
|
b.displayBoard();
|
|
cout<<"\nEnter command: ";
|
|
cin>>move;
|
|
b.interpret(move,b);
|
|
}
|
|
|
|
|
|
vector<moves> possibleMoves = b.viewPossibleMoves();
|
|
|
|
if (choice == 1)
|
|
{
|
|
cout << "a";
|
|
b.easyAI();
|
|
}
|
|
|
|
else
|
|
{
|
|
while(b.getTurn() == 'X' )
|
|
{
|
|
b.displayBoard();
|
|
cout<<"\nEnter command: ";
|
|
cout<<"OK\n";
|
|
cin>>move;
|
|
b.interpret(move,b);
|
|
}
|
|
}
|
|
|
|
//b.snapshot();
|
|
gameOver = b.isGameOver();
|
|
|
|
b.snapshot(record,b);
|
|
}
|
|
|
|
//for debugging purposes
|
|
cout<<"Record:"<<endl;
|
|
|
|
|
|
cout<<record.size();
|
|
for (int i = 0; i < record.size(); ++i)
|
|
{
|
|
record[i].displayBoard();
|
|
}
|
|
}
|
|
|
|
void Board::easyAI()
|
|
{
|
|
//1) see all possible movements
|
|
|
|
vector<moves> listOfMoves = viewPossibleMoves();
|
|
|
|
//obvious moves
|
|
if (false){
|
|
return;
|
|
}
|
|
|
|
//random
|
|
else {
|
|
srand(time(NULL));
|
|
int randomChoice = rand() % (listOfMoves.size()-1) - 0; // choose a move betwen listOfMoves[0] to last element
|
|
|
|
//3) execute movement
|
|
int temp = randomChoice;
|
|
|
|
move(listOfMoves[randomChoice]);
|
|
}
|
|
}
|
|
|
|
void Board::AI(){
|
|
//do things here
|
|
}
|
|
|
|
void Board::minMax(){
|
|
//do more things here
|
|
} |