подготовка к пулу
This commit is contained in:
parent
0ea7fea345
commit
ee5ebc2b81
@ -1,4 +1,4 @@
|
|||||||
package enums;
|
package drawing_objects;
|
||||||
|
|
||||||
public enum BlocksNumber {
|
public enum BlocksNumber {
|
||||||
TWO,
|
TWO,
|
@ -1,4 +1,4 @@
|
|||||||
package enums;
|
package drawing_objects;
|
||||||
|
|
||||||
public enum DirectionType {
|
public enum DirectionType {
|
||||||
UP,
|
UP,
|
@ -1,7 +1,6 @@
|
|||||||
package drawing_objects;
|
package drawing_objects;
|
||||||
|
|
||||||
import entities.EntityBattleship;
|
import entities.EntityBattleship;
|
||||||
import enums.DirectionType;
|
|
||||||
|
|
||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
|
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
package drawing_objects;
|
package drawing_objects;
|
||||||
|
|
||||||
import enums.BlocksNumber;
|
|
||||||
|
|
||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
|
|
||||||
public class DrawingBlocks {
|
public class DrawingBlocks {
|
||||||
@ -20,10 +18,10 @@ public class DrawingBlocks {
|
|||||||
if (number == BlocksNumber.FOUR || number == BlocksNumber.SIX){
|
if (number == BlocksNumber.FOUR || number == BlocksNumber.SIX){
|
||||||
graphics2D.fillRect(_startX+62, _startY+12, 6, 6);
|
graphics2D.fillRect(_startX+62, _startY+12, 6, 6);
|
||||||
graphics2D.fillRect(_startX+62, _startY+32, 6, 6);
|
graphics2D.fillRect(_startX+62, _startY+32, 6, 6);
|
||||||
}
|
|
||||||
if (number == BlocksNumber.SIX){
|
if (number == BlocksNumber.SIX){
|
||||||
graphics2D.fillRect(_startX+42, _startY+12, 6, 6);
|
graphics2D.fillRect(_startX+42, _startY+12, 6, 6);
|
||||||
graphics2D.fillRect(_startX+42, _startY+32, 6, 6);
|
graphics2D.fillRect(_startX+42, _startY+32, 6, 6);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
@ -1,7 +1,7 @@
|
|||||||
package frames;
|
package frames;
|
||||||
|
|
||||||
import drawing_objects.DrawingBattleship;
|
import drawing_objects.DrawingBattleship;
|
||||||
import enums.DirectionType;
|
import drawing_objects.DirectionType;
|
||||||
|
|
||||||
import javax.imageio.ImageIO;
|
import javax.imageio.ImageIO;
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
@ -27,12 +27,12 @@ public class FrameBattleship extends JFrame {
|
|||||||
super.repaint();
|
super.repaint();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
pictureBox.setBounds( 0, 0, getContentPane().getWidth(), getContentPane().getHeight());
|
||||||
JButton createButton = new JButton("Создать");
|
JButton createButton = new JButton("Создать");
|
||||||
JButton rightButton = new JButton(new ImageIcon(ImageIO.read(new File("images/right.png"))));
|
JButton rightButton = new JButton(new ImageIcon(ImageIO.read(new File("images/right.png"))));
|
||||||
JButton leftButton = new JButton(new ImageIcon(ImageIO.read(new File("images/left.png"))));
|
JButton leftButton = new JButton(new ImageIcon(ImageIO.read(new File("images/left.png"))));
|
||||||
JButton upButton = new JButton(new ImageIcon(ImageIO.read(new File("images/up.png"))));
|
JButton upButton = new JButton(new ImageIcon(ImageIO.read(new File("images/up.png"))));
|
||||||
JButton downButton = new JButton(new ImageIcon(ImageIO.read(new File("images/down.png"))));
|
JButton downButton = new JButton(new ImageIcon(ImageIO.read(new File("images/down.png"))));
|
||||||
pictureBox.setBounds( 0, 0, getContentPane().getWidth(), getContentPane().getHeight());
|
|
||||||
//ActionListeners and ActionCommand addition
|
//ActionListeners and ActionCommand addition
|
||||||
createButton.addActionListener(e -> buttonCreateClick());
|
createButton.addActionListener(e -> buttonCreateClick());
|
||||||
rightButton.setActionCommand("right");
|
rightButton.setActionCommand("right");
|
||||||
|
Loading…
Reference in New Issue
Block a user