forked from DeflatedPickle/GodDrinksJava
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThing.java
222 lines (150 loc) · 3.78 KB
/
Thing.java
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
package goddrinksjava;
import java.util.ArrayList;
import java.util.List;
public class Thing implements Circle, PointSet, SineWave, Sequence, Fruit, TabbyCat {
public String myName;
private Memory memory;
private List<String> senseList;
public Thing() {
memory = new Memory();
senseList = new ArrayList<>();
}
public void addAttribute(Attribute attribute) {
}
// Not sure what to return
public Integer getXPosition() {
return 0;
}
// Not sure what to return
public Integer toLimit() {
return 0;
}
public void toggleCurrent() {
}
public Integer getNumSimulationsAvailable() {
return 0;
}
public Integer getNumSimulationsNeeded() {
return 0;
}
public void setProof(Object proof) {
}
// Not sure what to return
public Object toProof() {
return "";
}
public void lookFor(Thing thing, World world) {
if (world.thingList.contains(thing)) {
System.out.println(String.format("Found %s", thing.myName));
}
else {
System.out.println(String.format("Could not find %s", thing.myName));
}
}
// Not sure what to return
public Memory getMemory() {
return memory;
}
public void escape(String... things) {
}
/* ----- Circle ----- */
// Not sure what to return
@Override
public Circumference getCircumference() {
return new Circumference();
}
@Override
public void resetCircumference() {
}
/* ----- PointSet ----- */
// Not sure what to return
@Override
public Dimension getDimensions() {
return new Dimension();
}
@Override
public void resetDimentions() {
}
/* ----- SineWave ----- */
@Override
public Tangent getTangent(Integer source) {
return new Tangent();
}
/* ----- Sequence ----- */
@Override
public void setLimit(Integer limit) {
}
/* ----- Fruit ----- */
// Not sure what to return
@Override
public Nutrients getNutrients() {
return new Nutrients();
}
@Override
public void resetNutrients() {
}
// Not sure what to return
@Override
public Nutrients getAntioxidants() {
return new Nutrients();
}
@Override
public void resetAntioxidants() {
}
/* ----- TabbyCat ----- */
@Override
public void purr() {
System.out.println("Purr");
}
/* ----- Lovable ----- */
public void addAction(String name, Object o) {
}
public void canSee(Boolean value) {
}
public void addFeeling(String feeling) {
}
public void setSatisfaction(Integer level) {
}
public Integer toSatisfaction() {
return 0;
}
public Integer getFeelingIndex(String feeling) {
return 0;
}
public void requestExecution(World world) {
}
public void toggleGender() {
}
public void toggleRoleBDSM() {
}
/**
* Checks if a sense is in the sense list.
*
* @param sense The sense to find.
* @return true if sense is in the list, else false.
*/
public Boolean getSenseIndex(String sense) {
return senseList.contains(sense);
}
public void removeFeeling(String feeling) {
}
public void setOpinion(Object of, Boolean b) {
}
public Integer getOpinionIndex(String s) {
return 0;
}
public void setExecution(Object thing) {
}
// Not sure what to return
public Object toExecution() {
return "";
}
public void learnTopic(String topic) {
}
public void takeExamTopic(String topic) {
}
// Not sure what to return
public Object getAlgebraicExpression(String s) {
return "";
}
}