-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinteraction.cpp
249 lines (200 loc) · 5.09 KB
/
interaction.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
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
#include "interaction.h"
#include "def.h"
OneInteraction::OneInteraction(Env* env) : env(env) {
}
void OneInteraction::show() {
ask();
getResponse();
while (!isLegal()) {
reask();
getResponse();
}
process();
}
Interaction::Interaction(Env* env) : env(env) {
}
LookUpOneWord::LookUpOneWord(Env* env) : OneInteraction(env) {
}
string LookUpOneWord::getWord() {
return word;
}
void LookUpOneWord::ask() {
cout << " Input a word: ";
}
void LookUpOneWord::reask() {
cout << "Illegal characters contained. Please re-input: ";
}
void LookUpOneWord::getResponse() {
cin >> word;
}
bool LookUpOneWord::isLegal() {
str::clearEnds(word);
for (int i = 0; i < word.length(); ++i) {
if ((word[i] != '-') && (word[i] < 'a' || word[i] > 'z') && (word[i] < 'A' || word[i] > 'Z')) {
return false;
}
}
return true;
}
void LookUpOneWord::process() {
Def* def = new Def(env->fsbDef, word);
if (def->succeed()) {
def->print(cout);
env->history->add(word);
}
else {
cout << " Cannot find the word!" << endl << endl;
}
}
LearnOneWord::LearnOneWord (SelectStrategy* sstra, FormStrategy* fstra, Env* env) :
OneInteraction(env), sstra(sstra), fstra(fstra) {
}
string LearnOneWord::getWord() {
return word;
}
void LearnOneWord::ask() {
word = sstra->next(diffi);
//cout << " @@@@diffi: " << diffi << endl;
fstra->setWord(word);
cout << fstra->display();
}
void LearnOneWord::reask() {
cout << "Illegal input! Please re-input:" << endl;
}
void LearnOneWord::getResponse() {
string resp;
cin >> resp;
fstra->rcvResponse(resp);
}
bool LearnOneWord::isLegal() {
return fstra->isLegal();
}
void LearnOneWord::process() {
env->pass(word, diffi, fstra->isOK());
cout << fstra->reDisplay();
}
// ====================================================
LookUpWord::LookUpWord(Env* env) : Interaction(env) {
}
void LookUpWord::work() {
for (;;) {
LookUpOneWord* luow = new LookUpOneWord(env);
luow->show();
string word = luow->getWord();
delete luow;
for (;;) {
cout << " What to do?" << endl;
cout << " Continue to look up words[c]" << endl;
cout << " Show example sentences[s]" << endl;
cout << " Show history(<=20)[h]" << endl;
cout << " Quit[q]" << endl;
cout << " ";
string in;
cin >> in;
str::clearEnds(in);
if (in == "c" || in == "C") {
break;
}
if (in == "q" || in == "Q") {
return;
}
if (in == "s" || in == "S") {
Sentences sent(env->fsbSent, word);
sent.print(cout);
continue;
}
if (in == "h" || in == "H") {
cout << endl;
for (int i = env->history->getSize(), j = 1; i >= 1 && j <= 20; --i, ++j) {
cout << " ★ " << env->history->getItem(i) << " ★" << endl;
}
cout << endl;
continue;
}
cout << " Illegal input!" << endl;
}
}
}
// ---------------------------------
Learn::Learn(SelectStrategy* sstra, FormStrategy* fstra, Env* env) :
Interaction(env), sstra(sstra), fstra(fstra) {
}
void Learn::work() {
for (;;) {
LearnOneWord* low = new LearnOneWord(sstra, fstra, env);
low->show();
string word = low->getWord();
for (;;) {
cout << " What to do?" << endl;
cout << " Next word[n]" << endl;
cout << " Show example sentences[s]" << endl;
cout << " Add example sentences[a]" << endl;
cout << " Delete example sentences[d]" << endl;
cout << " Quit[q]" << endl;
cout << " ";
string in;
cin >> in;
str::clearEnds(in);
if (in == "n" || in == "N") {
break;
}
if (in == "q" || in == "Q") {
return;
}
Sentences sent(env->fsbSent, word);
if (in == "s" || in == "S") {
sent.print(cout);
continue;
}
if (in == "a" || in == "A") {
cout << " Input a sentence:" << endl;
cout << " ";
sent.add(str::readSent(cin));
continue;
}
if (in == "d" || in == "D") {
cout << " Input the number of sentence:" << endl;
cout << " ";
string num = str::readSent(cin);
bool isNum = true;
for (int i = 0; i < num.length(); ++i) {
if (num[i] < '0' || num[i] > '9') {
isNum = false;
break;
}
}
if (isNum) {
sent.del(str::strToInt(num));
}
else {
cout << " Illegal input!" << endl;
}
continue;
}
cout << " Illegal input!" << endl;
}
}
}
// -----------------------------
Count::Count(Env* env) : Interaction(env) {
}
void Count::work() {
cout << " Input the name of the file (put in \"/count\"):" << endl;
cout << " ";
string path = "count/" + str::readSent(cin);
ifstream ifs0(path.c_str());
if (!ifs0) {
cout << " No such file!" << endl << endl;
return;
}
ifstream ifs;
ifs.open(path.c_str());
string word;
int cnt = 0;
while (getline(ifs, word)) {
if (env->masteredVoc->search(word) == -1) {
++cnt;
}
}
cout << " " << cnt << endl << endl;
}