2022-01-26 10:32:16 -06:00
|
|
|
|
using System.Globalization;
|
2020-01-15 18:43:52 -06:00
|
|
|
|
|
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
2019-01-26 20:33:37 -06:00
|
|
|
|
{
|
|
|
|
|
public interface IEventParserConfiguration
|
|
|
|
|
{
|
2019-02-02 19:40:37 -06:00
|
|
|
|
/// <summary>
|
2022-01-26 10:32:16 -06:00
|
|
|
|
/// stores the fs_game directory (this folder may vary between different clients)
|
2019-02-02 19:40:37 -06:00
|
|
|
|
/// </summary>
|
2019-01-26 20:33:37 -06:00
|
|
|
|
string GameDirectory { get; set; }
|
2020-01-15 18:43:52 -06:00
|
|
|
|
|
2019-02-02 19:40:37 -06:00
|
|
|
|
/// <summary>
|
2022-01-26 10:32:16 -06:00
|
|
|
|
/// stores the regex information for a say event printed in the game log
|
2019-02-02 19:40:37 -06:00
|
|
|
|
/// </summary>
|
2019-01-27 16:40:08 -06:00
|
|
|
|
ParserRegex Say { get; set; }
|
2020-01-15 18:43:52 -06:00
|
|
|
|
|
2019-02-02 19:40:37 -06:00
|
|
|
|
/// <summary>
|
2022-01-26 10:32:16 -06:00
|
|
|
|
/// stores the regex information for a join event printed in the game log
|
2019-02-02 19:40:37 -06:00
|
|
|
|
/// </summary>
|
2019-01-27 16:40:08 -06:00
|
|
|
|
ParserRegex Join { get; set; }
|
2020-01-15 18:43:52 -06:00
|
|
|
|
|
2019-02-02 19:40:37 -06:00
|
|
|
|
/// <summary>
|
2022-01-26 10:32:16 -06:00
|
|
|
|
/// stores the regex information for a quit event printed in the game log
|
2019-02-02 19:40:37 -06:00
|
|
|
|
/// </summary>
|
2019-01-27 16:40:08 -06:00
|
|
|
|
ParserRegex Quit { get; set; }
|
2020-01-15 18:43:52 -06:00
|
|
|
|
|
2019-02-02 19:40:37 -06:00
|
|
|
|
/// <summary>
|
2022-01-26 10:32:16 -06:00
|
|
|
|
/// stores the regex information for a kill event printed in the game log
|
2019-02-02 19:40:37 -06:00
|
|
|
|
/// </summary>
|
2019-01-27 16:40:08 -06:00
|
|
|
|
ParserRegex Kill { get; set; }
|
2020-01-15 18:43:52 -06:00
|
|
|
|
|
2019-02-02 19:40:37 -06:00
|
|
|
|
/// <summary>
|
2022-01-26 10:32:16 -06:00
|
|
|
|
/// stores the regex information for a damage event printed in the game log
|
2019-02-02 19:40:37 -06:00
|
|
|
|
/// </summary>
|
2019-01-27 16:40:08 -06:00
|
|
|
|
ParserRegex Damage { get; set; }
|
2020-01-15 18:43:52 -06:00
|
|
|
|
|
2019-02-02 19:40:37 -06:00
|
|
|
|
/// <summary>
|
2022-01-26 10:32:16 -06:00
|
|
|
|
/// stores the regex information for an action event printed in the game log
|
2019-02-02 19:40:37 -06:00
|
|
|
|
/// </summary>
|
2019-01-27 18:41:54 -06:00
|
|
|
|
ParserRegex Action { get; set; }
|
2020-01-15 18:43:52 -06:00
|
|
|
|
|
2020-04-01 14:11:56 -05:00
|
|
|
|
/// <summary>
|
2022-01-26 10:32:16 -06:00
|
|
|
|
/// stores the regex information for the time prefix in game log
|
2020-04-01 14:11:56 -05:00
|
|
|
|
/// </summary>
|
|
|
|
|
ParserRegex Time { get; set; }
|
|
|
|
|
|
2021-06-03 10:51:03 -05:00
|
|
|
|
/// <summary>
|
2022-01-26 10:32:16 -06:00
|
|
|
|
/// stores the regex information for the map change game log
|
2021-06-03 10:51:03 -05:00
|
|
|
|
/// </summary>
|
|
|
|
|
ParserRegex MapChange { get; }
|
2022-01-26 10:32:16 -06:00
|
|
|
|
|
2021-06-03 10:51:03 -05:00
|
|
|
|
/// <summary>
|
2022-01-26 10:32:16 -06:00
|
|
|
|
/// stores the regex information for the map end game log
|
2021-06-03 10:51:03 -05:00
|
|
|
|
/// </summary>
|
|
|
|
|
ParserRegex MapEnd { get; }
|
|
|
|
|
|
2020-01-15 18:43:52 -06:00
|
|
|
|
/// <summary>
|
2022-01-26 10:32:16 -06:00
|
|
|
|
/// indicates the format expected for parsed guids
|
2020-01-15 18:43:52 -06:00
|
|
|
|
/// </summary>
|
|
|
|
|
NumberStyles GuidNumberStyle { get; set; }
|
2019-01-26 20:33:37 -06:00
|
|
|
|
}
|
2022-01-26 10:32:16 -06:00
|
|
|
|
}
|