mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
106 lines
No EOL
2.3 KiB
C#
Executable file
106 lines
No EOL
2.3 KiB
C#
Executable file
#region ================== Namespaces
|
|
|
|
using System.Collections.Generic;
|
|
using CodeImp.DoomBuilder.Config;
|
|
using CodeImp.DoomBuilder.Data;
|
|
|
|
#endregion
|
|
|
|
namespace CodeImp.DoomBuilder.ZDoom
|
|
{
|
|
internal sealed class SndSeqParser : ZDTextParser
|
|
{
|
|
#region ================== Variables
|
|
|
|
private readonly List<string> sequences;
|
|
private readonly List<string> sequencegroups;
|
|
private readonly HashSet<string> seqencenames;
|
|
|
|
#endregion
|
|
|
|
#region ================== Properties
|
|
|
|
internal override ScriptType ScriptType { get { return ScriptType.SNDSEQ; } }
|
|
|
|
#endregion
|
|
|
|
#region ================== Constructor
|
|
|
|
public SndSeqParser()
|
|
{
|
|
specialtokens = "";
|
|
sequences = new List<string>();
|
|
sequencegroups = new List<string>();
|
|
seqencenames = new HashSet<string>();
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region ================== Parsing
|
|
|
|
public override bool Parse(TextResourceData data, bool clearerrors)
|
|
{
|
|
//mxd. Already parsed?
|
|
if(!base.AddTextResource(data))
|
|
{
|
|
if(clearerrors) ClearError();
|
|
return true;
|
|
}
|
|
|
|
// Cannot process?
|
|
if(!base.Parse(data, clearerrors)) return false;
|
|
|
|
char[] dots = { ':' };
|
|
char[] brace = { '[' };
|
|
|
|
// Continue until at the end of the stream
|
|
while(SkipWhitespace(true))
|
|
{
|
|
string token = ReadToken();
|
|
|
|
if(!string.IsNullOrEmpty(token))
|
|
{
|
|
// Sound sequence definition
|
|
if(token.StartsWith(":"))
|
|
{
|
|
string val = token.TrimStart(dots);
|
|
if(!string.IsNullOrEmpty(val) && !seqencenames.Contains(val.ToUpper()))
|
|
{
|
|
sequences.Add(val);
|
|
seqencenames.Add(val.ToUpper());
|
|
}
|
|
}
|
|
// Group definition
|
|
else if(token.StartsWith("["))
|
|
{
|
|
string val = token.TrimStart(brace);
|
|
if(!string.IsNullOrEmpty(val) && !seqencenames.Contains(val.ToUpper()))
|
|
{
|
|
sequencegroups.Add(val);
|
|
seqencenames.Add(val.ToUpper());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
internal string[] GetSoundSequences()
|
|
{
|
|
List<string> result = new List<string>(sequencegroups.Count + sequences.Count);
|
|
|
|
// Add to the collection
|
|
sequencegroups.Sort();
|
|
result.AddRange(sequencegroups);
|
|
|
|
sequences.Sort();
|
|
result.AddRange(sequences);
|
|
|
|
// Return the collection
|
|
return result.ToArray();
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |