├── .gitattributes ├── .github ├── banner.png ├── icon.png ├── mzingaviewer-linux.png ├── mzingaviewer-macos.png ├── mzingaviewer-windows.png └── workflows │ ├── ci.yml │ ├── pr.yml │ └── pub.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── scripts ├── Build.ps1 ├── BuildAll.ps1 ├── BuildAppxBundle.ps1 ├── BuildLinuxArm64.ps1 ├── BuildLinuxX64.ps1 ├── BuildMacOSArm64.ps1 ├── BuildMacOSX64.ps1 ├── BuildSetup.ps1 ├── BuildUnpacked.ps1 ├── BuildWinArm64.Setup.ps1 ├── BuildWinArm64.ps1 ├── BuildWinStore.ps1 ├── BuildWinX64.Setup.ps1 ├── BuildWinX64.ps1 ├── BuildWinX86.Setup.ps1 ├── BuildWinX86.ps1 ├── CreateReleaseNotes.ps1 ├── Licenses.txt ├── PublishRelease.ps1 ├── RunTests.ps1 ├── TarRelease.ps1 └── ZipRelease.ps1 └── src ├── .editorconfig ├── Directory.Build.props ├── Mzinga.Engine ├── Mzinga.Engine.csproj ├── Program.cs └── SigIntMonitor.cs ├── Mzinga.Perft ├── Mzinga.Perft.csproj └── Program.cs ├── Mzinga.Test ├── BoardTests.cs ├── GameAITests.cs ├── GameRecordingTests.cs ├── MetricWeightsTests.cs ├── MoveTests.cs ├── Mzinga.Test.csproj ├── PositionTests.cs ├── PuzzleCandidateTests.cs ├── TestAssets │ └── GameRecordings │ │ ├── HV-Abbo69-WeakBot-2018-10-28-2007.pgn │ │ ├── HV-Abbo69-WeakBot-2018-10-28-2007.sgf │ │ ├── HV-Abbo69-WeakBot-2018-11-03-1941.pgn │ │ ├── HV-Abbo69-WeakBot-2018-11-03-1941.sgf │ │ ├── HV-Dumbot-Dargason-2018-11-02-1301.pgn │ │ ├── HV-Dumbot-Dargason-2018-11-02-1301.sgf │ │ ├── HV-Dumbot-Kaur50-2023-01-17-0059.pgn │ │ ├── HV-Dumbot-Kaur50-2023-01-17-0059.sgf │ │ ├── HV-Dumbot-Mormor51-2023-05-11-0957.pgn │ │ ├── HV-Dumbot-Mormor51-2023-05-11-0957.sgf │ │ ├── HV-Dumbot-guest-2018-10-31-1402.pgn │ │ ├── HV-Dumbot-guest-2018-10-31-1402.sgf │ │ ├── HV-Quodlibet-Jewdoka-2018-10-10-0140.pgn │ │ ├── HV-Quodlibet-Jewdoka-2018-10-10-0140.sgf │ │ ├── HV-WeakBot-eebygum-2018-10-31-1613.pgn │ │ ├── HV-WeakBot-eebygum-2018-10-31-1613.sgf │ │ ├── HV-aaronheit-jdokakill-2019-06-22-1750.pgn │ │ ├── HV-aaronheit-jdokakill-2019-06-22-1750.sgf │ │ ├── HV-blue1224-Dumbot-2016-04-02-1915.pgn │ │ ├── HV-blue1224-Dumbot-2016-04-02-1915.sgf │ │ ├── T!HV-Eucalyx-Jewdoka-2020-12-12-1607.pgn │ │ ├── T!HV-Eucalyx-Jewdoka-2020-12-12-1607.sgf │ │ ├── T!HV-Jewdoka-Eucalyx-2020-12-12-1447.pgn │ │ ├── T!HV-Jewdoka-Eucalyx-2020-12-12-1447.sgf │ │ ├── T!HV-Jewdoka-Eucalyx-2020-12-12-1551.pgn │ │ ├── T!HV-Jewdoka-Eucalyx-2020-12-12-1551.sgf │ │ ├── T!HV-Jewdoka-Quodlibet-2019-10-03-0001.pgn │ │ ├── T!HV-Jewdoka-Quodlibet-2019-10-03-0001.sgf │ │ ├── T!HV-Jewdoka-Quodlibet-2020-12-08-2330.pgn │ │ ├── T!HV-Jewdoka-Quodlibet-2020-12-08-2330.sgf │ │ ├── T!HV-dube-Quodlibet-2021-12-11-1632.pgn │ │ ├── T!HV-dube-Quodlibet-2021-12-11-1632.sgf │ │ ├── U!HV-kearf29-Dumbot-2013-04-20-0054.pgn │ │ ├── U!HV-kearf29-Dumbot-2013-04-20-0054.sgf │ │ ├── U!HV-kkurtonis-RINGERSOLL-2013-05-22-1657.pgn │ │ ├── U!HV-kkurtonis-RINGERSOLL-2013-05-22-1657.sgf │ │ ├── U!HV-nevir-Bechster-2016-03-29-1905.pgn │ │ └── U!HV-nevir-Bechster-2016-03-29-1905.sgf ├── TestCases │ ├── BoardTests │ │ ├── Board_BaseLP_PerftTest.csv │ │ ├── Board_BaseL_PerftTest.csv │ │ ├── Board_BaseMLP_PerftTest.csv │ │ ├── Board_BaseML_PerftTest.csv │ │ ├── Board_BaseMP_PerftTest.csv │ │ ├── Board_BaseM_PerftTest.csv │ │ ├── Board_BaseP_PerftTest.csv │ │ ├── Board_Base_PerftTest.csv │ │ ├── Board_InvalidMovesByRuleTest.csv │ │ ├── Board_ValidMovesForBeetleTest.csv │ │ ├── Board_ValidMovesForGrasshopperTest.csv │ │ ├── Board_ValidMovesForLadybugTest.csv │ │ ├── Board_ValidMovesForMosquitoTest.csv │ │ ├── Board_ValidMovesForPillbugTest.csv │ │ ├── Board_ValidMovesForQueenBeeTest.csv │ │ ├── Board_ValidMovesForSoldierAntTest.csv │ │ ├── Board_ValidMovesForSpiderTest.csv │ │ └── Board_ValidMovesFromRealGamesTest.csv │ ├── GameAITests │ │ └── GameAI_BlockWinningMoveIsBestMoveTest.csv │ └── PuzzleCandidateTests │ │ └── PuzzleCandidate_IsOneBestMoveToForceWinPuzzleTest.csv ├── TestUtils.cs └── TranspositionTableTests.cs ├── Mzinga.Trainer ├── EloUtils.cs ├── Mzinga.Trainer.csproj ├── Profile.cs ├── Program.cs ├── Trainer.cs └── TrainerSettings.cs ├── Mzinga.Viewer.Setup ├── ExcludeExe.xslt ├── Mzinga.Viewer.Setup.wixproj ├── Product.wxs └── license.rtf ├── Mzinga.Viewer.WinStore ├── Images │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png ├── Mzinga.Viewer.WinStore.wapproj └── Package.appxmanifest ├── Mzinga.Viewer ├── App.axaml ├── App.axaml.cs ├── BoardExtensions.cs ├── CLIEngineWrapper.cs ├── Controls │ ├── BugShape.cs │ ├── Controls.axaml │ ├── HexShape.cs │ ├── TileControl.axaml │ └── TileControl.axaml.cs ├── Converters │ ├── BoolToFontStyleConverter.cs │ ├── BoolToFontWeightConverter.cs │ ├── EnumMatchToBooleanConverter.cs │ ├── IdleBoolToWaitCursorConverter.cs │ └── TimeSpanToDecimalConverter.cs ├── EngineCapabilities.cs ├── EngineOptions.cs ├── EngineWrapper.cs ├── Exceptions.cs ├── GameSettings.cs ├── InternalEngineWrapper.cs ├── MessageHandlers.cs ├── Mzinga.Viewer.csproj ├── Program.cs ├── Properties │ └── PublishProfiles │ │ ├── Setup.Debug.ARM64.pubxml │ │ ├── Setup.Debug.x64.pubxml │ │ ├── Setup.Debug.x86.pubxml │ │ ├── Setup.Release.ARM64.pubxml │ │ ├── Setup.Release.x64.pubxml │ │ ├── Setup.Release.x86.pubxml │ │ ├── WinStore.Debug.ARM64.pubxml │ │ ├── WinStore.Debug.x64.pubxml │ │ ├── WinStore.Debug.x86.pubxml │ │ ├── WinStore.Release.ARM64.pubxml │ │ ├── WinStore.Release.x64.pubxml │ │ └── WinStore.Release.x86.pubxml ├── Resources │ ├── BugColors.axaml │ ├── MarkdownStyles.axaml │ ├── gameoversfx.wav │ ├── icon.icns │ ├── icon.ico │ ├── movesfx.wav │ └── undosfx.wav ├── Utils │ ├── ColorUtils.cs │ ├── ExceptionUtils.cs │ ├── PositionUtils.cs │ ├── SoundUtils.cs │ └── UpdateUtils.cs ├── ViewModels │ ├── AboutViewModel.cs │ ├── AppViewModel.cs │ ├── ConfirmationViewModel.cs │ ├── EngineConsoleViewModel.cs │ ├── EngineOptionsViewModel.cs │ ├── ExceptionViewModel.cs │ ├── GameMetadataViewModel.cs │ ├── InformationViewModel.cs │ ├── InformationViewModelBase.cs │ ├── MainViewModel.cs │ ├── Messages.cs │ ├── NewGameViewModel.cs │ ├── ObservableAboutTabItem.cs │ ├── ObservableBoardHistory.cs │ ├── ObservableEngineOption.cs │ ├── ObservableGameMetadataTag.cs │ └── ViewerConfigViewModel.cs ├── ViewerConfig.cs ├── Views │ ├── AboutWindow.axaml │ ├── AboutWindow.axaml.cs │ ├── ConfirmationWindow.axaml │ ├── ConfirmationWindow.axaml.cs │ ├── EngineConsoleWindow.axaml │ ├── EngineConsoleWindow.axaml.cs │ ├── EngineOptionsWindow.axaml │ ├── EngineOptionsWindow.axaml.cs │ ├── GameMetadataWindow.axaml │ ├── GameMetadataWindow.axaml.cs │ ├── InformationWindow.axaml │ ├── InformationWindow.axaml.cs │ ├── MainWindow.axaml │ ├── MainWindow.axaml.cs │ ├── NewGameWindow.axaml │ ├── NewGameWindow.axaml.cs │ ├── ViewerConfigWindow.axaml │ └── ViewerConfigWindow.axaml.cs └── XamlBoardRenderer.cs ├── Mzinga.sln ├── Mzinga ├── AppInfo.cs ├── AssemblyUtils.cs ├── Core │ ├── AI │ │ ├── EvaluatedMove.cs │ │ ├── EvaluatedMoveCollection.cs │ │ ├── GameAI.cs │ │ ├── GameAIConfig.cs │ │ ├── MetricWeights.cs │ │ └── TranspositionTable.cs │ ├── Board.cs │ ├── BoardHistory.cs │ ├── BoardMetrics.cs │ ├── CacheMetrics.cs │ ├── CacheMetricsSet.cs │ ├── Enums.cs │ ├── FastSet.cs │ ├── FixedCache.cs │ ├── GameMetadata.cs │ ├── GameRecording.cs │ ├── Move.cs │ ├── MoveSet.cs │ ├── PieceMetrics.cs │ ├── Position.cs │ ├── PositionSet.cs │ ├── PuzzleCandidate.cs │ └── ZobristHash.cs ├── Engine │ ├── DefaultEngineConfig.xml │ ├── Engine.cs │ └── EngineConfig.cs ├── ListExtensions.cs ├── Mzinga.csproj └── VersionUtils.cs └── nuget.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/.github/banner.png -------------------------------------------------------------------------------- /.github/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/.github/icon.png -------------------------------------------------------------------------------- /.github/mzingaviewer-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/.github/mzingaviewer-linux.png -------------------------------------------------------------------------------- /.github/mzingaviewer-macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/.github/mzingaviewer-macos.png -------------------------------------------------------------------------------- /.github/mzingaviewer-windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/.github/mzingaviewer-windows.png -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/pub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/.github/workflows/pub.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/README.md -------------------------------------------------------------------------------- /scripts/Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/Build.ps1 -------------------------------------------------------------------------------- /scripts/BuildAll.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/BuildAll.ps1 -------------------------------------------------------------------------------- /scripts/BuildAppxBundle.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/BuildAppxBundle.ps1 -------------------------------------------------------------------------------- /scripts/BuildLinuxArm64.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/BuildLinuxArm64.ps1 -------------------------------------------------------------------------------- /scripts/BuildLinuxX64.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/BuildLinuxX64.ps1 -------------------------------------------------------------------------------- /scripts/BuildMacOSArm64.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/BuildMacOSArm64.ps1 -------------------------------------------------------------------------------- /scripts/BuildMacOSX64.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/BuildMacOSX64.ps1 -------------------------------------------------------------------------------- /scripts/BuildSetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/BuildSetup.ps1 -------------------------------------------------------------------------------- /scripts/BuildUnpacked.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/BuildUnpacked.ps1 -------------------------------------------------------------------------------- /scripts/BuildWinArm64.Setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/BuildWinArm64.Setup.ps1 -------------------------------------------------------------------------------- /scripts/BuildWinArm64.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/BuildWinArm64.ps1 -------------------------------------------------------------------------------- /scripts/BuildWinStore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/BuildWinStore.ps1 -------------------------------------------------------------------------------- /scripts/BuildWinX64.Setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/BuildWinX64.Setup.ps1 -------------------------------------------------------------------------------- /scripts/BuildWinX64.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/BuildWinX64.ps1 -------------------------------------------------------------------------------- /scripts/BuildWinX86.Setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/BuildWinX86.Setup.ps1 -------------------------------------------------------------------------------- /scripts/BuildWinX86.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/BuildWinX86.ps1 -------------------------------------------------------------------------------- /scripts/CreateReleaseNotes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/CreateReleaseNotes.ps1 -------------------------------------------------------------------------------- /scripts/Licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/Licenses.txt -------------------------------------------------------------------------------- /scripts/PublishRelease.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/PublishRelease.ps1 -------------------------------------------------------------------------------- /scripts/RunTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/RunTests.ps1 -------------------------------------------------------------------------------- /scripts/TarRelease.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/TarRelease.ps1 -------------------------------------------------------------------------------- /scripts/ZipRelease.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/scripts/ZipRelease.ps1 -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Mzinga.Engine/Mzinga.Engine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Engine/Mzinga.Engine.csproj -------------------------------------------------------------------------------- /src/Mzinga.Engine/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Engine/Program.cs -------------------------------------------------------------------------------- /src/Mzinga.Engine/SigIntMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Engine/SigIntMonitor.cs -------------------------------------------------------------------------------- /src/Mzinga.Perft/Mzinga.Perft.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Perft/Mzinga.Perft.csproj -------------------------------------------------------------------------------- /src/Mzinga.Perft/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Perft/Program.cs -------------------------------------------------------------------------------- /src/Mzinga.Test/BoardTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/BoardTests.cs -------------------------------------------------------------------------------- /src/Mzinga.Test/GameAITests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/GameAITests.cs -------------------------------------------------------------------------------- /src/Mzinga.Test/GameRecordingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/GameRecordingTests.cs -------------------------------------------------------------------------------- /src/Mzinga.Test/MetricWeightsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/MetricWeightsTests.cs -------------------------------------------------------------------------------- /src/Mzinga.Test/MoveTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/MoveTests.cs -------------------------------------------------------------------------------- /src/Mzinga.Test/Mzinga.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/Mzinga.Test.csproj -------------------------------------------------------------------------------- /src/Mzinga.Test/PositionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/PositionTests.cs -------------------------------------------------------------------------------- /src/Mzinga.Test/PuzzleCandidateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/PuzzleCandidateTests.cs -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/HV-Abbo69-WeakBot-2018-10-28-2007.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/HV-Abbo69-WeakBot-2018-10-28-2007.pgn -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/HV-Abbo69-WeakBot-2018-10-28-2007.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/HV-Abbo69-WeakBot-2018-10-28-2007.sgf -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/HV-Abbo69-WeakBot-2018-11-03-1941.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/HV-Abbo69-WeakBot-2018-11-03-1941.pgn -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/HV-Abbo69-WeakBot-2018-11-03-1941.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/HV-Abbo69-WeakBot-2018-11-03-1941.sgf -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/HV-Dumbot-Dargason-2018-11-02-1301.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/HV-Dumbot-Dargason-2018-11-02-1301.pgn -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/HV-Dumbot-Dargason-2018-11-02-1301.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/HV-Dumbot-Dargason-2018-11-02-1301.sgf -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/HV-Dumbot-Kaur50-2023-01-17-0059.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/HV-Dumbot-Kaur50-2023-01-17-0059.pgn -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/HV-Dumbot-Kaur50-2023-01-17-0059.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/HV-Dumbot-Kaur50-2023-01-17-0059.sgf -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/HV-Dumbot-Mormor51-2023-05-11-0957.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/HV-Dumbot-Mormor51-2023-05-11-0957.pgn -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/HV-Dumbot-Mormor51-2023-05-11-0957.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/HV-Dumbot-Mormor51-2023-05-11-0957.sgf -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/HV-Dumbot-guest-2018-10-31-1402.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/HV-Dumbot-guest-2018-10-31-1402.pgn -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/HV-Dumbot-guest-2018-10-31-1402.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/HV-Dumbot-guest-2018-10-31-1402.sgf -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/HV-Quodlibet-Jewdoka-2018-10-10-0140.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/HV-Quodlibet-Jewdoka-2018-10-10-0140.pgn -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/HV-Quodlibet-Jewdoka-2018-10-10-0140.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/HV-Quodlibet-Jewdoka-2018-10-10-0140.sgf -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/HV-WeakBot-eebygum-2018-10-31-1613.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/HV-WeakBot-eebygum-2018-10-31-1613.pgn -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/HV-WeakBot-eebygum-2018-10-31-1613.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/HV-WeakBot-eebygum-2018-10-31-1613.sgf -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/HV-aaronheit-jdokakill-2019-06-22-1750.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/HV-aaronheit-jdokakill-2019-06-22-1750.pgn -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/HV-aaronheit-jdokakill-2019-06-22-1750.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/HV-aaronheit-jdokakill-2019-06-22-1750.sgf -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/HV-blue1224-Dumbot-2016-04-02-1915.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/HV-blue1224-Dumbot-2016-04-02-1915.pgn -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/HV-blue1224-Dumbot-2016-04-02-1915.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/HV-blue1224-Dumbot-2016-04-02-1915.sgf -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/T!HV-Eucalyx-Jewdoka-2020-12-12-1607.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/T!HV-Eucalyx-Jewdoka-2020-12-12-1607.pgn -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/T!HV-Eucalyx-Jewdoka-2020-12-12-1607.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/T!HV-Eucalyx-Jewdoka-2020-12-12-1607.sgf -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/T!HV-Jewdoka-Eucalyx-2020-12-12-1447.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/T!HV-Jewdoka-Eucalyx-2020-12-12-1447.pgn -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/T!HV-Jewdoka-Eucalyx-2020-12-12-1447.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/T!HV-Jewdoka-Eucalyx-2020-12-12-1447.sgf -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/T!HV-Jewdoka-Eucalyx-2020-12-12-1551.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/T!HV-Jewdoka-Eucalyx-2020-12-12-1551.pgn -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/T!HV-Jewdoka-Eucalyx-2020-12-12-1551.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/T!HV-Jewdoka-Eucalyx-2020-12-12-1551.sgf -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/T!HV-Jewdoka-Quodlibet-2019-10-03-0001.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/T!HV-Jewdoka-Quodlibet-2019-10-03-0001.pgn -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/T!HV-Jewdoka-Quodlibet-2019-10-03-0001.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/T!HV-Jewdoka-Quodlibet-2019-10-03-0001.sgf -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/T!HV-Jewdoka-Quodlibet-2020-12-08-2330.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/T!HV-Jewdoka-Quodlibet-2020-12-08-2330.pgn -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/T!HV-Jewdoka-Quodlibet-2020-12-08-2330.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/T!HV-Jewdoka-Quodlibet-2020-12-08-2330.sgf -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/T!HV-dube-Quodlibet-2021-12-11-1632.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/T!HV-dube-Quodlibet-2021-12-11-1632.pgn -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/T!HV-dube-Quodlibet-2021-12-11-1632.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/T!HV-dube-Quodlibet-2021-12-11-1632.sgf -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/U!HV-kearf29-Dumbot-2013-04-20-0054.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/U!HV-kearf29-Dumbot-2013-04-20-0054.pgn -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/U!HV-kearf29-Dumbot-2013-04-20-0054.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/U!HV-kearf29-Dumbot-2013-04-20-0054.sgf -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/U!HV-kkurtonis-RINGERSOLL-2013-05-22-1657.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/U!HV-kkurtonis-RINGERSOLL-2013-05-22-1657.pgn -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/U!HV-kkurtonis-RINGERSOLL-2013-05-22-1657.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/U!HV-kkurtonis-RINGERSOLL-2013-05-22-1657.sgf -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/U!HV-nevir-Bechster-2016-03-29-1905.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/U!HV-nevir-Bechster-2016-03-29-1905.pgn -------------------------------------------------------------------------------- /src/Mzinga.Test/TestAssets/GameRecordings/U!HV-nevir-Bechster-2016-03-29-1905.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestAssets/GameRecordings/U!HV-nevir-Bechster-2016-03-29-1905.sgf -------------------------------------------------------------------------------- /src/Mzinga.Test/TestCases/BoardTests/Board_BaseLP_PerftTest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestCases/BoardTests/Board_BaseLP_PerftTest.csv -------------------------------------------------------------------------------- /src/Mzinga.Test/TestCases/BoardTests/Board_BaseL_PerftTest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestCases/BoardTests/Board_BaseL_PerftTest.csv -------------------------------------------------------------------------------- /src/Mzinga.Test/TestCases/BoardTests/Board_BaseMLP_PerftTest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestCases/BoardTests/Board_BaseMLP_PerftTest.csv -------------------------------------------------------------------------------- /src/Mzinga.Test/TestCases/BoardTests/Board_BaseML_PerftTest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestCases/BoardTests/Board_BaseML_PerftTest.csv -------------------------------------------------------------------------------- /src/Mzinga.Test/TestCases/BoardTests/Board_BaseMP_PerftTest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestCases/BoardTests/Board_BaseMP_PerftTest.csv -------------------------------------------------------------------------------- /src/Mzinga.Test/TestCases/BoardTests/Board_BaseM_PerftTest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestCases/BoardTests/Board_BaseM_PerftTest.csv -------------------------------------------------------------------------------- /src/Mzinga.Test/TestCases/BoardTests/Board_BaseP_PerftTest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestCases/BoardTests/Board_BaseP_PerftTest.csv -------------------------------------------------------------------------------- /src/Mzinga.Test/TestCases/BoardTests/Board_Base_PerftTest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestCases/BoardTests/Board_Base_PerftTest.csv -------------------------------------------------------------------------------- /src/Mzinga.Test/TestCases/BoardTests/Board_InvalidMovesByRuleTest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestCases/BoardTests/Board_InvalidMovesByRuleTest.csv -------------------------------------------------------------------------------- /src/Mzinga.Test/TestCases/BoardTests/Board_ValidMovesForBeetleTest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestCases/BoardTests/Board_ValidMovesForBeetleTest.csv -------------------------------------------------------------------------------- /src/Mzinga.Test/TestCases/BoardTests/Board_ValidMovesForGrasshopperTest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestCases/BoardTests/Board_ValidMovesForGrasshopperTest.csv -------------------------------------------------------------------------------- /src/Mzinga.Test/TestCases/BoardTests/Board_ValidMovesForLadybugTest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestCases/BoardTests/Board_ValidMovesForLadybugTest.csv -------------------------------------------------------------------------------- /src/Mzinga.Test/TestCases/BoardTests/Board_ValidMovesForMosquitoTest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestCases/BoardTests/Board_ValidMovesForMosquitoTest.csv -------------------------------------------------------------------------------- /src/Mzinga.Test/TestCases/BoardTests/Board_ValidMovesForPillbugTest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestCases/BoardTests/Board_ValidMovesForPillbugTest.csv -------------------------------------------------------------------------------- /src/Mzinga.Test/TestCases/BoardTests/Board_ValidMovesForQueenBeeTest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestCases/BoardTests/Board_ValidMovesForQueenBeeTest.csv -------------------------------------------------------------------------------- /src/Mzinga.Test/TestCases/BoardTests/Board_ValidMovesForSoldierAntTest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestCases/BoardTests/Board_ValidMovesForSoldierAntTest.csv -------------------------------------------------------------------------------- /src/Mzinga.Test/TestCases/BoardTests/Board_ValidMovesForSpiderTest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestCases/BoardTests/Board_ValidMovesForSpiderTest.csv -------------------------------------------------------------------------------- /src/Mzinga.Test/TestCases/BoardTests/Board_ValidMovesFromRealGamesTest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestCases/BoardTests/Board_ValidMovesFromRealGamesTest.csv -------------------------------------------------------------------------------- /src/Mzinga.Test/TestCases/GameAITests/GameAI_BlockWinningMoveIsBestMoveTest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestCases/GameAITests/GameAI_BlockWinningMoveIsBestMoveTest.csv -------------------------------------------------------------------------------- /src/Mzinga.Test/TestCases/PuzzleCandidateTests/PuzzleCandidate_IsOneBestMoveToForceWinPuzzleTest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestCases/PuzzleCandidateTests/PuzzleCandidate_IsOneBestMoveToForceWinPuzzleTest.csv -------------------------------------------------------------------------------- /src/Mzinga.Test/TestUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TestUtils.cs -------------------------------------------------------------------------------- /src/Mzinga.Test/TranspositionTableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Test/TranspositionTableTests.cs -------------------------------------------------------------------------------- /src/Mzinga.Trainer/EloUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Trainer/EloUtils.cs -------------------------------------------------------------------------------- /src/Mzinga.Trainer/Mzinga.Trainer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Trainer/Mzinga.Trainer.csproj -------------------------------------------------------------------------------- /src/Mzinga.Trainer/Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Trainer/Profile.cs -------------------------------------------------------------------------------- /src/Mzinga.Trainer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Trainer/Program.cs -------------------------------------------------------------------------------- /src/Mzinga.Trainer/Trainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Trainer/Trainer.cs -------------------------------------------------------------------------------- /src/Mzinga.Trainer/TrainerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Trainer/TrainerSettings.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer.Setup/ExcludeExe.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.Setup/ExcludeExe.xslt -------------------------------------------------------------------------------- /src/Mzinga.Viewer.Setup/Mzinga.Viewer.Setup.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.Setup/Mzinga.Viewer.Setup.wixproj -------------------------------------------------------------------------------- /src/Mzinga.Viewer.Setup/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.Setup/Product.wxs -------------------------------------------------------------------------------- /src/Mzinga.Viewer.Setup/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.Setup/license.rtf -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/LargeTile.scale-100.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/LargeTile.scale-125.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/LargeTile.scale-150.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/LargeTile.scale-200.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/LargeTile.scale-400.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/SmallTile.scale-100.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/SmallTile.scale-125.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/SmallTile.scale-150.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/SmallTile.scale-200.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/SmallTile.scale-400.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Images/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Images/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Mzinga.Viewer.WinStore.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Mzinga.Viewer.WinStore.wapproj -------------------------------------------------------------------------------- /src/Mzinga.Viewer.WinStore/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer.WinStore/Package.appxmanifest -------------------------------------------------------------------------------- /src/Mzinga.Viewer/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/App.axaml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/App.axaml.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/BoardExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/BoardExtensions.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/CLIEngineWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/CLIEngineWrapper.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Controls/BugShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Controls/BugShape.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Controls/Controls.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Controls/Controls.axaml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Controls/HexShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Controls/HexShape.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Controls/TileControl.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Controls/TileControl.axaml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Controls/TileControl.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Controls/TileControl.axaml.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Converters/BoolToFontStyleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Converters/BoolToFontStyleConverter.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Converters/BoolToFontWeightConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Converters/BoolToFontWeightConverter.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Converters/EnumMatchToBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Converters/EnumMatchToBooleanConverter.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Converters/IdleBoolToWaitCursorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Converters/IdleBoolToWaitCursorConverter.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Converters/TimeSpanToDecimalConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Converters/TimeSpanToDecimalConverter.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/EngineCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/EngineCapabilities.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/EngineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/EngineOptions.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/EngineWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/EngineWrapper.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Exceptions.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/GameSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/GameSettings.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/InternalEngineWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/InternalEngineWrapper.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/MessageHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/MessageHandlers.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Mzinga.Viewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Mzinga.Viewer.csproj -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Program.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Properties/PublishProfiles/Setup.Debug.ARM64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Properties/PublishProfiles/Setup.Debug.ARM64.pubxml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Properties/PublishProfiles/Setup.Debug.x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Properties/PublishProfiles/Setup.Debug.x64.pubxml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Properties/PublishProfiles/Setup.Debug.x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Properties/PublishProfiles/Setup.Debug.x86.pubxml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Properties/PublishProfiles/Setup.Release.ARM64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Properties/PublishProfiles/Setup.Release.ARM64.pubxml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Properties/PublishProfiles/Setup.Release.x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Properties/PublishProfiles/Setup.Release.x64.pubxml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Properties/PublishProfiles/Setup.Release.x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Properties/PublishProfiles/Setup.Release.x86.pubxml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Properties/PublishProfiles/WinStore.Debug.ARM64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Properties/PublishProfiles/WinStore.Debug.ARM64.pubxml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Properties/PublishProfiles/WinStore.Debug.x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Properties/PublishProfiles/WinStore.Debug.x64.pubxml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Properties/PublishProfiles/WinStore.Debug.x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Properties/PublishProfiles/WinStore.Debug.x86.pubxml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Properties/PublishProfiles/WinStore.Release.ARM64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Properties/PublishProfiles/WinStore.Release.ARM64.pubxml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Properties/PublishProfiles/WinStore.Release.x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Properties/PublishProfiles/WinStore.Release.x64.pubxml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Properties/PublishProfiles/WinStore.Release.x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Properties/PublishProfiles/WinStore.Release.x86.pubxml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Resources/BugColors.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Resources/BugColors.axaml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Resources/MarkdownStyles.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Resources/MarkdownStyles.axaml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Resources/gameoversfx.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Resources/gameoversfx.wav -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Resources/icon.icns -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Resources/icon.ico -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Resources/movesfx.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Resources/movesfx.wav -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Resources/undosfx.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Resources/undosfx.wav -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Utils/ColorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Utils/ColorUtils.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Utils/ExceptionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Utils/ExceptionUtils.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Utils/PositionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Utils/PositionUtils.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Utils/SoundUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Utils/SoundUtils.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Utils/UpdateUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Utils/UpdateUtils.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/ViewModels/AboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/ViewModels/AboutViewModel.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/ViewModels/AppViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/ViewModels/AppViewModel.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/ViewModels/ConfirmationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/ViewModels/ConfirmationViewModel.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/ViewModels/EngineConsoleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/ViewModels/EngineConsoleViewModel.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/ViewModels/EngineOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/ViewModels/EngineOptionsViewModel.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/ViewModels/ExceptionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/ViewModels/ExceptionViewModel.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/ViewModels/GameMetadataViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/ViewModels/GameMetadataViewModel.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/ViewModels/InformationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/ViewModels/InformationViewModel.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/ViewModels/InformationViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/ViewModels/InformationViewModelBase.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/ViewModels/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/ViewModels/Messages.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/ViewModels/NewGameViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/ViewModels/NewGameViewModel.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/ViewModels/ObservableAboutTabItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/ViewModels/ObservableAboutTabItem.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/ViewModels/ObservableBoardHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/ViewModels/ObservableBoardHistory.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/ViewModels/ObservableEngineOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/ViewModels/ObservableEngineOption.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/ViewModels/ObservableGameMetadataTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/ViewModels/ObservableGameMetadataTag.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/ViewModels/ViewerConfigViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/ViewModels/ViewerConfigViewModel.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/ViewerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/ViewerConfig.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Views/AboutWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Views/AboutWindow.axaml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Views/AboutWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Views/AboutWindow.axaml.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Views/ConfirmationWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Views/ConfirmationWindow.axaml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Views/ConfirmationWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Views/ConfirmationWindow.axaml.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Views/EngineConsoleWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Views/EngineConsoleWindow.axaml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Views/EngineConsoleWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Views/EngineConsoleWindow.axaml.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Views/EngineOptionsWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Views/EngineOptionsWindow.axaml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Views/EngineOptionsWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Views/EngineOptionsWindow.axaml.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Views/GameMetadataWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Views/GameMetadataWindow.axaml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Views/GameMetadataWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Views/GameMetadataWindow.axaml.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Views/InformationWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Views/InformationWindow.axaml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Views/InformationWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Views/InformationWindow.axaml.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Views/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Views/MainWindow.axaml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Views/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Views/MainWindow.axaml.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Views/NewGameWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Views/NewGameWindow.axaml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Views/NewGameWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Views/NewGameWindow.axaml.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Views/ViewerConfigWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Views/ViewerConfigWindow.axaml -------------------------------------------------------------------------------- /src/Mzinga.Viewer/Views/ViewerConfigWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/Views/ViewerConfigWindow.axaml.cs -------------------------------------------------------------------------------- /src/Mzinga.Viewer/XamlBoardRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.Viewer/XamlBoardRenderer.cs -------------------------------------------------------------------------------- /src/Mzinga.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga.sln -------------------------------------------------------------------------------- /src/Mzinga/AppInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/AppInfo.cs -------------------------------------------------------------------------------- /src/Mzinga/AssemblyUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/AssemblyUtils.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/AI/EvaluatedMove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/AI/EvaluatedMove.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/AI/EvaluatedMoveCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/AI/EvaluatedMoveCollection.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/AI/GameAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/AI/GameAI.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/AI/GameAIConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/AI/GameAIConfig.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/AI/MetricWeights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/AI/MetricWeights.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/AI/TranspositionTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/AI/TranspositionTable.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/Board.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/Board.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/BoardHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/BoardHistory.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/BoardMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/BoardMetrics.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/CacheMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/CacheMetrics.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/CacheMetricsSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/CacheMetricsSet.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/Enums.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/FastSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/FastSet.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/FixedCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/FixedCache.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/GameMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/GameMetadata.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/GameRecording.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/GameRecording.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/Move.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/Move.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/MoveSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/MoveSet.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/PieceMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/PieceMetrics.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/Position.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/PositionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/PositionSet.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/PuzzleCandidate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/PuzzleCandidate.cs -------------------------------------------------------------------------------- /src/Mzinga/Core/ZobristHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Core/ZobristHash.cs -------------------------------------------------------------------------------- /src/Mzinga/Engine/DefaultEngineConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Engine/DefaultEngineConfig.xml -------------------------------------------------------------------------------- /src/Mzinga/Engine/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Engine/Engine.cs -------------------------------------------------------------------------------- /src/Mzinga/Engine/EngineConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Engine/EngineConfig.cs -------------------------------------------------------------------------------- /src/Mzinga/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/ListExtensions.cs -------------------------------------------------------------------------------- /src/Mzinga/Mzinga.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/Mzinga.csproj -------------------------------------------------------------------------------- /src/Mzinga/VersionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/Mzinga/VersionUtils.cs -------------------------------------------------------------------------------- /src/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonthysell/Mzinga/HEAD/src/nuget.config --------------------------------------------------------------------------------