-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPowerLatch.java
37 lines (34 loc) · 912 Bytes
/
PowerLatch.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
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
/**
* Write a description of class PowerLatch here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class PowerLatch extends PowerSwitch
{
boolean wasGettingPower = false;
public void onPowerUpdate() {
if (getPower()) {
if (isProvidingPower()) {
setImage("152.png");
} else {
setImage("151.png");
}
} else {
if (isProvidingPower()) {
setImage("150.png");
} else {
setImage("149.png");
}
}
if (getPower() && !wasGettingPower) {
Sound.klick.play();
setProvidePower(!isProvidingPower());
}
wasGettingPower = getPower();
}
public int getId() {
return 145;
}
}