2022-11-19 16:11:28 +04:00
|
|
|
|
import java.io.*;
|
2022-11-05 13:19:00 +04:00
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
|
|
|
|
|
public class MapsCollection {
|
|
|
|
|
/// Словарь (хранилище) с картами
|
2022-11-19 16:11:28 +04:00
|
|
|
|
final HashMap<String, MapWithSetLocomotivesGeneric<IDrawningObject, AbstractMap>> _mapStorages;
|
2022-11-05 18:49:21 +04:00
|
|
|
|
|
2022-11-05 13:19:00 +04:00
|
|
|
|
/// Возвращение списка названий карт
|
|
|
|
|
public ArrayList<String> keys() {
|
|
|
|
|
return new ArrayList<String>(_mapStorages.keySet());
|
|
|
|
|
}
|
|
|
|
|
/// Ширина окна отрисовки
|
|
|
|
|
private final int _pictureWidth;
|
|
|
|
|
/// Высота окна отрисовки
|
|
|
|
|
private final int _pictureHeight;
|
2022-11-19 16:11:28 +04:00
|
|
|
|
// Сепараторы
|
|
|
|
|
private final char separatorDict = '|';
|
|
|
|
|
private final char separatorData = ';';
|
2022-11-05 13:19:00 +04:00
|
|
|
|
/// Конструктор
|
|
|
|
|
public MapsCollection(int pictureWidth, int pictureHeight)
|
|
|
|
|
{
|
2022-11-19 16:11:28 +04:00
|
|
|
|
_mapStorages = new HashMap<String, MapWithSetLocomotivesGeneric<IDrawningObject, AbstractMap>>();
|
2022-11-05 13:19:00 +04:00
|
|
|
|
_pictureWidth = pictureWidth;
|
|
|
|
|
_pictureHeight = pictureHeight;
|
|
|
|
|
}
|
|
|
|
|
/// Добавление карты
|
|
|
|
|
public void AddMap(String name, AbstractMap map)
|
|
|
|
|
{
|
|
|
|
|
// Логика для добавления
|
2022-11-19 16:11:28 +04:00
|
|
|
|
if (!_mapStorages.containsKey(name)) _mapStorages.put(name, new MapWithSetLocomotivesGeneric<IDrawningObject, AbstractMap>(_pictureWidth, _pictureHeight, map));
|
2022-11-05 13:19:00 +04:00
|
|
|
|
}
|
|
|
|
|
/// Удаление карты
|
|
|
|
|
public void DelMap(String name)
|
|
|
|
|
{
|
|
|
|
|
// Логика для удаления
|
|
|
|
|
if (_mapStorages.containsKey(name)) _mapStorages.remove(name);
|
|
|
|
|
}
|
|
|
|
|
/// Доступ к парковке
|
2022-11-19 16:11:28 +04:00
|
|
|
|
public MapWithSetLocomotivesGeneric<IDrawningObject, AbstractMap> Get(String ind)
|
2022-11-05 13:19:00 +04:00
|
|
|
|
{
|
|
|
|
|
// Логика получения объекта
|
|
|
|
|
if (_mapStorages.containsKey(ind)) return _mapStorages.get(ind);
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2022-11-05 18:49:21 +04:00
|
|
|
|
// Доп.индексатор из задания
|
2022-11-19 16:11:28 +04:00
|
|
|
|
public IDrawningObject Get (String name, int position) {
|
2022-11-05 18:49:21 +04:00
|
|
|
|
if (_mapStorages.containsKey(name)) return _mapStorages.get(name)._setLocomotives.Get(position);
|
|
|
|
|
else return null;
|
|
|
|
|
}
|
2022-11-19 16:11:28 +04:00
|
|
|
|
|
|
|
|
|
/// Сохранение информации по локомотивам в хранилище в файл
|
|
|
|
|
public boolean SaveData(String filename)
|
|
|
|
|
{
|
|
|
|
|
File file = new File(filename);
|
|
|
|
|
if (file.exists())
|
|
|
|
|
{
|
|
|
|
|
file.delete();
|
|
|
|
|
}
|
|
|
|
|
try(BufferedWriter bw = new BufferedWriter(new FileWriter(filename))) {
|
|
|
|
|
bw.write("MapsCollection\n");
|
|
|
|
|
for (var storage : _mapStorages.entrySet()) {
|
|
|
|
|
bw.write("" + storage.getKey() + separatorDict + storage.getValue().GetData(separatorDict, separatorData) + "\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (IOException ex) {
|
|
|
|
|
System.out.println(ex.getMessage());
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Загрузка информации по локомотивам в депо из файла
|
|
|
|
|
public boolean LoadData(String filename)
|
|
|
|
|
{
|
|
|
|
|
File file = new File(filename);
|
|
|
|
|
if (!file.exists())
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
try {
|
|
|
|
|
BufferedReader br = new BufferedReader(new FileReader(filename));
|
|
|
|
|
String curLine = br.readLine();
|
|
|
|
|
if (!curLine.contains("MapsCollection")) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_mapStorages.clear();
|
|
|
|
|
while ((curLine = br.readLine()) != null) {
|
|
|
|
|
var elems = curLine.split(Character.toString(separatorDict));
|
|
|
|
|
AbstractMap map = null;
|
|
|
|
|
|
|
|
|
|
switch (elems[1])
|
|
|
|
|
{ //TODO!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
|
|
|
case "SimpleMap":
|
|
|
|
|
map = new SimpleMap();
|
|
|
|
|
break;
|
|
|
|
|
case "SpikeMap":
|
|
|
|
|
map = new SpikeMap();
|
|
|
|
|
break;
|
|
|
|
|
case "RailMap":
|
|
|
|
|
map = new RailMap();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_mapStorages.put(elems[0], new MapWithSetLocomotivesGeneric<IDrawningObject, AbstractMap>(_pictureWidth, _pictureHeight, map));
|
|
|
|
|
_mapStorages.get(elems[0]).LoadData(elems[2].split(Character.toString(separatorData)));
|
|
|
|
|
}
|
|
|
|
|
} catch (IOException ex) {
|
|
|
|
|
System.out.println(ex.getMessage());
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2022-11-05 13:19:00 +04:00
|
|
|
|
}
|