2019-01-27 17:40:08 -05:00
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
2019-01-26 21:33:37 -05:00
|
|
|
|
{
|
|
|
|
|
public interface IEventParserConfiguration
|
|
|
|
|
{
|
2019-02-02 20:40:37 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// stores the fs_game directory (this folder may vary between different clients)
|
|
|
|
|
/// </summary>
|
2019-01-26 21:33:37 -05:00
|
|
|
|
string GameDirectory { get; set; }
|
2019-02-02 20:40:37 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// stores the regex information for a say event printed in the game log
|
|
|
|
|
/// </summary>
|
2019-01-27 17:40:08 -05:00
|
|
|
|
ParserRegex Say { get; set; }
|
2019-02-02 20:40:37 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// stores the regex information for a join event printed in the game log
|
|
|
|
|
/// </summary>
|
2019-01-27 17:40:08 -05:00
|
|
|
|
ParserRegex Join { get; set; }
|
2019-02-02 20:40:37 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// stores the regex information for a quit event printed in the game log
|
|
|
|
|
/// </summary>
|
2019-01-27 17:40:08 -05:00
|
|
|
|
ParserRegex Quit { get; set; }
|
2019-02-02 20:40:37 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// stores the regex information for a kill event printed in the game log
|
|
|
|
|
/// </summary>
|
2019-01-27 17:40:08 -05:00
|
|
|
|
ParserRegex Kill { get; set; }
|
2019-02-02 20:40:37 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// stores the regex information for a damage event printed in the game log
|
|
|
|
|
/// </summary>
|
2019-01-27 17:40:08 -05:00
|
|
|
|
ParserRegex Damage { get; set; }
|
2019-02-02 20:40:37 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// stores the regex information for an action event printed in the game log
|
|
|
|
|
/// </summary>
|
2019-01-27 19:41:54 -05:00
|
|
|
|
ParserRegex Action { get; set; }
|
2019-01-26 21:33:37 -05:00
|
|
|
|
}
|
|
|
|
|
}
|