mirror of
https://gitlab.com/manzerbredes/pgnp.git
synced 2025-04-06 01:56:24 +02:00
100 lines
3 KiB
C++
100 lines
3 KiB
C++
#include "HalfMove.hpp"
|
|
#include "LargeFileStream.hpp"
|
|
#include <algorithm>
|
|
#include <exception>
|
|
#include <fstream>
|
|
#include <unordered_map>
|
|
|
|
namespace pgnp {
|
|
|
|
class PGN {
|
|
private:
|
|
/// @brief Contains tags data
|
|
std::unordered_map<std::string, std::string> tags;
|
|
/// @brief Contains the tags list in parsed order
|
|
std::vector<std::string> tagkeys;
|
|
/// @brief Contains game result (last PGN word)
|
|
std::string result;
|
|
/// @brief Contains the parsed PGN moves
|
|
HalfMove *moves;
|
|
/// @brief Contains the PGN data
|
|
LargeFileStream pgn_content;
|
|
/// @brief Contains the location of the end of the last parsed game (1 PGN
|
|
/// file may have multiple games)
|
|
long LastGameEndLoc;
|
|
|
|
public:
|
|
PGN();
|
|
~PGN();
|
|
void FromFile(std::string);
|
|
void FromString(std::string);
|
|
/**
|
|
* Parse the next available game. Note that it raises a @a NoGameFound
|
|
* exception if no more game is available. A call to this method flush all the
|
|
* last parsed game data. Be careful.
|
|
*/
|
|
void ParseNextGame();
|
|
/// @brief Check if PGN contains a specific tag
|
|
bool HasTag(std::string);
|
|
/// @brief Perform a Seven Tag Roster compliance check
|
|
void STRCheck();
|
|
/// @brief Dump parsed PGN into a string
|
|
std::string Dump();
|
|
/// @brief Retrieve parsed tag list
|
|
std::vector<std::string> GetTagList();
|
|
/// @brief Access to the value of a tag
|
|
std::string GetTagValue(std::string);
|
|
/// @brief Get game result based on the last PGN word
|
|
std::string GetResult();
|
|
/// @brief Fetch PGN moves as HalfMove structure
|
|
void GetMoves(HalfMove *);
|
|
|
|
private:
|
|
/// @brief Populate @a tags with by parsing the one starting at location in
|
|
/// argument
|
|
long ParseNextTag(long);
|
|
/// @brief Parse a HalfMove at a specific location into @a pgn_content
|
|
long ParseHalfMove(long, HalfMove *);
|
|
/// @brief Parse a consecutive sequence of comment
|
|
long ParseComment(long, HalfMove *);
|
|
/// @brief Get the next non-blank char location ignoring line comments ('%'
|
|
/// and ';')
|
|
long GotoNextToken(long);
|
|
/// @brief Goto the end of the current line
|
|
long GotoEOL(long);
|
|
};
|
|
|
|
struct UnexpectedEOF : public std::exception {
|
|
const char *what() const throw() { return "Unexpected end of pgn file"; }
|
|
};
|
|
|
|
struct InvalidTagName : public std::exception {
|
|
const char *what() const throw() { return "Invalid tag name"; }
|
|
};
|
|
|
|
struct InvalidGameResult : public std::exception {
|
|
const char *what() const throw() { return "Invalid game result"; }
|
|
};
|
|
|
|
struct NoGameFound : public std::exception {
|
|
const char *what() const throw() { return "No game (or more game) found"; }
|
|
};
|
|
|
|
struct UnexpectedCharacter : public std::exception {
|
|
std::string msg;
|
|
UnexpectedCharacter(char actual, char required, long loc) {
|
|
std::stringstream ss;
|
|
ss << "Expected \'" << required << "\' at location " << loc
|
|
<< " but read \'" << actual << "\'";
|
|
msg = ss.str();
|
|
}
|
|
const char *what() const throw() { return msg.c_str(); }
|
|
};
|
|
|
|
struct STRCheckFailed : public std::exception {
|
|
const char *what() const throw() {
|
|
return "Seven Tag Roster compliance check failed";
|
|
}
|
|
};
|
|
|
|
} // namespace pgnp
|