-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLaserRay.java
133 lines (117 loc) · 4.48 KB
/
LaserRay.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
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
/**
* Write a description of class LaserRay here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class LaserRay extends GameObj implements IColored
{
public void update() {
if (!canStay((LaserRay)this) || !isEmitted()) {
remove();
} else {
setLaser(getDir(), true);
}
}
public String getColoredIcon(int color, boolean bool) {
if (color == 1) return "170.png";
if (color == 2) return "182.png";
if (color == 3) return "183.png";
if (color == 4) return "184.png";
return "185.png";
}
public int getColor() {
return extraData.getInt("color");
}
public void setColor(int color) {
extraData.setInt("color", color);
setImage(getColoredIcon(color, false));
}
public boolean solidAgainst(GameObj obj) {
return false;
}
public boolean isEmitted() {
boolean emitted = false, blocked = false;
for (Object obj : getObjectsAtOffset(xLookingOffset(getDir(2)), yLookingOffset(getDir(2)), GameObj.class)) {
if (obj instanceof LaserRay && isRayType((LaserRay)obj, getDir(), getColor())) emitted = true;
if (obj instanceof PowerLaser && isLaserType((PowerLaser)obj, getDir(), getColor())) emitted = true;
if (obj instanceof Mirror && ((Mirror)obj).canReflect(getDir()) && !((Mirror)obj).isReflecting(getDir(), getColor())) blocked = true;
}
for (Object obj : getObjectsAtOffset(0, 0, GameObj.class)) {
if (obj instanceof Prism && ((Prism)obj).isReflecting(getDir(), getColor())) {
emitted = true;
blocked = false;
}
}
return emitted && !blocked;
}
public void setLaser(int dir, boolean val) {
if (isOutOfWorld(getX()+xLookingOffset(dir), getY()+yLookingOffset(dir))) return;
Prism prism = null;
if (getObjectsAtOffset(0, 0, Prism.class).size()>0) {
prism = (Prism)getObjectsAtOffset(0, 0, Prism.class).get(0);
if (!prism.canReflect(dir)) prism = null;
}
boolean existing = true, existingMirrored = true;
if (prism == null || !(prism instanceof Mirror)) {
existing = false;
for (Object obj : getObjectsAtOffset(xLookingOffset(dir), yLookingOffset(dir), LaserRay.class)) {
if (isRayType((LaserRay)obj, dir, getColor())) {
if (existing) {
((GameObj)obj).remove();
} else {
existing = true;
}
}
}
}
if (prism != null) {
existingMirrored = false;
int reflectDir = prism.getReflectDir(dir);
for (Object obj : getObjectsAtOffset(0, 0, LaserRay.class)) {
if (isRayType((LaserRay)obj, reflectDir, getColor())) {
if (existingMirrored) {
((GameObj)obj).remove();
} else {
existingMirrored = true;
}
}
}
}
if (val) {
if (!existing) {
LaserRay laser = new LaserRay();
laser.setColor(getColor());
laser.addToWorld(getWorld(), getX(), getY(), dir);
if (!laser.move(dir, 1)) getWorld().removeObject(laser);
}
if (!existingMirrored) {
LaserRay laser = new LaserRay();
laser.setColor(getColor());
laser.addToWorld(getWorld(), getX(), getY(), prism.getReflectDir(dir));
}
}
}
public boolean canStay(LaserRay ray) {
for (Object obj : ray.getObjectsAtOffset(0, 0, GameObj.class)) {
if (obj != this && ((GameObj)obj).solidAgainst(ray)) return false;
}
return true;
}
public boolean isRayType(LaserRay obj, int dir, int color) {
return obj.getDir()==dir && obj.getColor()==color;
}
public boolean isLaserType(PowerLaser obj, int dir, int color) {
return obj.getDir()==dir && obj.getColor()==color;
}
public boolean canPush(GameObj obj) {
return obj instanceof LaserRay;
}
public boolean rotate() {
return true;
}
public int getDelay() {
return 0;
}
}