-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNinja.java
More file actions
248 lines (220 loc) · 7.41 KB
/
Copy pathNinja.java
File metadata and controls
248 lines (220 loc) · 7.41 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
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.*;
import javax.swing.event.*;
/**
* Fruit Ninja
*
* @author Grant Visker, John Hurley, Joseph Capper, and Logan Belak.
* @version 5/7/2021
*/
public class Ninja extends MouseAdapter implements Runnable, ActionListener {
// multiplier to convert the press/release distances to initial
// speeds in the x and y directions
public static final double SLING_FACTOR = 0.25;
//list of Fruit objects currently on the screen
private java.util.List<Fruit> list = new ArrayList<Fruit>();
private JPanel panel;
private JButton start;
private JLabel score, tempScore;
private JLabel title, spacer,spacer2;
private ArrayList<AnimatedLine> lines = new ArrayList<>();
private Point lastMouse;
private Point pressPoint;
protected javax.swing.Timer time;
private Random r = new Random();
private Object lock = new Object();
private int totalScore = 0;
/**
The run method to set up the graphical user interface
*/
@Override
public void run() {
JFrame.setDefaultLookAndFeelDecorated(true);
JFrame frame = new JFrame("Swing Ninja");
frame.setPreferredSize(new Dimension(800,800));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
panel = new JPanel() {
@Override
public void paintComponent(Graphics g) {
super.paintComponent(g);
int i = 0;
while (i < list.size()) {
Fruit f = list.get(i);
if (f.done()) {
synchronized (lock){
list.remove(i);
}
}
else {
f.paint(g);
i++;
}
}
for (AnimatedLine l : lines) {
l.paint(g);
}
}
};
title = new JLabel("JavaSwing Ninja");
title.setFont(new Font("Verdana", Font.BOLD, 30));
spacer = new JLabel(" ");
spacer2 = new JLabel(" ");
score = new
JLabel("Score: " + totalScore);
start = new
JButton("Start");
tempScore = new
JLabel("");
score.setFont(new
Font("Verdana", Font.PLAIN, 18));
tempScore.setFont(new
Font("Verdana", Font.PLAIN, 18));
title.setForeground(new Color(255,215,0));
panel.add(title);
panel.add(spacer2);
panel.add(score);
panel.add(tempScore);
panel.add(spacer);
panel.add(start);
frame.add(panel);
panel.addMouseListener(this);
panel.addMouseMotionListener(this);
start.addActionListener(this);
time = new javax.swing.Timer(3000, this);
frame.pack();
frame.setVisible(true);
}
/**
* Method actionPerformed starts the game and creates fruit threads.
*
* @param e An action event.
*/
@Override
public void actionPerformed(ActionEvent e){
if(e.getSource() == start) {
time.start();
synchronized (lock){
list.clear();
}
start.setText("New game");
tempScore.setText("");
totalScore = 0;
score.setText("Score: " + totalScore);
}else{
Fruit newFruit;
int fruitID = r.nextInt(5);
time.start();
if(fruitID == 0){
newFruit = new Apple(panel);
}else if(fruitID == 1){
newFruit = new Orange(panel);
}else if(fruitID == 2){
newFruit = new Kiwi(panel);
}else if(fruitID == 3){
newFruit = new Grapefruit(panel);
}else{
newFruit = new Watermelon(panel);
}
synchronized (lock){
list.add(newFruit);
}
newFruit.start();
time.setDelay(r.nextInt(4000) + 500);
}
panel.repaint();
}
/**
Mouse press event handler.
@param e mouse event info
*/
@Override
public void mousePressed(MouseEvent e) {
lastMouse = e.getPoint();
}
/**
Mouse drag event handler.
@param e mouse event info
*/
@Override
public void mouseDragged(MouseEvent e) {
Point p[] = new Point[2];
p[0] = lastMouse;
lastMouse = e.getPoint();
p[1] = lastMouse;
VanishingLine newLine = new VanishingLine(p[0], p[1], panel);
lines.add(newLine);
newLine.start();
panel.repaint();
int i = 0;
while (i < list.size()) {
Fruit f = list.get(i);
if(!f.sliced){
if(mouseCollide(lastMouse, f.upperLeftX, f.upperLeftY, f)){
if(f instanceof Kiwi){
totalScore += 10;
tempScore.setForeground(Color.GREEN);
tempScore.setText("+10");
}else if(f instanceof Watermelon){
totalScore += 1;
tempScore.setForeground(Color.GREEN);
tempScore.setText("+1");
}else if(f instanceof Orange){
totalScore += 7;
tempScore.setForeground(Color.GREEN);
tempScore.setText("+7");
}else if(f instanceof Grapefruit){
totalScore += 3;
tempScore.setForeground(Color.GREEN);
tempScore.setText("+3");
}else{
totalScore += 5;
tempScore.setForeground(Color.GREEN);
tempScore.setText("+5");
}
score.setText("Score: " + totalScore);
}
}
i++;
}
}
/**
Mouse release event handler.
@param e mouse event info
*/
@Override
public void mouseReleased(MouseEvent e) {
lastMouse = null;
}
/**
* Method mouseCollide detects for collision between mouse and fruit object.
*
* @param mousePosition A parameter
* @param x x position of fruit.
* @param y y position of fruit.
* @param f The fruit to check collision for.
* @return If the mouse collided with the fruit object.
*/
public boolean mouseCollide(Point mousePosition, double x, double y, Fruit f){
double centerX = x + (f.size / 2);
double centerY = y + (f.size / 2);
if(mousePosition != null){
if(f instanceof Watermelon){
//Needs an if statement for Watermelon because dimensions are not equal all around.
centerY = y + (f.size / 3);
if(Math.abs(mousePosition.x - centerX) < (f.size / 2) && Math.abs(mousePosition.y - centerY) < (f.size / 3)){
f.sliced = true;
return true;
}
}else if(mousePosition.distance(new Point((int)centerX,(int)centerY)) < (f.size / 2)){
f.sliced = true;
return true;
}
}
return false;
}
public static void main(String args[]) {
javax.swing.SwingUtilities.invokeLater(new Ninja());
}
}