-
Notifications
You must be signed in to change notification settings - Fork 0
/
gachacont.java
50 lines (40 loc) · 1.09 KB
/
gachacont.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
import javax.swing.*;
import java.util.*;
import java.awt.*;
import java.awt.event.*;
/* Controller : ガチャ画面に対してのコントローラー */
class GachaCont implements ActionListener, KeyListener {
public Game frame;
// コンストラクタ
public GachaCont(Game g) {
frame = g;
frame.addKeyListener(this);
frame.gc_view.b1.addActionListener(this);
frame.gc_view.b1.setActionCommand("hiku");
frame.gc_view.b2.addActionListener(this);
frame.gc_view.b2.setActionCommand("modoru");
}
// キーリスナーを取り除く
public void remove() {
frame.removeKeyListener(this);
}
// ボタンの操作
public void actionPerformed(ActionEvent e) {
String cmd = e.getActionCommand();
if (cmd.equals("hiku")) {
frame.gacha.action_gacha();
return;
}
if (cmd.equals("modoru")) {
frame.gacha_start();
return;
}
}
// キーの操作
public void keyPressed(KeyEvent e) {
}
public void keyTyped(KeyEvent e) {
}
public void keyReleased(KeyEvent e) {
}
}