using System;
using System.Collections.Generic;
using System.IO;
namespace FSO.Files.HIT
{
public class HSM
{
///
/// HSM is a plaintext format that names various HIT constants including subroutine locations.
///
///
public Dictionary Constants;
///
/// Creates a new hsm file.
///
/// The data to create the hsm from.
public HSM(byte[] Filedata)
{
ReadFile(new MemoryStream(Filedata));
}
///
/// Creates a new hsm file.
///
/// The path to the data to create the hsm from.
public HSM(string Filepath)
{
ReadFile(File.Open(Filepath, FileMode.Open, FileAccess.Read, FileShare.Read));
}
private void ReadFile(Stream stream)
{
var io = new StreamReader(stream);
Constants = new Dictionary();
while (!io.EndOfStream)
{
string line = io.ReadLine();
string[] Values = line.Split(' ');
var name = Values[0].ToLowerInvariant();
if (!Constants.ContainsKey(name)) Constants.Add(name, Convert.ToInt32(Values[1])); //the repeats are just labels for locations (usually called gotit)
}
io.Close();
}
}
}