-
Notifications
You must be signed in to change notification settings - Fork 0
/
fnstopgn.cpp
180 lines (137 loc) · 4.84 KB
/
fnstopgn.cpp
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
#include <iostream>
#include <conio.h>
#include <math.h>
#include <vector>
#include <cstring>
#include <cstdlib>
#include <cctype>
#include <fstream>
#include <string>
using namespace std;
void lichessfnspuzzle(const string &dosyaadi){
ifstream dosya(dosyaadi);
ofstream dosyayaz("lichess.pgn", ios::out);
if (dosya.is_open() && dosyayaz.is_open()) {
string ilkSatir;
while (getline(dosya, ilkSatir)) {
int n = 1;
size_t pozisyon = ilkSatir.find('[');
if (pozisyon != string::npos) {
string sonrakiSatir = ilkSatir.substr(pozisyon);
cout << n << ". puzzle: " << sonrakiSatir << endl << endl;
dosyayaz << sonrakiSatir << endl << endl << endl;
} else {
cout << "Unsupported syntax! Sorry." << endl << endl;
}
}
if (!dosya.is_open()){
cout << "File could not be opened!" << endl;
}
dosya.close();
dosyayaz.close();
cout << "The output was saved in a file named lichess.pgn" << endl;
}
}
void lucaschessfnspuzzle(const string &dosyaadi){
size_t dosyaninadi = dosyaadi.find('.');
string dosyaninadialtdize = dosyaadi.substr(0, dosyaninadi - 1);
string dosyaninadiustdize = dosyaninadialtdize + ".pgn";
ifstream dosyaoku(dosyaadi);
ofstream dosyayaz(dosyaninadiustdize, ios::out);
if (dosyaoku.is_open() && dosyayaz.is_open())
{
string ilksatir1;
while (getline(dosyaoku, ilksatir1)) {
size_t pozisyonbas = 0;
int sayac1 = 0;
size_t pozisyon1 = ilksatir1.find('|');
size_t pozisyon2 = ilksatir1.find(">|");
size_t pozisyon3 = ilksatir1.find("|[", pozisyon2);
string altdize1 = ilksatir1.substr(0, pozisyon1 - 1);
string altdize2 = ilksatir1.substr(pozisyon2 + 2, pozisyon3 - pozisyon2 - 2);
cout << "[FEN \"" << altdize1 << "\"]" << endl;
dosyayaz << "[FEN \"" << altdize1 << "\"]" << endl;
while ((pozisyonbas = ilksatir1.find("[", pozisyonbas)) != string::npos) {
size_t sonrakiPozisyon = ilksatir1.find("]", pozisyonbas);
if (sonrakiPozisyon != string::npos) {
string parantezdize = ilksatir1.substr(pozisyonbas, sonrakiPozisyon - pozisyonbas + 1);
cout << parantezdize << endl;
dosyayaz << parantezdize << endl;
pozisyonbas = sonrakiPozisyon + 1;
sayac1++;
if(sayac1 == 10){
cout << altdize2;
dosyayaz << altdize2;
dosyayaz << endl << endl;
cout << endl << endl;
}
} else {
break;
}
}
}
dosyaoku.close();
dosyayaz.close();
cout << "The output was saved in a file named " << dosyaninadiustdize << endl;
}
else{
cout << "Dosya acilamadi";
}
}
int main(){
int x;
int x1;
string yol;
cout << "Language:\n\n" << "1 = Turkce\n" << "2 = English";
cin >> x;
switch (x)
{
case 1:
cout << "Donusturulecek FNS dosyasinin turunu secin:\n1- Lichess bulmacalari\n2- Diger bulmacalar";
cin >> x1;
switch (x1)
{
case 1:
cout << "Dosya adini giriniz: ";
cin >> yol;
cout << endl << endl;
lichessfnspuzzle(yol);
break;
case 2:
cout << "Dosya adini giriniz: ";
cin >> yol;
cout << endl << endl;
lucaschessfnspuzzle(yol);
break;
default:
break;
}
break;
case 2:
cout << "Select the type of FNS file to convert:\n1- Lichess puzzles\n2- Other puzzles";
cin >> x1;
switch (x1)
{
case 1:
cout << "Enter the file name: ";
cin >> yol;
cout << endl << endl;
lichessfnspuzzle(yol);
break;
case 2:
cout << "Enter the file name: ";
cin >> yol;
cout << endl << endl;
lucaschessfnspuzzle(yol);
break;
default:
break;
}
break;
break;
default:
break;
}
getch();
return 0;
}