-
Notifications
You must be signed in to change notification settings - Fork 2
/
Trainer.java
501 lines (461 loc) · 13.4 KB
/
Trainer.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
/*Anthony Balmer and Cameron Crockrom
*
*fields: int num for poke, array of poke, enum: PROGRAMMER, DEBUGGER,
* PRODIGY, NEWB, KEYBOARDER, NERDY_ BIKER, PROFESSOR, GYM_LEADER, boolean canUseItems
*
*Cam: ground
*Justin: dragon
*me: psyc
*Braunsen: flying
*/
import java.net.URL;
import java.awt.Point;
import java.awt.Image;
import java.awt.Toolkit;
import java.awt.Graphics;
public class Trainer extends javax.swing.JPanel
{
public int numPoke, baseLevel;
public boolean canUseItems;
public boolean important=false;
public Pokemon[] pokeArray=new Pokemon[6];
public final TrainerType type;
public final String name;
public String prebattleMSG;
public String postBattleMSG;
//0 for Male, 1 for Female
int gender=0;
public Point location=new Point(0,0);
public int direction=270;
public int viewRange=1;
final Image[] trainerStand=new Image[4];
boolean hostile=true;
public enum TrainerType
{
PROGRAMMER, DEBUGGER, HACKER, CYPHER, CODER, ELITE, BABB,
ENGINEER, BABE, PRODIGY, NEWB, KEYBOARDER, NERDY_BIKER, PROFESSOR, JAVA, GYM_LEADER,
RIVAL
}
public Trainer(TrainerType t, String nm, boolean boo)
{
type = t;
name = nm;
location = new Point(0,0);
important=true;
makeTrainer();
}
public Trainer(TrainerType t, String nm, Pokemon.Species[] spec, int baseLvl)
{
type = t;
name = nm;
location = new Point(0,0);
baseLevel=baseLvl;
makeTrainer();
}
public Trainer(TrainerType t, String tName, Pokemon.Species s1, int baseLvl)
{
type=t;
name=tName;
baseLevel=baseLvl;
makeTrainer();
pokeArray[0]=new Pokemon(s1,pickLvl());
pokeArray[1]=null;
pokeArray[2]=null;
pokeArray[3]=null;
pokeArray[4]=null;
pokeArray[5]=null;
}
public Trainer(TrainerType t, String tName, Pokemon.Species s1, Pokemon.Species s2, int baseLvl)
{
type=t;
name=tName;
baseLevel=baseLvl;
makeTrainer();
pokeArray[0]=new Pokemon(s1,pickLvl());
pokeArray[1]=new Pokemon(s2,pickLvl());
pokeArray[2]=null;
pokeArray[3]=null;
pokeArray[4]=null;
pokeArray[5]=null;
}
public Trainer(TrainerType t, String tName, Pokemon.Species s1, Pokemon.Species s2,
Pokemon.Species s3, int baseLvl)
{
type=t;
name=tName;
baseLevel=baseLvl;
makeTrainer();
pokeArray[0]=new Pokemon(s1,pickLvl());
pokeArray[1]=new Pokemon(s2,pickLvl());
pokeArray[2]=new Pokemon(s3,pickLvl());
pokeArray[3]=null;
pokeArray[4]=null;
pokeArray[5]=null;
}
public Trainer(TrainerType t, String tName, Pokemon.Species s1, Pokemon.Species s2,
Pokemon.Species s3, Pokemon.Species s4, int baseLvl)
{
type=t;
name=tName;
baseLevel=baseLvl;
makeTrainer();
pokeArray[0]=new Pokemon(s1,pickLvl());
pokeArray[1]=new Pokemon(s2,pickLvl());
pokeArray[2]=new Pokemon(s3,pickLvl());
pokeArray[3]=new Pokemon(s4,pickLvl());
pokeArray[4]=null;
pokeArray[5]=null;
}
public Trainer(TrainerType t, String tName, Pokemon.Species s1, Pokemon.Species s2,
Pokemon.Species s3, Pokemon.Species s4, Pokemon.Species s5, int baseLvl)
{
type=t;
name=tName;
baseLevel=baseLvl;
makeTrainer();
pokeArray[0]=new Pokemon(s1,pickLvl());
pokeArray[1]=new Pokemon(s2,pickLvl());
pokeArray[2]=new Pokemon(s3,pickLvl());
pokeArray[3]=new Pokemon(s4,pickLvl());
pokeArray[4]=new Pokemon(s5,pickLvl());
pokeArray[5]=null;
}
public Trainer(TrainerType t, String tName, Pokemon.Species s1, Pokemon.Species s2,
Pokemon.Species s3, Pokemon.Species s4, Pokemon.Species s5, Pokemon.Species s6, int baseLvl)
{
type=t;
name=tName;
baseLevel=baseLvl;
makeTrainer();
pokeArray[0]=new Pokemon(s1,pickLvl());
pokeArray[1]=new Pokemon(s2,pickLvl());
pokeArray[2]=new Pokemon(s3,pickLvl());
pokeArray[3]=new Pokemon(s4,pickLvl());
pokeArray[4]=new Pokemon(s5,pickLvl());
pokeArray[5]=new Pokemon(s6,pickLvl());
if(type==TrainerType.ELITE||type==TrainerType.BABB||name.equalsIgnoreCase("Battle Tower"))
{
for(int i=0; i<6; i++)
{
if(pokeArray[i]!=null)
{
pokeArray[i].setMaxStats();
}
}
}
}
private void makeTrainer()
{
switch(type)
{
case PROGRAMMER:
numPoke = 3;
canUseItems = false;
prebattleMSG = "Let's test out my Battle Algorithm!";
postBattleMSG = "Looks like I've got a Bug...";
for(int i=0; i<4; i++)
{
URL url=Trainer.class.getResource("Sprites/OverworldNPCs/blackhair"+i+".png");
trainerStand[i]=Toolkit.getDefaultToolkit().getImage(url);
}
break;
case DEBUGGER:
numPoke = 3;
canUseItems = false;
prebattleMSG = "Do you like Bugs?";
postBattleMSG = "I hate bugs.";
for(int i=0; i<4; i++)
{
URL url=Trainer.class.getResource("Sprites/OverworldNPCs/male"+i+".png");
trainerStand[i]=Toolkit.getDefaultToolkit().getImage(url);
}
break;
case PRODIGY:
numPoke = 2;
canUseItems = false;
prebattleMSG = "I'm younger than you, but I'll still win!";
postBattleMSG = "I'm going to tell my mom!";
for(int i=0; i<4; i++)
{
URL url=Trainer.class.getResource("Sprites/OverworldNPCs/male"+i+".png");
trainerStand[i]=Toolkit.getDefaultToolkit().getImage(url);
}
break;
case JAVA:
numPoke = 2;
canUseItems = false;
prebattleMSG = "This island belongs to Team Java!";
postBattleMSG = "You filthy little brat!";
for(int i=0; i<4; i++)
{
URL url=Trainer.class.getResource("Sprites/OverworldNPCs/java"+i+".png");
trainerStand[i]=Toolkit.getDefaultToolkit().getImage(url);
}
break;
case NEWB:
numPoke = 1;
canUseItems = false;
prebattleMSG = "Go easy on me, I'm new at this.";
postBattleMSG = "Guess I'd better find a new hobby.";
for(int i=0; i<4; i++)
{
URL url=Trainer.class.getResource("Sprites/OverworldNPCs/male"+i+".png");
trainerStand[i]=Toolkit.getDefaultToolkit().getImage(url);
}
break;
case KEYBOARDER:
numPoke = 4;
canUseItems = false;
prebattleMSG = "My typing skills are great with Pokemon too!";
postBattleMSG = "60 words a minute doesn't help me here.";
for(int i=0; i<4; i++)
{
URL url=Trainer.class.getResource("Sprites/OverworldNPCs/blackhair"+i+".png");
trainerStand[i]=Toolkit.getDefaultToolkit().getImage(url);
}
break;
case NERDY_BIKER:
numPoke = 3;
canUseItems = false;
prebattleMSG = "Bicycling is both fun and exercise!";
postBattleMSG = "Walking is lame! Bicycling is in style!";
for(int i=0; i<4; i++)
{
URL url=Trainer.class.getResource("Sprites/OverworldNPCs/biker"+i+".png");
trainerStand[i]=Toolkit.getDefaultToolkit().getImage(url);
}
break;
case PROFESSOR:
numPoke = 5;
canUseItems = false;
prebattleMSG = "I've studied Pokemon all of my life.";
postBattleMSG = "Looks like you have studied more.";
for(int i=0; i<4; i++)
{
URL url=Trainer.class.getResource("Sprites/OverworldNPCs/prof"+i+".png");
trainerStand[i]=Toolkit.getDefaultToolkit().getImage(url);
}
break;
case GYM_LEADER:
numPoke = 6;
canUseItems = true;
prebattleMSG = "";
postBattleMSG = "";
setSpecificTrainerImages();
break;
case CYPHER:
numPoke = 3;
canUseItems = false;
prebattleMSG = "Girls like Pokemon too, ya know.";
postBattleMSG = "Time to go back to the kitchen...";
gender=1;
for(int i=0; i<4; i++)
{
URL url=Trainer.class.getResource("Sprites/OverworldNPCs/female"+i+".png");
trainerStand[i]=Toolkit.getDefaultToolkit().getImage(url);
}
break;
case BABE:
numPoke = 3;
canUseItems = false;
prebattleMSG = "This island atmosphere is perfect for a battle!";
postBattleMSG = "You only beat me because the sun was in my eyes.";
gender=1;
for(int i=0; i<4; i++)
{
URL url=Trainer.class.getResource("Sprites/OverworldNPCs/female"+i+".png");
trainerStand[i]=Toolkit.getDefaultToolkit().getImage(url);
}
break;
case HACKER:
numPoke = 3;
canUseItems = false;
prebattleMSG = "I'm going to hack your systems!";
postBattleMSG = "Firewalled!!!";
for(int i=0; i<4; i++)
{
URL url=Trainer.class.getResource("Sprites/OverworldNPCs/blackhair"+i+".png");
trainerStand[i]=Toolkit.getDefaultToolkit().getImage(url);
}
break;
case CODER:
numPoke = 2;
canUseItems = false;
prebattleMSG = "Joe hired me to work on the island!";
postBattleMSG = "I don't get paid enough to lose.";
for(int i=0; i<4; i++)
{
URL url=Trainer.class.getResource("Sprites/OverworldNPCs/blackhair"+i+".png");
trainerStand[i]=Toolkit.getDefaultToolkit().getImage(url);
}
break;
case ENGINEER:
numPoke = 3;
canUseItems = false;
prebattleMSG = "My innovation will help me prevail!";
postBattleMSG = "I've got to engineer a new way to battle you!";
for(int i=0; i<4; i++)
{
URL url=Trainer.class.getResource("Sprites/OverworldNPCs/male"+i+".png");
trainerStand[i]=Toolkit.getDefaultToolkit().getImage(url);
}
break;
case RIVAL:
numPoke = 6;
canUseItems = false;
prebattleMSG = "";
postBattleMSG = "";
for(int i=0; i<4; i++)
{
URL url=Trainer.class.getResource("Sprites/OverworldNPCs/rival"+i+".png");
trainerStand[i]=Toolkit.getDefaultToolkit().getImage(url);
}
break;
case ELITE:
numPoke = 6;
canUseItems = true;
prebattleMSG = "";
postBattleMSG = "";
if(name.equals("Justinian"))
{
for(int i=0; i<4; i++)
{
URL url=Trainer.class.getResource("Sprites/OverworldNPCs/Justinian"+i+".png");
trainerStand[i]=Toolkit.getDefaultToolkit().getImage(url);
}
}
else
{
for(int i=0; i<4; i++)
{
URL url=Trainer.class.getResource("Sprites/OverworldNPCs/blackhair"+i+".png");
trainerStand[i]=Toolkit.getDefaultToolkit().getImage(url);
}
}
break;
case BABB:
numPoke = 6;
canUseItems = false;
prebattleMSG = "";
postBattleMSG = "";
for(int i=0; i<4; i++)
{
URL url=Trainer.class.getResource("Sprites/OverworldNPCs/Babb.png");
trainerStand[i]=Toolkit.getDefaultToolkit().getImage(url);
}
break;
}
}
//Draws Trainer to Screen
public void drawTrainer(Graphics g)
{
g.drawImage(trainerStand[direction/90],(64*6)+64*(location.x-JokemonDriver.location.x),64*4+64*(location.y-JokemonDriver.location.y),64,64,this);
}
//Returns Trainer's Pokemon
public Pokemon getPokemon(int i)
{
return pokeArray[i];
}
//Sets the Trainer's view for battle
public void setViewRange(int i)
{
viewRange=i;
}
//Sets the Trainer's location
public void setLocation(int x, int y)
{
location.x=x;
location.y=y;
}
//Sets Hostility of a Trainer
public void setHostile(boolean boo)
{
hostile=boo;
}
public String getPreMessage()
{
return prebattleMSG;
}
public void setPreMessage(String str)
{
prebattleMSG=str;
}
public String getPostMessage()
{
return postBattleMSG;
}
public void setPostMessage(String str)
{
postBattleMSG=str;
}
public String getNameAndType()
{
return ""+type+" "+name;
}
//Sets the Trainer's direction
public void setDirection(int x)
{
direction=x;
if(direction%90!=0)
direction=0;
}
//Returns a level within a specific range for Pokemon
public int pickLvl()
{
int throwAway = (int)(Math.random()*4+baseLevel-2);
if(throwAway<5)
return 5;
else if(throwAway>100)
return 100;
else
return throwAway;
}
public void makePokeArray()
{
pokeArray = new Pokemon[numPoke];
for(int i=0; i<numPoke; i++)
{
// pokeArray[i] = new Pokemon();
}
}
//Creates specific Trainer Images for Gym Leaders and such
public void setSpecificTrainerImages()
{
if(name.equals("James"))
{
for(int i=0; i<4; i++)
{
URL url=Trainer.class.getResource("Sprites/OverworldNPCs/prof"+i+".png");
trainerStand[i]=Toolkit.getDefaultToolkit().getImage(url);
}
}
else if(name.equals("Jimmy")||name.equals("Jace")||name.equals("Jin"))
{
for(int i=0; i<4; i++)
{
URL url=Trainer.class.getResource("Sprites/OverworldNPCs/blackhair"+i+".png");
trainerStand[i]=Toolkit.getDefaultToolkit().getImage(url);
}
}
else
{
for(int i=0; i<4; i++)
{
URL url=Trainer.class.getResource("Sprites/OverworldNPCs/female"+i+".png");
trainerStand[i]=Toolkit.getDefaultToolkit().getImage(url);
}
}
}
public Point move(String direction)
{
if(direction.equals("N"))
location.setLocation(location.getX(), location.getY());
if(direction.equals("S"))
location.setLocation(location.getX(), location.getY());
if(direction.equals("E"))
location.setLocation(location.getX(), location.getY());
if(direction.equals("W"))
location.setLocation(location.getX(), location.getY());
return location;
}
}