├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── build-and-test.yml ├── .gitignore ├── LICENSE ├── README.md ├── images ├── bc.png ├── cc.png ├── ddp.png ├── demo1.png ├── demo2.png ├── demo3.png ├── gr.png ├── input-box.png ├── input-list.png ├── kq1.png ├── kq2.png ├── kq3.png ├── kq4.png ├── kq4demo.png ├── lsl1.png ├── menu.png ├── mh1.png ├── mh2.png ├── mumg.png ├── pq1.png ├── scaling.png ├── sq1.png ├── sq2.png ├── theme-amiga1.png ├── theme-amiga2.png ├── theme-amiga3.png ├── theme-apple2gs.png ├── theme-atarist.png ├── theme-cga1.png ├── theme-cga2.png ├── theme-hercules-amber.png ├── theme-hercules-green.png └── theme-hercules-white.png ├── lib └── SDL │ ├── x64 │ ├── README-SDL.txt │ └── SDL.dll │ └── x86 │ ├── README-SDL.txt │ └── SDL.dll └── src ├── .editorconfig ├── AgiPlayer.slnx ├── Common └── stylecop.json ├── Directory.Build.props ├── Directory.Packages.props ├── Woohoo.Agi.Engine.UnitTest ├── Detection │ └── DetectByFileNamesTest.cs ├── Infrastructure │ ├── GameFolderBuilder.cs │ ├── InterpreterBuilder.cs │ ├── InventoryBuilder.cs │ ├── LogicResourceBuilder.cs │ ├── PictureResourceBuilder.cs │ ├── SoundResourceBuilder.cs │ ├── ViewResourceBuilder.cs │ └── VocabularyBuilder.cs ├── Interpreter │ ├── HintBookSerializerUnitTest.cs │ ├── KernelUnitTest.cs │ ├── ParserUnitTest.cs │ ├── PriorityTableUnitTest.cs │ ├── ResourceManagerUnitTest.cs │ └── StringUtilityUnitTest.cs ├── Resources │ └── Serialization │ │ ├── LzwDecompressUnitTest.cs │ │ ├── PictureCompressionUnitTest.cs │ │ ├── RleCompressionUnitTest.cs │ │ └── XorTransformUnitTest.cs └── Woohoo.Agi.Engine.UnitTest.csproj ├── Woohoo.Agi.Engine ├── Detection │ ├── Database.cs │ ├── Database.xml │ ├── Databases.Designer.cs │ ├── Databases.resx │ ├── DetectByAgiDesignerGameInfo.cs │ ├── DetectByFileNames.cs │ ├── DetectByInternalDatabase.cs │ ├── DetectByWinAgiGameInfo.cs │ ├── Game.cs │ ├── GameDetector.cs │ ├── GameDetectorResult.cs │ ├── GameFile.cs │ ├── GameFileCollection.cs │ ├── GameFinder.cs │ ├── GameInfoParser.cs │ └── IGameDetectorAlgorithm.cs ├── Errors.Designer.cs ├── Errors.resx ├── GameFolder.cs ├── GameStartInfo.cs ├── GameZipArchive.cs ├── IGameContainer.cs ├── Interpreter │ ├── AgiInterpreter.Kernel.cs │ ├── AgiInterpreter.cs │ ├── Blit.cs │ ├── BorderType.cs │ ├── ClockState.cs │ ├── ComputerType.cs │ ├── ControlEntry.cs │ ├── ControlLine.cs │ ├── Controls │ │ ├── ClassicInputControl.cs │ │ ├── GameControl.cs │ │ ├── GameSelectionControl.cs │ │ ├── InputBoxControl.cs │ │ ├── InputControl.cs │ │ ├── InventoryControl.cs │ │ ├── InventoryControlItem.cs │ │ ├── ListBoxControl.cs │ │ ├── MenuControl.cs │ │ ├── PopupInputControl.cs │ │ ├── PreferredSynonyms.cs │ │ ├── PromptControl.cs │ │ ├── SaveRestoreFolderBrowseControl.cs │ │ ├── SaveRestoreGameBrowseControl.cs │ │ ├── StatusLineControl.cs │ │ ├── TextBoxControl.cs │ │ ├── TraceControl.cs │ │ └── WordListInputControl.cs │ ├── CycleMode.cs │ ├── Direction.cs │ ├── DisplayType.cs │ ├── DitheredColor.cs │ ├── EgoControl.cs │ ├── ErrorCodes.cs │ ├── ExecutionException.cs │ ├── ExitException.cs │ ├── Flags.cs │ ├── Font.cs │ ├── FontAmiga8x8.nbf │ ├── FontAppleIIgs8x8.nbf │ ├── FontAtariST8x8.nbf │ ├── FontEga8x8.nbf │ ├── FontHercules16x16.nbf │ ├── FontUnknown8x8.nbf │ ├── GraphicsColor.cs │ ├── GraphicsRenderer.cs │ ├── GraphicsRendererDriver.cs │ ├── GraphicsRendererDriverAmiga1.cs │ ├── GraphicsRendererDriverAmiga2.cs │ ├── GraphicsRendererDriverAmiga3.cs │ ├── GraphicsRendererDriverAppleIIgs.cs │ ├── GraphicsRendererDriverAtariST.cs │ ├── GraphicsRendererDriverCga.cs │ ├── GraphicsRendererDriverCga0.cs │ ├── GraphicsRendererDriverCga1.cs │ ├── GraphicsRendererDriverEga.cs │ ├── GraphicsRendererDriverFull.cs │ ├── GraphicsRendererDriverHercules.cs │ ├── Hints │ │ ├── FlagContext.cs │ │ ├── HintBook.cs │ │ ├── HintBookSerializer.cs │ │ ├── ItemContext.cs │ │ └── Topic.cs │ ├── IGraphicsDriver.cs │ ├── IInputDriver.cs │ ├── IKernel.cs │ ├── ISavedGameSerializer.cs │ ├── ISoundDriver.cs │ ├── ISoundPcmDriver.cs │ ├── InputEvent.cs │ ├── InputEventAscii.cs │ ├── InputEventDirection.cs │ ├── InputEventType.cs │ ├── LogicArgumentType.cs │ ├── LogicCommand.cs │ ├── LogicCommandTable.cs │ ├── LogicControlCode.cs │ ├── LogicFunctionCode.cs │ ├── LogicFunctionTable.cs │ ├── LogicInterpreter.cs │ ├── LogicPatch.cs │ ├── LogicPatches.cs │ ├── LogicProcedureCode.cs │ ├── LogicProcedureTable.cs │ ├── LogicVocabularyScraper.cs │ ├── LoopUpdate.cs │ ├── Menu.cs │ ├── MenuItem.cs │ ├── MenuParentItem.cs │ ├── MessageState.cs │ ├── Motion.cs │ ├── MouseArea.cs │ ├── MouseAreaPosition.cs │ ├── MouseButton.cs │ ├── MouseDown.cs │ ├── MouseMode.cs │ ├── Palette.cs │ ├── Parser.cs │ ├── ParserResult.cs │ ├── PcmSoundDriver.cs │ ├── PictureBrushPattern.cs │ ├── PictureBrushShape.cs │ ├── PictureBuffer.cs │ ├── PictureCode.cs │ ├── PictureInterpreter.cs │ ├── PicturePoint.cs │ ├── PictureRectangle.cs │ ├── PictureRenderer.cs │ ├── PlayerResources.Designer.cs │ ├── PlayerResources.resx │ ├── Preferences.cs │ ├── PreferencesSerializer.cs │ ├── PriorityTable.cs │ ├── Random.cs │ ├── RenderBuffer.cs │ ├── RenderPoint.cs │ ├── RenderRectangle.cs │ ├── RenderSize.cs │ ├── ResourceManager.cs │ ├── SavedGameManager.cs │ ├── SavedGameXmlSerializer.cs │ ├── ScreenPoint.cs │ ├── ScriptCodes.cs │ ├── ScriptManager.cs │ ├── ShiftDirection.cs │ ├── SoundChannel.cs │ ├── SoundManager.cs │ ├── SoundType.cs │ ├── State.cs │ ├── StringUtility.cs │ ├── TextColor.cs │ ├── TextPosition.cs │ ├── Tone.cs │ ├── ToneChannel.cs │ ├── ToneChannelNoise.cs │ ├── TraceState.cs │ ├── UserInputMode.cs │ ├── UserInterface.cs │ ├── UserInterfaceTheme.cs │ ├── Variables.cs │ ├── ViewObject.cs │ ├── ViewObjectFlags.cs │ ├── ViewObjectManager.cs │ ├── ViewObjectTable.cs │ ├── WalkMode.cs │ └── WindowManager.cs ├── InterpreterMajorVersion.cs ├── InterpreterVersion.cs ├── Platform.cs ├── Resources │ ├── InventoryItem.cs │ ├── InventoryResource.cs │ ├── LogicResource.cs │ ├── PictureResource.cs │ ├── Serialization │ │ ├── GameNotFoundException.cs │ │ ├── IVolumeDecoder.cs │ │ ├── InventoryDecoder.cs │ │ ├── LogicDecoder.cs │ │ ├── LzwDecompress.cs │ │ ├── PictureCompression.cs │ │ ├── PictureDecoder.cs │ │ ├── ResourceLoader.cs │ │ ├── RleCompression.cs │ │ ├── RleCompressionInvalidRepeatCountException.cs │ │ ├── SoundDecoder.cs │ │ ├── StringDecoder.cs │ │ ├── ViewDecoder.cs │ │ ├── VocabularyDecoder.cs │ │ ├── VocabularyInvalidRepeatCountException.cs │ │ ├── VolumeDecoder.cs │ │ ├── VolumeDecoderInvalidResourceOffsetException.cs │ │ ├── VolumeDecoderInvalidResourceSignatureException.cs │ │ ├── VolumeDecoderV2.cs │ │ ├── VolumeDecoderV3.cs │ │ ├── VolumeFilesNotFoundException.cs │ │ ├── VolumeResourceMap.cs │ │ ├── VolumeResourceMapEntry.cs │ │ ├── VolumeResourceMapEntryCollection.cs │ │ └── XorTransform.cs │ ├── SoundResource.cs │ ├── ViewCel.cs │ ├── ViewLoop.cs │ ├── ViewResource.cs │ ├── VocabularyResource.cs │ └── VocabularyWordFamily.cs └── Woohoo.Agi.Engine.csproj ├── Woohoo.Agi.Player ├── AbortException.cs ├── AgiPlayer.cs ├── Backend │ ├── Sdl │ │ ├── NativeMethods.cs │ │ ├── SdlGraphicsDriver.cs │ │ ├── SdlImportResolver.cs │ │ ├── SdlInputDriver.cs │ │ ├── SdlKey.cs │ │ ├── SdlPlayer.cs │ │ ├── SdlSoundChannel.cs │ │ └── SdlSoundPcmDriver.cs │ ├── Sdl2 │ │ ├── NativeMethods.cs │ │ ├── NativeMethods2.cs │ │ ├── Sdl2GraphicsDriver.cs │ │ ├── Sdl2InputDriver.cs │ │ ├── Sdl2Key.cs │ │ ├── Sdl2Player.cs │ │ ├── Sdl2SoundChannel.cs │ │ └── Sdl2SoundPcmDriver.cs │ └── Sdl3 │ │ ├── NativeMethods.cs │ │ ├── Sdl3.cs │ │ ├── Sdl3GraphicsDriver.cs │ │ ├── Sdl3InputDriver.cs │ │ ├── Sdl3Key.cs │ │ ├── Sdl3Player.cs │ │ ├── Sdl3SoundChannel.cs │ │ └── Sdl3SoundPcmDriver.cs ├── Woohoo.Agi.Player.csproj └── settings.xml └── global.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/README.md -------------------------------------------------------------------------------- /images/bc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/bc.png -------------------------------------------------------------------------------- /images/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/cc.png -------------------------------------------------------------------------------- /images/ddp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/ddp.png -------------------------------------------------------------------------------- /images/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/demo1.png -------------------------------------------------------------------------------- /images/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/demo2.png -------------------------------------------------------------------------------- /images/demo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/demo3.png -------------------------------------------------------------------------------- /images/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/gr.png -------------------------------------------------------------------------------- /images/input-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/input-box.png -------------------------------------------------------------------------------- /images/input-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/input-list.png -------------------------------------------------------------------------------- /images/kq1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/kq1.png -------------------------------------------------------------------------------- /images/kq2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/kq2.png -------------------------------------------------------------------------------- /images/kq3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/kq3.png -------------------------------------------------------------------------------- /images/kq4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/kq4.png -------------------------------------------------------------------------------- /images/kq4demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/kq4demo.png -------------------------------------------------------------------------------- /images/lsl1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/lsl1.png -------------------------------------------------------------------------------- /images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/menu.png -------------------------------------------------------------------------------- /images/mh1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/mh1.png -------------------------------------------------------------------------------- /images/mh2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/mh2.png -------------------------------------------------------------------------------- /images/mumg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/mumg.png -------------------------------------------------------------------------------- /images/pq1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/pq1.png -------------------------------------------------------------------------------- /images/scaling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/scaling.png -------------------------------------------------------------------------------- /images/sq1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/sq1.png -------------------------------------------------------------------------------- /images/sq2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/sq2.png -------------------------------------------------------------------------------- /images/theme-amiga1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/theme-amiga1.png -------------------------------------------------------------------------------- /images/theme-amiga2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/theme-amiga2.png -------------------------------------------------------------------------------- /images/theme-amiga3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/theme-amiga3.png -------------------------------------------------------------------------------- /images/theme-apple2gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/theme-apple2gs.png -------------------------------------------------------------------------------- /images/theme-atarist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/theme-atarist.png -------------------------------------------------------------------------------- /images/theme-cga1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/theme-cga1.png -------------------------------------------------------------------------------- /images/theme-cga2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/theme-cga2.png -------------------------------------------------------------------------------- /images/theme-hercules-amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/theme-hercules-amber.png -------------------------------------------------------------------------------- /images/theme-hercules-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/theme-hercules-green.png -------------------------------------------------------------------------------- /images/theme-hercules-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/images/theme-hercules-white.png -------------------------------------------------------------------------------- /lib/SDL/x64/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/lib/SDL/x64/README-SDL.txt -------------------------------------------------------------------------------- /lib/SDL/x64/SDL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/lib/SDL/x64/SDL.dll -------------------------------------------------------------------------------- /lib/SDL/x86/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/lib/SDL/x86/README-SDL.txt -------------------------------------------------------------------------------- /lib/SDL/x86/SDL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/lib/SDL/x86/SDL.dll -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/AgiPlayer.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/AgiPlayer.slnx -------------------------------------------------------------------------------- /src/Common/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Common/stylecop.json -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine.UnitTest/Detection/DetectByFileNamesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine.UnitTest/Detection/DetectByFileNamesTest.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine.UnitTest/Infrastructure/GameFolderBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine.UnitTest/Infrastructure/GameFolderBuilder.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine.UnitTest/Infrastructure/InterpreterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine.UnitTest/Infrastructure/InterpreterBuilder.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine.UnitTest/Infrastructure/InventoryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine.UnitTest/Infrastructure/InventoryBuilder.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine.UnitTest/Infrastructure/LogicResourceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine.UnitTest/Infrastructure/LogicResourceBuilder.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine.UnitTest/Infrastructure/PictureResourceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine.UnitTest/Infrastructure/PictureResourceBuilder.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine.UnitTest/Infrastructure/SoundResourceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine.UnitTest/Infrastructure/SoundResourceBuilder.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine.UnitTest/Infrastructure/ViewResourceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine.UnitTest/Infrastructure/ViewResourceBuilder.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine.UnitTest/Infrastructure/VocabularyBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine.UnitTest/Infrastructure/VocabularyBuilder.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine.UnitTest/Interpreter/HintBookSerializerUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine.UnitTest/Interpreter/HintBookSerializerUnitTest.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine.UnitTest/Interpreter/KernelUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine.UnitTest/Interpreter/KernelUnitTest.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine.UnitTest/Interpreter/ParserUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine.UnitTest/Interpreter/ParserUnitTest.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine.UnitTest/Interpreter/PriorityTableUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine.UnitTest/Interpreter/PriorityTableUnitTest.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine.UnitTest/Interpreter/ResourceManagerUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine.UnitTest/Interpreter/ResourceManagerUnitTest.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine.UnitTest/Interpreter/StringUtilityUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine.UnitTest/Interpreter/StringUtilityUnitTest.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine.UnitTest/Resources/Serialization/LzwDecompressUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine.UnitTest/Resources/Serialization/LzwDecompressUnitTest.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine.UnitTest/Resources/Serialization/PictureCompressionUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine.UnitTest/Resources/Serialization/PictureCompressionUnitTest.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine.UnitTest/Resources/Serialization/RleCompressionUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine.UnitTest/Resources/Serialization/RleCompressionUnitTest.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine.UnitTest/Resources/Serialization/XorTransformUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine.UnitTest/Resources/Serialization/XorTransformUnitTest.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine.UnitTest/Woohoo.Agi.Engine.UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine.UnitTest/Woohoo.Agi.Engine.UnitTest.csproj -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Detection/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Detection/Database.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Detection/Database.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Detection/Database.xml -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Detection/Databases.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Detection/Databases.Designer.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Detection/Databases.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Detection/Databases.resx -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Detection/DetectByAgiDesignerGameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Detection/DetectByAgiDesignerGameInfo.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Detection/DetectByFileNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Detection/DetectByFileNames.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Detection/DetectByInternalDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Detection/DetectByInternalDatabase.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Detection/DetectByWinAgiGameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Detection/DetectByWinAgiGameInfo.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Detection/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Detection/Game.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Detection/GameDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Detection/GameDetector.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Detection/GameDetectorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Detection/GameDetectorResult.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Detection/GameFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Detection/GameFile.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Detection/GameFileCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Detection/GameFileCollection.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Detection/GameFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Detection/GameFinder.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Detection/GameInfoParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Detection/GameInfoParser.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Detection/IGameDetectorAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Detection/IGameDetectorAlgorithm.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Errors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Errors.Designer.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Errors.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Errors.resx -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/GameFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/GameFolder.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/GameStartInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/GameStartInfo.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/GameZipArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/GameZipArchive.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/IGameContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/IGameContainer.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/AgiInterpreter.Kernel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/AgiInterpreter.Kernel.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/AgiInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/AgiInterpreter.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Blit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Blit.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/BorderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/BorderType.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ClockState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ClockState.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ComputerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ComputerType.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ControlEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ControlEntry.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ControlLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ControlLine.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Controls/ClassicInputControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Controls/ClassicInputControl.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Controls/GameControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Controls/GameControl.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Controls/GameSelectionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Controls/GameSelectionControl.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Controls/InputBoxControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Controls/InputBoxControl.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Controls/InputControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Controls/InputControl.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Controls/InventoryControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Controls/InventoryControl.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Controls/InventoryControlItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Controls/InventoryControlItem.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Controls/ListBoxControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Controls/ListBoxControl.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Controls/MenuControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Controls/MenuControl.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Controls/PopupInputControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Controls/PopupInputControl.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Controls/PreferredSynonyms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Controls/PreferredSynonyms.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Controls/PromptControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Controls/PromptControl.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Controls/SaveRestoreFolderBrowseControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Controls/SaveRestoreFolderBrowseControl.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Controls/SaveRestoreGameBrowseControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Controls/SaveRestoreGameBrowseControl.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Controls/StatusLineControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Controls/StatusLineControl.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Controls/TextBoxControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Controls/TextBoxControl.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Controls/TraceControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Controls/TraceControl.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Controls/WordListInputControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Controls/WordListInputControl.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/CycleMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/CycleMode.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Direction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Direction.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/DisplayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/DisplayType.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/DitheredColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/DitheredColor.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/EgoControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/EgoControl.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ErrorCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ErrorCodes.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ExecutionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ExecutionException.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ExitException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ExitException.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Flags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Flags.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Font.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/FontAmiga8x8.nbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/FontAmiga8x8.nbf -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/FontAppleIIgs8x8.nbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/FontAppleIIgs8x8.nbf -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/FontAtariST8x8.nbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/FontAtariST8x8.nbf -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/FontEga8x8.nbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/FontEga8x8.nbf -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/FontHercules16x16.nbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/FontHercules16x16.nbf -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/FontUnknown8x8.nbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/FontUnknown8x8.nbf -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/GraphicsColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/GraphicsColor.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/GraphicsRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/GraphicsRenderer.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriver.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverAmiga1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverAmiga1.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverAmiga2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverAmiga2.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverAmiga3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverAmiga3.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverAppleIIgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverAppleIIgs.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverAtariST.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverAtariST.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverCga.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverCga.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverCga0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverCga0.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverCga1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverCga1.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverEga.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverEga.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverFull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverFull.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverHercules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/GraphicsRendererDriverHercules.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Hints/FlagContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Hints/FlagContext.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Hints/HintBook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Hints/HintBook.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Hints/HintBookSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Hints/HintBookSerializer.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Hints/ItemContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Hints/ItemContext.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Hints/Topic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Hints/Topic.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/IGraphicsDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/IGraphicsDriver.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/IInputDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/IInputDriver.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/IKernel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/IKernel.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ISavedGameSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ISavedGameSerializer.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ISoundDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ISoundDriver.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ISoundPcmDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ISoundPcmDriver.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/InputEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/InputEvent.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/InputEventAscii.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/InputEventAscii.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/InputEventDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/InputEventDirection.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/InputEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/InputEventType.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/LogicArgumentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/LogicArgumentType.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/LogicCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/LogicCommand.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/LogicCommandTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/LogicCommandTable.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/LogicControlCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/LogicControlCode.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/LogicFunctionCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/LogicFunctionCode.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/LogicFunctionTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/LogicFunctionTable.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/LogicInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/LogicInterpreter.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/LogicPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/LogicPatch.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/LogicPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/LogicPatches.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/LogicProcedureCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/LogicProcedureCode.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/LogicProcedureTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/LogicProcedureTable.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/LogicVocabularyScraper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/LogicVocabularyScraper.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/LoopUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/LoopUpdate.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Menu.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/MenuItem.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/MenuParentItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/MenuParentItem.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/MessageState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/MessageState.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Motion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Motion.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/MouseArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/MouseArea.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/MouseAreaPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/MouseAreaPosition.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/MouseButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/MouseButton.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/MouseDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/MouseDown.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/MouseMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/MouseMode.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Palette.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Palette.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Parser.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ParserResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ParserResult.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/PcmSoundDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/PcmSoundDriver.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/PictureBrushPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/PictureBrushPattern.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/PictureBrushShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/PictureBrushShape.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/PictureBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/PictureBuffer.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/PictureCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/PictureCode.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/PictureInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/PictureInterpreter.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/PicturePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/PicturePoint.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/PictureRectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/PictureRectangle.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/PictureRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/PictureRenderer.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/PlayerResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/PlayerResources.Designer.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/PlayerResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/PlayerResources.resx -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Preferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Preferences.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/PreferencesSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/PreferencesSerializer.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/PriorityTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/PriorityTable.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Random.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Random.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/RenderBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/RenderBuffer.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/RenderPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/RenderPoint.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/RenderRectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/RenderRectangle.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/RenderSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/RenderSize.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ResourceManager.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/SavedGameManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/SavedGameManager.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/SavedGameXmlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/SavedGameXmlSerializer.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ScreenPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ScreenPoint.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ScriptCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ScriptCodes.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ScriptManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ScriptManager.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ShiftDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ShiftDirection.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/SoundChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/SoundChannel.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/SoundManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/SoundManager.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/SoundType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/SoundType.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/State.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/StringUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/StringUtility.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/TextColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/TextColor.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/TextPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/TextPosition.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Tone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Tone.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ToneChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ToneChannel.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ToneChannelNoise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ToneChannelNoise.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/TraceState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/TraceState.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/UserInputMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/UserInputMode.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/UserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/UserInterface.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/UserInterfaceTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/UserInterfaceTheme.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/Variables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/Variables.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ViewObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ViewObject.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ViewObjectFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ViewObjectFlags.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ViewObjectManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ViewObjectManager.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/ViewObjectTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/ViewObjectTable.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/WalkMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/WalkMode.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Interpreter/WindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Interpreter/WindowManager.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/InterpreterMajorVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/InterpreterMajorVersion.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/InterpreterVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/InterpreterVersion.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Platform.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/InventoryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/InventoryItem.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/InventoryResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/InventoryResource.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/LogicResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/LogicResource.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/PictureResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/PictureResource.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/GameNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/GameNotFoundException.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/IVolumeDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/IVolumeDecoder.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/InventoryDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/InventoryDecoder.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/LogicDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/LogicDecoder.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/LzwDecompress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/LzwDecompress.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/PictureCompression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/PictureCompression.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/PictureDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/PictureDecoder.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/ResourceLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/ResourceLoader.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/RleCompression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/RleCompression.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/RleCompressionInvalidRepeatCountException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/RleCompressionInvalidRepeatCountException.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/SoundDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/SoundDecoder.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/StringDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/StringDecoder.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/ViewDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/ViewDecoder.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/VocabularyDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/VocabularyDecoder.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/VocabularyInvalidRepeatCountException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/VocabularyInvalidRepeatCountException.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/VolumeDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/VolumeDecoder.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/VolumeDecoderInvalidResourceOffsetException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/VolumeDecoderInvalidResourceOffsetException.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/VolumeDecoderInvalidResourceSignatureException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/VolumeDecoderInvalidResourceSignatureException.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/VolumeDecoderV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/VolumeDecoderV2.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/VolumeDecoderV3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/VolumeDecoderV3.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/VolumeFilesNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/VolumeFilesNotFoundException.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/VolumeResourceMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/VolumeResourceMap.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/VolumeResourceMapEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/VolumeResourceMapEntry.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/VolumeResourceMapEntryCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/VolumeResourceMapEntryCollection.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/Serialization/XorTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/Serialization/XorTransform.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/SoundResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/SoundResource.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/ViewCel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/ViewCel.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/ViewLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/ViewLoop.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/ViewResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/ViewResource.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/VocabularyResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/VocabularyResource.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Resources/VocabularyWordFamily.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Resources/VocabularyWordFamily.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Engine/Woohoo.Agi.Engine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Engine/Woohoo.Agi.Engine.csproj -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/AbortException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/AbortException.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/AgiPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/AgiPlayer.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl/NativeMethods.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl/SdlGraphicsDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl/SdlGraphicsDriver.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl/SdlImportResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl/SdlImportResolver.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl/SdlInputDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl/SdlInputDriver.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl/SdlKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl/SdlKey.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl/SdlPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl/SdlPlayer.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl/SdlSoundChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl/SdlSoundChannel.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl/SdlSoundPcmDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl/SdlSoundPcmDriver.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl2/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl2/NativeMethods.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl2/NativeMethods2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl2/NativeMethods2.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl2/Sdl2GraphicsDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl2/Sdl2GraphicsDriver.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl2/Sdl2InputDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl2/Sdl2InputDriver.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl2/Sdl2Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl2/Sdl2Key.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl2/Sdl2Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl2/Sdl2Player.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl2/Sdl2SoundChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl2/Sdl2SoundChannel.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl2/Sdl2SoundPcmDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl2/Sdl2SoundPcmDriver.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl3/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl3/NativeMethods.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl3/Sdl3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl3/Sdl3.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl3/Sdl3GraphicsDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl3/Sdl3GraphicsDriver.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl3/Sdl3InputDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl3/Sdl3InputDriver.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl3/Sdl3Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl3/Sdl3Key.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl3/Sdl3Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl3/Sdl3Player.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl3/Sdl3SoundChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl3/Sdl3SoundChannel.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Backend/Sdl3/Sdl3SoundPcmDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Backend/Sdl3/Sdl3SoundPcmDriver.cs -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/Woohoo.Agi.Player.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/Woohoo.Agi.Player.csproj -------------------------------------------------------------------------------- /src/Woohoo.Agi.Player/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/Woohoo.Agi.Player/settings.xml -------------------------------------------------------------------------------- /src/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huguesv/AgiPlayer/HEAD/src/global.json --------------------------------------------------------------------------------