Худо-бедно создан класс MapsCollection
This commit is contained in:
parent
0fb5dbace9
commit
ee384c3f2b
41
MapsCollection.java
Normal file
41
MapsCollection.java
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.HashMap;
|
||||||
|
|
||||||
|
public class MapsCollection {
|
||||||
|
/// Словарь (хранилище) с картами
|
||||||
|
final HashMap<String, MapWithSetLocomotivesGeneric<DrawningObjectLocomotive, AbstractMap>> _mapStorages;
|
||||||
|
/// Возвращение списка названий карт
|
||||||
|
public ArrayList<String> keys() {
|
||||||
|
return new ArrayList<String>(_mapStorages.keySet());
|
||||||
|
}
|
||||||
|
/// Ширина окна отрисовки
|
||||||
|
private final int _pictureWidth;
|
||||||
|
/// Высота окна отрисовки
|
||||||
|
private final int _pictureHeight;
|
||||||
|
/// Конструктор
|
||||||
|
public MapsCollection(int pictureWidth, int pictureHeight)
|
||||||
|
{
|
||||||
|
_mapStorages = new HashMap<String, MapWithSetLocomotivesGeneric<DrawningObjectLocomotive, AbstractMap>>();
|
||||||
|
_pictureWidth = pictureWidth;
|
||||||
|
_pictureHeight = pictureHeight;
|
||||||
|
}
|
||||||
|
/// Добавление карты
|
||||||
|
public void AddMap(String name, AbstractMap map)
|
||||||
|
{
|
||||||
|
// Логика для добавления
|
||||||
|
if (!_mapStorages.containsKey(name)) _mapStorages.put(name, new MapWithSetLocomotivesGeneric<DrawningObjectLocomotive, AbstractMap>(_pictureWidth, _pictureHeight, map));
|
||||||
|
}
|
||||||
|
/// Удаление карты
|
||||||
|
public void DelMap(String name)
|
||||||
|
{
|
||||||
|
// Логика для удаления
|
||||||
|
if (_mapStorages.containsKey(name)) _mapStorages.remove(name);
|
||||||
|
}
|
||||||
|
/// Доступ к парковке
|
||||||
|
public MapWithSetLocomotivesGeneric<DrawningObjectLocomotive, AbstractMap> Get(String ind)
|
||||||
|
{
|
||||||
|
// Логика получения объекта
|
||||||
|
if (_mapStorages.containsKey(ind)) return _mapStorages.get(ind);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user