Update FromFile()

This commit is contained in:
Loic Guegan 2022-01-25 17:46:29 +01:00
parent e063e1453c
commit 8a770f9133

View file

@ -26,30 +26,30 @@ PGN::~PGN() {
std::string PGN::GetResult() { return (result); } std::string PGN::GetResult() { return (result); }
void PGN::FromFile(std::string filepath) { void PGN::FromFile(std::string filepath) {
std::ifstream file(filepath); std::ifstream inFile;
inFile.open(filepath);
std::stringstream strStream;
strStream << inFile.rdbuf();
std::string pgn_content((std::istreambuf_iterator<char>(file)), this->pgn_content = strStream.str();
std::istreambuf_iterator<char>());
this->pgn_content = pgn_content;
} }
void PGN::FromString(std::string pgn_content) { void PGN::FromString(std::string pgn_content) {
this->pgn_content = pgn_content; this->pgn_content = pgn_content;
} }
void PGN::ParseNextGame(){ void PGN::ParseNextGame() {
// Clean previous parse // Clean previous parse
if(moves!=NULL){ if (moves != NULL) {
delete moves; delete moves;
} }
result=""; result = "";
tagkeys.clear(); tagkeys.clear();
tags.clear(); tags.clear();
moves = new HalfMove(); moves = new HalfMove();
int loc = NextNonBlank(LastGameEndLoc); int loc = NextNonBlank(LastGameEndLoc);
if(IS_EOF(loc)){ if (IS_EOF(loc)) {
throw NoGameFound(); throw NoGameFound();
} }
while (!IS_EOF(loc)) { while (!IS_EOF(loc)) {
@ -59,7 +59,7 @@ void PGN::ParseNextGame(){
loc = ParseNextTag(loc); loc = ParseNextTag(loc);
} else if (IS_DIGIT(c)) { } else if (IS_DIGIT(c)) {
loc = ParseHalfMove(loc, moves); loc = ParseHalfMove(loc, moves);
LastGameEndLoc=loc+1; // Next game start 1 char after the last one LastGameEndLoc = loc + 1; // Next game start 1 char after the last one
break; break;
} else if (c == '{') { } else if (c == '{') {
loc = ParseComment(loc, moves); loc = ParseComment(loc, moves);
@ -138,14 +138,14 @@ int PGN::ParseHalfMove(int loc, HalfMove *hm) {
} else if (nc == '-') { } else if (nc == '-') {
if (c == '1') { if (c == '1') {
result = "1-0"; result = "1-0";
loc+=2; loc += 2;
} else { } else {
result = "0-1"; result = "0-1";
loc+=2; loc += 2;
} }
} else { } else {
result = "1/2-1/2"; result = "1/2-1/2";
loc+=6; loc += 6;
} }
return (loc); return (loc);
} }