diff --git a/SabreTools.Helper/Data/Enums.cs b/SabreTools.Helper/Data/Enums.cs
index d266f707..2b558bff 100644
--- a/SabreTools.Helper/Data/Enums.cs
+++ b/SabreTools.Helper/Data/Enums.cs
@@ -1,5 +1,7 @@
namespace SabreTools.Helper
{
+ #region DATabase
+
///
/// Possible DAT import classes
///
@@ -17,58 +19,9 @@
Good,
}
- ///
- /// Possible detected header type
- ///
- public enum HeaderType
- {
- None = 0,
- a7800,
- fds,
- lynx,
- //n64,
- nes,
- pce,
- psid,
- snes,
- spc,
- }
+ #endregion
- ///
- /// Severity of the logging statement
- ///
- public enum LogLevel
- {
- VERBOSE = 0,
- USER,
- WARNING,
- ERROR,
- }
-
- ///
- /// Determines which type of duplicate a file is
- ///
- public enum DupeType
- {
- None = 0,
- InternalHash = 1,
- InternalAll = 2,
- ExternalHash = 3,
- ExternalAll = 4,
- }
-
- ///
- /// Determine what type of file an item is
- ///
- public enum ItemType
- {
- Rom = 0,
- Disk = 1,
- Sample = 2,
- Release = 3,
- BiosSet = 4,
- Archive = 5,
- }
+ #region DAT related
///
/// Determines forcemerging tag for DAT output
@@ -101,14 +54,54 @@
Unzip,
}
+ #endregion
+
+ #region Rom related
+
///
- /// Determines the level to scan archives at
+ /// Determines which type of duplicate a file is
///
- public enum ArchiveScanLevel
+ public enum DupeType
{
- Both = 0,
- Internal,
- External,
+ None = 0,
+ InternalHash = 1,
+ InternalAll = 2,
+ ExternalHash = 3,
+ ExternalAll = 4,
+ }
+
+ ///
+ /// Determine what type of file an item is
+ ///
+ public enum ItemType
+ {
+ Rom = 0,
+ Disk = 1,
+ Sample = 2,
+ Release = 3,
+ BiosSet = 4,
+ Archive = 5,
+ }
+
+ #endregion
+
+ #region Skippers and Mappers
+
+ ///
+ /// Possible detected header type
+ ///
+ public enum HeaderType
+ {
+ None = 0,
+ a7800,
+ fds,
+ lynx,
+ //n64,
+ nes,
+ pce,
+ psid,
+ snes,
+ spc,
}
///
@@ -145,15 +138,30 @@
Greater,
}
+ #endregion
+
+ #region Miscellaneous
+
///
- /// Determines which fields should be split on
+ /// Severity of the logging statement
///
- public enum SplitType
+ public enum LogLevel
{
- None = 0,
- Extension = 1,
- BestAvailableHash = 2,
- Type = 3,
- Size = 4,
+ VERBOSE = 0,
+ USER,
+ WARNING,
+ ERROR,
}
+
+ ///
+ /// Determines the level to scan archives at
+ ///
+ public enum ArchiveScanLevel
+ {
+ Both = 0,
+ Internal,
+ External,
+ }
+
+ #endregion
}