mirror of
https://gitlab.com/manzerbredes/pgnp.git
synced 2025-04-06 10:06:25 +02:00
Debug parser
This commit is contained in:
parent
3fb48d4f29
commit
e24ebe0138
1 changed files with 3 additions and 6 deletions
|
@ -190,11 +190,11 @@ loctype PGN::ParseHalfMove(loctype loc, HalfMove *hm) {
|
||||||
}
|
}
|
||||||
hm->move = move;
|
hm->move = move;
|
||||||
|
|
||||||
|
// Parse Comments, Variations and NAG
|
||||||
loc = GotoNextToken(loc);
|
loc = GotoNextToken(loc);
|
||||||
EOF_CHECK(loc);
|
EOF_CHECK(loc);
|
||||||
c = pgn_content[loc];
|
c = pgn_content[loc];
|
||||||
|
while (c == '{' || c == '$' || c == '(') {
|
||||||
while (c == '{' || c == '$' || c == '(' || c == ';' || c == '%') {
|
|
||||||
if (c == '{') {
|
if (c == '{') {
|
||||||
// Parse comment
|
// Parse comment
|
||||||
loc = ParseComment(loc, hm);
|
loc = ParseComment(loc, hm);
|
||||||
|
@ -236,9 +236,6 @@ loctype PGN::ParseHalfMove(loctype loc, HalfMove *hm) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Skip end of variation
|
// Skip end of variation
|
||||||
loc = GotoNextToken(loc);
|
|
||||||
EOF_CHECK(loc);
|
|
||||||
c = pgn_content[loc];
|
|
||||||
if (c == ')') {
|
if (c == ')') {
|
||||||
return (loc);
|
return (loc);
|
||||||
}
|
}
|
||||||
|
@ -332,7 +329,7 @@ loctype PGN::GotoNextToken(loctype loc) {
|
||||||
}
|
}
|
||||||
c = pgn_content[loc];
|
c = pgn_content[loc];
|
||||||
if (c == '%' || c == ';') {
|
if (c == '%' || c == ';') {
|
||||||
loc = GotoEOL(loc);
|
loc = GotoEOL(loc)+1;
|
||||||
if (IS_EOF) {
|
if (IS_EOF) {
|
||||||
return (loc);
|
return (loc);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue