mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
40 lines
No EOL
1.3 KiB
C#
Executable file
40 lines
No EOL
1.3 KiB
C#
Executable file
using CodeImp.DoomBuilder.Compilers;
|
|
using CodeImp.DoomBuilder.Config;
|
|
using CodeImp.DoomBuilder.Controls;
|
|
using CodeImp.DoomBuilder.ZDoom.Scripting;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace CodeImp.DoomBuilder.Data.Scripting
|
|
{
|
|
[ScriptHandler(ScriptType.ZSCRIPT)]
|
|
internal class ZScriptScriptHandler : ScriptHandler
|
|
{
|
|
#region ================== Methods
|
|
|
|
//TODO: Remove ScriptDocumentTab from here
|
|
public override List<CompilerError> UpdateFunctionBarItems(ScriptDocumentTab tab, MemoryStream stream, ComboBox target)
|
|
{
|
|
List<CompilerError> result = new List<CompilerError>();
|
|
if (stream == null) return result;
|
|
target.Items.Clear();
|
|
|
|
ZScriptParserSE parser = new ZScriptParserSE();
|
|
TextResourceData data = new TextResourceData(stream, new DataLocation(), "ZSCRIPT");
|
|
|
|
if (parser.Parse(data, false))
|
|
target.Items.AddRange(parser.Types.ToArray());
|
|
|
|
if (parser.HasError)
|
|
result.Add(new CompilerError(parser.ErrorDescription, parser.ErrorSource, parser.ErrorLine));
|
|
|
|
return result;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |