Projekt. Etap 3 – ilość żyć
Kody źródłowe z odcinka
package pl.am.swing.gra.etap3;
import javax.swing.*;
import java.awt.*;
public class MyFrame extends JFrame {
public MyFrame() {
setTitle("Zdarzenia myszy");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(1000, 800);
MyComponent myComponent = new MyComponent();
add(myComponent);
addKeyListener(new MyKeyListener(myComponent));
}
public static void main(String[] args) {
EventQueue.invokeLater(() -> {
MyFrame myFrame = new MyFrame();
myFrame.setVisible(true);
});
}
}
package pl.am.swing.gra.etap3;
import javax.swing.*;
import java.awt.*;
public class MyComponent extends JComponent {
Ball ball = new Ball();
public MyComponent() {
Timer timer = new Timer(40, e -> {
ball.updatePosition();
repaint();
});
timer.start();
}
@Override
protected void paintComponent(Graphics g) {
Toolkit.getDefaultToolkit().sync();
Graphics2D graphics2D = (Graphics2D) g;
Rectangle limit = new Rectangle(0, 0, Utils.maxWidth, Utils.maxHeight);
graphics2D.setPaint(Color.CYAN);
graphics2D.fill(limit);
graphics2D.setPaint(Color.BLUE);
graphics2D.fill(ball.getShape());
graphics2D.setPaint(Color.GRAY);
graphics2D.fill(Pallete.getShape());
graphics2D.setPaint(Color.BLACK);
graphics2D.drawString("Ilość żyć: ", Utils.maxWidth, 20);
graphics2D.setFont(graphics2D.getFont().deriveFont(50.0F));
graphics2D.drawString(String.valueOf(Utils.livesNumber), Utils.maxWidth, 100);
}
}
package pl.am.swing.gra.etap3;
import java.awt.*;
import java.awt.geom.Ellipse2D;
public class Ball {
private int x = 500;
private int y = 0;
private int width = 30;
private int height = 30;
private int speedX = 5;
private int speedY = 10;
public Ball() {
}
public Ball(int x, int y, int width, int height, int speedX, int speedY) {
this.x = x;
this.y = y;
this.width = width;
this.height = height;
this.speedX = speedX;
this.speedY = speedY;
}
public void updatePosition() {
x += speedX;
y += speedY;
if (x + width > Utils.maxWidth) {
x = Utils.maxWidth - width;
speedX = -speedX;
}
if (y + height > Utils.maxHeight) {
y = Utils.maxHeight - height;
speedY = 0;
speedX = 0;
Utils.livesNumber--;
}
if (x < 0) {
x = 0;
speedX = -speedX;
}
if (y < 0) {
y = 0;
speedY = -speedY;
}
}
public Shape getShape() {
return new Ellipse2D.Float(x,y, width, height);
}
}
package pl.am.swing.gra.etap3;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
public class MyKeyListener extends KeyAdapter {
private MyComponent myComponent;
public MyKeyListener(MyComponent myComponent) {
this.myComponent = myComponent;
}
@Override
public void keyPressed(KeyEvent e) {
int keyCode = e.getKeyCode();
switch (keyCode) {
case KeyEvent.VK_LEFT -> {
Pallete.x -= 10;
if (Pallete.x < 0) {
Pallete.x = 0;
}
}
case KeyEvent.VK_RIGHT -> {
Pallete.x += 10;
if (Pallete.x + Pallete.width > Utils.maxWidth) {
Pallete.x = Utils.maxWidth - Pallete.width;
}
}
}
myComponent.repaint();
}
}
package pl.am.swing.gra.etap3;
import java.awt.*;
public class Pallete {
public static int x = 500;
public static int y = Utils.maxHeight - 70;
public static int width = 100;
public static int height = 20;
public static Shape getShape() {
return new Rectangle(x, y, width, height);
}
}
package pl.am.swing.gra.etap3;
public class Utils {
public static int maxWidth = 800;
public static int maxHeight = 600;
public static int livesNumber = 3;
}