[Stats] Misc. cleanup and Stats overhaul

This commit is contained in:
Matt Nadareski
2016-09-26 14:38:05 -07:00
parent fa5e87a9e1
commit e0c3623cbb
7 changed files with 190 additions and 200 deletions

View File

@@ -1,26 +1,5 @@
namespace SabreTools.Helper
{
#region DATabase
/// <summary>
/// Possible DAT import classes
/// </summary>
public enum DatType
{
none = 0,
Custom,
MAME,
NoIntro,
Redump,
TOSEC,
TruRip,
NonGood,
MaybeIntro,
Good,
}
#endregion
#region DatFile related
/// <summary>
@@ -97,6 +76,17 @@
NotNodump = 5, // This is a fake flag that is used for filter only
}
/// <summary>
/// Determine which format to output Stats to
/// </summary>
public enum StatOutputFormat
{
None = 0,
HTML = 1,
CSV = 2,
TSV = 3,
}
#endregion
#region Skippers and Mappers