-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.y
495 lines (451 loc) · 9.33 KB
/
env.y
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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
%{
#include <map>
#include <cstdio>
#include <string>
#include <iostream>
#include "domain.h"
using namespace std;
static map<unsigned, Object> objects;
static vector<Task> tasks;
static vector<Info> infos;
static vector<ConsTask> consTasks;
static vector<ConsInfo> consInfos;
static unsigned plate = 0;
static unsigned hold = 0;
int yylex(void);
void yyerror(const char*) {
}
struct CondDef {
string pred;
string var;
string param;
};
struct TaskPred {
TaskType type;
string param1;
string param2;
};
struct InfoPred {
InfoType type;
string param1;
string param2;
};
%}
%start start
%union {
unsigned number;
char* stringVal;
CondDef* pCondDef;
vector<CondDef>* pVecCondDef;
TaskPred* pTaskPred;
InfoPred* pInfoPred;
Task* pTask;
Info* pInfo;
}
%type <number> NUMBER
%type <stringVal> WORD
%type <pCondDef> condition
%type <pVecCondDef> condition_star
%type <pVecCondDef> condition_def
%type <pTaskPred> task_predicate
%type <pInfoPred> info_predicate
%type <pTask> task_combine
%type <pTask> task_definition
%type <pInfo> info_combine
%type <pInfo> info_definition
%token OPEN_PAREN
%token CLOSE_PAREN
%token DOMAIN_TOK
%token AT_TOK
%token SORT_TOK
%token COLOR_TOK
%token SIZE_TOK
%token TYPE_TOK
%token INSIDE_TOK
%token HOLD_TOK
%token PLATE_TOK
%token CLOSED_TOK
%token OPENED_TOK
%token NUMBER
%token WORD
%token INS_TOK
%token TASK_TOK
%token COND_TOK
%token CONS_NOT_TOK
%token CONS_NOTNOT_TOK
%token INFO_TOK
%token ON_TOK
%token NEAR_TOK
%%
start:
domain_definition
|
ins_definition
;
domain_definition:
OPEN_PAREN DOMAIN_TOK env_definition CLOSE_PAREN
;
env_definition:
state_definition env_definition
|
state_definition
;
state_definition:
OPEN_PAREN AT_TOK NUMBER NUMBER CLOSE_PAREN {
map<unsigned, Object>::iterator it = objects.find($3);
if (it == objects.end()) {
objects[$3] = Object($3);
}
objects[$3].loc = $4;
}
|
OPEN_PAREN PLATE_TOK NUMBER CLOSE_PAREN {
plate = $3;
}
|
OPEN_PAREN HOLD_TOK NUMBER CLOSE_PAREN {
hold = $3;
}
|
OPEN_PAREN SORT_TOK NUMBER WORD CLOSE_PAREN {
map<unsigned, Object>::iterator it = objects.find($3);
if (it == objects.end()) {
objects[$3] = Object($3);
}
objects[$3].sort = SortStrToEnum($4);
}
|
OPEN_PAREN COLOR_TOK NUMBER WORD CLOSE_PAREN {
map<unsigned, Object>::iterator it = objects.find($3);
if (it == objects.end()) {
objects[$3] = Object($3);
}
objects[$3].color = ColorStrToEnum($4);
}
|
OPEN_PAREN SIZE_TOK NUMBER WORD CLOSE_PAREN {
map<unsigned, Object>::iterator it = objects.find($3);
if (it == objects.end()) {
objects[$3] = Object($3);
}
objects[$3].size = SizeStrToEnum($4);
}
|
OPEN_PAREN TYPE_TOK NUMBER WORD CLOSE_PAREN {
map<unsigned, Object>::iterator it = objects.find($3);
if (it == objects.end()) {
objects[$3] = Object($3);
}
objects[$3].isContainer = true;
}
|
OPEN_PAREN CLOSED_TOK NUMBER CLOSE_PAREN {
map<unsigned, Object>::iterator it = objects.find($3);
if (it == objects.end()) {
objects[$3] = Object($3);
}
objects[$3].door = DOOR_CLOSED;
}
|
OPEN_PAREN OPENED_TOK NUMBER CLOSE_PAREN {
map<unsigned, Object>::iterator it = objects.find($3);
if (it == objects.end()) {
objects[$3] = Object($3);
}
objects[$3].door = DOOR_OPENED;
}
|
OPEN_PAREN INSIDE_TOK NUMBER NUMBER CLOSE_PAREN {
map<unsigned, Object>::iterator it = objects.find($3);
if (it == objects.end()) {
objects[$3] = Object($3);
}
objects[$3].inside = $4;
}
;
ins_definition:
OPEN_PAREN INS_TOK ins_body_star CLOSE_PAREN
;
ins_body_star:
/* empty */
ins_body ins_body_star
|
ins_body
;
ins_body:
info_definition {
infos.push_back(*$1);
delete $1;
}
|
task_definition {
tasks.push_back(*$1);
delete $1;
}
|
cons_not_definition
|
cons_notnot_definition
;
info_definition:
OPEN_PAREN INFO_TOK info_combine CLOSE_PAREN {
$$ = $3;
}
;
info_predicate:
OPEN_PAREN ON_TOK WORD WORD CLOSE_PAREN {
$$ = new InfoPred();
$$->type = I_ON;
$$->param1 = $3;
$$->param2 = $4;
}
|
OPEN_PAREN PLATE_TOK WORD CLOSE_PAREN {
$$ = new InfoPred();
$$->type = I_PLATE;
$$->param1 = $3;
}
|
OPEN_PAREN NEAR_TOK WORD WORD CLOSE_PAREN {
$$ = new InfoPred();
$$->type = I_NEAR;
$$->param1 = $3;
$$->param2 = $4;
}
|
OPEN_PAREN INSIDE_TOK WORD WORD CLOSE_PAREN {
$$ = new InfoPred();
$$->type = I_INSIDE;
$$->param1 = $3;
$$->param2 = $4;
}
|
OPEN_PAREN OPENED_TOK WORD CLOSE_PAREN {
$$ = new InfoPred();
$$->type = I_OPENED;
$$->param1 = $3;
}
|
OPEN_PAREN CLOSED_TOK WORD CLOSE_PAREN {
$$ = new InfoPred();
$$->type = I_CLOSED;
$$->param1 = $3;
}
;
task_definition:
OPEN_PAREN TASK_TOK task_combine CLOSE_PAREN {
$$ = $3;
}
;
task_predicate:
OPEN_PAREN WORD WORD CLOSE_PAREN {
cout << $2 << endl;
$$ = new TaskPred();
$$->type = TaskStrToEnum($2);
$$->param1 = $3;
}
|
OPEN_PAREN WORD WORD WORD CLOSE_PAREN {
cout << $2 << endl;
$$ = new TaskPred();
$$->type = TaskStrToEnum($2);
$$->param1 = $3;
$$->param2 = $4;
}
;
task_combine:
task_predicate condition_def {
$$ = new Task();
$$->type = $1->type;
for (size_t i = 0; i < $2->size(); ++i) {
CondDef cond = (*$2)[i];
if (cond.var == $1->param1) {
if (cond.pred == "sort") {
$$->arg1.sort = SortStrToEnum(cond.param.c_str());
} else if (cond.pred == "color") {
$$->arg1.color = ColorStrToEnum(cond.param.c_str());
} else {
$$->arg1.isContainer = true;
}
}
else {
if (cond.pred == "sort") {
$$->arg2.sort = SortStrToEnum(cond.param.c_str());
} else if (cond.pred == "color") {
$$->arg2.color = ColorStrToEnum(cond.param.c_str());
} else {
$$->arg2.isContainer = true;
}
}
}
delete $1;
delete $2;
}
;
info_combine:
info_predicate condition_def {
$$ = new Info();
$$->type = $1->type;
for (size_t i = 0; i < $2->size(); ++i) {
CondDef cond = (*$2)[i];
if (cond.var == $1->param1) {
if (cond.pred == "sort") {
$$->arg1.sort = SortStrToEnum(cond.param.c_str());
} else if (cond.pred == "color") {
$$->arg1.color = ColorStrToEnum(cond.param.c_str());
} else {
$$->arg1.isContainer = true;
}
}
else {
if (cond.pred == "sort") {
$$->arg2.sort = SortStrToEnum(cond.param.c_str());
} else if (cond.pred == "color") {
$$->arg2.color = ColorStrToEnum(cond.param.c_str());
} else {
$$->arg2.isContainer = true;
}
}
}
delete $1;
delete $2;
}
;
cons_not_definition:
OPEN_PAREN CONS_NOT_TOK task_definition CLOSE_PAREN {
ConsTask cons;
cons.type = CONS_NOT;
cons.task = *$3;
consTasks.push_back(cons);
delete $3;
}
|
OPEN_PAREN CONS_NOT_TOK info_definition CLOSE_PAREN {
ConsInfo cons;
cons.type = CONS_NOT;
cons.info = *$3;
consInfos.push_back(cons);
delete $3;
}
;
cons_notnot_definition:
OPEN_PAREN CONS_NOTNOT_TOK task_definition CLOSE_PAREN {
ConsTask cons;
cons.type = CONS_NOTNOT;
cons.task = *$3;
consTasks.push_back(cons);
delete $3;
}
|
OPEN_PAREN CONS_NOTNOT_TOK info_definition CLOSE_PAREN {
cout << " cons not not " << endl;
ConsInfo cons;
cons.type = CONS_NOTNOT;
cons.info = *$3;
consInfos.push_back(cons);
delete $3;
}
;
condition_def:
OPEN_PAREN COND_TOK condition_star CLOSE_PAREN {
$$ = $3;
}
;
condition_star:
condition condition_star {
$2->push_back(*$1);
$$ = $2;
delete $1;
}
|
condition {
$$ = new vector<CondDef>(1, *$1);
delete $1;
}
;
condition:
OPEN_PAREN SORT_TOK WORD WORD CLOSE_PAREN {
$$ = new CondDef();
$$->pred = "sort";
$$->var = $3;
$$->param = $4;
}
|
OPEN_PAREN COLOR_TOK WORD WORD CLOSE_PAREN {
$$ = new CondDef();
$$->pred = "color";
$$->var = $3;
$$->param = $4;
}
|
OPEN_PAREN TYPE_TOK WORD WORD CLOSE_PAREN {
$$ = new CondDef();
$$->pred = "type";
$$->var = $3;
$$->param = $4;
}
;
/********** For Nature Language ***************/
/*
nl_task:
nl_sentence nl_task
|
nl_sentence
;
nl_sentence:
GIVE_TOK ME_TOK object_def
|
GIVE_TOK object_def TO_TOK ME_TOK
|
PUT_TOK object_def puton_prep object_def
|
PUT_TOK object_def DOWN_TOK
|
PUT_TOK DOWN_TOK object_def
|
PUT_TOK object_def IN_TOK object_def
|
GOTO_TOK object_def
|
PICKUP_TOK object_def
|
TAKEOUT_TOK object_def FROM_TOK object_def
;
puton_prep:
ON_TOK
|
NEAR_TOK
|
NEXT_TOK TO_TOK
|
DOWN_TOK TO_TOK
;
*/
%%
#include "lex_env.cpp"
static void clear_var() {
objects.clear();
tasks.clear();
infos.clear();
consTasks.clear();
consInfos.clear();
plate = 0;
hold = 0;
}
void parse_env(const char* str, Domain& domain) {
clear_var();
env_scan_string(str);
yyparse();
domain.SetEnv(objects, plate, hold);
}
void parse_task(const char* str, Domain& domain) {
clear_var();
env_scan_string(str);
yyparse();
cout << tasks.size() << endl;
cout << infos.size() << endl;
cout << consTasks.size() << endl;
cout << consInfos.size() << endl;
domain.SetTask(tasks);
domain.SetInfo(infos, consTasks, consInfos);
}