mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-08 16:31:38 +00:00
63ef445a78
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
57 lines
1.5 KiB
C#
57 lines
1.5 KiB
C#
// <copyright file="Test.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
namespace Fuse
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
public class Test<T>
|
|
where T : Fuse.IRegisterState, new()
|
|
{
|
|
private readonly List<MemoryDatum> memoryData = new List<MemoryDatum>();
|
|
|
|
public string Description { get; private set; }
|
|
|
|
public T RegisterState { get; } = new T();
|
|
|
|
public IReadOnlyCollection<MemoryDatum> MemoryData => this.memoryData.AsReadOnly();
|
|
|
|
public bool TryParse(Lines lines)
|
|
{
|
|
if (lines == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(lines));
|
|
}
|
|
|
|
while (!lines.EndOfFile && string.IsNullOrEmpty(this.Description))
|
|
{
|
|
this.Description = lines.ReadLine();
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(this.Description))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
this.RegisterState.Parse(lines);
|
|
|
|
bool finished;
|
|
do
|
|
{
|
|
var line = lines.ReadLine();
|
|
finished = line == "-1";
|
|
if (!finished)
|
|
{
|
|
var datum = new MemoryDatum();
|
|
datum.Parse(line);
|
|
this.memoryData.Add(datum);
|
|
}
|
|
}
|
|
while (!finished);
|
|
|
|
return true;
|
|
}
|
|
}
|
|
}
|