forked from notEpsilon/concurrent_project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGameWindow.java
More file actions
114 lines (81 loc) · 2.2 KB
/
GameWindow.java
File metadata and controls
114 lines (81 loc) · 2.2 KB
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
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class GameWindow extends JFrame implements KeyListener, ActionListener {
private JLabel gameL;
private JButton createBallB;
private JButton exitB;
boolean started;
InfoPanel infoPanel;
GamePanel gamePanel;
JPanel buttonPanel;
JPanel mainPanel;
private Container c;
int x, y;
public GameWindow() {
setTitle("Football game!");
setSize(550, 535);
gameL = new JLabel("");
started = false;
createBallB = new JButton("Start game");
exitB = new JButton("Exit");
createBallB.addActionListener(this);
exitB.addActionListener(this);
infoPanel = new InfoPanel();
gamePanel = new GamePanel(infoPanel);
gamePanel.createGameEntities();
gamePanel.setPreferredSize(new Dimension(400, 400));
GridLayout gridLayout;
buttonPanel = new JPanel();
gridLayout = new GridLayout(1, 4);
buttonPanel.setLayout(gridLayout);
buttonPanel.add(createBallB);
buttonPanel.add(exitB);
mainPanel = new JPanel();
mainPanel.add(infoPanel);
mainPanel.add(gameL);
mainPanel.add(gamePanel);
mainPanel.add(buttonPanel);
c = getContentPane();
c.add(mainPanel);
mainPanel.addKeyListener(this);
mainPanel.setFocusable(true);
mainPanel.requestFocus();
setResizable(true);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setVisible(true);
}
public void keyPressed(KeyEvent e) {
if (started) {
int direction = 0;
int keyCode = e.getKeyCode();
if (keyCode == KeyEvent.VK_LEFT) {
direction = 1;
}
else if (keyCode == KeyEvent.VK_RIGHT) {
direction = 3;
}
if(keyCode == KeyEvent.VK_SPACE) {
gamePanel.kickBall();
gamePanel.drawGameEntities();
}
gamePanel.updateGameEntities(direction);
gamePanel.drawGameEntities();
}
}
public void keyReleased(KeyEvent e) {}
public void keyTyped(KeyEvent e) {}
public void actionPerformed(ActionEvent e) {
String command = e.getActionCommand();
if (command.equals(createBallB.getText())) {
gamePanel.drawGameEntities();
gamePanel.startGoal();
started = true;
createBallB.setEnabled(false);
}
else if (command.equals(exitB.getText())) {
System.exit(0);
}
mainPanel.requestFocus();
}
}