forked from kyordhel/GPSRCmdGen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTask.cs
135 lines (123 loc) · 4.03 KB
/
Task.cs
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
using System;
using System.Collections.Generic;
using System.Text;
namespace GPSRCmdGen
{
/// <summary>
/// Represents a task randomly generated from a grammar.
/// The task is composed by list of tokens (original strings or
/// wildcards with their replacements and metadata).
/// </summary>
public class Task
{
/// <summary>
/// Stores the list of grammar's tokens
/// </summary>
private List<Token> tokens;
/// <summary>
/// Initializes a new instance of the <see cref="GPSRCmdGen.Task"/> class.
/// </summary>
public Task (){
this.tokens = new List<Token>();
}
/// <summary>
/// Initializes a new instance of the <see cref="GPSRCmdGen.Task"/> class.
/// </summary>
/// <param name="tokens">The list of tokens to be used to build the task</param>
public Task (List<Token> tokens)
{
if(tokens == null)return;
this.tokens = new List<Token>(tokens);
}
/// <summary>
/// Gets the list of tokens that compose the task.
/// </summary>
public List<Token> Tokens
{
get { return this.tokens; }
internal set { this.tokens = value; }
}
/// <summary>
/// Returns a <see cref="System.String"/> that represents the current <see cref="GPSRCmdGen.Task"/>.
/// </summary>
/// <returns>A <see cref="System.String"/> that represents the current <see cref="GPSRCmdGen.Task"/>.</returns>
public override string ToString()
{
StringBuilder sb = new StringBuilder();
if(tokens.Count > 0)
sb.Append(tokens[0].Name);
for (int i = 1; i < tokens.Count; ++i)
{
sb.Append(tokens[i].Name);
}
return sb.ToString();
}
/*
*
Go to the bedroom, find a person and tell the time.
Navigate to the kitchen, find a person and follow her.
Attend to the dinner-table, grasp the crackers, and take them to the side-table.
Go to the shelf, count the drinks and report to me.
Take this object and bring it to Susan at the hall.
Bring a coke to the person in the living room and answer him a question.
Offer a drink to the person at the door (robot needs to solve which drink will be delivered).
*/
/// answering,
/// counting,
/// finding,
/// following,
/// grasping,
/// handling,
/// navigating,
/// opening,
/// pouring,
/// retrieving,
/// saying
/*
*********************************************************
* Count
*********************************************************
* Count the (ObjectCategory|AlikeObjects) at the (PlacementLocation)...
* Count the (People|PeopleByGender|PeopleByGesture) at the (Room)...
* ...and report to (me|Name (at|in|which is in|) the (Room).
*
* (go|navigate) to the (PlacementLocation), count the (ObjectCategory|AlikeObjects)...
* (go|navigate) to the (Room) count the (People|PeopleByGender|PeopleByGesture)...
* ...and report to (me|Name (at|in|which is in) the (Room)).
*
* Tell (me|to Name (at|in|which is in) the (Room))...
* ...how many (ObjectCategory|AlikeObjects) are in the (PlacementLocation).
* ...how many (People|PeopleByGender|PeopleByGesture) are in the (Room).
*
* Grammar:
* $count = $count1 | $count2 | $count3
*
* $count1 = count the $cntxat $report
* $cntxat = $cntoat | $cntpat
* $cntoat = $object at the $PlacementLocation
* $cntpat = $people at the $Room
*
* $count2 = $navigt $docntx $report
* $navigt = $GoVerb to the
* $docntx = $docnto | $docntp
* $docnto = $PlacementLocation, count the $object
* $docntp = $Room, count the $people
*
* $count3 = Tell $target how many $ctable
* $ctable = $objain | $pplain
* $objain = $object are in the $PlacementLocation
* $pplain = $people are in the $Room
*
* $object = objects | $ObjectCategory | $AlikeObjects
* $people = people | $PeopleByGender | $PeopleByGesture
* $report = and report to $target
* $target = me | ($Name (at | in | which is in) the $Room)
*
*
*
*********************************************************
*
*********************************************************
*/
}
}