Лабораторная работа № 6

This commit is contained in:
ENDORFIT 2024-06-08 23:58:02 +04:00
parent baee495b53
commit 4de23d08a2
8 changed files with 382 additions and 28 deletions

View File

@ -7,4 +7,7 @@ public interface ICollectionGenericObjects<T>
int Insert(T obj); int Insert(T obj);
T Remove(int position); T Remove(int position);
T Get(int position); T Get(int position);
CollectionType GetCollectionType();
Iterable<T> GetItems();
void ClearCollection();
} }

View File

@ -1,16 +1,24 @@
package Scripts.CollectionGenericObjects; package Scripts.CollectionGenericObjects;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Iterator;
import java.util.List; import java.util.List;
import java.util.NoSuchElementException;
public class ListGenericObjects<T> implements ICollectionGenericObjects<T> { public class ListGenericObjects<T> implements ICollectionGenericObjects<T> {
private List<T> _collection; private List<T> _collection;
private CollectionType collectionType = CollectionType.List;
private int _maxCount; private int _maxCount;
public int getCount() { public int getCount() {
return _collection.size(); return _collection.size();
} }
@Override
public CollectionType GetCollectionType() {
return collectionType;
}
@Override @Override
public void SetMaxCount(int size) { public void SetMaxCount(int size) {
if (size > 0) { if (size > 0) {
@ -45,4 +53,36 @@ public class ListGenericObjects<T> implements ICollectionGenericObjects<T> {
_collection.remove(position); _collection.remove(position);
return obj; return obj;
} }
@Override
public Iterable<T> GetItems() {
return new Iterable<T>() {
@Override
public Iterator<T> iterator() {
return new Iterator<T>() {
private int currentIndex = 0;
//нужен ли count
private int count = 0;
@Override
public boolean hasNext() {
return currentIndex < getCount();
}
@Override
public T next() {
if (hasNext()) {
count++;
return _collection.get(currentIndex++);
}
throw new NoSuchElementException();
}
};
}
};
}
@Override
public void ClearCollection() {
for (T ship : _collection) {
ship = null;
}
}
} }

View File

@ -3,10 +3,13 @@ package Scripts.CollectionGenericObjects;
import Scripts.Drawing.DrawingMonorail; import Scripts.Drawing.DrawingMonorail;
import java.lang.reflect.Array; import java.lang.reflect.Array;
import java.util.Iterator;
import java.util.NoSuchElementException;
public class MassiveGenericObjects<T> implements ICollectionGenericObjects<T> public class MassiveGenericObjects<T> implements ICollectionGenericObjects<T>
{ {
private T[] _collection; private T[] _collection;
private CollectionType collectionType = CollectionType.Massive;
private int Count; private int Count;
public void SetMaxCount(int size) { public void SetMaxCount(int size) {
if (size > 0) { if (size > 0) {
@ -17,6 +20,11 @@ public class MassiveGenericObjects<T> implements ICollectionGenericObjects<T>
} }
} }
@Override
public CollectionType GetCollectionType() {
return collectionType;
}
@Override @Override
public int getCount() { public int getCount() {
return Count; return Count;
@ -49,4 +57,36 @@ public class MassiveGenericObjects<T> implements ICollectionGenericObjects<T>
if (position >= getCount() || position < 0) return null; if (position >= getCount() || position < 0) return null;
return (T) _collection[position]; return (T) _collection[position];
} }
@Override
public Iterable<T> GetItems() {
return new Iterable<T>() {
@Override
public Iterator<T> iterator() {
return new Iterator<T>() {
private int currentIndex = 0;
//нужен ли count
private int count = 0;
@Override
public boolean hasNext() {
return currentIndex < getCount();
}
@Override
public T next() {
if (hasNext()) {
count++;
return _collection[currentIndex++];
}
throw new NoSuchElementException();
}
};
}
};
}
@Override
public void ClearCollection() {
for (T ship : _collection) {
ship = null;
}
}
} }

View File

@ -1,8 +1,12 @@
package Scripts.CollectionGenericObjects; package Scripts.CollectionGenericObjects;
import Scripts.Drawing.DrawingMonorail;
import Scripts.Drawing.ExtentionDrawningMonorail;
import java.io.*;
import java.util.*; import java.util.*;
public class StorageCollection<T> { public class StorageCollection<T extends DrawingMonorail> {
private Map<String, ICollectionGenericObjects<T>> _storages; private Map<String, ICollectionGenericObjects<T>> _storages;
public StorageCollection() public StorageCollection()
{ {
@ -38,4 +42,154 @@ public class StorageCollection<T> {
return null; return null;
} }
private String _collectionKey = "CollectionsStorage";
private String _collectionName = "StorageCollection";
private String _separatorForKeyValueS = "|";
private String _separatorForKeyValue = "\\|";
private String _separatorItemsS = ";";
private String _separatorItems = "\\;";
public boolean SaveData(String filename) {
if (_storages.isEmpty()) return false;
File file = new File(filename);
if (file.exists()) file.delete();
try {
file.createNewFile();
FileWriter writer = new FileWriter(file);
writer.write(_collectionKey);
writer.write("\n");
for (Map.Entry<String, ICollectionGenericObjects<T>> value : _storages.entrySet()) {
StringBuilder sb = new StringBuilder();
sb.append(value.getKey());
sb.append(_separatorForKeyValueS);
sb.append(value.getValue().GetCollectionType());
sb.append(_separatorForKeyValueS);
sb.append(value.getValue().getCount());
sb.append(_separatorForKeyValueS);
for (T monorail : value.getValue().GetItems()) {
String data = ExtentionDrawningMonorail.GetDataForSave((DrawingMonorail) monorail);
if (data.isEmpty()) continue;
sb.append(data);
sb.append(_separatorItemsS);
}
sb.append("\n");
writer.write(String.valueOf(sb));
}
writer.close();
} catch (IOException e) {
throw new RuntimeException(e);
}
return true;
}
public boolean SaveOneCollection(String filename, String name) {
if (_storages.isEmpty()) return false;
File file = new File(filename);
if (file.exists()) file.delete();
try {
file.createNewFile();
FileWriter writer = new FileWriter(file);
writer.write(_collectionName);
writer.write("\n");
ICollectionGenericObjects<T> value = _storages.get(name);
StringBuilder sb = new StringBuilder();
sb.append(name);
sb.append(_separatorForKeyValueS);
sb.append(value.GetCollectionType());
sb.append(_separatorForKeyValueS);
sb.append(value.getCount());
sb.append(_separatorForKeyValueS);
for (T monorail : value.GetItems()) {
String data = ExtentionDrawningMonorail.GetDataForSave((DrawingMonorail) monorail);
if (data.isEmpty()) continue;
sb.append(data);
sb.append(_separatorItemsS);
}
writer.append(sb);
writer.close();
} catch (IOException e) {
throw new RuntimeException(e);
}
return true;
}
public boolean LoadData(String filename) {
File file = new File(filename);
if (!file.exists()) return false;
try (BufferedReader fs = new BufferedReader(new FileReader(filename))) {
String s = fs.readLine();
if (s == null || s.isEmpty() || !s.startsWith(_collectionKey))
return false;
_storages.clear();
s = "";
while ((s = fs.readLine()) != null) {
String[] record = s.split(_separatorForKeyValue);
if (record.length != 4) {
continue;
}
ICollectionGenericObjects<T> collection = CreateCollection(record[1]);
if (collection == null)
{
return false;
}
collection.SetMaxCount(Integer.parseInt(record[2]));
String[] set = record[3].split(_separatorItems);
for (String elem : set) {
DrawingMonorail ship = ExtentionDrawningMonorail.CreateDrawingShip(elem);
if (collection.Insert((T) ship) == -1)
{
return false;
}
}
_storages.put(record[0], collection);
}
return true;
}
catch (IOException e) {
throw new RuntimeException(e);
}
}
public boolean LoadOneCollection(String filename) {
File file = new File(filename);
if (!file.exists()) return false;
try (BufferedReader fs = new BufferedReader(new FileReader(filename))) {
String s = fs.readLine();
if (s == null || s.isEmpty() || !s.startsWith(_collectionName))
return false;
if (_storages.containsKey(s)) {
_storages.get(s).ClearCollection();
}
s = fs.readLine();
String[] record = s.split(_separatorForKeyValue);
if (record.length != 4) {
return false;
}
ICollectionGenericObjects<T> collection = CreateCollection(record[1]);
if (collection == null)
{
return false;
}
collection.SetMaxCount(Integer.parseInt(record[2]));
String[] set = record[3].split(_separatorItems);
for (String elem : set) {
DrawingMonorail monorail = ExtentionDrawningMonorail.CreateDrawingShip(elem);
if (collection.Insert((T) monorail) == -1)
{
return false;
}
}
_storages.put(record[0], collection);
return true;
}
catch (IOException e) {
throw new RuntimeException(e);
}
}
public ICollectionGenericObjects<T> CreateCollection(String s) {
switch (s) {
case "Massive":
return new MassiveGenericObjects<T>();
case "List":
return new ListGenericObjects<T>();
}
return null;
}
} }

View File

@ -0,0 +1,71 @@
package Scripts.Drawing;
import Scripts.Entities.EntityModernMonorail;
import Scripts.Entities.EntityMonorail;
import Scripts.Wheels.IDrawingWheels;
import java.util.ArrayList;
import java.util.Collections;
public class ExtentionDrawningMonorail {
private static String _separatorForObjectS = ":";
private static String _separatorForObject = "\\:";
public static DrawingMonorail CreateDrawingShip(String info) {
String[] strs = info.split(_separatorForObject);
EntityMonorail entityMonorail;
IDrawingWheels wheels = null;
if (strs.length == 8)
{
String s = strs[8];
switch (s) {
case "DrawingDecksType1":
wheels = new DrawingDecksType1();
case "DrawingDecksType2":
wheels = new DrawingDecksType2();
case "DrawingDecksType3":
wheels = new DrawingDecksType3();
}
if (wheels != null) wheels.SetCountWheels(Integer.parseInt(strs[7]));
}
else if (strs.length == 6) {
String s = strs[5];
switch (s) {
case "DrawingDecksType1":
wheels = new DrawingDecksType1();
case "DrawingDecksType2":
wheels = new DrawingDecksType2();
case "DrawingDecksType3":
wheels = new DrawingDecksType3();
}
if (wheels != null) wheels.SetCountWheels(Integer.parseInt(strs[4]));
}
entityMonorail = EntityModernMonorail.CreateEntityModernMonorail(strs);
if (entityMonorail != null)
{
return new DrawingModernMonorail((EntityModernMonorail) entityMonorail, wheels);
}
entityMonorail = EntityMonorail.CreateEntityMonorail(strs);
if (entityMonorail != null)
{
return new DrawingMonorail(entityMonorail, wheels);
}
return null;
}
public static String GetDataForSave(DrawingMonorail drawningMonorail)
{
if (drawningMonorail == null) return "";
String[] array1 = drawningMonorail.getMonorail().GetStringRepresentation();
String[] array2 = drawningMonorail.GetStringRepresentationDecks();
if (array1 == null)
{
return "";
}
ArrayList<String> list = new ArrayList<>();
Collections.addAll(list, array1);
if (array2 == null) {
Collections.addAll(list, "0", " ");
}
else Collections.addAll(list, array2);
return String.join(_separatorForObjectS, list);
}
}

View File

@ -1,6 +1,7 @@
package Scripts.Entities; package Scripts.Entities;
import java.awt.*; import java.awt.*;
import java.util.Objects;
import java.util.Random; import java.util.Random;
public class EntityModernMonorail extends EntityMonorail { public class EntityModernMonorail extends EntityMonorail {
@ -12,7 +13,7 @@ public class EntityModernMonorail extends EntityMonorail {
public boolean getMonorailTrack() {return _monorailTrack;} public boolean getMonorailTrack() {return _monorailTrack;}
public boolean getCabin() {return _cabin;} public boolean getCabin() {return _cabin;}
public void setAdditionalColor(Color value) {_additionalColor = value;} public void setAdditionalColor(Color value) {_additionalColor = _additionalColor;}
public void setMonorailTrack(Boolean value) { _monorailTrack = value;} public void setMonorailTrack(Boolean value) { _monorailTrack = value;}
public void setCabin(Boolean value) { _cabin = value;} public void setCabin(Boolean value) { _cabin = value;}
@ -26,7 +27,25 @@ public class EntityModernMonorail extends EntityMonorail {
_monorailTrack = monorailTrack; _monorailTrack = monorailTrack;
_cabin = cabin; _cabin = cabin;
Step = _speed * 100/ (int)_weight; Step = _speed * 100/ (float)_weight;
}
@Override
public String[] GetStringRepresentation()
{
return new String[]{"EntityModernMonorail", _speed.toString(), _weight.toString(),
colorToHexString(getBodyColor()), colorToHexString(getAdditionalColor()),
String.valueOf(_monorailTrack), String.valueOf(_cabin)};
}
public static EntityModernMonorail CreateEntityModernMonorail(String[] strs)
{
if (strs.length != 10 || !Objects.equals(strs[0], "EntityModernMonorail"))
{
return null;
}
return new EntityModernMonorail(Integer.parseInt(strs[1]), Float.parseFloat(strs[2]), hexStringToColor(strs[3]),
hexStringToColor(strs[4]), Boolean.parseBoolean(strs[5]), Boolean.parseBoolean(strs[6]));
} }
} }

View File

@ -1,12 +1,13 @@
package Scripts.Entities; package Scripts.Entities;
import java.awt.*; import java.awt.*;
import java.util.Objects;
import java.util.Random; import java.util.Random;
public class EntityMonorail { public class EntityMonorail {
public float Step; public float Step;
protected int _speed; protected Integer _speed;
protected float _weight; protected Float _weight;
protected Color _bodyColor; protected Color _bodyColor;
public int getSpeed() { public int getSpeed() {
@ -29,6 +30,28 @@ public class EntityMonorail {
_weight = weight <= 0 ? rnd.nextInt(100)+500 : weight; _weight = weight <= 0 ? rnd.nextInt(100)+500 : weight;
_bodyColor = bodyColor; _bodyColor = bodyColor;
Step = _speed * 100/ (int)_weight; Step = _speed * 100/ (float)_weight;
}
public String[] GetStringRepresentation()
{
return new String[]{"EntityMonorail", _speed.toString(), _weight.toString(), colorToHexString(_bodyColor)};
}
public static EntityMonorail CreateEntityMonorail(String[] strs)
{
if (strs.length != 6 || !Objects.equals(strs[0], "EntityMonorail"))
{
return null;
}
return new EntityMonorail(Integer.parseInt(strs[1]), Float.parseFloat(strs[2]), hexStringToColor(strs[3]));
}
public static String colorToHexString(Color color) {
return String.format("#%02x%02x%02x", color.getRed(), color.getGreen(), color.getBlue());
}
public static Color hexStringToColor(String hexString) {
return Color.decode(hexString);
} }
} }

View File

@ -35,9 +35,9 @@ public class FormMonorailConfig extends JFrame {
private JLabel labelBodyColor = new JLabel("Основной цвет", SwingConstants.CENTER); private JLabel labelBodyColor = new JLabel("Основной цвет", SwingConstants.CENTER);
private JLabel labelAdditionalColor = new JLabel("Дополнительный цвет", SwingConstants.CENTER); private JLabel labelAdditionalColor = new JLabel("Дополнительный цвет", SwingConstants.CENTER);
private JLabel labelWheels = new JLabel("Тип двигателей",SwingConstants.CENTER); private JLabel labelWheels = new JLabel("Тип двигателей",SwingConstants.CENTER);
private JLabel labelDefaultWheels = new JLabel("Классические",SwingConstants.CENTER); private JLabel labelDefaultEngines = new JLabel("Классические",SwingConstants.CENTER);
private JLabel labelOvalOrnament = new JLabel("Овальные", SwingConstants.CENTER); private JLabel labelOvalEngines = new JLabel("Овальные", SwingConstants.CENTER);
private JLabel labelTriangleOrnament = new JLabel("Треугольные", SwingConstants.CENTER); private JLabel labelTriangleEngines = new JLabel("Треугольные", SwingConstants.CENTER);
private JSpinner spinnerSpeed = new JSpinner(); private JSpinner spinnerSpeed = new JSpinner();
private JSpinner spinnerWeight = new JSpinner(); private JSpinner spinnerWeight = new JSpinner();
@ -121,9 +121,9 @@ public class FormMonorailConfig extends JFrame {
labelModernMonorail.setBorder(BorderFactory.createLineBorder(Color.BLACK, 2)); labelModernMonorail.setBorder(BorderFactory.createLineBorder(Color.BLACK, 2));
labelBodyColor.setBorder(BorderFactory.createLineBorder(Color.BLACK, 2)); labelBodyColor.setBorder(BorderFactory.createLineBorder(Color.BLACK, 2));
labelAdditionalColor.setBorder(BorderFactory.createLineBorder(Color.BLACK, 2)); labelAdditionalColor.setBorder(BorderFactory.createLineBorder(Color.BLACK, 2));
labelDefaultWheels.setBorder(BorderFactory.createLineBorder(Color.BLACK, 2)); labelDefaultEngines.setBorder(BorderFactory.createLineBorder(Color.BLACK, 2));
labelOvalOrnament.setBorder(BorderFactory.createLineBorder(Color.BLACK, 2)); labelOvalEngines.setBorder(BorderFactory.createLineBorder(Color.BLACK, 2));
labelTriangleOrnament.setBorder(BorderFactory.createLineBorder(Color.BLACK, 2)); labelTriangleEngines.setBorder(BorderFactory.createLineBorder(Color.BLACK, 2));
MouseAdapter labelObjectsMouseDown = new MouseAdapter() { MouseAdapter labelObjectsMouseDown = new MouseAdapter() {
@Override @Override
public void mousePressed(MouseEvent e) { public void mousePressed(MouseEvent e) {
@ -146,17 +146,17 @@ public class FormMonorailConfig extends JFrame {
labelModernMonorail.addMouseListener(labelObjectsMouseDown); labelModernMonorail.addMouseListener(labelObjectsMouseDown);
labelModernMonorail.setTransferHandler(labelObjectsTransferHandler); labelModernMonorail.setTransferHandler(labelObjectsTransferHandler);
MouseAdapter labelWheelsMouseDown = new MouseAdapter() { MouseAdapter labelEnginesMouseDown = new MouseAdapter() {
@Override @Override
public void mousePressed(MouseEvent e) { public void mousePressed(MouseEvent e) {
((JLabel) e.getComponent()).getTransferHandler().exportAsDrag(((JLabel) e.getComponent()), e, TransferHandler.COPY); ((JLabel) e.getComponent()).getTransferHandler().exportAsDrag(((JLabel) e.getComponent()), e, TransferHandler.COPY);
} }
}; };
labelDefaultWheels.addMouseListener(labelWheelsMouseDown); labelDefaultEngines.addMouseListener(labelEnginesMouseDown);
labelOvalOrnament.addMouseListener(labelWheelsMouseDown); labelOvalEngines.addMouseListener(labelEnginesMouseDown);
labelTriangleOrnament.addMouseListener(labelWheelsMouseDown); labelTriangleEngines.addMouseListener(labelEnginesMouseDown);
labelDefaultWheels.setTransferHandler(new TransferHandler() { labelDefaultEngines.setTransferHandler(new TransferHandler() {
@Override @Override
public int getSourceActions(JComponent c) {return TransferHandler.COPY;} public int getSourceActions(JComponent c) {return TransferHandler.COPY;}
@ -165,7 +165,7 @@ public class FormMonorailConfig extends JFrame {
return new WheelsTransferable(new DrawingWheels()); return new WheelsTransferable(new DrawingWheels());
} }
}); });
labelOvalOrnament.setTransferHandler(new TransferHandler() { labelOvalEngines.setTransferHandler(new TransferHandler() {
@Override @Override
public int getSourceActions(JComponent c) {return TransferHandler.COPY;} public int getSourceActions(JComponent c) {return TransferHandler.COPY;}
@ -174,7 +174,7 @@ public class FormMonorailConfig extends JFrame {
return new WheelsTransferable(new DrawOrnamentOval()); return new WheelsTransferable(new DrawOrnamentOval());
} }
}); });
labelTriangleOrnament.setTransferHandler(new TransferHandler() { labelTriangleEngines.setTransferHandler(new TransferHandler() {
@Override @Override
public int getSourceActions(JComponent c) {return TransferHandler.COPY;} public int getSourceActions(JComponent c) {return TransferHandler.COPY;}
@ -300,8 +300,12 @@ public class FormMonorailConfig extends JFrame {
@Override @Override
public void actionPerformed(ActionEvent e) { public void actionPerformed(ActionEvent e) {
if (_drawingMonorail == null) return; if (_drawingMonorail == null) return;
DrawingMonorail copyDrawingMonorail;
company._collection.Insert(_drawingMonorail); if (_drawingMonorail instanceof DrawingModernMonorail)
copyDrawingMonorail = new DrawingModernMonorail((EntityModernMonorail) _drawingMonorail.getMonorail(), _drawingMonorail.getWheels());
else
copyDrawingMonorail = new DrawingMonorail(_drawingMonorail.getMonorail(), _drawingMonorail.getWheels());
company._collection.Insert(copyDrawingMonorail);
FormMonorailCollection.canvasShow(); FormMonorailCollection.canvasShow();
dispose(); dispose();
} }
@ -326,9 +330,9 @@ public class FormMonorailConfig extends JFrame {
labelBodyColor.setBounds(500,5,100, 40); labelBodyColor.setBounds(500,5,100, 40);
labelAdditionalColor.setBounds(605,5,170,40); labelAdditionalColor.setBounds(605,5,170,40);
labelWheels.setBounds(225,190,150,15); labelWheels.setBounds(225,190,150,15);
labelDefaultWheels.setBounds(140, 210, 100, 40); labelDefaultEngines.setBounds(140, 210, 100, 40);
labelOvalOrnament.setBounds(250, 210, 100,40); labelOvalEngines.setBounds(250, 210, 100,40);
labelTriangleOrnament.setBounds(360,210,100,40); labelTriangleEngines.setBounds(360,210,100,40);
labelColor.setBounds(200,10,50,15); labelColor.setBounds(200,10,50,15);
panelColorRed.setBounds(200, 30, 40, 40); panelColorRed.setBounds(200, 30, 40, 40);
panelColorGreen.setBounds(250, 30, 40,40); panelColorGreen.setBounds(250, 30, 40,40);
@ -350,10 +354,10 @@ public class FormMonorailConfig extends JFrame {
add(labelColor); add(labelColor);
add(labelBodyColor); add(labelBodyColor);
add(labelAdditionalColor); add(labelAdditionalColor);
add(labelDefaultWheels); add(labelDefaultEngines);
add(labelDefaultWheels); add(labelDefaultEngines);
add(labelOvalOrnament); add(labelOvalEngines);
add(labelTriangleOrnament); add(labelTriangleEngines);
add(spinnerSpeed); add(spinnerSpeed);
add(spinnerWeight); add(spinnerWeight);
add(spinnerNumberOfWheels); add(spinnerNumberOfWheels);