2022-09-25 19:20:16 +04:00
|
|
|
|
import javax.swing.*;
|
|
|
|
|
import java.awt.*;
|
|
|
|
|
import java.awt.event.ComponentAdapter;
|
|
|
|
|
import java.awt.event.ComponentEvent;
|
|
|
|
|
import java.util.Random;
|
|
|
|
|
|
|
|
|
|
public class FormArtillery extends JFrame {
|
|
|
|
|
private JPanel artilleryPane;
|
|
|
|
|
private JLabel speedLabel;
|
|
|
|
|
private JLabel weightLabel;
|
|
|
|
|
private JLabel colorLabel;
|
|
|
|
|
private JPanel pictureBox;
|
|
|
|
|
private JButton createButton;
|
|
|
|
|
private JButton buttonUp;
|
|
|
|
|
private JButton buttonDown;
|
|
|
|
|
private JButton buttonLeft;
|
|
|
|
|
private JButton buttonRight;
|
|
|
|
|
|
|
|
|
|
private DrawingArtillery _artillery;
|
|
|
|
|
|
|
|
|
|
public FormArtillery() {
|
|
|
|
|
this.setTitle("Artillery");
|
|
|
|
|
this.setContentPane(artilleryPane);
|
|
|
|
|
createButton.addActionListener(e -> {
|
|
|
|
|
Random rnd = new Random();
|
2022-10-08 14:43:17 +04:00
|
|
|
|
_artillery = new DrawingArtillery(
|
|
|
|
|
rnd.nextInt(100, 300),
|
|
|
|
|
rnd.nextInt(1000, 2000),
|
|
|
|
|
new Color(
|
|
|
|
|
rnd.nextInt(0, 256),
|
|
|
|
|
rnd.nextInt(0, 256),
|
|
|
|
|
rnd.nextInt(0, 256)),
|
|
|
|
|
rnd.nextInt(4, 7)
|
2022-09-25 19:20:16 +04:00
|
|
|
|
);
|
|
|
|
|
_artillery.SetPosition(10 + rnd.nextInt(90), 10 + rnd.nextInt(90), pictureBox.getWidth(), pictureBox.getHeight());
|
|
|
|
|
speedLabel.setText(String.format("Скорость: %s", _artillery.getArtillery().getSpeed()));
|
|
|
|
|
weightLabel.setText(String.format("Вес: %s", _artillery.getArtillery().getWeight()));
|
|
|
|
|
colorLabel.setText(String.format("Цвет: %x", _artillery.getArtillery().getBodyColor().getRGB()));
|
|
|
|
|
repaint();
|
|
|
|
|
});
|
|
|
|
|
pictureBox.addComponentListener(new ComponentAdapter() {
|
|
|
|
|
@Override
|
|
|
|
|
public void componentResized(ComponentEvent e) {
|
2022-09-27 16:22:49 +04:00
|
|
|
|
if (_artillery != null) _artillery.changeBorders(pictureBox.getWidth(), pictureBox.getHeight());
|
2022-09-25 19:20:16 +04:00
|
|
|
|
repaint();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
buttonLeft.addActionListener(e -> {
|
|
|
|
|
if (_artillery != null) _artillery.moveTransport(Direction.Left);
|
|
|
|
|
repaint();
|
|
|
|
|
});
|
|
|
|
|
buttonRight.addActionListener(e -> {
|
|
|
|
|
if (_artillery != null) _artillery.moveTransport(Direction.Right);
|
|
|
|
|
repaint();
|
|
|
|
|
});
|
|
|
|
|
buttonUp.addActionListener(e -> {
|
|
|
|
|
if (_artillery != null) _artillery.moveTransport(Direction.Up);
|
|
|
|
|
repaint();
|
|
|
|
|
});
|
|
|
|
|
buttonDown.addActionListener(e -> {
|
|
|
|
|
if (_artillery != null) _artillery.moveTransport(Direction.Down);
|
|
|
|
|
repaint();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void paint(Graphics g) {
|
|
|
|
|
super.paint(g);
|
|
|
|
|
Graphics2D g2d = (Graphics2D) artilleryPane.getGraphics();
|
|
|
|
|
if (_artillery != null) {
|
|
|
|
|
_artillery.drawTransport(g2d);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|