-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSgf.cpp
More file actions
427 lines (331 loc) · 8.06 KB
/
Copy pathSgf.cpp
File metadata and controls
427 lines (331 loc) · 8.06 KB
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
// Sgf.cpp: implementation of the Sgf class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "renlib.h"
#include "Sgf.h"
#include "Utils.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
namespace
{
CString cFile("File: ");
}
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
Sgf::Sgf()
: mMultipleGames(false)
{
}
//------------------------------------------------------------------------
Game& Sgf::getGame()
{
return m_Game;
}
//------------------------------------------------------------------------
CString Sgf::getFilePath()
{
return m_strFilePath;
}
//------------------------------------------------------------------------
bool Sgf::OpenFile(const CString& strFile, bool multipleGames)
{
mMultipleGames = multipleGames;
CFileException e;
if (!m_sgfFile.Open(strFile, CFile::modeRead, &e))
{
return false;
}
m_strFilePath = m_sgfFile.GetFilePath();
Parse();
m_sgfFile.Close();
return true;
}
//------------------------------------------------------------------------
void Sgf::Parse()
{
m_Game.clear();
CString strContent;
CString strLine;
while (m_sgfFile.ReadString(strLine))
{
strContent += strLine;
}
strContent = PreProcess(strContent); // Extract only one game from the file
CString strGameInfo = FindString(strContent, ";", ";");
CString strPlayerB = ParseCommand(strGameInfo, "PB");
CString strPlayerW = ParseCommand(strGameInfo, "PW");
CString str5A = ParseCommand(strGameInfo, "5A");
CString strGN = ParseCommand(strGameInfo, "GN");
CString strResult = ParseCommand(strGameInfo, "RE");
CString strDate = ParseCommand(strGameInfo, "DT");
strResult.MakeUpper(); // Translate the result
if (strResult == _T("B+DRAW"))
{
strResult = _T("0.5-0.5");
}
else if (strResult.Find("B+") != -1)
{
strResult = _T("1-0");
}
else if (strResult.Find("W+") != -1)
{
strResult = _T("0-1");
}
int n = strGN.Find(":");
if (n != -1)
{
strGN = strGN.Right(strGN.GetLength() - n - 1); // Remove the player info from GN
}
strGN.Replace("(Rated)", "");
strGN.Replace("(Free)", "");
strGN.Replace("(Teach)", "");
Utils::trim(strGN);
CString strTiming;
n = strGN.Find("Timing:");
if (n != -1)
{
strTiming = strGN.Right(strGN.GetLength() - n); // Extract timing info
Utils::trim(strTiming);
strGN = strGN.Left(n); // Extract player info
Utils::trim(strGN);
}
if (!str5A.IsEmpty()) // for RIF and Yamaguchi rule
{
str5A.MakeUpper();
if ((str5A[1] >= '1') && (str5A[1] <= '9')) // Yamaguchi rule
{
str5A = CString("5A: ") + str5A;
}
else // RIF rule
{
str5A.Format("5A: %c%d", str5A[0], 15-(str5A[1]-'A'));
}
}
CString strMoveInfo = strContent.Right(strContent.GetLength() - strGameInfo.GetLength());
while (strMoveInfo.GetLength() > 4)
{
CString strMove = FindString(strMoveInfo, ";", ";");
CString strMoveBW = ParseCommand(strMove, ";B");
if (strMoveBW.IsEmpty())
{
strMoveBW = ParseCommand(strMove, ";W");
}
if (!strMoveBW.IsEmpty())
{
strMoveBW.MakeUpper();
if (strMoveBW == _T("TT")) // TT = pass
{
m_Game.addPos(0);
int moveNo = m_Game.numberOfMoves();
CString strPass;
strPass.Format("%d. Pass", moveNo);
m_Game.addMultiLineComment(moveNo, strPass);
}
else
{
m_Game.addPos((strMoveBW[1]-'A') * 16 + strMoveBW[0]-'A'+1);
}
}
else
{
break;
}
if (strMove.GetLength() <= strMoveInfo.GetLength())
{
strMoveInfo = strMoveInfo.Right(strMoveInfo.GetLength() - strMove.GetLength());
}
}
const int lastMove = m_Game.numberOfMoves();
const CString strResultComment(strPlayerB + " - " + strPlayerW + " " + strResult);
const CString strDateTimeComment("Date: " + strDate);
m_Game.addOneLineComment(lastMove, strResultComment);
m_Game.addMultiLineComment(lastMove, cFile + m_sgfFile.GetFileTitle());
m_Game.addMultiLineComment(lastMove, strDateTimeComment);
if (!str5A.IsEmpty())
{
m_Game.addMultiLineComment(lastMove, str5A);
}
m_Game.addMultiLineComment(lastMove, strGN);
if (!strTiming.IsEmpty())
{
m_Game.addMultiLineComment(lastMove, strTiming);
}
if (!mMultipleGames)
{
m_Game.addOneLineComment(1, strResultComment);
m_Game.addMultiLineComment(1, strDateTimeComment);
if (!str5A.IsEmpty())
{
m_Game.addMultiLineComment(5, str5A);
}
}
}
//------------------------------------------------------------------------
CString Sgf::PreProcess(const CString& strContent)
{
CString strResult("");
int n = strContent.Find("(");
if (n == -1)
{
return strResult;
}
int nP = 0;
BOOL bValue = FALSE;
for (int i=n; i<strContent.GetLength(); i++)
{
if ((nP == 1) && (strContent[i] == '['))
{
bValue = TRUE;
}
else if ((nP == 1) && (strContent[i] == ']'))
{
bValue = FALSE;
}
if (bValue)
{
if (strContent[i] == '\xd')
{
continue;
}
else if (strContent[i] == '\xa')
{
continue;
}
else
{
strResult += CString(strContent[i]);
}
continue;
}
else if (strContent[i] == '(')
{
nP++;
continue;
}
else if (strContent[i] == ')')
{
nP--;
continue;
}
else if (nP > 1)
{
continue;
}
else if (nP == 0)
{
break;
}
else if (strContent[i] == '\xd')
{
continue;
}
else if (strContent[i] == '\xa')
{
continue;
}
else
{
strResult += CString(strContent[i]);
}
}
// Add an extra ";" at the end to make later search easier
if (!strResult.IsEmpty() && (strResult[strResult.GetLength()-1] != ';'))
{
strResult += CString(";");
}
return strResult;
}
//------------------------------------------------------------------------
CString Sgf::FindString(const CString& strContent, const CString& strBegin, const CString& strEnd)
{
int n1 = strContent.Find(strBegin);
if (n1 == -1)
{
return CString("");
}
int n2 = strContent.Find(strEnd, n1+1);
if (n2 == -1)
{
return CString("");
}
else
{
return strContent.Mid(n1, n2-n1);
}
}
//------------------------------------------------------------------------
CString Sgf::ParseCommand(const CString& strContent, const CString& strCmd)
{
int n1 = strCmd.GetLength();
if (n1 == 0)
{
return CString("");
}
int n = 0;
while (1)
{
int n2 = strContent.Find("[", n);
if (n2 == -1)
{
return CString("");
}
else if (n2 < n1)
{
return CString("");
}
int n3 = strContent.Find("]", n2+1);
if (n3 == -1)
{
return CString("");
}
n = n3+1;
CString strCommand = strContent.Mid(n2-n1, n1);
Utils::trim(strCommand);
if (strCommand.CompareNoCase(strCmd) != 0)
{
continue;
}
CString strValue = strContent.Mid(n2+1, n3-n2-1);
Utils::trim(strValue);
return strValue;
}
return CString("");
}
//------------------------------------------------------------------------
bool Sgf::equalComment(const CString& strComment1, const CString& strComment2)
{
CString strSwap(strComment2);
swapComment(strSwap);
return strComment1.Compare(strSwap) == 0;
}
//------------------------------------------------------------------------
void Sgf::swapComment(CString& strComment)
{
int left = strComment.Find(cFile);
if (left == -1) return;
left += cFile.GetLength();
int right = strComment.Find(TCHAR(13), left);
if (right == -1) return;
CString strCommentLeft(strComment.Left(left));
CString strFile(strComment.Mid(left, right - left));
CString strCommentRight(strComment.Right(strComment.GetLength() - right));
if (Utils::IsExtensionSgf(strFile))
{
left = strFile.Find('-');
if (left == -1) return;
right = strFile.Find('-', left+1);
if (right == -1) return;
CString strLeftPlayer(strFile.Left(left++));
CString strRightPlayer(strFile.Mid(left, right - left));
CString strDate(strFile.Right(strFile.GetLength() - right));
strComment =
strCommentLeft +
strRightPlayer + '-' + strLeftPlayer + strDate +
strCommentRight;
}
}