Compare commits

..

2 Commits

Author SHA1 Message Date
fefd0e637e Create Button added 2022-09-24 19:51:41 +04:00
0f8658bfeb DrawTransport method added 2022-09-24 18:00:56 +04:00
3 changed files with 81 additions and 8 deletions

View File

@ -80,8 +80,32 @@ class DrawningLocomotive {
}
}
public void DrawTransport() {
//TODO: do!
public void DrawTransport(Graphics2D g) {
if (_startPosX < 0 || _startPosY < 0
|| _pictureHeight == null || _pictureWidth == null)
{
return;
}
//тело
g.setColor(Color.BLACK);
g.drawRect((int)_startPosX , (int)_startPosY, _locomotiveWidth - 10, _locomotiveHeight - 10);
//окна
g.setColor(Locomotive.getBodyColor());
g.fillRect((int)_startPosX + 10, (int)_startPosY + 10, 10, 10);
g.fillRect((int)_startPosX + 30, (int)_startPosY + 10, 10, 10);
g.fillRect((int)_startPosX + 80, (int)_startPosY + 10, 10, 10);
//дверь
g.setColor(Color.BLACK);
g.drawRect( (int)_startPosX + 50, (int)_startPosY + 10, 10, 20);
//колеса
g.drawOval((int) _startPosX, (int)_startPosY + 40, 10, 10);
g.drawOval((int) _startPosX + 20, (int)_startPosY + 40, 10, 10);
g.drawOval((int) _startPosX + 70, (int)_startPosY + 40, 10, 10);
g.drawOval((int) _startPosX + 90, (int)_startPosY + 40, 10, 10);
//движок
g.setColor(Locomotive.getBodyColor());
g.fillRect((int)_startPosX + 100, (int)_startPosY + 10, 10, 30);
}
public void ChangeBorders(int width, int height)

View File

@ -37,10 +37,4 @@ public class EntityLocomotive {
}
BodyColor = bodyColor;
}
}

55
FormLocomotive.java Normal file
View File

@ -0,0 +1,55 @@
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Random;
public class FormLocomotive extends JComponent{
private DrawningLocomotive _locomotive;
private EntityLocomotive _entity;
public FormLocomotive() {
JFrame formFrame = new JFrame("Locomotive");
formFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
formFrame.setSize(800, 500);
formFrame.setVisible(true);
formFrame.setLocationRelativeTo(null);
Panel southPanel = new Panel();
setLayout(new BorderLayout());
add(southPanel, BorderLayout.SOUTH);
JButton createButton = new JButton("Create");
createButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
Random rnd = new Random();
_locomotive = new DrawningLocomotive();
_entity = new EntityLocomotive();
_locomotive.Init(100 + rnd.nextInt(200), 1000 + rnd.nextInt(1000), Color.getHSBColor(rnd.nextInt(256), rnd.nextInt(256), rnd.nextInt(256)), _entity);
_locomotive.SetPosition(10 + rnd.nextInt(90), 10 + rnd.nextInt(90), formFrame.getWidth(), formFrame.getHeight());
// toolStripStatusLabelSpeed.Text = $"Speed: {_locomotive.Locomotive.Speed}";
// toolStripStatusLabelWeight.Text = $"Weight: {_locomotive.Locomotive.Weight}";
// toolStripStatusLabelColor.Text = $"Color: {_locomotive.Locomotive.BodyColor.Name}";
repaint();
}
});
southPanel.add(createButton);
formFrame.getContentPane().add(this);
}
@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2 = (Graphics2D)g;
if (_locomotive != null) _locomotive.DrawTransport(g2);
super.repaint();
}
public static void main(String[] args) {
FormLocomotive formLocomotive = new FormLocomotive();
}
}