-
Notifications
You must be signed in to change notification settings - Fork 0
/
CaballeroN2.java
191 lines (188 loc) · 4.73 KB
/
CaballeroN2.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
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
/**
* Write a description of class CaballeroN2 here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class CaballeroN2 extends Actor
{
private int vSpeed = 0;
private int acceleration = 1;
private int jumpHeight = -10;
private GreenfootImage reversa = new GreenfootImage("image (1).png");
private GreenfootImage aga1 = new GreenfootImage("normal2.2.png");
private GreenfootImage aga2 = new GreenfootImage("normal2.1.png");
private GreenfootImage avanza = new GreenfootImage("normal1.png");
private GreenfootImage pega = new GreenfootImage("golpe2.1.png");
private GreenfootImage def = new GreenfootImage("guardia2.1.png");
private int frame = 1;
private int animationCounter = 0;
/**
* Act - do whatever the caballero wants to do. This method is called whenever
* the 'Act' or 'Run' button gets pressed in the environment.
*/
public void act()
{
moveDer();
moveIzq();
golpea();
cubrirse();
checkFalling();
collect();
monedota();
esbirros();
animationCounter ++;
}
public void esbirros()
{
Actor CaballeroN2;
CaballeroN2 = getOneObjectAtOffset(0,0,Esbirros.class);
if(CaballeroN2 != null && Greenfoot.isKeyDown("P"))
{
World MyWorld;
MyWorld = getWorld();
MyWorld.removeObject(CaballeroN2);
}
}
public void animacion()
{
if(frame == 1)
{
setImage(aga1);
}
else if(frame == 2)
{
setImage(avanza);
frame=1;
return;
}
frame++;
}
public void animacionIzq()
{
if(frame == 1)
{
setImage(aga2);
}
else if(frame == 2)
{
setImage(reversa);
frame=1;
return;
}
frame++;
}
private void fall()
{
setLocation(getX(), getY() + vSpeed);
vSpeed = vSpeed + acceleration;
}
public void golpea()
{
if(Greenfoot.isKeyDown("p"))
{
setImage(pega);
}
}
public void cubrirse()
{
if(Greenfoot.isKeyDown("w"))
{
setImage(def);
}
}
public void moveDer()
{
if(animationCounter % 25 == 0)
animacion();
if(Greenfoot.isKeyDown("d"))
{
move(3);
if(animationCounter % 25 == 0)
animacion();
}
if(Greenfoot.isKeyDown("space")&&(onGround()==true)||Greenfoot.isKeyDown("space")&&(onPlataforma()==true))
{
vSpeed = jumpHeight;
fall();
}
scrollN2 meineWelt;
meineWelt = (scrollN2)this.getWorld();
if(Greenfoot.isKeyDown("d"))
{
meineWelt.changeBackgroundX(5);
}
}
public void moveIzq()
{
if(Greenfoot.isKeyDown("a"))
{
move(-3);
if(animationCounter % 25 == 0)
animacionIzq();
}
if(Greenfoot.isKeyDown("space")&&(onGround()==true)||Greenfoot.isKeyDown("space")&&(onPlataforma()==true))
{
vSpeed = jumpHeight;
fall();
}
}
boolean onGround()
{
Actor under = getOneObjectAtOffset(0, getImage().getHeight()/2, Ground.class);
return under != null;
}
boolean onPlataforma()
{
Actor under = getOneObjectAtOffset(0, getImage().getHeight()/2, Plataforma.class);
return under != null;
}
public void checkFalling()
{
if(onGround()==false)
{
fall();
}
if(onGround()==true)
{
vSpeed = 0;
}
if(onPlataforma()==false)
{
fall();
}
if(onPlataforma()==true)
{
vSpeed = 0;
}
}
public void collect()
{
Actor coin = getOneIntersectingObject(Coin.class);
{
if(coin!=null)
{
World world;
world = getWorld();
getWorld().removeObject(coin);
scrollN2 mundo = (scrollN2)world;
Contador cont = mundo.getContador();
cont.addContar();
}
}
}
public void monedota()
{
Actor cC = getOneIntersectingObject(monedaM.class);
{
if(cC!=null)
{
World world;
world = getWorld();
getWorld().removeObject(cC);
Greenfoot.setWorld(new BossN2());
}
}
}
}