32 lines
1.2 KiB
C#
32 lines
1.2 KiB
C#
using IW4MAdmin.Application.Factories;
|
|
using SharedLibraryCore.Interfaces;
|
|
using SharedLibraryCore.RCon;
|
|
using System.Globalization;
|
|
|
|
namespace IW4MAdmin.Application.RconParsers
|
|
{
|
|
/// <summary>
|
|
/// generic implementation of the IRConParserConfiguration
|
|
/// allows script plugins to generate dynamic RCon configurations
|
|
/// </summary>
|
|
sealed internal class DynamicRConParserConfiguration : IRConParserConfiguration
|
|
{
|
|
public CommandPrefix CommandPrefixes { get; set; }
|
|
public ParserRegex Status { get; set; }
|
|
public ParserRegex MapStatus { get; set; }
|
|
public ParserRegex Dvar { get; set; }
|
|
public ParserRegex StatusHeader { get; set; }
|
|
public string ServerNotRunningResponse { get; set; }
|
|
public bool WaitForResponse { get; set; } = true;
|
|
public NumberStyles GuidNumberStyle { get; set; } = NumberStyles.HexNumber;
|
|
|
|
public DynamicRConParserConfiguration(IParserRegexFactory parserRegexFactory)
|
|
{
|
|
Status = parserRegexFactory.CreateParserRegex();
|
|
MapStatus = parserRegexFactory.CreateParserRegex();
|
|
Dvar = parserRegexFactory.CreateParserRegex();
|
|
StatusHeader = parserRegexFactory.CreateParserRegex();
|
|
}
|
|
}
|
|
}
|