-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLavaRock.java
More file actions
executable file
·416 lines (349 loc) · 12.3 KB
/
Copy pathLavaRock.java
File metadata and controls
executable file
·416 lines (349 loc) · 12.3 KB
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
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
import java.util.*;
/**
* Write a description of class LavaRock here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class LavaRock extends Actor
{
public static enum State {FLYING,
DYING,NAN}
public static GreenfootImage[] images;
static{
images = new GreenfootImage[3];
images[0] = new GreenfootImage("LavaBall-1.png");
images[1] = new GreenfootImage("LavaBall-2.png");
images[2] = new GreenfootImage("LavaBall-3.png");
}
State playerState = State.NAN;
Platform landedon = null;
v2 pos = new v2();
public v2 velocity = new v2();
v2 gravityv = new v2(0.0,700);
int picindex = 0;
long picStartTime = System.currentTimeMillis();
public long timeStart = -1;
public long timeEnd = -1;
public int millsPassed = 0;
public double timeDelta = 0.0;
int pingIndex = 0;
public LavaRock()
{
}
public void act()
{
if(timeStart < 0)
{
timeStart = System.currentTimeMillis();
}
timeEnd = System.currentTimeMillis();
millsPassed = (int)(timeEnd - timeStart);
timeDelta = (double)millsPassed/1000.0;
timeStart = System.currentTimeMillis();
if(timeDelta > 0.066)
{
timeDelta = 0.066;
}
v2 Acceleration = gravityv;
long endTime = System.currentTimeMillis();
if(playerState == State.DYING)
{
/*
velocity = new v2((double)(Greenfoot.getRandomNumber(101) - 50) * 20.0f,(double)(Greenfoot.getRandomNumber(50)) * 20.0f);
playerState = State.NAN;
*/
getWorld().removeObject(this);
return;
}
if(playerState == State.NAN)
{
//velocity = new v2(0.0,0.0);
playerState = State.FLYING;
setImage(images[0]);
return;
}
long picStTime = System.currentTimeMillis();
velocity = velocity.Add(Acceleration.Scale(timeDelta));
v2 PlayerDelta = velocity.Scale(timeDelta).Add(Acceleration.Scale(timeDelta * timeDelta * 0.5f));
//Rocks have less drag
v2 minusvelocity = new v2(-velocity.x,-velocity.y);
velocity = velocity.Add(minusvelocity.Scale(0.4 * timeDelta));
/**********************************************
* Platform Colissions
*/
wrappedDouble tMin = new wrappedDouble(1.0f);
/*
Get all objects for now - maybe cut down on them if
there are lots
*/
List<Platform> Platforms = getWorld().getObjects
(Platform.class);
v2 WallNormal = new v2();
boolean hit = false;
int side = -1;
//v2 PlayerDelta = velocity.Scale(timeDelta);
Platform contact = null;
v2 Rel = pos;
long picEndTime = System.currentTimeMillis();
if((picEndTime - picStartTime) > 199)
{
picStartTime = System.currentTimeMillis();
picindex = Greenfoot.getRandomNumber(3);
setImage(images[picindex]);
}
int pingcount = 0;
int taps = 0;
boolean MakeSparks = false;
boolean RemoveMe = false;
for(Platform p: Platforms)
{
if(p instanceof Ground)
{
continue;
}
/*Base Box Size for platform 34x 9y each way and 10x
and 10y for ball*/
v2 MinCorner = new v2(p.getX() - 30 - 10, p.getY() - 9
- 10);
v2 MaxCorner = new v2(p.getX() + 30 + 10, p.getY() + 9
+ 10);
if(MiscUtil.TestWall(MaxCorner.x, Rel.x, Rel.y,
PlayerDelta.x, PlayerDelta.y, tMin, MinCorner.y, MaxCorner.y))
{
WallNormal = new v2(1.0f,0.0f);
hit = true;
side = 0;//right
contact = p;
}
if(MiscUtil.TestWall(MinCorner.x, Rel.x, Rel.y,
PlayerDelta.x, PlayerDelta.y, tMin, MinCorner.y, MaxCorner.y))
{
WallNormal = new v2(-1.0f,0.0f);
hit = true;
side = 1;//left
contact = p;
}
if(MiscUtil.TestWall(MaxCorner.y, Rel.y, Rel.x,
PlayerDelta.y, PlayerDelta.x, tMin, MinCorner.x, MaxCorner.x))
{
WallNormal = new v2(0.0f,1.0f);
hit = true;
side = 2;//bottom
contact = p;
}
if(MiscUtil.TestWall(MinCorner.y, Rel.y, Rel.x,
PlayerDelta.y, PlayerDelta.x, tMin, MinCorner.x, MaxCorner.x))
{
WallNormal = new v2(0.0f,-1.0f);
hit = true;
side = 3; //top
contact = p;
}
}
/**********************************************
* Player Colission
*/
{
wrappedDouble tMinPlayer = new wrappedDouble(1.0f);
List<PlayerActor> Players = getWorld().getObjects
(PlayerActor.class);
boolean playerhit = false;
PlayerActor playercontact = null;
for(PlayerActor p: Players)
{
v2 MinCornerP = new v2(p.getX() - 19, p.getY() - 19);
v2 MaxCornerP = new v2(p.getX() + 19, p.getY() + 19);
if(MiscUtil.TestWall(MaxCornerP.x, Rel.x, Rel.y,
PlayerDelta.x, PlayerDelta.y, tMinPlayer, MinCornerP.y, MaxCornerP.y))
{
//WallNormal = new v2(1.0f,0.0f);
playerhit = true;
//side = 0;//right
playercontact = p;
}
if(MiscUtil.TestWall(MinCornerP.x, Rel.x, Rel.y,
PlayerDelta.x, PlayerDelta.y, tMinPlayer, MinCornerP.y, MaxCornerP.y))
{
//WallNormal = new v2(-1.0f,0.0f);
playerhit = true;
//side = 1;//left
playercontact = p;
}
if(MiscUtil.TestWall(MaxCornerP.y, Rel.y, Rel.x,
PlayerDelta.y, PlayerDelta.x, tMinPlayer, MinCornerP.x, MaxCornerP.x))
{
//WallNormal = new v2(0.0f,1.0f);
playerhit = true;
//side = 2;//bottom
playercontact = p;
}
if(MiscUtil.TestWall(MinCornerP.y, Rel.y, Rel.x,
PlayerDelta.y, PlayerDelta.x, tMinPlayer, MinCornerP.x, MaxCornerP.x))
{
//WallNormal = new v2(0.0f,-1.0f);
playerhit = true;
//side = 3; //top
playercontact = p;
}
}
if(playerhit)
{
if(hit)
{
if(tMinPlayer.val < tMin.val)
{
//System.out.println("Player Smashed Before Platform Hit");
playercontact.hitWithRock();
}
}
else
{
//System.out.println("Player Smashed");
playercontact.hitWithRock();
RemoveMe = true;
}
}
}
//Ground Test
if(MiscUtil.TestWall(461.0, Rel.y, Rel.x,
PlayerDelta.y, PlayerDelta.x, tMin, -300, 900))
{
WallNormal = new v2(0.0f,-1.0f);
hit = true;
side = 3;//bottom
contact = null;
}
pos = pos.Add(PlayerDelta.Scale(tMin.val));
if(hit)
{
switch(side)
{
case 3:
velocity.y = -velocity.y;
/*top landing*/
/*
if(PlayerDelta.Inner(PlayerDelta) > 4)
{
System.out.println("Delta Squared " + PlayerDelta.Inner(PlayerDelta));
}
*/
/*
if(velocity.Inner(velocity) > 2000)
{
System.out.println("Velocity Squared " + velocity.Inner(velocity));
}
*/
/*
minusvelocity = new v2(-velocity.x,-velocity.y);
velocity = velocity.Add(minusvelocity.Scale(0.9 * timeDelta));
*/
//SoundManager.playPing();
pingcount++;
int tmpnextIndex = (pingIndex + 1) % 3;
if(pingcount == 1 && ((velocity.y * velocity.y) > 14000))
{
pingIndex = (pingIndex + 1) % 3;
if (taps < 4)
{
SoundEffect.getPing(pingIndex).play();
}
taps++;
}
else
{
SoundEffect.getPing(tmpnextIndex).stop();
}
if(/*velocity.Inner(velocity) < 2000*/ (velocity.y * velocity.y) < 2000 )
{
//counter = 0;
//SoundEffect.PING.stop();
//SoundEffect.PING2.stop();
playerState = State.DYING;
setLocation((int)pos.x,(int)pos.y);
return;
}
if(/*velocity.Inner(velocity) < 2000*/ (velocity.y * velocity.y) > 8000 )
{
MakeSparks = true;
}
if((taps > 3) || ((velocity.y * velocity.y) < 9000))
{
velocity.x = 0;
velocity.y = 0;
}
break;
case 2:
velocity.y = -velocity.y;
minusvelocity = new v2(-velocity.x,-velocity.y);
velocity = velocity.Add(minusvelocity.Scale(0.9 * timeDelta));
break;
default:
velocity.x = -velocity.x;
break;
}
}
/**********************************************
* Platform Colissions
*/
/*
if(pos.y > 460.0)
{
velocity.y = -velocity.y;
pos.y = 460.0;
minusvelocity = new v2(-velocity.x,-velocity.y);
velocity = velocity.Add(minusvelocity.Scale(0.9 * timeDelta));
}
*/
if(pos.x < 10.0)
{
velocity.x = -velocity.x;
pos.x = 10.0;
}
//todo remove this - ground is a platform
if(pos.x > 630.0)
{
velocity.x = -velocity.x;
pos.x = 630.0;
}
setLocation((int)pos.x,(int)pos.y);
if(MakeSparks)
{
for(int i = 0 ; i < 3; i++)
{
SparksEffect se = new SparksEffect();
getWorld().addObject(se,getX(),getY()+10);
se.speed = 1 + Greenfoot.getRandomNumber(5);
se.setRotation(Greenfoot.getRandomNumber(180) + 180);
}
}
if(RemoveMe)
{
for(int i = 0 ; i < 13; i++)
{
SparksEffect se = new SparksEffect();
getWorld().addObject(se,getX(),getY());
se.speed = 1 + Greenfoot.getRandomNumber(5);
se.setRotation(Greenfoot.getRandomNumber(360));
}
SoundEffect.BREAK.playIfNotPlaying();
getWorld().removeObject(this);
return;
}
}
@Override
public void addedToWorld(World world) {
super.addedToWorld(world);
//leftw = new LeftWingActor(this);
//rightw = new RightWingActor(this);
//world.addObject(leftw,getX() + LeftWingOffsetX,getY() + LeftWingOffsetY);
//world.addObject(rightw,getX() + RightWingOffsetX,getY() + RightWingOffsetY);
//leftw.offx = LeftWingOffsetX;
//leftw.offy = LeftWingOffsetY;
//rightw.offx = RightWingOffsetX;
//rightw.offy = RightWingOffsetY;
pos = new v2((double)getX(),(double)getY());
velocity = new v2(0.0,0.0);
}
}