|
@@ -1,11 +1,16 @@
|
|
#include <iostream>
|
|
#include <iostream>
|
|
#include <climits>
|
|
#include <climits>
|
|
|
|
+#include <chrono>
|
|
|
|
|
|
#include "Game.h"
|
|
#include "Game.h"
|
|
#include "Types.h"
|
|
#include "Types.h"
|
|
|
|
|
|
std::array<Vector, 8> Game::neighbours;
|
|
std::array<Vector, 8> Game::neighbours;
|
|
std::array<Vector, 9 * 5> Game::fieldVectors;
|
|
std::array<Vector, 9 * 5> Game::fieldVectors;
|
|
|
|
+long int Game::selectionTime = 0;
|
|
|
|
+long int Game::moveTime = 0;
|
|
|
|
+int Game::turns = 0;
|
|
|
|
+int Game::moves = 0;
|
|
|
|
|
|
Game::Game() : active(-1, -1), mustTake(false) {
|
|
Game::Game() : active(-1, -1), mustTake(false) {
|
|
// sets the basic game up:
|
|
// sets the basic game up:
|
|
@@ -70,6 +75,12 @@ bool Game::parseLine(const String& line) {
|
|
line == "************************Player 2 won!**********************") {
|
|
line == "************************Player 2 won!**********************") {
|
|
// stop the game if anybody wins - the server does not do that
|
|
// stop the game if anybody wins - the server does not do that
|
|
std::cerr << line << "\n";
|
|
std::cerr << line << "\n";
|
|
|
|
+
|
|
|
|
+ //std::cerr << "Turns: " << turns << "\n";
|
|
|
|
+ //std::cerr << "Moves: " << moves << "\n";
|
|
|
|
+ //std::cerr << "Total selection time: " << selectionTime << "\n";
|
|
|
|
+ //std::cerr << "Total move time: " << moveTime << "\n";
|
|
|
|
+ std::cerr << turns << "," << moves << "," << selectionTime << "," << moveTime << "\n";
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
return false;
|
|
@@ -197,6 +208,9 @@ uint Game::move(const Vector& from, const Vector& to) {
|
|
}
|
|
}
|
|
|
|
|
|
void Game::makeSelection() {
|
|
void Game::makeSelection() {
|
|
|
|
+ // add statistics
|
|
|
|
+ ssize_t time = getNanos();
|
|
|
|
+ turns++;
|
|
// new turn starts - reset previously blocked turns
|
|
// new turn starts - reset previously blocked turns
|
|
lastLocations.clear();
|
|
lastLocations.clear();
|
|
direction.set(0, 0);
|
|
direction.set(0, 0);
|
|
@@ -230,6 +244,8 @@ void Game::makeSelection() {
|
|
}
|
|
}
|
|
// mark the stone as active
|
|
// mark the stone as active
|
|
active = selection;
|
|
active = selection;
|
|
|
|
+ // add selection time to statistics, do not measure IO
|
|
|
|
+ selectionTime += getNanos() - time;
|
|
// send the selection to the server
|
|
// send the selection to the server
|
|
std::cerr << "Selecting (" << selection.x << ", " << selection.y << ")\n";
|
|
std::cerr << "Selecting (" << selection.x << ", " << selection.y << ")\n";
|
|
// print the selection and the current game field for logging purposes
|
|
// print the selection and the current game field for logging purposes
|
|
@@ -238,6 +254,9 @@ void Game::makeSelection() {
|
|
}
|
|
}
|
|
|
|
|
|
void Game::makeMove() {
|
|
void Game::makeMove() {
|
|
|
|
+ // add statistics
|
|
|
|
+ ssize_t time = getNanos();
|
|
|
|
+ moves++;
|
|
// check all neighbors of active selection and choose the move with the highest rank
|
|
// check all neighbors of active selection and choose the move with the highest rank
|
|
Vector maxTo(0, 0);
|
|
Vector maxTo(0, 0);
|
|
int maxRank = INT_MIN;
|
|
int maxRank = INT_MIN;
|
|
@@ -268,6 +287,8 @@ void Game::makeMove() {
|
|
direction = maxTo - active;
|
|
direction = maxTo - active;
|
|
// mark the location as active
|
|
// mark the location as active
|
|
active = maxTo;
|
|
active = maxTo;
|
|
|
|
+ // add selection time to statistics, do not measure IO
|
|
|
|
+ moveTime += getNanos() - time;
|
|
// send the move to the server
|
|
// send the move to the server
|
|
std::cerr << "Move to (" << maxTo.x << ", " << maxTo.y << ")\n";
|
|
std::cerr << "Move to (" << maxTo.x << ", " << maxTo.y << ")\n";
|
|
// log the move
|
|
// log the move
|
|
@@ -360,4 +381,8 @@ uint Game::getBestEnemyRank() const {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return maxRank;
|
|
return maxRank;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+long int Game::getNanos() {
|
|
|
|
+ return std::chrono::high_resolution_clock::now().time_since_epoch().count();
|
|
}
|
|
}
|