├── .gitignore ├── DBC Viewer.sln ├── DBC Viewer ├── BinaryFormatter.cs ├── DBC Viewer.csproj ├── Extensions.cs ├── FilterExpressions.cs ├── FilterOptions.cs ├── Forms │ ├── AboutBox.Designer.cs │ ├── AboutBox.cs │ ├── AboutBox.resx │ ├── DefinitionCatalog.Designer.cs │ ├── DefinitionCatalog.cs │ ├── DefinitionCatalog.resx │ ├── DefinitionEditor.Designer.cs │ ├── DefinitionEditor.cs │ ├── DefinitionEditor.resx │ ├── DefinitionSelect.Designer.cs │ ├── DefinitionSelect.cs │ ├── DefinitionSelect.resx │ ├── FilterForm.Designer.cs │ ├── FilterForm.Predicates.cs │ ├── FilterForm.cs │ ├── FilterForm.resx │ ├── MainForm.Designer.cs │ ├── MainForm.EventHandlers.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── PluginsForm.Designer.cs │ ├── PluginsForm.cs │ └── PluginsForm.resx ├── MyDataGridView.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Readers │ ├── ADBReader.cs │ ├── DB2Reader.cs │ ├── DB3Reader.cs │ ├── DB4Reader.cs │ ├── DB5Reader.cs │ ├── DB6Reader.cs │ ├── DBCReader.cs │ ├── DBCReaderGeneric.cs │ ├── DBReaderFactory.cs │ ├── STLReader.cs │ └── WDBReader.cs ├── app.config ├── dbc.ico └── definitions │ ├── dbclayout.xml.bak │ ├── dblayout_11792.xml │ ├── dblayout_18179.xml │ ├── dblayout_21414.xml │ ├── dblayout_21691.xml │ ├── dblayout_21737.xml │ ├── dblayout_21796.xml │ ├── dblayout_21846.xml │ ├── dblayout_21874.xml │ ├── dblayout_21952.xml │ ├── dblayout_21996.xml │ ├── dblayout_22018.xml │ ├── dblayout_23436.xml │ ├── dblayout_23758.xml │ ├── dblayout_23910.xml │ ├── dblayout_23958.xml │ ├── dblayout_empty.xml │ └── dblayout_old.xml ├── Export2SQL ├── Export2SQL.cs ├── Export2SQL.csproj └── Properties │ └── AssemblyInfo.cs ├── ExportFileDataAsLuaTable ├── ExportFileDataAsLuaTable.csproj ├── FileDataLuaExporter.cs └── Properties │ └── AssemblyInfo.cs ├── PluginInterface ├── IPlugin.cs ├── IWowClientDBReader.cs ├── PluginInterface.csproj ├── Properties │ └── AssemblyInfo.cs └── TableDefinition.cs ├── README.mdown └── TestPlugin ├── Properties └── AssemblyInfo.cs ├── TestPlugin.cs └── TestPlugin.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/.gitignore -------------------------------------------------------------------------------- /DBC Viewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer.sln -------------------------------------------------------------------------------- /DBC Viewer/BinaryFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/BinaryFormatter.cs -------------------------------------------------------------------------------- /DBC Viewer/DBC Viewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/DBC Viewer.csproj -------------------------------------------------------------------------------- /DBC Viewer/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Extensions.cs -------------------------------------------------------------------------------- /DBC Viewer/FilterExpressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/FilterExpressions.cs -------------------------------------------------------------------------------- /DBC Viewer/FilterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/FilterOptions.cs -------------------------------------------------------------------------------- /DBC Viewer/Forms/AboutBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/AboutBox.Designer.cs -------------------------------------------------------------------------------- /DBC Viewer/Forms/AboutBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/AboutBox.cs -------------------------------------------------------------------------------- /DBC Viewer/Forms/AboutBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/AboutBox.resx -------------------------------------------------------------------------------- /DBC Viewer/Forms/DefinitionCatalog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/DefinitionCatalog.Designer.cs -------------------------------------------------------------------------------- /DBC Viewer/Forms/DefinitionCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/DefinitionCatalog.cs -------------------------------------------------------------------------------- /DBC Viewer/Forms/DefinitionCatalog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/DefinitionCatalog.resx -------------------------------------------------------------------------------- /DBC Viewer/Forms/DefinitionEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/DefinitionEditor.Designer.cs -------------------------------------------------------------------------------- /DBC Viewer/Forms/DefinitionEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/DefinitionEditor.cs -------------------------------------------------------------------------------- /DBC Viewer/Forms/DefinitionEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/DefinitionEditor.resx -------------------------------------------------------------------------------- /DBC Viewer/Forms/DefinitionSelect.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/DefinitionSelect.Designer.cs -------------------------------------------------------------------------------- /DBC Viewer/Forms/DefinitionSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/DefinitionSelect.cs -------------------------------------------------------------------------------- /DBC Viewer/Forms/DefinitionSelect.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/DefinitionSelect.resx -------------------------------------------------------------------------------- /DBC Viewer/Forms/FilterForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/FilterForm.Designer.cs -------------------------------------------------------------------------------- /DBC Viewer/Forms/FilterForm.Predicates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/FilterForm.Predicates.cs -------------------------------------------------------------------------------- /DBC Viewer/Forms/FilterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/FilterForm.cs -------------------------------------------------------------------------------- /DBC Viewer/Forms/FilterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/FilterForm.resx -------------------------------------------------------------------------------- /DBC Viewer/Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /DBC Viewer/Forms/MainForm.EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/MainForm.EventHandlers.cs -------------------------------------------------------------------------------- /DBC Viewer/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/MainForm.cs -------------------------------------------------------------------------------- /DBC Viewer/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/MainForm.resx -------------------------------------------------------------------------------- /DBC Viewer/Forms/PluginsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/PluginsForm.Designer.cs -------------------------------------------------------------------------------- /DBC Viewer/Forms/PluginsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/PluginsForm.cs -------------------------------------------------------------------------------- /DBC Viewer/Forms/PluginsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Forms/PluginsForm.resx -------------------------------------------------------------------------------- /DBC Viewer/MyDataGridView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/MyDataGridView.cs -------------------------------------------------------------------------------- /DBC Viewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Program.cs -------------------------------------------------------------------------------- /DBC Viewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DBC Viewer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /DBC Viewer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Properties/Resources.resx -------------------------------------------------------------------------------- /DBC Viewer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /DBC Viewer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Properties/Settings.settings -------------------------------------------------------------------------------- /DBC Viewer/Readers/ADBReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Readers/ADBReader.cs -------------------------------------------------------------------------------- /DBC Viewer/Readers/DB2Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Readers/DB2Reader.cs -------------------------------------------------------------------------------- /DBC Viewer/Readers/DB3Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Readers/DB3Reader.cs -------------------------------------------------------------------------------- /DBC Viewer/Readers/DB4Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Readers/DB4Reader.cs -------------------------------------------------------------------------------- /DBC Viewer/Readers/DB5Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Readers/DB5Reader.cs -------------------------------------------------------------------------------- /DBC Viewer/Readers/DB6Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Readers/DB6Reader.cs -------------------------------------------------------------------------------- /DBC Viewer/Readers/DBCReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Readers/DBCReader.cs -------------------------------------------------------------------------------- /DBC Viewer/Readers/DBCReaderGeneric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Readers/DBCReaderGeneric.cs -------------------------------------------------------------------------------- /DBC Viewer/Readers/DBReaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Readers/DBReaderFactory.cs -------------------------------------------------------------------------------- /DBC Viewer/Readers/STLReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Readers/STLReader.cs -------------------------------------------------------------------------------- /DBC Viewer/Readers/WDBReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/Readers/WDBReader.cs -------------------------------------------------------------------------------- /DBC Viewer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/app.config -------------------------------------------------------------------------------- /DBC Viewer/dbc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/dbc.ico -------------------------------------------------------------------------------- /DBC Viewer/definitions/dbclayout.xml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/definitions/dbclayout.xml.bak -------------------------------------------------------------------------------- /DBC Viewer/definitions/dblayout_11792.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/definitions/dblayout_11792.xml -------------------------------------------------------------------------------- /DBC Viewer/definitions/dblayout_18179.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/definitions/dblayout_18179.xml -------------------------------------------------------------------------------- /DBC Viewer/definitions/dblayout_21414.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/definitions/dblayout_21414.xml -------------------------------------------------------------------------------- /DBC Viewer/definitions/dblayout_21691.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/definitions/dblayout_21691.xml -------------------------------------------------------------------------------- /DBC Viewer/definitions/dblayout_21737.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/definitions/dblayout_21737.xml -------------------------------------------------------------------------------- /DBC Viewer/definitions/dblayout_21796.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/definitions/dblayout_21796.xml -------------------------------------------------------------------------------- /DBC Viewer/definitions/dblayout_21846.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/definitions/dblayout_21846.xml -------------------------------------------------------------------------------- /DBC Viewer/definitions/dblayout_21874.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/definitions/dblayout_21874.xml -------------------------------------------------------------------------------- /DBC Viewer/definitions/dblayout_21952.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/definitions/dblayout_21952.xml -------------------------------------------------------------------------------- /DBC Viewer/definitions/dblayout_21996.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/definitions/dblayout_21996.xml -------------------------------------------------------------------------------- /DBC Viewer/definitions/dblayout_22018.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/definitions/dblayout_22018.xml -------------------------------------------------------------------------------- /DBC Viewer/definitions/dblayout_23436.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/definitions/dblayout_23436.xml -------------------------------------------------------------------------------- /DBC Viewer/definitions/dblayout_23758.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/definitions/dblayout_23758.xml -------------------------------------------------------------------------------- /DBC Viewer/definitions/dblayout_23910.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/definitions/dblayout_23910.xml -------------------------------------------------------------------------------- /DBC Viewer/definitions/dblayout_23958.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/definitions/dblayout_23958.xml -------------------------------------------------------------------------------- /DBC Viewer/definitions/dblayout_empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/definitions/dblayout_empty.xml -------------------------------------------------------------------------------- /DBC Viewer/definitions/dblayout_old.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/DBC Viewer/definitions/dblayout_old.xml -------------------------------------------------------------------------------- /Export2SQL/Export2SQL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/Export2SQL/Export2SQL.cs -------------------------------------------------------------------------------- /Export2SQL/Export2SQL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/Export2SQL/Export2SQL.csproj -------------------------------------------------------------------------------- /Export2SQL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/Export2SQL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExportFileDataAsLuaTable/ExportFileDataAsLuaTable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/ExportFileDataAsLuaTable/ExportFileDataAsLuaTable.csproj -------------------------------------------------------------------------------- /ExportFileDataAsLuaTable/FileDataLuaExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/ExportFileDataAsLuaTable/FileDataLuaExporter.cs -------------------------------------------------------------------------------- /ExportFileDataAsLuaTable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/ExportFileDataAsLuaTable/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PluginInterface/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/PluginInterface/IPlugin.cs -------------------------------------------------------------------------------- /PluginInterface/IWowClientDBReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/PluginInterface/IWowClientDBReader.cs -------------------------------------------------------------------------------- /PluginInterface/PluginInterface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/PluginInterface/PluginInterface.csproj -------------------------------------------------------------------------------- /PluginInterface/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/PluginInterface/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PluginInterface/TableDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/PluginInterface/TableDefinition.cs -------------------------------------------------------------------------------- /README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/README.mdown -------------------------------------------------------------------------------- /TestPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/TestPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestPlugin/TestPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/TestPlugin/TestPlugin.cs -------------------------------------------------------------------------------- /TestPlugin/TestPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomrus88/dbcviewer/HEAD/TestPlugin/TestPlugin.csproj --------------------------------------------------------------------------------