-
Notifications
You must be signed in to change notification settings - Fork 3
/
First_Commit__Added_Edge_Hex_Intersection.patch
359 lines (355 loc) · 9.43 KB
/
First_Commit__Added_Edge_Hex_Intersection.patch
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
Index: src/main/java/com/example/SettlersApplication.java
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- src/main/java/com/example/SettlersApplication.java (revision 0c14b6c5271b51342660c6a94a9480f244af573a)
+++ src/main/java/com/example/SettlersApplication.java (revision )
@@ -1,11 +1,13 @@
package com.example;
+import com.example.models.Hex;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class SettlersApplication {
/* Application launches here */
+
public static void main(String[] args) {
SpringApplication.run(SettlersApplication.class, args);
}
Index: src/main/java/com/example/models/HarbourKind.java
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- src/main/java/com/example/models/HarbourKind.java (revision )
+++ src/main/java/com/example/models/HarbourKind.java (revision )
@@ -0,0 +1,8 @@
+package com.example.models;
+
+/**
+ * Created by G on 17/02/27.
+ */
+public enum HarbourKind {
+ None,Generic,Wool,Lumber,Ore,Brick,Grain
+}
Index: src/main/java/com/example/models/Hex.java
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- src/main/java/com/example/models/Hex.java (revision )
+++ src/main/java/com/example/models/Hex.java (revision )
@@ -0,0 +1,23 @@
+package com.example.models;
+
+/**
+ * Created by G on 17/02/27.
+ */
+public abstract class Hex extends Geometry{
+
+ public Hex(int x,int y) {super(x,y);}
+ public abstract TerrainKind getTerrainType();
+
+ @Override
+ public Hex getHexNeighbours() {
+ return null; // NOT DONE
+ }
+ @Override
+ public Geometry getIntersectionNeighbours() {
+ return null; // NOT DONE
+ }
+ @Override
+ public Edge getEdgeNeighbours() {
+ return null; // NOT DONE
+ }
+}
Index: src/main/java/com/example/models/Edge.java
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- src/main/java/com/example/models/Edge.java (revision )
+++ src/main/java/com/example/models/Edge.java (revision )
@@ -0,0 +1,48 @@
+package com.example.models;
+
+
+/**
+ * Created by G on 17/02/27.
+ */
+public class Edge extends Geometry{
+
+ private boolean isOccupied;
+ private EdgeUnit aOccupant;
+
+ public Edge(int x, int y)
+ {
+ super(x,y);
+ isOccupied = false;
+ }
+
+ public boolean getOccupancyFlag()
+ {
+ return isOccupied;
+ }
+
+ public void setOccupant(EdgeUnit pOccupant)
+ {
+ aOccupant = pOccupant;
+ isOccupied = true;
+ }
+ public EdgeUnit removeOccupant()
+ {
+ EdgeUnit tempUnit = aOccupant;
+ aOccupant = null;
+ isOccupied = false;
+ return tempUnit;
+ }
+
+ @Override
+ public Hex getHexNeighbours() {
+ return null; // NOT DONE
+ }
+ @Override
+ public Geometry getIntersectionNeighbours() {
+ return null; // NOT DONE
+ }
+ @Override
+ public Edge getEdgeNeighbours() {
+ return null; // NOT DONE
+ }
+}
Index: src/main/java/com/example/models/LandHex.java
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- src/main/java/com/example/models/LandHex.java (revision )
+++ src/main/java/com/example/models/LandHex.java (revision )
@@ -0,0 +1,51 @@
+package com.example.models;
+
+/**
+ * Created by G on 17/02/27.
+ */
+public class LandHex extends Hex {
+
+ private TerrainKind aKind;
+ private int aProductionNumber;
+ private boolean hasMerchant;
+ private boolean hasRobber;
+
+ public LandHex(int x, int y, int pProd, TerrainKind pKind){
+ super(x,y);
+ aKind = pKind;
+ aProductionNumber = pProd;
+ hasMerchant = false;
+ hasRobber = false;
+ }
+
+ public boolean getRobberFlag(){
+ return hasRobber;
+ }
+
+ public void updateRobberFlag()
+ {
+ if(hasRobber==true)
+ hasRobber = false;
+ else
+ hasRobber = true;
+ }
+
+ public boolean getMerchantFlag(){
+ return hasMerchant;
+ }
+
+ public void updateMerchantFlag()
+ {
+ if(hasMerchant==true)
+ hasMerchant = false;
+ else
+ hasMerchant = true;
+ }
+
+ @Override
+ public TerrainKind getTerrainType() {
+ return aKind;
+ }
+
+
+}
Index: src/main/java/com/example/models/SeaHex.java
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- src/main/java/com/example/models/SeaHex.java (revision )
+++ src/main/java/com/example/models/SeaHex.java (revision )
@@ -0,0 +1,33 @@
+package com.example.models;
+
+/**
+ * Created by G on 17/02/27.
+ */
+public class SeaHex extends Hex {
+
+ private boolean hasPirate;
+
+ public SeaHex(int x, int y){
+ super(x,y);
+ hasPirate = false;
+ }
+
+ public boolean getPirateFlag(){
+ return hasPirate;
+ }
+
+ public void updatePirateFlag()
+ {
+ if(hasPirate==true)
+ hasPirate = false;
+ else
+ hasPirate = true;
+ }
+
+ @Override
+ public TerrainKind getTerrainType() {
+ return TerrainKind.Sea;
+ }
+
+
+}
Index: src/main/java/com/example/models/Intersection.java
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- src/main/java/com/example/models/Intersection.java (revision )
+++ src/main/java/com/example/models/Intersection.java (revision )
@@ -0,0 +1,47 @@
+package com.example.models;
+
+/**
+ * Created by G on 17/02/27.
+ */
+public class Intersection extends Geometry {
+
+ private HarbourKind aHarbour;
+ private IntersectionUnit aOccupant;
+ private boolean isOccupied;
+
+
+ public Intersection(int x, int y,HarbourKind pHarbour)
+ {
+ super(x,y);
+ aHarbour = pHarbour;
+ isOccupied = false;
+ }
+
+ public boolean getOccupancyFlag(){return isOccupied;}
+
+ public void setOccupant(IntersectionUnit pOccupant)
+ {
+ aOccupant = pOccupant;
+ isOccupied = true;
+ }
+ public IntersectionUnit removeOccupant()
+ {
+ IntersectionUnit tempUnit = aOccupant;
+ aOccupant = null;
+ isOccupied = false;
+ return tempUnit;
+ }
+
+ @Override
+ public Hex getHexNeighbours() {
+ return null; // NOT DONE
+ }
+ @Override
+ public Geometry getIntersectionNeighbours() {
+ return null; // NOT DONE
+ }
+ @Override
+ public Edge getEdgeNeighbours() {
+ return null; // NOT DONE
+ }
+}
Index: src/main/java/com/example/models/StealableKind.java
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- src/main/java/com/example/models/StealableKind.java (revision )
+++ src/main/java/com/example/models/StealableKind.java (revision )
@@ -0,0 +1,8 @@
+package com.example.models;
+
+/**
+ * Created by G on 17/02/27.
+ */
+public enum StealableKind {
+ Wool,Lumber,Ore,Brick,Grain,Coin,Cloth,Paper
+}
Index: src/main/java/com/example/models/Geometry.java
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- src/main/java/com/example/models/Geometry.java (revision )
+++ src/main/java/com/example/models/Geometry.java (revision )
@@ -0,0 +1,27 @@
+package com.example.models;
+
+/**
+ * Created by G on 17/02/27.
+ */
+public abstract class Geometry {
+ int aX;
+ int aY;
+ public Geometry(int x,int y){aX = x; aY = y;}
+
+ public Coordinate getCoordinates(){return new Coordinate(aX,aY);}
+
+ protected class Coordinate
+ {
+ int x;
+ int y;
+ Coordinate(int a,int b){
+ x = a;
+ y = b;
+ }
+ public int getX(){return x;}
+ public int getY(){return y;}
+ }
+ public abstract Edge getEdgeNeighbours();
+ public abstract Geometry getIntersectionNeighbours();
+ public abstract Hex getHexNeighbours();
+}
Index: src/main/java/com/example/models/TerrainKind.java
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- src/main/java/com/example/models/TerrainKind.java (revision )
+++ src/main/java/com/example/models/TerrainKind.java (revision )
@@ -0,0 +1,8 @@
+package com.example.models;
+
+/**
+ * Created by G on 17/02/27.
+ */
+public enum TerrainKind {
+ Sea,Desert,Pasture,Forest,Mountains,Hills,Fields,GoldMine,Quarry
+}
Index: src/main/java/com/example/models/User.java
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- src/main/java/com/example/models/User.java (revision 0c14b6c5271b51342660c6a94a9480f244af573a)
+++ src/main/java/com/example/models/User.java (revision )
@@ -2,4 +2,5 @@
public class User {
+
}