-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlayer.java
93 lines (79 loc) · 2.32 KB
/
Player.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
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
/**
* Allows the player to move and fire bullet
*
* @author Barry Al-Jawari, Betim Goxhuli, Edi Imamovic, James Lay
*
*/
public class Player extends ThePlayer
{
int ammoBullets=10;
private GreenfootImage image1;
private GreenfootImage image2;
private GreenfootImage image3;
private GreenfootImage image4;
private SimpleTimer timer = new SimpleTimer();
public void checkCollision()
{
Actor EnemyClass = getOneIntersectingObject(Enemy.class);
Actor AmmoClass = getOneIntersectingObject(AmmoPickup.class);
World world = getWorld();
if (AmmoClass != null)
{
world.removeObject(AmmoClass);
ammoBullets=ammoBullets+5;
world.removeObject(AmmoClass);
}
if ( EnemyClass != null)
{
world.addObject(new Boom(), getX(), getY());
world.removeObject(this);
world.removeObject( EnemyClass );
world.addObject(new ButtonBack(), 100, 100);
}
}
public void act()
{
checkCollision();
steering();
fire();
}
public void steering()
{
int dx = 0;
int dy = 0;
if (Greenfoot.isKeyDown("W"))
{
setRotation(270);
move(4);
}
if (Greenfoot.isKeyDown("S")){
setRotation(90);
move(4);
}
if(Greenfoot.isKeyDown("A")){
setRotation(180);
dx--;
move(4);
}
if (Greenfoot.isKeyDown("D")){
setRotation(0);
dx++;
move(4);
}
if(getRotation()>0){
{
setRotation(0);
}
}
}
public void fire()
{
if ( ammoBullets>0 && timer.millisElapsed() > 500 && Greenfoot.isKeyDown("space"))
{
ammoBullets--;
getWorld().addObject(new Bullet(getRotation()), getX(), getY());
timer.mark();
}
}
}