-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpgn.go
238 lines (221 loc) · 5.32 KB
/
pgn.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
package octad
import (
"bufio"
"fmt"
"io"
"log"
"regexp"
"strings"
)
// Scanner is modeled on the bufio.Scanner type but
// instead of reading lines, it reads octad games
// from concatenated PGN files. It is designed to
// replace GamesFromPGN in order to handle very large
// PGN database files such as https://database.lioctad.org/.
type Scanner struct {
scanr *bufio.Scanner
game *Game
err error
}
// NewScanner returns a new scanner.
func NewScanner(r io.Reader) *Scanner {
scanr := bufio.NewScanner(r)
return &Scanner{scanr: scanr}
}
// Scan returns false if there was an error parsing
// a game or EOF was reached. Running scan populates
// data for Next() and Err().
func (s *Scanner) Scan() bool {
s.err = nil
var sb strings.Builder
count := 0
for {
scan := s.scanr.Scan()
if scan == false {
s.err = s.scanr.Err()
return false
}
line := s.scanr.Text() + "\n"
if strings.TrimSpace(line) == "" {
count++
} else {
sb.WriteString(line)
}
if count == 2 {
game, err := decodePGN(sb.String())
if err != nil {
s.err = err
return false
}
s.game = game
break
}
}
return true
}
// Next returns the game from the most recent Scan.
func (s *Scanner) Next() *Game {
return s.game
}
// Err returns an error encountered during scanning.
// Typically this will be a PGN parsing error or an
// io.EOF.
func (s *Scanner) Err() error {
return s.err
}
// GamesFromPGN returns all PGN decoding games from the
// reader. It is designed to be used decoding multiple PGNs
// in the same file. An error is returned if there is an
// issue parsing the PGNs.
// Deprecated: Use Scanner instead.
func GamesFromPGN(r io.Reader) ([]*Game, error) {
var games []*Game
current := ""
count := 0
totalCount := 0
br := bufio.NewReader(r)
for {
line, err := br.ReadString('\n')
if err == io.EOF {
break
} else if err != nil {
return nil, err
}
if strings.TrimSpace(line) == "" {
count++
} else {
current += line
}
if count == 2 {
game, err := decodePGN(current)
if err != nil {
return nil, err
}
games = append(games, game)
count = 0
current = ""
totalCount++
log.Println("Processed game", totalCount)
}
}
return games, nil
}
type multiDecoder []Decoder
func (a multiDecoder) Decode(pos *Position, s string) (*Move, error) {
for _, d := range a {
m, err := d.Decode(pos, s)
if err == nil {
return m, nil
}
}
return nil, fmt.Errorf(`octad: failed to decode notation text "%s" for position %s`, s, pos)
}
func decodePGN(pgn string) (*Game, error) {
tagPairs := getTagPairs(pgn)
moveStrs, outcome := moveList(pgn)
gameFuncs := []func(*Game){}
for _, tp := range tagPairs {
if strings.ToLower(tp.Key) == "fen" {
fenFunc, err := OFEN(tp.Value)
if err != nil {
return nil, fmt.Errorf("octad: pgn decode error %s on tag %s", err.Error(), tp.Key)
}
gameFuncs = append(gameFuncs, fenFunc)
break
}
}
gameFuncs = append(gameFuncs, TagPairs(tagPairs))
g, err := NewGame(gameFuncs...)
if err != nil {
return nil, err
}
g.ignoreAutomaticDraws = true
decoder := multiDecoder([]Decoder{AlgebraicNotation{}, LongAlgebraicNotation{}, UOINotation{}})
for _, alg := range moveStrs {
m, err := decoder.Decode(g.Position(), alg)
if err != nil {
return nil, fmt.Errorf("octad: pgn decode error %s on move %d", err.Error(), g.Position().moveCount)
}
if err := g.Move(m); err != nil {
return nil, fmt.Errorf("octad: pgn invalid move error %s on move %d", err.Error(), g.Position().moveCount)
}
}
g.outcome = outcome
return g, nil
}
func encodePGN(g *Game) string {
s := ""
for _, tag := range g.tagPairs {
s += fmt.Sprintf("[%s \"%s\"]\n", tag.Key, tag.Value)
}
s += "\n"
for i, move := range g.moves {
pos := g.positions[i]
txt := g.notation.Encode(pos, move)
if i%2 == 0 {
s += fmt.Sprintf("%d. %s", (i/2)+1, txt)
} else {
s += fmt.Sprintf(" %s ", txt)
}
}
s += " " + string(g.outcome)
return s
}
var (
tagPairRegex = regexp.MustCompile(`\[(.*)\s"(.*)"]`)
)
func getTagPairs(pgn string) []*TagPair {
var tagPairs []*TagPair
matches := tagPairRegex.FindAllString(pgn, -1)
for _, m := range matches {
results := tagPairRegex.FindStringSubmatch(m)
if len(results) == 3 {
pair := &TagPair{
Key: results[1],
Value: results[2],
}
tagPairs = append(tagPairs, pair)
}
}
return tagPairs
}
var (
moveNumRegex = regexp.MustCompile(`(?:\d+\.+)?(.*)`)
)
func moveList(pgn string) ([]string, Outcome) {
// remove comments
text := removeSection("{", "}", pgn)
// remove variations
text = removeSection(`\(`, `\)`, text)
// remove tag pairs
text = removeSection(`\[`, `\]`, text)
// remove line breaks
text = strings.Replace(text, "\n", " ", -1)
list := strings.Split(text, " ")
var filtered []string
var outcome Outcome
for _, move := range list {
move = strings.TrimSpace(move)
switch move {
case string(NoOutcome), string(WhiteWon), string(BlackWon), string(Draw):
outcome = Outcome(move)
case "":
default:
results := moveNumRegex.FindStringSubmatch(move)
if len(results) == 2 && results[1] != "" {
filtered = append(filtered, results[1])
}
}
}
return filtered, outcome
}
func removeSection(leftChar, rightChar, s string) string {
r := regexp.MustCompile(leftChar + ".*?" + rightChar)
for {
i := r.FindStringIndex(s)
if i == nil {
return s
}
s = s[0:i[0]] + s[i[1]:]
}
}