-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKeyFlash.java
89 lines (77 loc) · 2.13 KB
/
KeyFlash.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
import greenfoot.Actor;
import greenfoot.GreenfootImage;
/**
* This actor displays a flash after the key is hit, covering the note landing path.
* The algorithm should be exactly the same with Key.
*
* @author Team APCSA 2019
* @author Steve Rosario
* @since 2019-05-24 14:12
*/
@SuppressWarnings("WeakerAccess")
public class KeyFlash extends Actor
{
/** What column it is in */
private final int column;
/** Transparency (0 = fully transparent, 255 = not transparent) */
private int transparency = 255;
/** Is pressing or not */
private boolean isPressing;
/**
* Construct a key flash object
*
* @param column Column number
*/
public KeyFlash(int column)
{
this.column = column;
setImage(new GreenfootImage(Images.KEY_FLASH));
}
/**
* Initialize the key. This method is called in KeypressHandler when
* the key object is created.
*/
public void init()
{
// Scale image
int keyLen = Constants.GRAPHIC_TOTAL_LENGTH / Constants.NUM_COLS;
getImage().scale(keyLen, Constants.GRAPHIC_NOTE_LANDING);
// Initialize position
int x = Constants.GRAPHIC_COL_OFFSET + keyLen * column;
int y = Constants.GRAPHIC_NOTE_LANDING / 2;
setLocation(x, y);
}
/**
* Act: Dim it
*/
@Override
public void act()
{
// If not pressing, reduce the transparency by Constants.GRAPHIC_KEY_FLASH_SPEED ( > 0)
if (!isPressing)
{
transparency -= Constants.GRAPHIC_KEY_FLASH_SPEED;
if (transparency < 0) transparency = 0;
}
// Set the transparency of the image.
getImage().setTransparency(transparency);
}
/**
* This method is called after a key is pressed.
*/
public void press()
{
// Reset transparency to not transparent
transparency = 255;
// Update state of isPressing
isPressing = true;
}
/**
* This method is called after a key is released.
*/
public void release()
{
// Update state of isPressing
isPressing = false;
}
}