-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMagicBlock.java
40 lines (36 loc) · 1.12 KB
/
MagicBlock.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
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
/**
* Write a description of class MagicBlock here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class MagicBlock extends GameObj
{
public boolean pushable(GameObj obj) {
return (obj instanceof Pushy || obj instanceof PowerPistonHead);
}
public void onMove() {
boolean solved = false;
for (Object objInRange : getObjectsInRange(1, getClass())) {
if (objInRange instanceof GameObj) {
((GameObj)objInRange).remove();
getWorld().addObject(new RenderMagicBlock(), ((GameObj)objInRange).getX(),((GameObj)objInRange).getY());
getWorld().closeGoal();
solved = true;
}
}
if (solved) {
Sound.drop.play();
remove();
getWorld().addObject(new RenderMagicBlock(), getX(),getY());
getWorld().closeGoal();
}
}
public void created() {
getWorld().openGoal();
}
public int getId() {
return 19;
}
}