From d30a086f9d802944cfbdfcc0556879c8a3907f68 Mon Sep 17 00:00:00 2001 From: Danila_Mochalov Date: Sat, 24 Sep 2022 21:33:44 +0400 Subject: [PATCH] Base Logic copied --- DrawningLocomotive.java | 2 +- FormLocomotive.java | 93 +++++++++++++++++++++++++++++++++-------- 2 files changed, 76 insertions(+), 19 deletions(-) diff --git a/DrawningLocomotive.java b/DrawningLocomotive.java index a12110e..a1b710f 100644 --- a/DrawningLocomotive.java +++ b/DrawningLocomotive.java @@ -111,7 +111,7 @@ class DrawningLocomotive { public void ChangeBorders(int width, int height) { _pictureWidth = width; - _pictureHeight = height; + _pictureHeight = height - 75; if (_pictureWidth <= _locomotiveWidth || _pictureHeight <= _locomotiveHeight) { _pictureWidth = null; diff --git a/FormLocomotive.java b/FormLocomotive.java index ea3c141..6b6d139 100644 --- a/FormLocomotive.java +++ b/FormLocomotive.java @@ -1,7 +1,6 @@ import javax.swing.*; import java.awt.*; -import java.awt.event.ActionEvent; -import java.awt.event.ActionListener; +import java.awt.event.*; import java.util.Random; public class FormLocomotive extends JComponent{ @@ -14,27 +13,85 @@ public class FormLocomotive extends JComponent{ 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() { + formFrame.addComponentListener(new ComponentListener() { @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}"; + public void componentResized(ComponentEvent e) { + if (_locomotive != null) _locomotive.ChangeBorders(formFrame.getWidth(), formFrame.getHeight()); repaint(); } + + @Override + public void componentMoved(ComponentEvent e) { + + } + + @Override + public void componentShown(ComponentEvent e) { + + } + + @Override + public void componentHidden(ComponentEvent e) { + + } }); - southPanel.add(createButton); + Panel statusPanel = new Panel(); + statusPanel.setBackground(Color.WHITE); + statusPanel.setLayout(new FlowLayout()); + setLayout(new BorderLayout()); + add(statusPanel, BorderLayout.SOUTH); + + Label speedLabel = new Label("Speed: "); + Label weightLabel = new Label("Weight: "); + Label colorLabel = new Label("Color: "); + + JButton createButton = new JButton("Create"); + createButton.addActionListener(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() - 75); + speedLabel.setText("Speed: " + _locomotive.Locomotive.getSpeed()); + weightLabel.setText("Weight: " + (int)_locomotive.Locomotive.getWeight()); + colorLabel.setText("Color: " + _locomotive.Locomotive.getBodyColor().getRed() + " " + _locomotive.Locomotive.getBodyColor().getGreen() + " " + _locomotive.Locomotive.getBodyColor().getBlue() ); + repaint(); + }); + + statusPanel.add(createButton); + statusPanel.add(speedLabel); + statusPanel.add(weightLabel); + statusPanel.add(colorLabel); + + JButton moveDownButton = new JButton("Down"); + moveDownButton.addActionListener(e -> { + if (_locomotive != null) _locomotive.MoveTransport(Direction.Down); + repaint(); + }); + + JButton moveUpButton = new JButton("Up"); + moveUpButton.addActionListener(e -> { + if (_locomotive != null) _locomotive.MoveTransport(Direction.Up); + repaint(); + }); + + JButton moveLeftButton = new JButton("Left"); + moveLeftButton.addActionListener(e -> { + if (_locomotive != null) _locomotive.MoveTransport(Direction.Left); + repaint(); + }); + + JButton moveRightButton = new JButton("Right"); + moveRightButton.addActionListener(e -> { + if (_locomotive != null) _locomotive.MoveTransport(Direction.Right); + repaint(); + }); + + statusPanel.add(moveUpButton); + statusPanel.add(moveDownButton); + statusPanel.add(moveLeftButton); + statusPanel.add(moveRightButton); formFrame.getContentPane().add(this); }