Требования выполнены, лабораторная 6 готова
This commit is contained in:
parent
75671e0272
commit
630de13d2c
@ -53,14 +53,7 @@ namespace Locomotive
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Сохранение информации по локомотивам в хранилище в файл
|
||||||
/// Метод записи информации в файл
|
|
||||||
private static void WriteToFile(string text, FileStream stream)
|
|
||||||
{
|
|
||||||
byte[] info = new UTF8Encoding(true).GetBytes(text);
|
|
||||||
stream.Write(info, 0, info.Length);
|
|
||||||
}
|
|
||||||
/// Сохранение информации по автомобилям в хранилище в файл
|
|
||||||
public bool SaveData(string filename)
|
public bool SaveData(string filename)
|
||||||
{
|
{
|
||||||
if (File.Exists(filename))
|
if (File.Exists(filename))
|
||||||
@ -68,46 +61,43 @@ namespace Locomotive
|
|||||||
File.Delete(filename);
|
File.Delete(filename);
|
||||||
}
|
}
|
||||||
using (FileStream fs = new(filename, FileMode.Create))
|
using (FileStream fs = new(filename, FileMode.Create))
|
||||||
|
using (StreamWriter sw = new StreamWriter(fs, Encoding.UTF8))
|
||||||
{
|
{
|
||||||
WriteToFile($"MapsCollection{Environment.NewLine}", fs);
|
sw.WriteLine("MapsCollection");
|
||||||
foreach (var storage in _mapStorages)
|
foreach (var storage in _mapStorages)
|
||||||
{
|
{
|
||||||
|
|
||||||
WriteToFile($"{storage.Key}{separatorDict}{storage.Value.GetData(separatorDict,separatorData)}{Environment.NewLine}", fs);
|
sw.WriteLine(
|
||||||
|
$"{storage.Key}{separatorDict}{storage.Value.GetData(separatorDict, separatorData)}"
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
/// Загрузка нформации по автомобилям на парковках из файла
|
/// Загрузка нформации по локомотивам в депо из файла
|
||||||
public bool LoadData(string filename)
|
public bool LoadData(string filename)
|
||||||
{
|
{
|
||||||
if (!File.Exists(filename))
|
if (!File.Exists(filename))
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
string bufferTextFromFile = "";
|
|
||||||
using (FileStream fs = new(filename, FileMode.Open))
|
using (FileStream fs = new(filename, FileMode.Open))
|
||||||
|
using (StreamReader sr = new StreamReader(fs, Encoding.UTF8))
|
||||||
{
|
{
|
||||||
byte[] b = new byte[fs.Length];
|
string curLine = sr.ReadLine();
|
||||||
UTF8Encoding temp = new(true);
|
|
||||||
while (fs.Read(b, 0, b.Length) > 0)
|
if (!curLine.Contains("MapsCollection"))
|
||||||
{
|
{
|
||||||
bufferTextFromFile += temp.GetString(b);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
var strs = bufferTextFromFile.Split(new char[] { '\n', '\r' }, StringSplitOptions.RemoveEmptyEntries);
|
|
||||||
if (!strs[0].Contains("MapsCollection"))
|
|
||||||
{
|
|
||||||
//если нет такой записи, то это не те данные
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
//очищаем записи
|
|
||||||
_mapStorages.Clear();
|
_mapStorages.Clear();
|
||||||
for (int i = 1; i < strs.Length; ++i)
|
while ((curLine = sr.ReadLine()) != null)
|
||||||
{
|
{
|
||||||
var elem = strs[i].Split(separatorDict);
|
var elems = curLine.Split(separatorDict);
|
||||||
AbstractMap map = null;
|
AbstractMap map = null;
|
||||||
switch (elem[1])
|
|
||||||
|
switch (elems[1])
|
||||||
{
|
{
|
||||||
case "Simple Map":
|
case "Simple Map":
|
||||||
map = new SimpleMap();
|
map = new SimpleMap();
|
||||||
@ -119,12 +109,15 @@ namespace Locomotive
|
|||||||
map = new RailroadMap();
|
map = new RailroadMap();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
_mapStorages.Add(elem[0], new MapWithSetLocomotivesGeneric<IDrawningObject, AbstractMap>(_pictureWidth, _pictureHeight, map));
|
|
||||||
_mapStorages[elem[0]].LoadData(elem[2].Split(separatorData, StringSplitOptions.RemoveEmptyEntries));
|
_mapStorages.Add(elems[0], new MapWithSetLocomotivesGeneric<IDrawningObject, AbstractMap>(_pictureWidth, _pictureHeight, map));
|
||||||
|
_mapStorages[elems[0]].LoadData(elems[2].Split(separatorData, StringSplitOptions.RemoveEmptyEntries));
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user