126 lines
5.0 KiB
Java
126 lines
5.0 KiB
Java
import javax.imageio.ImageIO;
|
||
import javax.swing.*;
|
||
import java.awt.*;
|
||
import java.awt.event.ComponentAdapter;
|
||
import java.awt.event.ComponentEvent;
|
||
import java.awt.image.BufferedImage;
|
||
import java.util.Random;
|
||
|
||
import static java.lang.Boolean.parseBoolean;
|
||
|
||
public class FormPlane extends JDialog{
|
||
public JPanel Mainpanel;
|
||
private JButton ButtonCreate;
|
||
private JButton ButtonLeft;
|
||
private JButton ButtonUp;
|
||
private JButton ButtonDown;
|
||
private JButton ButtonRight;
|
||
protected DrawningPlane _plane;
|
||
private JPanel PictureBox;
|
||
private JToolBar StatusStrip;
|
||
private JButton ButtonModif;
|
||
private JButton ButtonSelectPlane;
|
||
private final JLabel JLabelSpeed = new JLabel();
|
||
private final JLabel JLabelWeight = new JLabel();
|
||
private final JLabel JLabelColor = new JLabel();
|
||
private DrawningPlane SelectedPlane;
|
||
public DrawningPlane GetSelectedPlane() {
|
||
return SelectedPlane;
|
||
}
|
||
public void Draw() {
|
||
PictureBox.removeAll();
|
||
BufferedImage bmp = new BufferedImage(PictureBox.getWidth(), PictureBox.getHeight(),BufferedImage.TYPE_INT_RGB);
|
||
Graphics gr = bmp.getGraphics();
|
||
gr.setColor(new Color(238, 238, 238));
|
||
gr.fillRect(0, 0, PictureBox.getWidth(), PictureBox.getHeight());
|
||
if (_plane != null) {
|
||
_plane.DrawTransport(gr);
|
||
JLabel imageOfPlane = new JLabel();
|
||
imageOfPlane.setPreferredSize(PictureBox.getSize());
|
||
imageOfPlane.setMinimumSize(new Dimension(1, 1));
|
||
imageOfPlane.setIcon(new ImageIcon(bmp));
|
||
PictureBox.add(imageOfPlane,BorderLayout.CENTER);
|
||
}
|
||
validate();
|
||
}
|
||
private void SetData(){
|
||
Random random = new Random();
|
||
_plane.SetPosition(random.nextInt(10, 100), random.nextInt(10, 100), PictureBox.getWidth(), PictureBox.getHeight());
|
||
JLabelSpeed.setText("Cкорость: " + _plane.GetPlane().GetSpeed() + " ");
|
||
JLabelWeight.setText("Вес: " + _plane.GetPlane().GetWeight() + " ");
|
||
JLabelColor.setText(("Цвет: " + _plane.GetPlane().GetBodyColor() + " "));
|
||
}
|
||
public FormPlane() {
|
||
add(Mainpanel);
|
||
Box LabelBox = Box.createHorizontalBox();
|
||
LabelBox.setMinimumSize(new Dimension(1, 20));
|
||
LabelBox.add(JLabelSpeed);
|
||
LabelBox.add(JLabelWeight);
|
||
LabelBox.add(JLabelColor);
|
||
StatusStrip.add(LabelBox);
|
||
try {
|
||
Image img = ImageIO.read(FormPlane.class.getResource("/Resource/arrowUp.jpg"));
|
||
ButtonUp.setIcon(new ImageIcon(img));
|
||
img = ImageIO.read(FormPlane.class.getResource("/Resource/arrowDown.jpg"));
|
||
ButtonDown.setIcon(new ImageIcon(img));
|
||
img = ImageIO.read(FormPlane.class.getResource("/Resource/arrowLeft.jpg"));
|
||
ButtonLeft.setIcon(new ImageIcon(img));
|
||
img = ImageIO.read(FormPlane.class.getResource("/Resource/arrowRight.jpg"));
|
||
ButtonRight.setIcon(new ImageIcon(img));
|
||
} catch (Exception ex) {
|
||
System.out.println(ex);
|
||
}
|
||
ButtonCreate.addActionListener(e -> {
|
||
Random random = new Random();
|
||
Color color = JColorChooser.showDialog(null, "Цвет", null);
|
||
_plane = new DrawningPlane(random.nextInt(100, 300),random.nextInt(1000, 2000),color);
|
||
SetData();
|
||
Draw();
|
||
});
|
||
ButtonModif.addActionListener(e -> {
|
||
Random random = new Random();
|
||
Color first = JColorChooser.showDialog(null, "Цвет", null);
|
||
Color second = JColorChooser.showDialog(null, "Цвет", null);
|
||
_plane = new DrawningAirbus(random.nextInt(100, 300), random.nextInt(1000, 2000), first, second, random.nextBoolean(), random.nextBoolean(), random.nextBoolean());
|
||
SetData();
|
||
Draw();
|
||
});
|
||
PictureBox.addComponentListener(new ComponentAdapter() {
|
||
@Override
|
||
public void componentResized(ComponentEvent e) {
|
||
if(_plane == null || _plane.GetPlane() == null) return;
|
||
super.componentResized(e);
|
||
_plane.ChangeBorders(PictureBox.getWidth(), PictureBox.getHeight());
|
||
PictureBox.revalidate();
|
||
Draw();
|
||
}
|
||
});
|
||
ButtonUp.addActionListener(e -> {
|
||
_plane.MoveTransport(Direction.Up);
|
||
PictureBox.revalidate();
|
||
Draw();
|
||
});
|
||
ButtonDown.addActionListener(e -> {
|
||
_plane.MoveTransport(Direction.Down);
|
||
PictureBox.revalidate();
|
||
Draw();
|
||
});
|
||
ButtonRight.addActionListener(e -> {
|
||
_plane.MoveTransport(Direction.Right);
|
||
PictureBox.revalidate();
|
||
Draw();
|
||
});
|
||
ButtonLeft.addActionListener(e -> {
|
||
_plane.MoveTransport(Direction.Left);
|
||
PictureBox.revalidate();
|
||
Draw();
|
||
});
|
||
ButtonSelectPlane.addActionListener(e -> {
|
||
SelectedPlane = _plane;
|
||
setVisible(false);
|
||
dispose();
|
||
});
|
||
}
|
||
|
||
}
|