110 lines
4.8 KiB
Java
110 lines
4.8 KiB
Java
import javax.swing.*;
|
||
import java.awt.*;
|
||
import java.awt.event.ActionEvent;
|
||
import java.awt.event.ActionListener;
|
||
import java.awt.event.ComponentEvent;
|
||
import java.awt.event.ComponentListener;
|
||
import java.awt.image.BufferedImage;
|
||
import java.util.Random;
|
||
public class FormBattleship extends JComponent {
|
||
private AbstractMap _abstractMap;
|
||
private DrawningBattleship _battleship;
|
||
private DrawningBattleship SelectedBattleship;
|
||
private EntityBattleship _entityBattleship;
|
||
private BufferedImage bufferedImage = null;
|
||
|
||
public DrawningBattleship GetSelectedBattleship() {
|
||
return SelectedBattleship;
|
||
}
|
||
public FormBattleship(JDialog caller) {
|
||
Panel statusPanel = new Panel();
|
||
statusPanel.setBackground(Color.WHITE);
|
||
statusPanel.setLayout(new FlowLayout());
|
||
setLayout(new BorderLayout());
|
||
add(statusPanel, BorderLayout.SOUTH);
|
||
Label speedLabel = new Label("Скорость: ");
|
||
Label weightLabel = new Label("Вес: ");
|
||
Label colorLabel = new Label("Цвет: ");
|
||
|
||
|
||
JButton createButton = new JButton("Создать");
|
||
createButton.addActionListener(e -> {
|
||
|
||
Random rnd = new Random();
|
||
Color colorFirst = JColorChooser.showDialog(null, "Цвет", new Color(rnd.nextInt(256), rnd.nextInt(256),rnd.nextInt(256)));
|
||
_battleship = new DrawningBattleship(rnd.nextInt(100, 300), rnd.nextInt(1000, 2000),
|
||
colorFirst);
|
||
_battleship.SetPosition(10 + rnd.nextInt(90), 10 + rnd.nextInt(90), getWidth(), getHeight() - 75);
|
||
speedLabel.setText("Скорость: " + _battleship.Battleship.GetSpeed());
|
||
weightLabel.setText("Вес: " + (int)_battleship.Battleship.GetWeight());
|
||
colorLabel.setText("Цвет: " + _battleship.Battleship.GetBodyColor().getRed() + " " +
|
||
_battleship.Battleship.GetBodyColor().getGreen() + " " + _battleship.Battleship.GetBodyColor().getBlue() );
|
||
repaint();
|
||
|
||
});
|
||
JButton modifiedButton = new JButton("Модификация");
|
||
modifiedButton.addActionListener(e -> {
|
||
Random rnd = new Random();
|
||
Color colorFirst = JColorChooser.showDialog(null, "Цвет", new Color(rnd.nextInt(256), rnd.nextInt(256), rnd.nextInt(256)));
|
||
Color colorSecond = JColorChooser.showDialog(null, "Цвет", new Color(rnd.nextInt(256), rnd.nextInt(256), rnd.nextInt(256)));
|
||
_battleship = new DrawningLinkor(rnd.nextInt(200) + 100, rnd.nextInt(1000) + 1000,
|
||
colorFirst, colorSecond, rnd.nextBoolean(), rnd.nextBoolean());
|
||
_battleship.SetPosition(10 + rnd.nextInt(90), 10 + rnd.nextInt(90), getWidth(), getHeight() - 75);
|
||
speedLabel.setText("Скорость: " + _battleship.Battleship.GetSpeed());
|
||
weightLabel.setText("Вес: " + (int)_battleship.Battleship.GetWeight());
|
||
colorLabel.setText("Цвет:: " + _battleship.Battleship.GetBodyColor().getRed() + " " + _battleship.Battleship.GetBodyColor().getGreen() + " " + _battleship.Battleship.GetBodyColor().getBlue() );
|
||
if (_abstractMap != null) bufferedImage = _abstractMap.CreateMap(1000, 490, new DrawningObjectBattleship(_battleship));
|
||
repaint();
|
||
});
|
||
JButton selectButton = new JButton("Выбрать");
|
||
selectButton.addActionListener(e -> {
|
||
SelectedBattleship = _battleship;
|
||
caller.dispose();
|
||
});
|
||
statusPanel.add(createButton);
|
||
statusPanel.add(modifiedButton);
|
||
statusPanel.add(selectButton);
|
||
statusPanel.add(speedLabel);
|
||
statusPanel.add(weightLabel);
|
||
statusPanel.add(colorLabel);
|
||
JButton upButton = new JButton("↑");
|
||
JButton rightButton = new JButton("→");
|
||
JButton leftButton = new JButton("←");
|
||
JButton downButton = new JButton("↓");
|
||
upButton.addActionListener(e -> {
|
||
if (_battleship != null) _battleship.MoveTransport(Direction.Up);
|
||
repaint();
|
||
});
|
||
|
||
|
||
rightButton.addActionListener(e -> {
|
||
if (_battleship != null) _battleship.MoveTransport(Direction.Right);
|
||
repaint();
|
||
});
|
||
|
||
|
||
leftButton.addActionListener(e -> {
|
||
if (_battleship != null) _battleship.MoveTransport(Direction.Left);
|
||
repaint();
|
||
});
|
||
|
||
|
||
downButton.addActionListener(e -> {
|
||
if (_battleship != null) _battleship.MoveTransport(Direction.Down);
|
||
repaint();
|
||
});
|
||
|
||
statusPanel.add(leftButton);
|
||
statusPanel.add(upButton);
|
||
statusPanel.add(rightButton);
|
||
statusPanel.add(downButton);
|
||
|
||
}
|
||
protected void paintComponent(Graphics g) {
|
||
super.paintComponent(g);
|
||
Graphics2D g2 = (Graphics2D)g;
|
||
if (_battleship != null) _battleship.DrawTransport(g2);
|
||
super.repaint();
|
||
}
|
||
|
||
} |