-
Notifications
You must be signed in to change notification settings - Fork 1
/
CustomPanel.java
215 lines (171 loc) · 4.44 KB
/
CustomPanel.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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
package Simon;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.geom.Arc2D;
import java.util.ArrayList;
import javax.sound.midi.MidiChannel;
import javax.sound.midi.MidiSystem;
import javax.sound.midi.MidiUnavailableException;
import javax.sound.midi.Synthesizer;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
public class CustomPanel extends JPanel implements MouseListener
{
private static final long serialVersionUID = 1L;
private Pad[] padds = new Pad[4];
private Pad middleCircle;
private int size;
private int x = 40;
private int y = 25;
private int space = 50;
private ArrayList<Integer> arcPattern;
private int clickes = 0;
private boolean isShowPattern;
private int sleep = 300;
private Synthesizer synth;
private MidiChannel[] channel;
public CustomPanel(int width, int height)
{
setBackground(Color.WHITE);
size = (width - space - x * 2);
padds[0] = new Pad(x + space, y, size, size, 0, 90, Arc2D.PIE, Color.RED, 60);
padds[1] = new Pad(x, y, size, size, 90, 90, Arc2D.PIE, Color.GREEN, 61);
padds[2] = new Pad(x, y + space, size, size, 180, 90, Arc2D.PIE, Color.YELLOW, 62);
padds[3] = new Pad(x + space, y + space, size, size, 270, 90, Arc2D.PIE, Color.BLUE, 63);
int middleCircleSize = size / 2;
int middleCircleX = (int)padds[1].getCenterX() + space / 2 - middleCircleSize / 2;
int middleCircleY = (int)padds[1].getCenterX() + space / 2 - middleCircleSize / 2;
middleCircle = new Pad(middleCircleX, middleCircleY, middleCircleSize, middleCircleSize, 0, 360, Arc2D.PIE,
getBackground(), 10);
arcPattern = new ArrayList<Integer>();
arcPattern.add((int) (Math.random() * 4));
addMouseListener(this);
try
{
synth = MidiSystem.getSynthesizer();
synth.open();
channel = synth.getChannels();
channel[0].programChange(116);
} catch (MidiUnavailableException e)
{
e.printStackTrace();
}
isShowPattern = true;
showPattern();
}
protected void paintComponent(Graphics g)
{
super.paintComponent(g);
Graphics2D g2 = (Graphics2D) g;
for (Pad ca : padds)
ca.fillArc(g2);
middleCircle.fillArc(g2);
}
public void mouseClicked(MouseEvent e)
{
if (!middleCircle.contains(e.getX(), e.getY()) && !isShowPattern)
for (Pad ca : padds)
if (ca.contains(e.getX(), e.getY()))
{
changeColor(ca);
if (arcPattern.get(clickes) == ca.getID())
clickes++;
else
{
String massage = String.format("Wrong pattern.\nYou did %d rounds.\nTry again.", arcPattern.size() - 1);
int selection = JOptionPane.showConfirmDialog(this, massage, "Wrong pattern",
JOptionPane.YES_NO_OPTION, JOptionPane.PLAIN_MESSAGE);
if (selection == 0)
restart();
else
System.exit(0);
}
if (clickes == arcPattern.size())
{
arcPattern.add((int) (Math.random() * 4));
showPattern();
clickes = 0;
isShowPattern = true;
}
}
}
public void mouseEntered(MouseEvent e)
{
}
public void mouseExited(MouseEvent e)
{
}
public void mousePressed(MouseEvent e)
{
}
public void mouseReleased(MouseEvent e)
{
}
private void changeColor(Pad a)
{
a.setIsDarker(true);
a.sound(channel[0]);
repaint();
new Thread(new Runnable()
{
public void run()
{
try
{
Thread.sleep(sleep);
} catch (InterruptedException e)
{
e.printStackTrace();
}
a.setIsDarker(false);
repaint();
}
}).start();
}
private void showPattern()
{
new Thread(new Runnable()
{
public void run()
{
try
{
Thread.sleep((sleep * 2) / 3);
} catch (InterruptedException e)
{
e.printStackTrace();
}
for (Integer id : arcPattern)
{
try
{
Thread.sleep(sleep * 2);
} catch (InterruptedException e)
{
e.printStackTrace();
}
changeColor(padds[id]);
}
try
{
Thread.sleep(sleep * 2);
} catch (InterruptedException e)
{
e.printStackTrace();
}
isShowPattern = false;
}
}).start();
}
private void restart()
{
clickes = 0;
arcPattern.clear();
arcPattern.add((int) (Math.random() * 4));
isShowPattern = true;
showPattern();
}
}