From 618501b6fae62fa2d5db922ec8abf94120e5e99c Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Wed, 3 Jun 2015 07:50:05 +0200 Subject: Added gamestate object --- src/spacebot.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/spacebot.cpp') diff --git a/src/spacebot.cpp b/src/spacebot.cpp index 24a5d1e..716f7cb 100644 --- a/src/spacebot.cpp +++ b/src/spacebot.cpp @@ -1,11 +1,11 @@ #include "spacebot.h" #include +#include -Spacebot::Spacebot(const std::string& outputPath) - : mapStream(outputPath+"/map.txt", std::ifstream::in) - , resultStream(outputPath+"/move.txt", std::ofstream::out) +Spacebot::Spacebot(std::string outputPath) + : outputPath(std::move(outputPath)), + gameState(std::ifstream(outputPath+"/map.txt", std::ifstream::in)) { - std::srand(time(0)); } void Spacebot::writeNextMove() @@ -26,6 +26,7 @@ Move Spacebot::chooseMove() void Spacebot::writeMove(const Move& move) { + std::ofstream resultStream(outputPath+"/move.txt"); switch (move) { case Move::NOTHING: -- cgit v1.2.3