├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── data ├── __spec.json ├── _spec.json ├── spec.json ├── stash │ └── test01.json └── update-spec.py └── src ├── .editorconfig ├── Examples ├── BundleRead │ ├── BundleRead.csproj │ ├── BundleRead.sln │ ├── Program.cs │ └── Properties │ │ └── launchSettings.json ├── DatRead │ ├── DatRead.csproj │ ├── DatRead.sln │ ├── Program.cs │ └── SwExt.cs ├── GgpkExport │ ├── GgpkExport.csproj │ ├── Options.cs │ ├── Program.cs │ └── Properties │ │ └── launchSettings.json └── StatDescriptionsAndStuff │ ├── Program.cs │ └── StatDescriptionsAndStuff.csproj ├── PoeSharp.Filetypes ├── BuildingBlocks │ ├── DiskDirectory.cs │ ├── DiskFile.cs │ ├── IDirectory.cs │ ├── IFile.cs │ ├── IFileSystemEntry.cs │ ├── IWritableDirectory.cs │ ├── IWritableFile.cs │ ├── JsonSeparatedCaseNamingPolicy.cs │ ├── JsonSnakeCaseNamingPolicy.cs │ ├── ReadOnlyDictionaryBase.cs │ ├── ReadOnlyListBase.cs │ └── SimpleCache.cs ├── Bundle │ ├── BundleFile.cs │ ├── BundleIndex.cs │ ├── BundledDirectory.cs │ ├── BundledFile.cs │ ├── BundlesExtensions.cs │ ├── Internal │ │ ├── BundleFileRecord.cs │ │ ├── BundleInfoRecord.cs │ │ ├── BundlePathRecord.cs │ │ ├── EncodedBundleHeader.cs │ │ ├── FnvHash.cs │ │ ├── LibOoz.cs │ │ └── PathString.cs │ └── lib │ │ ├── libooz.dll │ │ ├── libooz.dll.manifest │ │ └── libooz.so ├── ConversionExtensions.cs ├── Dat │ ├── DatFile.cs │ ├── DatFileIndex.cs │ ├── DatReference.cs │ ├── DatRow.cs │ ├── DatValue.cs │ ├── NullCheckExtensions.cs │ ├── RawDatFile.cs │ └── Specification │ │ ├── DatSpecIndex.cs │ │ └── DatSpecJsonConverter.cs ├── Ggpk │ ├── Exporter │ │ ├── ExportConfig.cs │ │ ├── ExportStatus.cs │ │ ├── ExportedFileEventArgs.cs │ │ └── GgpkExporter.cs │ ├── GgpkDirectory.cs │ ├── GgpkFile.cs │ ├── GgpkFileExtensions.cs │ ├── GgpkFileSystem.cs │ ├── Records │ │ ├── DirectoryEntry.cs │ │ ├── DirectoryRecord.cs │ │ ├── FileRecord.cs │ │ ├── FreeRecord.cs │ │ ├── GgpkRecord.cs │ │ ├── IRecord.cs │ │ ├── RecordHeader.cs │ │ └── RecordType.cs │ └── StreamExtensions.cs ├── Ot │ ├── OtParser.cs │ └── SyntaxTree │ │ ├── LiteralType.cs │ │ ├── OtFile.cs │ │ ├── OtLiteral.cs │ │ └── OtObject.cs ├── ParseException.cs ├── PoeSharp.Filetypes.csproj ├── Psg │ ├── GraphGroup.cs │ ├── GraphNode.cs │ ├── GraphRoot.cs │ └── PsgFile.cs ├── StatDescriptions │ ├── Pidgin.cs │ ├── StatDescriptionParser.cs │ └── SyntaxTree │ │ ├── Description.cs │ │ ├── DescriptionVariation.cs │ │ ├── IInstruction.cs │ │ ├── Include.cs │ │ ├── Language.cs │ │ ├── NoDescription.cs │ │ └── SimpleInstruction.cs ├── StreamExtensions.cs ├── ThrowHelper.cs ├── TypeExtensions.cs ├── Usings.cs └── spec.json ├── PoeSharp.Tests ├── DatTests.cs ├── Dats │ ├── AchievementItems.dat │ ├── AchievementItems.dat64 │ ├── BuffVisuals.dat │ ├── BuffVisuals.dat64 │ ├── BuffVisuals.datl │ ├── BuffVisuals.datl64 │ ├── Environments.dat │ ├── Environments.dat64 │ ├── Environments.datl │ ├── Environments.datl64 │ ├── InvasionMonstersPerArea.dat │ ├── InvasionMonstersPerArea.dat64 │ ├── LabyrinthSectionLayout.dat │ ├── LabyrinthSectionLayout.dat64 │ ├── LabyrinthSectionLayout.datl │ ├── LabyrinthSectionLayout.datl64 │ ├── ShrineBuffs.dat │ ├── ShrineBuffs.dat64 │ ├── Shrines.dat │ ├── Shrines.dat64 │ ├── Shrines.datl │ └── Shrines.datl64 ├── Pidgin.cs └── PoeSharp.Tests.csproj ├── PoeSharp.sln ├── common.props ├── dependencies.props └── nuget.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/README.md -------------------------------------------------------------------------------- /data/__spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/data/__spec.json -------------------------------------------------------------------------------- /data/_spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/data/_spec.json -------------------------------------------------------------------------------- /data/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/data/spec.json -------------------------------------------------------------------------------- /data/stash/test01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/data/stash/test01.json -------------------------------------------------------------------------------- /data/update-spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/data/update-spec.py -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/Examples/BundleRead/BundleRead.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/Examples/BundleRead/BundleRead.csproj -------------------------------------------------------------------------------- /src/Examples/BundleRead/BundleRead.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/Examples/BundleRead/BundleRead.sln -------------------------------------------------------------------------------- /src/Examples/BundleRead/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/Examples/BundleRead/Program.cs -------------------------------------------------------------------------------- /src/Examples/BundleRead/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/Examples/BundleRead/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Examples/DatRead/DatRead.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/Examples/DatRead/DatRead.csproj -------------------------------------------------------------------------------- /src/Examples/DatRead/DatRead.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/Examples/DatRead/DatRead.sln -------------------------------------------------------------------------------- /src/Examples/DatRead/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/Examples/DatRead/Program.cs -------------------------------------------------------------------------------- /src/Examples/DatRead/SwExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/Examples/DatRead/SwExt.cs -------------------------------------------------------------------------------- /src/Examples/GgpkExport/GgpkExport.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/Examples/GgpkExport/GgpkExport.csproj -------------------------------------------------------------------------------- /src/Examples/GgpkExport/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/Examples/GgpkExport/Options.cs -------------------------------------------------------------------------------- /src/Examples/GgpkExport/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/Examples/GgpkExport/Program.cs -------------------------------------------------------------------------------- /src/Examples/GgpkExport/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/Examples/GgpkExport/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Examples/StatDescriptionsAndStuff/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/Examples/StatDescriptionsAndStuff/Program.cs -------------------------------------------------------------------------------- /src/Examples/StatDescriptionsAndStuff/StatDescriptionsAndStuff.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/Examples/StatDescriptionsAndStuff/StatDescriptionsAndStuff.csproj -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/BuildingBlocks/DiskDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/BuildingBlocks/DiskDirectory.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/BuildingBlocks/DiskFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/BuildingBlocks/DiskFile.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/BuildingBlocks/IDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/BuildingBlocks/IDirectory.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/BuildingBlocks/IFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/BuildingBlocks/IFile.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/BuildingBlocks/IFileSystemEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/BuildingBlocks/IFileSystemEntry.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/BuildingBlocks/IWritableDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/BuildingBlocks/IWritableDirectory.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/BuildingBlocks/IWritableFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/BuildingBlocks/IWritableFile.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/BuildingBlocks/JsonSeparatedCaseNamingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/BuildingBlocks/JsonSeparatedCaseNamingPolicy.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/BuildingBlocks/JsonSnakeCaseNamingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/BuildingBlocks/JsonSnakeCaseNamingPolicy.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/BuildingBlocks/ReadOnlyDictionaryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/BuildingBlocks/ReadOnlyDictionaryBase.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/BuildingBlocks/ReadOnlyListBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/BuildingBlocks/ReadOnlyListBase.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/BuildingBlocks/SimpleCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/BuildingBlocks/SimpleCache.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Bundle/BundleFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Bundle/BundleFile.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Bundle/BundleIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Bundle/BundleIndex.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Bundle/BundledDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Bundle/BundledDirectory.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Bundle/BundledFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Bundle/BundledFile.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Bundle/BundlesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Bundle/BundlesExtensions.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Bundle/Internal/BundleFileRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Bundle/Internal/BundleFileRecord.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Bundle/Internal/BundleInfoRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Bundle/Internal/BundleInfoRecord.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Bundle/Internal/BundlePathRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Bundle/Internal/BundlePathRecord.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Bundle/Internal/EncodedBundleHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Bundle/Internal/EncodedBundleHeader.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Bundle/Internal/FnvHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Bundle/Internal/FnvHash.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Bundle/Internal/LibOoz.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Bundle/Internal/LibOoz.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Bundle/Internal/PathString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Bundle/Internal/PathString.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Bundle/lib/libooz.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Bundle/lib/libooz.dll -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Bundle/lib/libooz.dll.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Bundle/lib/libooz.dll.manifest -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Bundle/lib/libooz.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Bundle/lib/libooz.so -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/ConversionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/ConversionExtensions.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Dat/DatFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Dat/DatFile.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Dat/DatFileIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Dat/DatFileIndex.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Dat/DatReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Dat/DatReference.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Dat/DatRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Dat/DatRow.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Dat/DatValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Dat/DatValue.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Dat/NullCheckExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Dat/NullCheckExtensions.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Dat/RawDatFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Dat/RawDatFile.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Dat/Specification/DatSpecIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Dat/Specification/DatSpecIndex.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Dat/Specification/DatSpecJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Dat/Specification/DatSpecJsonConverter.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ggpk/Exporter/ExportConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ggpk/Exporter/ExportConfig.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ggpk/Exporter/ExportStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ggpk/Exporter/ExportStatus.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ggpk/Exporter/ExportedFileEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ggpk/Exporter/ExportedFileEventArgs.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ggpk/Exporter/GgpkExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ggpk/Exporter/GgpkExporter.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ggpk/GgpkDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ggpk/GgpkDirectory.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ggpk/GgpkFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ggpk/GgpkFile.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ggpk/GgpkFileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ggpk/GgpkFileExtensions.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ggpk/GgpkFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ggpk/GgpkFileSystem.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ggpk/Records/DirectoryEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ggpk/Records/DirectoryEntry.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ggpk/Records/DirectoryRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ggpk/Records/DirectoryRecord.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ggpk/Records/FileRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ggpk/Records/FileRecord.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ggpk/Records/FreeRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ggpk/Records/FreeRecord.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ggpk/Records/GgpkRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ggpk/Records/GgpkRecord.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ggpk/Records/IRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ggpk/Records/IRecord.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ggpk/Records/RecordHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ggpk/Records/RecordHeader.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ggpk/Records/RecordType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ggpk/Records/RecordType.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ggpk/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ggpk/StreamExtensions.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ot/OtParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ot/OtParser.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ot/SyntaxTree/LiteralType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ot/SyntaxTree/LiteralType.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ot/SyntaxTree/OtFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ot/SyntaxTree/OtFile.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ot/SyntaxTree/OtLiteral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ot/SyntaxTree/OtLiteral.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Ot/SyntaxTree/OtObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Ot/SyntaxTree/OtObject.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/ParseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/ParseException.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/PoeSharp.Filetypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/PoeSharp.Filetypes.csproj -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Psg/GraphGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Psg/GraphGroup.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Psg/GraphNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Psg/GraphNode.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Psg/GraphRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Psg/GraphRoot.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Psg/PsgFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Psg/PsgFile.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/StatDescriptions/Pidgin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/StatDescriptions/Pidgin.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/StatDescriptions/StatDescriptionParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/StatDescriptions/StatDescriptionParser.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/StatDescriptions/SyntaxTree/Description.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/StatDescriptions/SyntaxTree/Description.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/StatDescriptions/SyntaxTree/DescriptionVariation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/StatDescriptions/SyntaxTree/DescriptionVariation.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/StatDescriptions/SyntaxTree/IInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/StatDescriptions/SyntaxTree/IInstruction.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/StatDescriptions/SyntaxTree/Include.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/StatDescriptions/SyntaxTree/Include.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/StatDescriptions/SyntaxTree/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/StatDescriptions/SyntaxTree/Language.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/StatDescriptions/SyntaxTree/NoDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/StatDescriptions/SyntaxTree/NoDescription.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/StatDescriptions/SyntaxTree/SimpleInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/StatDescriptions/SyntaxTree/SimpleInstruction.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/StreamExtensions.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/ThrowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/ThrowHelper.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/TypeExtensions.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/Usings.cs -------------------------------------------------------------------------------- /src/PoeSharp.Filetypes/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Filetypes/spec.json -------------------------------------------------------------------------------- /src/PoeSharp.Tests/DatTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/DatTests.cs -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/AchievementItems.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/AchievementItems.dat -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/AchievementItems.dat64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/AchievementItems.dat64 -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/BuffVisuals.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/BuffVisuals.dat -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/BuffVisuals.dat64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/BuffVisuals.dat64 -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/BuffVisuals.datl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/BuffVisuals.datl -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/BuffVisuals.datl64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/BuffVisuals.datl64 -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/Environments.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/Environments.dat -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/Environments.dat64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/Environments.dat64 -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/Environments.datl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/Environments.datl -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/Environments.datl64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/Environments.datl64 -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/InvasionMonstersPerArea.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/InvasionMonstersPerArea.dat -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/InvasionMonstersPerArea.dat64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/InvasionMonstersPerArea.dat64 -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/LabyrinthSectionLayout.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/LabyrinthSectionLayout.dat -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/LabyrinthSectionLayout.dat64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/LabyrinthSectionLayout.dat64 -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/LabyrinthSectionLayout.datl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/LabyrinthSectionLayout.datl -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/LabyrinthSectionLayout.datl64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/LabyrinthSectionLayout.datl64 -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/ShrineBuffs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/ShrineBuffs.dat -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/ShrineBuffs.dat64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/ShrineBuffs.dat64 -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/Shrines.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/Shrines.dat -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/Shrines.dat64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/Shrines.dat64 -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/Shrines.datl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/Shrines.datl -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Dats/Shrines.datl64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Dats/Shrines.datl64 -------------------------------------------------------------------------------- /src/PoeSharp.Tests/Pidgin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/Pidgin.cs -------------------------------------------------------------------------------- /src/PoeSharp.Tests/PoeSharp.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.Tests/PoeSharp.Tests.csproj -------------------------------------------------------------------------------- /src/PoeSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/PoeSharp.sln -------------------------------------------------------------------------------- /src/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/common.props -------------------------------------------------------------------------------- /src/dependencies.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/dependencies.props -------------------------------------------------------------------------------- /src/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreandersen/PoeSharp/HEAD/src/nuget.config --------------------------------------------------------------------------------