2019-01-26 21:33:37 -05:00
|
|
|
|
using SharedLibraryCore.RCon;
|
2020-06-16 18:16:12 -04:00
|
|
|
|
using System.Collections.Generic;
|
2020-01-15 19:43:52 -05:00
|
|
|
|
using System.Globalization;
|
2019-01-26 21:33:37 -05:00
|
|
|
|
|
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IRConParserConfiguration
|
|
|
|
|
{
|
2019-02-02 20:40:37 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// stores the command format for console commands
|
|
|
|
|
/// </summary>
|
2019-01-26 21:33:37 -05:00
|
|
|
|
CommandPrefix CommandPrefixes { get; set; }
|
2019-11-18 15:02:35 -05:00
|
|
|
|
|
2019-02-02 20:40:37 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// stores the regex info for parsing get status response
|
|
|
|
|
/// </summary>
|
2019-01-27 19:41:54 -05:00
|
|
|
|
ParserRegex Status { get; set; }
|
2019-11-18 15:02:35 -05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// stores regex info for parsing the map line from rcon status response
|
|
|
|
|
/// </summary>
|
|
|
|
|
ParserRegex MapStatus { get; set; }
|
|
|
|
|
|
2020-08-05 10:30:02 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// stores regex info for parsing the gametype line from rcon status response
|
|
|
|
|
/// </summary>
|
|
|
|
|
ParserRegex GametypeStatus { get; set; }
|
|
|
|
|
|
2019-02-02 20:40:37 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// stores the regex info for parsing get DVAR responses
|
|
|
|
|
/// </summary>
|
2019-02-01 20:49:25 -05:00
|
|
|
|
ParserRegex Dvar { get; set; }
|
2019-11-18 15:02:35 -05:00
|
|
|
|
|
2020-04-17 16:05:16 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// stores the regex info for parsing the header of a status response
|
|
|
|
|
/// </summary>
|
|
|
|
|
ParserRegex StatusHeader { get; set; }
|
|
|
|
|
|
2020-01-13 17:51:16 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Specifies the expected response message from rcon when the server is not running
|
|
|
|
|
/// </summary>
|
|
|
|
|
string ServerNotRunningResponse { get; set; }
|
|
|
|
|
|
2019-02-03 21:47:05 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// indicates if the application should wait for response from server
|
|
|
|
|
/// when executing a command
|
|
|
|
|
/// </summary>
|
|
|
|
|
bool WaitForResponse { get; set; }
|
2020-01-15 19:43:52 -05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// indicates the format expected for parsed guids
|
|
|
|
|
/// </summary>
|
|
|
|
|
NumberStyles GuidNumberStyle { get; set; }
|
2020-06-16 18:16:12 -04:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// specifies simple mappings for dvar names in scenarios where the needed
|
|
|
|
|
/// information is not stored in a traditional dvar name
|
|
|
|
|
/// </summary>
|
|
|
|
|
IDictionary<string, string> OverrideDvarNameMapping { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// specifies the default dvar values for games that don't support certain dvars
|
|
|
|
|
/// </summary>
|
|
|
|
|
IDictionary<string, string> DefaultDvarValues { get; set; }
|
2020-11-17 19:24:54 -05:00
|
|
|
|
|
2020-11-19 21:48:25 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// specifies how many lines can be used for ingame notice
|
|
|
|
|
/// </summary>
|
2020-11-17 19:24:54 -05:00
|
|
|
|
int NoticeMaximumLines { get; set; }
|
|
|
|
|
|
2020-11-19 21:48:25 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// specifies how many characters can be displayed per notice line
|
|
|
|
|
/// </summary>
|
2020-11-17 19:24:54 -05:00
|
|
|
|
int NoticeMaxCharactersPerLine { get; set; }
|
2020-11-19 21:48:25 -05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// specifies the characters used to split a line
|
|
|
|
|
/// </summary>
|
|
|
|
|
string NoticeLineSeparator { get; set; }
|
2019-01-26 21:33:37 -05:00
|
|
|
|
}
|
|
|
|
|
}
|