-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProvince.java
564 lines (514 loc) · 18.5 KB
/
Province.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
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
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
import java.awt.Color;
/**
* Write a description of class Province here.
*
* @author GruenerWal, Felix Stupp
* @version 1.1.0
*/
public class Province extends Actor
{
@Override public GeneralMap getWorld() {
return (GeneralMap) super.getWorld();
}
private int stars = 1;
private int provinceID;
private String displayName;
private int owner = 0;
private boolean[] nextProvinces;
private int continentID;
private int xPos;
private int yPos;
private int eCount;
public int textSize;
private GreenfootImage province;
private boolean clicked = false;
/**
* Überprüft, ob die Provinz angeklickt wurde.
*/
public void act()
{
if(Greenfoot.mouseClicked(this)) {
clicked = true;
}
}
// Haupt-Konstruktor
public Province(int pID, int cID, int x, int y, int st, String s1, int[] ia1)
{
provinceID = pID;
continentID = cID;
xPos = x;
yPos = y;
if(st > 0) {
stars = st;
}
displayName = s1;
// Der Teil, der sich um die Konvertierung des int-Array in ein boolean-Array k�mmert.
int maxNum = 0;
for(int i = 0; i < ia1.length; i++) {
if(maxNum < ia1[i]) {
maxNum = ia1[i];
}
}
nextProvinces = new boolean[maxNum+1];
for(int i = 0; i < ia1.length; i++) {
if(ia1[i] >= 0) {
nextProvinces[ia1[i]] = true;
}
}
}
// Zweiter Konstruktor, um auch das boolean-Array gegebenenfalls verwenden zu k�nnnen.
public Province(int pID, int cID, int x, int y, int st, String s1, boolean[] ba1)
{
provinceID = pID;
continentID = cID;
xPos = x;
yPos = y;
if(st > 0) {
stars = st;
}
displayName = s1;
nextProvinces = Utils.copyArray(ba1);
}
// Liefert die X-Position als Integer
public int getXPos()
{
return xPos;
}
// Liefert die Y-Position als Integer
public int getYPos()
{
return yPos;
}
// Liefert die Provinz-ID als Integer
public int getID()
{
return provinceID;
}
// Liefert die Kontinent-ID als Integer
public int getContinentID()
{
return continentID;
}
// Fragt ab, ob die angegebene Provinz in der N�he von dieser liegt.
public boolean isProvinceNear(int i) {
if(i >= nextProvinces.length) {
return false;
}
return nextProvinces[i];
}
// Liefert den Anzeigenamen als String
public String getDisplayName()
{
return displayName;
}
// Liefert die Sterne als Integer
public int getStars()
{
return stars;
}
// Liefert den Owner als String
public int getOwner()
{
return owner;
}
// Setzt den Owner, ben�tigt String
public void setOwner(int o)
{
if(o < -1) {
o = -1;
}
owner = o;
}
public int getEntityCount() {
return eCount;
}
private void checkEntityCount() {
if(eCount < 0) {
eCount = 0;
}
}
public int addToEntities(int a) {
eCount = eCount + a;
checkEntityCount();
redrawProvince(1);
return eCount;
}
public int removeFromEntities(int a) {
eCount = eCount - a;
checkEntityCount();
redrawProvince(1);
return eCount;
}
public int setEntityCount(int a) {
eCount = a;
checkEntityCount();
redrawProvince(1);
return eCount;
}
public void redrawProvince()
{
redrawProvince(1);
}
public void redrawProvince(int ColorInt)
{
textSize = 20;
GreenfootImage provinceName = new GreenfootImage(displayName,textSize,new Color(0,0,0),new Color(1.0f,1.0f,1.0f,0.5f));
int eCountTanks = eCount / 5;
GreenfootImage LenghtCalculate = new GreenfootImage((eCount / 5) + "x",textSize, new Color(0,0,0), new Color(0,0,0));
int lenght = LenghtCalculate.getWidth() + (textSize *3);
if(lenght < provinceName.getWidth())
{
province = new GreenfootImage(provinceName.getWidth(),2*textSize);
}
else
{
province = new GreenfootImage(lenght,2*textSize);
}
if(ColorInt ==1)
{
province.drawImage(provinceName,0,0);
setImage(province);
oDecide(province,textSize,owner,eCount);
}
if(ColorInt ==2)
{
provinceName = new GreenfootImage(displayName,textSize,new Color(0,0,0),Color.GREEN);
province.drawImage(provinceName,0,0);
setImage(province);
oDecide(province,textSize,owner,eCount);
}
if(ColorInt == 3)
{
provinceName = new GreenfootImage(displayName,textSize,new Color(0,0,0),Color.RED);
province.drawImage(provinceName,0,0);
setImage(province);
oDecide(province,textSize,owner,eCount);
}
}
/**
* Weist dem Owner der Provinz sein entsprechendes Color-Tag zu.
*/
public void oDecide(GreenfootImage province,int textSize, int owner, int eCount)
{
String ownerString;
if(getWorld().getPlayerColor(owner) == 0)
{
ownerString = "schwarz";
eCalculate(province,ownerString,textSize);
}
else
{
switch(getWorld().getPlayerColor(owner))
{
case 1:
ownerString = "schwarz";
eCalculate(province,ownerString,textSize);
break;
case 2:
ownerString = "blau";
eCalculate(province,ownerString,textSize);
break;
case 3:
ownerString = "gruen";
eCalculate(province,ownerString,textSize);
break;
case 4:
ownerString = "rot";
eCalculate(province,ownerString,textSize);
break;
case 5:
ownerString = "gelb";
eCalculate(province,ownerString,textSize);
break;
case 6:
ownerString = "lila";
eCalculate(province,ownerString,textSize);
break;
}
}
}
private void eCalculate(GreenfootImage province, String ownerString,int textSize)
{
int eCountTanks = eCount / 5;
int eCountHorse = (eCount - (eCountTanks * 5))/3;
int eCountInf = eCount - (eCountTanks * 5) - (eCountHorse * 3);
if(eCountTanks >= 1 && eCountInf == 0 && eCountHorse == 0)
{
OnlyTanks(province,eCountTanks,ownerString,textSize);
}
if(eCountTanks == 0 && eCountInf == 0 && eCountHorse != 0)
{
OnlyHorses(province,eCountHorse,ownerString,textSize);
}
if(eCountTanks == 0 && eCountInf != 0 && eCountHorse == 0)
{
OnlyInf(province,eCountInf,ownerString,textSize);
}
if(eCountTanks == 0 && eCountInf != 0 && eCountHorse != 0)
{
NoTanks(province,eCountInf,eCountHorse, ownerString, textSize);
}
if(eCountTanks != 0 && eCountInf != 0 && eCountHorse == 0)
{
NoHorse(province,eCountInf,eCountTanks, ownerString, textSize);
}
if(eCountTanks != 0 && eCountInf == 0 && eCountHorse != 0)
{
NoInf(province,eCountInf,eCountTanks, ownerString, textSize);
}
if(eCountTanks == 0 && eCountInf == 0 && eCountHorse == 0)
{
NoEntity(province, ownerString, textSize);
}
if(eCountTanks != 0 && eCountInf != 0 && eCountHorse != 0)
{
AllEntity(province, ownerString,eCountTanks, eCountHorse, eCountInf, textSize);
}
}
private void NoEntity(GreenfootImage province, String ownerString, int textSize)
{
}
private void OnlyTanks(GreenfootImage province,int eCountTanks, String ownerString, int textSize)
{
GreenfootImage tank = new GreenfootImage("images\\dickebertaskal-" + ownerString + ".png");
tank.scale(textSize,textSize);
if(eCountTanks <= 3)
{
if(eCountTanks == 1)
{
province.drawImage(tank,0,textSize);
}
if(eCountTanks == 2)
{
province.drawImage(tank,0,textSize);
province.drawImage(tank,textSize,textSize);
}
if(eCountTanks == 3)
{
province.drawImage(tank,0,textSize);
province.drawImage(tank,textSize,textSize);
province.drawImage(tank,textSize*2,textSize);
}
}
else
{
GreenfootImage eCountTanksImage = new GreenfootImage(Integer.toString(eCountTanks) + "x",textSize,Color.BLACK,new Color(1.0f,1.0f,1.0f,0.5f));
province.drawImage(eCountTanksImage,0,textSize);
province.drawImage(tank,eCountTanksImage.getWidth(),textSize);
}
setImage(province);
}
private void OnlyHorses(GreenfootImage province,int eCountHorse, String ownerString, int textSize)
{
GreenfootImage horse = new GreenfootImage("images\\pferdreiterskal-" + ownerString + ".png");
horse.scale(textSize,textSize);
province.drawImage(horse,0,textSize);
setImage(province);
}
private void OnlyInf(GreenfootImage province,int eCountInf, String ownerString, int textSize)
{
GreenfootImage Inf = new GreenfootImage("images\\infanterieskal-" + ownerString + ".png");
Inf.scale(textSize,textSize);
if(eCountInf == 1)
{
province.drawImage(Inf,0,textSize);
}
if(eCountInf == 2)
{
province.drawImage(Inf,0,textSize);
province.drawImage(Inf,textSize,textSize);
}
setImage(province);
}
private void NoTanks(GreenfootImage province,int eCountInf,int eCountHorse, String ownerString, int textSize)
{
GreenfootImage Inf = new GreenfootImage("images\\infanterieskal-" + ownerString + ".png");
Inf.scale(textSize,textSize);
GreenfootImage horse = new GreenfootImage("images\\pferdreiterskal-" + ownerString + ".png");
horse.scale(textSize,textSize);
province.drawImage(horse,0,textSize);
setImage(province);
if(eCountInf == 1)
{
province.drawImage(Inf,textSize,textSize);
}
if(eCountInf == 2)
{
province.drawImage(Inf,textSize,textSize);
province.drawImage(Inf,2*textSize,textSize);
}
setImage(province);
}
private void NoHorse(GreenfootImage province,int eCountInf,int eCountTanks, String ownerString, int textSize)
{
GreenfootImage Inf = new GreenfootImage("images\\infanterieskal-" + ownerString + ".png");
Inf.scale(textSize,textSize);
GreenfootImage tank = new GreenfootImage("images\\dickebertaskal-" + ownerString + ".png");
tank.scale(textSize,textSize);
if(eCountTanks <= 3)
{
if(eCountTanks == 1)
{
province.drawImage(tank,0,textSize);
}
if(eCountTanks == 2)
{
province.drawImage(tank,0,textSize);
province.drawImage(tank,textSize,textSize);
}
if(eCountTanks == 3)
{
province.drawImage(tank,0,textSize);
province.drawImage(tank,textSize,textSize);
province.drawImage(tank,textSize*2,textSize);
}
}
else
{
GreenfootImage eCountTanksImage = new GreenfootImage(Integer.toString(eCountTanks) + "x",textSize,Color.BLACK,new Color(1.0f,1.0f,1.0f,0.5f));
province.drawImage(eCountTanksImage,0,textSize);
province.drawImage(tank,eCountTanksImage.getWidth(),textSize);
}
if(eCountTanks<=3)
{
if(eCountInf == 1)
{
province.drawImage(Inf,eCountTanks * textSize,textSize);
}
if(eCountInf == 2)
{
province.drawImage(Inf,eCountTanks * textSize,textSize);
province.drawImage(Inf,eCountTanks * 2 *textSize,textSize);
}
}
if(eCountTanks>3)
{
if(eCountInf == 1)
{
GreenfootImage eCountTanksImage = new GreenfootImage(Integer.toString(eCountTanks) + "x",textSize,Color.BLACK,new Color(1.0f,1.0f,1.0f,0.5f));
province.drawImage(Inf,eCountTanksImage.getWidth() + textSize,textSize);
}
if(eCountInf == 2)
{
GreenfootImage eCountTanksImage = new GreenfootImage(Integer.toString(eCountTanks) + "x",textSize,Color.BLACK,new Color(1.0f,1.0f,1.0f,0.5f));
province.drawImage(Inf,eCountTanksImage.getWidth() + textSize,textSize);
province.drawImage(Inf,eCountTanksImage.getWidth() + (2 *textSize),textSize);
}
}
setImage(province);
}
private void NoInf(GreenfootImage province,int eCountHorse,int eCountTanks, String ownerString, int textSize)
{
GreenfootImage tank = new GreenfootImage("images\\dickebertaskal-" + ownerString + ".png");
tank.scale(textSize,textSize);
GreenfootImage horse = new GreenfootImage("images\\pferdreiterskal-" + ownerString + ".png");
horse.scale(textSize,textSize);
if(eCountTanks <= 3)
{
if(eCountTanks == 1)
{
province.drawImage(tank,0,textSize);
}
if(eCountTanks == 2)
{
province.drawImage(tank,0,textSize);
province.drawImage(tank,textSize,textSize);
}
if(eCountTanks == 3)
{
province.drawImage(tank,0,textSize);
province.drawImage(tank,textSize,textSize);
province.drawImage(tank,textSize*2,textSize);
}
}
else
{
GreenfootImage eCountTanksImage = new GreenfootImage(Integer.toString(eCountTanks) + "x",textSize,Color.BLACK,new Color(1.0f,1.0f,1.0f,0.5f));
province.drawImage(eCountTanksImage,0,textSize);
province.drawImage(tank,eCountTanksImage.getWidth(),textSize);
}
if(eCountTanks<=3)
{
province.drawImage(horse,eCountTanks * textSize,textSize);
setImage(province);
}
if(eCountTanks>3)
{
GreenfootImage eCountTanksImage = new GreenfootImage(Integer.toString(eCountTanks) + "x",textSize,Color.BLACK,new Color(1.0f,1.0f,1.0f,0.5f));
province.drawImage(horse,eCountTanksImage.getWidth() + textSize,textSize);
setImage(province);
}
setImage(province);
}
private void AllEntity(GreenfootImage province, String ownerString,int eCountTanks, int eCountHorse, int eCountInf,int textSize)
{
GreenfootImage tank = new GreenfootImage("images\\dickebertaskal-" + ownerString + ".png");
tank.scale(textSize,textSize);
GreenfootImage horse = new GreenfootImage("images\\pferdreiterskal-" + ownerString + ".png");
horse.scale(textSize,textSize);
GreenfootImage Inf = new GreenfootImage("images\\infanterieskal-" + ownerString + ".png");
Inf.scale(textSize,textSize);
if(eCountTanks <= 3)
{
if(eCountTanks == 1)
{
province.drawImage(tank,0,textSize);
}
if(eCountTanks == 2)
{
province.drawImage(tank,0,textSize);
province.drawImage(tank,textSize,textSize);
}
if(eCountTanks == 3)
{
province.drawImage(tank,0,textSize);
province.drawImage(tank,textSize,textSize);
province.drawImage(tank,textSize*2,textSize);
}
}
else
{
GreenfootImage eCountTanksImage = new GreenfootImage(Integer.toString(eCountTanks) + "x",textSize,Color.BLACK,new Color(1.0f,1.0f,1.0f,0.5f));
province.drawImage(eCountTanksImage,0,textSize);
province.drawImage(tank,eCountTanksImage.getWidth(),textSize);
}
if(eCountHorse == 1)
{
if(eCountTanks<=3)
{
province.drawImage(horse,eCountTanks * textSize,textSize);
if(eCountInf == 1)
{
province.drawImage(Inf,eCountTanks * textSize + textSize,textSize);
}
if(eCountInf == 2)
{
province.drawImage(Inf,eCountTanks * textSize + textSize + textSize,textSize);
}
setImage(province);
}
if(eCountTanks>3)
{
GreenfootImage eCountTanksImage = new GreenfootImage(Integer.toString(eCountTanks) + "x",textSize,Color.BLACK,new Color(1.0f,1.0f,1.0f,0.5f));
province.drawImage(horse,eCountTanksImage.getWidth() + textSize,textSize);
if(eCountInf == 1)
{
province.drawImage(Inf,eCountTanksImage.getWidth() + textSize + textSize,textSize);
}
if(eCountInf == 2)
{
province.drawImage(Inf,eCountTanksImage.getWidth() + textSize + textSize + textSize + textSize,textSize);
}
setImage(province);
}
}
setImage(province);
}
public boolean hasClicked()
{
boolean b = clicked;
clicked = false;
return b;
}
}