├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENSE ├── README.md ├── appveyor.yml ├── docs ├── archive.html ├── css │ ├── lightgallery.min.css │ └── uwadv.css ├── development.html ├── devlog.html ├── download.html ├── favicon.ico ├── fonts │ ├── lg.eot │ ├── lg.svg │ ├── lg.ttf │ └── lg.woff ├── images │ ├── devel │ │ ├── all_levels.jpg │ │ ├── uadebug-ribbon-small.png │ │ ├── uadebug-ribbon.png │ │ ├── uadebug01.jpg │ │ ├── uadebug01.png │ │ ├── uadebug02.jpg │ │ ├── uadebug02.png │ │ ├── uadebug03.jpg │ │ ├── uadebug03.png │ │ ├── uadebug04.jpg │ │ ├── uadebug04.png │ │ ├── uadebug05.jpg │ │ ├── uadebug05.png │ │ ├── uadebug06.jpg │ │ ├── uadebug06.png │ │ ├── uwadv-automap-small.jpg │ │ ├── uwadv-automap.png │ │ ├── uwadv-uw2-small.png │ │ └── uwadv-uw2.png │ ├── mail.png │ ├── mailgray.png │ ├── shot1.jpg │ ├── shot2.jpg │ ├── shot3.jpg │ ├── shot4.jpg │ ├── shot5.jpg │ ├── shot6.jpg │ ├── shot7.jpg │ ├── shot8.jpg │ ├── shot9.jpg │ ├── shota.jpg │ ├── shotb.jpg │ ├── shotc.png │ ├── shotd.jpg │ ├── shote.jpg │ ├── shotf.jpg │ ├── tn_shot1.jpg │ ├── tn_shot2.jpg │ ├── tn_shot3.jpg │ ├── tn_shot4.jpg │ ├── tn_shot5.jpg │ ├── tn_shot6.jpg │ ├── tn_shot7.jpg │ ├── tn_shot8.jpg │ ├── tn_shot9.jpg │ ├── tn_shota.jpg │ ├── tn_shotb.jpg │ ├── tn_shotc.jpg │ ├── tn_shotd.jpg │ ├── tn_shote.jpg │ ├── tn_shotf.jpg │ ├── top1.jpg │ └── top2.jpg ├── index.html ├── js │ └── lightgallery.min.js ├── oldreleases.html └── screenshots.html └── uwadv ├── .editorconfig ├── .gitignore ├── .vscode └── settings.json ├── CMakeLists.txt ├── CMakePresets.json ├── Clean.cmd ├── Copying ├── Patch-BuildVersion.ps1 ├── README.md ├── SonarCloud.cmd ├── UnitTestsAndCoverage.cmd ├── android ├── .gitignore ├── BuildAndroid.cmd ├── CMakeLists.txt ├── app-logo-uus-with-margin-28dp.svg ├── app-logo-uus.svg ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ ├── AndroidGame.cpp │ │ ├── AndroidGame.hpp │ │ ├── CMakeLists.txt │ │ └── uwadv_android.cpp │ │ ├── java │ │ ├── de │ │ │ └── vividos │ │ │ │ └── app │ │ │ │ └── underworld_adventures │ │ │ │ └── android │ │ │ │ └── GameActivity.java │ │ └── org │ │ │ └── libsdl │ │ │ └── app │ │ │ ├── HIDDevice.java │ │ │ ├── HIDDeviceBLESteamController.java │ │ │ ├── HIDDeviceManager.java │ │ │ ├── HIDDeviceUSB.java │ │ │ ├── SDL.java │ │ │ ├── SDLActivity.java │ │ │ ├── SDLAudioManager.java │ │ │ ├── SDLControllerManager.java │ │ │ └── SDLSurface.java │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── custom-triplets │ └── arm64-android-dynamic.cmake ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── cppcheck ├── RunCppCheck.cmd ├── cppcheck-suppress.txt ├── cppcheck.props └── cppcheck.vcxproj ├── debian ├── README.Debian ├── changelog ├── conffiles ├── config ├── control ├── copyright ├── dirs ├── docs ├── menu ├── postinst ├── postrm ├── rules └── templates ├── docs ├── Features.md ├── README.Developer.md ├── README.Manual.md ├── README.Tools.md ├── README.md ├── uw-formats.txt ├── uw1-keyboard.txt ├── uw1-walkthrough.txt ├── uw2-keyboard.txt ├── uw2-spellbook.txt └── uw2-walkthrough.txt ├── doxygen ├── RunDoxygen.cmd ├── doxygen.cfg ├── doxygen.props ├── doxygen.vcxproj ├── doxygen.vcxproj.filters └── ua-module-dependencies.dot ├── hacking ├── bytdecode.cpp ├── cnvdec.cpp ├── crit_ai.cpp ├── critdec.cpp ├── cutsdec.cpp ├── fontdecode.cpp ├── gamestrings.cpp ├── grdecode.cpp ├── hacking.cpp ├── hacking.h ├── hacking.vcxproj ├── levarkdec.cpp ├── miscdecode.cpp ├── sgdecode.cpp ├── trdecode.cpp └── uwmdldec.cpp ├── lang └── lang_de.txt ├── linux ├── uwadv.6.in ├── uwadv.cfg.in └── uwadv.spec.in ├── misc ├── anmformt.zip ├── makevis.cpp ├── ripmod.c ├── ua-objtex00.png ├── ua-objtex01.png ├── uw1-combinations.txt ├── uw1-common-obj-prop.txt ├── uw1-object-classes.txt ├── uw1-objects.png └── uw1-palette0.png ├── source ├── GameInterface.hpp ├── IDebugServer.hpp ├── IGameInstance.hpp ├── IScreenHost.hpp ├── IUserInterface.hpp ├── audio │ ├── Audio.cpp │ ├── Audio.hpp │ ├── CMakeLists.txt │ ├── IODataSource.hpp │ ├── MidiPlayer.cpp │ ├── MidiPlayer.hpp │ ├── Playlist.cpp │ ├── Playlist.hpp │ ├── VoiceFile.cpp │ ├── VoiceFile.hpp │ ├── VoiceResample.cpp │ ├── audio.vcxproj │ ├── audio.vcxproj.filters │ ├── midi │ │ ├── CoreAudioMidiDriver.cpp │ │ ├── CoreAudioMidiDriver.h │ │ ├── IDataSource.h │ │ ├── LowLevelMidiDriver.cpp │ │ ├── LowLevelMidiDriver.h │ │ ├── MidiDriver.cpp │ │ ├── MidiDriver.h │ │ ├── ODataSource.h │ │ ├── WindowsMidiDriver.cpp │ │ ├── WindowsMidiDriver.h │ │ ├── XMidiEvent.h │ │ ├── XMidiEventList.cpp │ │ ├── XMidiEventList.h │ │ ├── XMidiFile.cpp │ │ ├── XMidiFile.h │ │ ├── XMidiNoteStack.h │ │ ├── XMidiSequence.cpp │ │ ├── XMidiSequence.h │ │ ├── XMidiSequenceHandler.h │ │ ├── array_size.h │ │ ├── common_types.h │ │ └── pent_include.h │ ├── pch.cpp │ ├── pch.hpp │ ├── resamp.c │ └── resamp.h ├── base │ ├── ArchiveFile.cpp │ ├── ArchiveFile.hpp │ ├── Base.cpp │ ├── Base.hpp │ ├── CMakeLists.txt │ ├── Color3ub.cpp │ ├── Color3ub.hpp │ ├── ConfigFile.cpp │ ├── ConfigFile.hpp │ ├── Constants.hpp │ ├── Exception.hpp │ ├── File.cpp │ ├── File.hpp │ ├── FileSystem.cpp │ ├── FileSystem.hpp │ ├── KeyValuePairTextFileReader.cpp │ ├── KeyValuePairTextFileReader.hpp │ ├── Keymap.cpp │ ├── Keymap.hpp │ ├── Math.hpp │ ├── Path.cpp │ ├── Path.hpp │ ├── Plane3d.hpp │ ├── ResourceManager.cpp │ ├── ResourceManager.hpp │ ├── SDL_rwops_gzfile.c │ ├── SDL_rwops_gzfile.h │ ├── SDL_rwops_zzip.c │ ├── SDL_rwops_zzip.h │ ├── Savegame.cpp │ ├── Savegame.hpp │ ├── Settings.cpp │ ├── Settings.hpp │ ├── SettingsLoader.cpp │ ├── String.cpp │ ├── String.hpp │ ├── TextFile.cpp │ ├── TextFile.hpp │ ├── Triangle3d.hpp │ ├── Uw2decode.cpp │ ├── Uw2decode.hpp │ ├── Vector2d.hpp │ ├── Vector3d.hpp │ ├── Vertex3d.hpp │ ├── base.vcxproj │ ├── base.vcxproj.filters │ ├── pch.cpp │ └── pch.hpp ├── common.hpp ├── conv │ ├── CMakeLists.txt │ ├── CodeGraph.cpp │ ├── CodeGraph.hpp │ ├── CodeVM.cpp │ ├── CodeVM.hpp │ ├── ConvStack.hpp │ ├── Conversation.cpp │ ├── Conversation.hpp │ ├── ConversationDebugger.cpp │ ├── ConversationDebugger.hpp │ ├── Opcodes.hpp │ ├── conv.vcxproj │ ├── conv.vcxproj.filters │ ├── pch.cpp │ └── pch.hpp ├── game │ ├── CMakeLists.txt │ ├── DebugServer.cpp │ ├── DebugServer.hpp │ ├── GameConfig.cpp │ ├── GameConfig.hpp │ ├── GameConfigLoader.cpp │ ├── GameConfigLoader.hpp │ ├── GameInstance.cpp │ ├── GameInstance.hpp │ ├── GameScreenHost.cpp │ ├── GameScreenHost.hpp │ ├── LevelEditor.cpp │ ├── LevelEditor.hpp │ ├── game.vcxproj │ ├── game.vcxproj.filters │ ├── pch.cpp │ └── pch.hpp ├── import │ ├── Bits.hpp │ ├── CMakeLists.txt │ ├── ConvLoader.cpp │ ├── ConvLoader.hpp │ ├── CrittersLoader.cpp │ ├── CrittersLoader.hpp │ ├── CutsceneLoader.cpp │ ├── CutsceneLoader.hpp │ ├── FontLoader.cpp │ ├── FontLoader.hpp │ ├── GameStringsImporter.cpp │ ├── GameStringsImporter.hpp │ ├── ImageLoader.cpp │ ├── ImageLoader.hpp │ ├── Import.hpp │ ├── ItemCombineLoader.cpp │ ├── LevelImporter.cpp │ ├── LevelImporter.hpp │ ├── MapLoader.cpp │ ├── ModelDecoder.cpp │ ├── ObjectListLoader.cpp │ ├── ObjectListLoader.hpp │ ├── PlayerImporter.cpp │ ├── PlayerImporter.hpp │ ├── PropertiesLoader.cpp │ ├── TextureLoader.cpp │ ├── TextureLoader.hpp │ ├── TgaImport.cpp │ ├── UnderworldLoader.cpp │ ├── VrmlImporter.cpp │ ├── VrmlImporter.hpp │ ├── import.vcxproj │ ├── import.vcxproj.filters │ ├── pch.cpp │ ├── pch.hpp │ └── vrml │ │ ├── FlexLexer.h │ │ ├── WrlLexer.cpp │ │ ├── WrlLexer.hpp │ │ ├── flex.skl │ │ └── wrllexer.l ├── physics │ ├── CMakeLists.txt │ ├── CollisionDetection.cpp │ ├── CollisionDetection.hpp │ ├── GeometryProvider.cpp │ ├── GeometryProvider.hpp │ ├── Pathfinder.cpp │ ├── Pathfinder.hpp │ ├── PhysicsBody.hpp │ ├── PhysicsModel.cpp │ ├── PhysicsModel.hpp │ ├── PlayerPhysicsObject.cpp │ ├── PlayerPhysicsObject.hpp │ ├── pch.cpp │ ├── pch.hpp │ ├── physics.vcxproj │ └── physics.vcxproj.filters ├── renderer │ ├── CMakeLists.txt │ ├── Critter.cpp │ ├── Critter.hpp │ ├── CritterFramesManager.cpp │ ├── CritterFramesManager.hpp │ ├── LevelTilemapRenderer.cpp │ ├── LevelTilemapRenderer.hpp │ ├── MainGameLoop.cpp │ ├── MainGameLoop.hpp │ ├── Model3D.hpp │ ├── Model3DBuiltIn.cpp │ ├── Model3DBuiltIn.hpp │ ├── Model3DManager.cpp │ ├── Model3DManager.hpp │ ├── Model3DVrml.cpp │ ├── Model3DVrml.hpp │ ├── OpenGL.cpp │ ├── OpenGL.hpp │ ├── PolygonTessellator.cpp │ ├── PolygonTessellator.hpp │ ├── Quadtree.cpp │ ├── Quadtree.hpp │ ├── RenderOptions.hpp │ ├── RenderWindow.cpp │ ├── RenderWindow.hpp │ ├── Renderer.cpp │ ├── Renderer.hpp │ ├── Scaler.cpp │ ├── Scaler.hpp │ ├── Texture.cpp │ ├── Texture.hpp │ ├── TextureManager.cpp │ ├── TextureManager.hpp │ ├── UnderworldRenderer.cpp │ ├── UnderworldRenderer.hpp │ ├── VertexBufferObject.cpp │ ├── VertexBufferObject.hpp │ ├── Viewport.cpp │ ├── Viewport.hpp │ ├── fixed │ │ ├── GluPolygonTessellatorImpl.cpp │ │ └── GluPolygonTessellatorImpl.hpp │ ├── pch.cpp │ ├── pch.hpp │ ├── renderer.vcxproj │ └── renderer.vcxproj.filters ├── screens │ ├── AcknowledgementsScreen.cpp │ ├── AcknowledgementsScreen.hpp │ ├── CMakeLists.txt │ ├── ConversationScreen.cpp │ ├── ConversationScreen.hpp │ ├── CreateCharacterScreen.cpp │ ├── CreateCharacterScreen.hpp │ ├── CutsceneViewScreen.cpp │ ├── CutsceneViewScreen.hpp │ ├── IngameControls.hpp │ ├── MapViewScreen.cpp │ ├── MapViewScreen.hpp │ ├── OriginalIngameScreen.cpp │ ├── OriginalIngameScreen.hpp │ ├── Panel.cpp │ ├── Panel.hpp │ ├── SaveGameScreen.cpp │ ├── SaveGameScreen.hpp │ ├── StartMenuScreen.cpp │ ├── StartMenuScreen.hpp │ ├── StartSplashScreen.cpp │ ├── StartSplashScreen.hpp │ ├── UwadvMenuScreen.cpp │ ├── UwadvMenuScreen.hpp │ ├── controls │ │ ├── Ingame3DView.cpp │ │ ├── Ingame3DView.hpp │ │ ├── IngameCommandButtons.cpp │ │ ├── IngameCommandButtons.hpp │ │ ├── IngameCompass.cpp │ │ ├── IngameCompass.hpp │ │ ├── IngameDragon.cpp │ │ ├── IngameDragon.hpp │ │ ├── IngameFlask.cpp │ │ ├── IngameFlask.hpp │ │ ├── IngameGargoyleEyes.cpp │ │ ├── IngameGargoyleEyes.hpp │ │ ├── IngameMoveArrows.cpp │ │ ├── IngameMoveArrows.hpp │ │ ├── IngamePowerGem.cpp │ │ ├── IngamePowerGem.hpp │ │ ├── IngameRuneshelf.cpp │ │ ├── IngameRuneshelf.hpp │ │ ├── IngameSpellArea.cpp │ │ ├── IngameSpellArea.hpp │ │ ├── OriginalIngameControl.cpp │ │ └── OriginalIngameControl.hpp │ ├── pch.cpp │ ├── pch.hpp │ ├── screens.vcxproj │ └── screens.vcxproj.filters ├── script │ ├── CMakeLists.txt │ ├── CreateCharacterLuaScripting.cpp │ ├── CreateCharacterLuaScripting.hpp │ ├── IScripting.hpp │ ├── LuaCodeDebugger.cpp │ ├── LuaCodeDebugger.hpp │ ├── LuaScripting.cpp │ ├── LuaScripting.hpp │ ├── LuaState.cpp │ ├── LuaState.hpp │ ├── pch.cpp │ ├── pch.hpp │ ├── script.vcxproj │ └── script.vcxproj.filters ├── thirdparty │ ├── SDL_pnglite │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── SDL_pnglite.c │ │ ├── SDL_pnglite.h │ │ ├── SDL_pnglite.vcxproj │ │ ├── SDL_pnglite.vcxproj.filters │ │ ├── pnglite.c │ │ ├── pnglite.h │ │ ├── sdl2_pnglite.py │ │ ├── sdl_pnglite.pc.in │ │ └── test-suite.c │ ├── build.cmd │ ├── clean.cmd │ ├── hqx │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── README.md │ │ ├── configure.ac │ │ ├── hqx.pc.in │ │ ├── hqx.vcxproj │ │ ├── hqx.vcxproj.filters │ │ └── src │ │ │ ├── common.h │ │ │ ├── hq2x.c │ │ │ ├── hq3x.c │ │ │ ├── hq4x.c │ │ │ ├── hqx.c │ │ │ ├── hqx.h │ │ │ └── init.c │ └── thirdparty.vcxproj ├── tools │ ├── animview.cpp │ ├── convdbg │ │ ├── CMakeLists.txt │ │ ├── convdbg.cpp │ │ ├── convdbg.hpp │ │ └── convdbg.vcxproj │ ├── convdec │ │ ├── CMakeLists.txt │ │ ├── Decompiler.cpp │ │ ├── Decompiler.hpp │ │ ├── convdec.cpp │ │ └── convdec.vcxproj │ ├── map3ds.cpp │ ├── mapdisp │ │ ├── mapdisp.cpp │ │ └── mapdisp.vcxproj │ ├── strpak │ │ ├── CMakeLists.txt │ │ ├── strpak.cpp │ │ ├── strpak.vcxproj │ │ └── strpak.vcxproj.filters │ ├── uwdump │ │ ├── CMakeLists.txt │ │ ├── DumpArkArchive.cpp │ │ ├── DumpBytImage.cpp │ │ ├── DumpCombineData.cpp │ │ ├── DumpConversationArchive.cpp │ │ ├── DumpCutscene.cpp │ │ ├── DumpExecutable.cpp │ │ ├── DumpGrImage.cpp │ │ ├── DumpLevelArchive.cpp │ │ ├── DumpLevelArchive.hpp │ │ ├── DumpObjectProperties.cpp │ │ ├── DumpPalettes.cpp │ │ ├── DumpTerrainData.cpp │ │ ├── DumpTrImage.cpp │ │ ├── DumpUwExe.cpp │ │ ├── UnderworldDumper.cpp │ │ ├── UnderworldDumper.hpp │ │ ├── uwdump.cpp │ │ ├── uwdump.vcxproj │ │ └── uwdump.vcxproj.filters │ ├── uwmdlview.cpp │ ├── wrlview.cpp │ └── xmi2mid │ │ ├── CMakeLists.txt │ │ ├── xmi2mid.cpp │ │ └── xmi2mid.vcxproj ├── ui │ ├── AutomapGenerator.cpp │ ├── AutomapGenerator.hpp │ ├── CMakeLists.txt │ ├── ClickArea.hpp │ ├── Cutscene.cpp │ ├── Cutscene.hpp │ ├── FadingHelper.hpp │ ├── Font.cpp │ ├── Font.hpp │ ├── ImageManager.cpp │ ├── ImageManager.hpp │ ├── ImageQuad.cpp │ ├── ImageQuad.hpp │ ├── ImageScreen.cpp │ ├── ImageScreen.hpp │ ├── ImageWindow.cpp │ ├── ImageWindow.hpp │ ├── IndexedImage.cpp │ ├── IndexedImage.hpp │ ├── MouseCursor.cpp │ ├── MouseCursor.hpp │ ├── Palette256.cpp │ ├── Palette256.hpp │ ├── Screen.cpp │ ├── Screen.hpp │ ├── TextEditWindow.cpp │ ├── TextEditWindow.hpp │ ├── TextScroll.cpp │ ├── TextScroll.hpp │ ├── Window.cpp │ ├── Window.hpp │ ├── pch.cpp │ ├── pch.hpp │ ├── ui.vcxproj │ └── ui.vcxproj.filters ├── underworld │ ├── CMakeLists.txt │ ├── ConvGlobals.cpp │ ├── ConvGlobals.hpp │ ├── GameLogic.cpp │ ├── GameLogic.hpp │ ├── GameStrings.cpp │ ├── GameStrings.hpp │ ├── Inventory.cpp │ ├── Inventory.hpp │ ├── Level.cpp │ ├── Level.hpp │ ├── LevelList.cpp │ ├── LevelList.hpp │ ├── MapNotes.cpp │ ├── MapNotes.hpp │ ├── Object.cpp │ ├── Object.hpp │ ├── ObjectList.cpp │ ├── ObjectList.hpp │ ├── Player.cpp │ ├── Player.hpp │ ├── Properties.hpp │ ├── QuestFlags.cpp │ ├── QuestFlags.hpp │ ├── Runes.cpp │ ├── Runes.hpp │ ├── TileMap.cpp │ ├── Tilemap.hpp │ ├── Underworld.cpp │ ├── Underworld.hpp │ ├── pch.cpp │ ├── pch.hpp │ ├── underworld.vcxproj │ └── underworld.vcxproj.filters ├── unittest │ ├── ArchiveFileTest.cpp │ ├── AudioTest.cpp │ ├── CollisionDetectionTest.cpp │ ├── ConfigFileTest.cpp │ ├── ConvCodeGraphTest.cpp │ ├── CutsceneTest.cpp │ ├── FileSystemTest.cpp │ ├── FileTest.cpp │ ├── ImageManagerTest.cpp │ ├── ImportTest.cpp │ ├── KeymapTest.cpp │ ├── LuaStateTest.cpp │ ├── PathTest.cpp │ ├── ResourceManagerTest.cpp │ ├── SavegameTest.cpp │ ├── ScalerTest.cpp │ ├── SettingsTest.cpp │ ├── StringTest.cpp │ ├── TempFolder.cpp │ ├── TempFolder.hpp │ ├── UnderworldTest.cpp │ ├── UnitTest.cpp │ ├── UnitTest.hpp │ ├── convtest.cpp │ ├── pch.cpp │ ├── pch.hpp │ ├── unittest.vcxproj │ └── unittest.vcxproj.filters ├── uwadv-debug.props ├── uwadv-release.props ├── uwadv │ ├── CMakeLists.txt │ ├── Game.cpp │ ├── Game.hpp │ ├── main.cpp │ ├── pch.cpp │ ├── pch.hpp │ ├── uwadv.vcxproj │ └── uwadv.vcxproj.filters ├── version.hpp └── win32 │ ├── CrashReporting.cpp │ ├── CrashReporting.hpp │ ├── Uus.ico │ ├── commctrl6.manifest │ ├── resource.h │ ├── uaconfig │ ├── ConfigDlg.cpp │ ├── ConfigDlg.hpp │ ├── Corp.ico │ ├── TooltipCtrl.hpp │ ├── resource.h │ ├── uaconfig.cpp │ ├── uaconfig.vcxproj │ ├── uaconfig.vcxproj.filters │ ├── uaconfig_res.rc │ └── versioninfo.rc │ ├── uadebug │ ├── AboutDlg.hpp │ ├── BreakpointListWindow.cpp │ ├── BreakpointListWindow.hpp │ ├── ChildWindowBase.hpp │ ├── DebugClient.cpp │ ├── DebugClient.hpp │ ├── DebugWindowBase.hpp │ ├── DockingWindowBase.hpp │ ├── EditListViewCtrl.cpp │ ├── EditListViewCtrl.hpp │ ├── Filename.cpp │ ├── Filename.hpp │ ├── GameStringsView.cpp │ ├── GameStringsView.hpp │ ├── HotspotListWindow.cpp │ ├── HotspotListWindow.hpp │ ├── IMainFrame.hpp │ ├── LuaScriptEditorView.cpp │ ├── LuaScriptEditorView.hpp │ ├── LuaSourceWindow.cpp │ ├── LuaSourceWindow.hpp │ ├── MainFrame.cpp │ ├── MainFrame.hpp │ ├── ObjectListWindow.cpp │ ├── ObjectListWindow.hpp │ ├── OutputDockingWindow.cpp │ ├── OutputDockingWindow.hpp │ ├── OutputWindow.hpp │ ├── PlayerInfoWindow.cpp │ ├── PlayerInfoWindow.hpp │ ├── ProjectInfoWindow.cpp │ ├── ProjectInfoWindow.hpp │ ├── ProjectManager.cpp │ ├── ProjectManager.hpp │ ├── PropertyListCtrl.cpp │ ├── PropertyListCtrl.hpp │ ├── TileInfoWindow.cpp │ ├── TileInfoWindow.hpp │ ├── TileMapViewChildFrame.hpp │ ├── TileMapViewCtrl.cpp │ ├── TileMapViewCtrl.hpp │ ├── Tilemap3DEditorView.cpp │ ├── Tilemap3DEditorView.hpp │ ├── WatchesListWindow.cpp │ ├── WatchesListWindow.hpp │ ├── pch.cpp │ ├── pch.hpp │ ├── res │ │ ├── Des.ico │ │ ├── Lua.ico │ │ ├── Ribbon.xml │ │ ├── Sanct.ico │ │ ├── app_exit.bmp │ │ ├── cursor_tilemap.cur │ │ ├── debug_break.bmp │ │ ├── debug_run.bmp │ │ ├── debug_step_into.bmp │ │ ├── debug_step_out.bmp │ │ ├── debug_step_over.bmp │ │ ├── edit_copy.bmp │ │ ├── edit_cut.bmp │ │ ├── edit_paste.bmp │ │ ├── edit_redo.bmp │ │ ├── edit_undo.bmp │ │ ├── file_new_project.bmp │ │ ├── file_open.bmp │ │ ├── file_open_project.bmp │ │ ├── file_save.bmp │ │ ├── file_save_all.bmp │ │ ├── file_save_as.bmp │ │ ├── gamestrings.ico │ │ ├── tilemap.ico │ │ ├── tree_project.bmp │ │ ├── underworld_pause.bmp │ │ ├── underworld_run.bmp │ │ ├── view_gamestrings.bmp │ │ ├── view_hostpotlist.bmp │ │ ├── view_objectlist.bmp │ │ ├── view_output.bmp │ │ ├── view_playerinfo.bmp │ │ ├── view_project.bmp │ │ ├── view_tileinfo.bmp │ │ ├── view_tilemap.bmp │ │ ├── view_tilemap_editor.bmp │ │ ├── window_cascade.bmp │ │ ├── window_horizontal.bmp │ │ └── window_vertical.bmp │ ├── resource.h │ ├── thirdparty │ │ ├── AtlOpengl.h │ │ ├── README.thirdparty.md │ │ ├── scintilla │ │ │ ├── .editorconfig │ │ │ ├── ILexer.h │ │ │ ├── ILoader.h │ │ │ ├── LexicalStyles.iface │ │ │ ├── Lexilla.h │ │ │ ├── SciLexer.h │ │ │ ├── Sci_Position.h │ │ │ ├── Scintilla.h │ │ │ ├── Scintilla.iface │ │ │ ├── ScintillaCall.h │ │ │ ├── ScintillaMessages.h │ │ │ ├── ScintillaStructures.h │ │ │ ├── ScintillaTypes.h │ │ │ ├── ScintillaWidget.h │ │ │ ├── atlscintilla.h │ │ │ └── lib │ │ │ │ ├── Lexilla.dll │ │ │ │ ├── Scintilla.dll │ │ │ │ └── lua.properties │ │ ├── tabbingframework │ │ │ └── include │ │ │ │ ├── CustomTabCtrl.h │ │ │ │ ├── DotNetTabCtrl.h │ │ │ │ ├── DynamicDialogTemplate.h │ │ │ │ ├── ImageUtil.h │ │ │ │ ├── ListViewNoFlicker.h │ │ │ │ ├── PlainTextView.h │ │ │ │ ├── SimpleDlgTabCtrls.h │ │ │ │ ├── SimpleTabCtrls.h │ │ │ │ ├── TabbedDockingWindow.h │ │ │ │ ├── TabbedFrame.h │ │ │ │ ├── TabbedMDI.h │ │ │ │ ├── TabbedMDIMessages.h │ │ │ │ ├── TabbedMDISave.cpp │ │ │ │ ├── TabbedMDISave.h │ │ │ │ └── atlgdix.h │ │ └── wtldockingwindows │ │ │ └── include │ │ │ ├── DDTracker.h │ │ │ ├── DWAutoHide.h │ │ │ ├── DockImpl.cpp │ │ │ ├── DockMisc.h │ │ │ ├── DockingBox.h │ │ │ ├── DockingFocus.h │ │ │ ├── DockingFrame.h │ │ │ ├── DockingWindow.h │ │ │ ├── ExtDockingWindow.h │ │ │ ├── FlyingTabs.h │ │ │ ├── PackageWindow.h │ │ │ ├── SimpleSplitterBar.h │ │ │ ├── TabDockingBox.h │ │ │ ├── VC7LikeCaption.h │ │ │ ├── WndFrmPkg.h │ │ │ ├── dbstate.h │ │ │ ├── dwstate.h │ │ │ ├── ssec.h │ │ │ └── sstate.h │ ├── uadebug.cpp │ ├── uadebug.def │ ├── uadebug.vcxproj │ ├── uadebug.vcxproj.filters │ ├── uadebug_res.rc │ └── versioninfo.rc │ ├── uastudio │ ├── GameStudio.cpp │ ├── Sanct.ico │ ├── TraceOnlyUserInterface.hpp │ ├── resource.h │ ├── uastudio.vcxproj │ ├── uastudio.vcxproj.filters │ ├── uastudio_res.rc │ └── versioninfo.rc │ ├── uwadv.cfg │ ├── uwadv_res.rc │ └── versioninfo.rc ├── uadata ├── CMakeLists.txt ├── README.Data.md ├── Underworld Adventures Soundtrack.m3u ├── build.cmd ├── common │ ├── uw1title.tga │ └── uw2title.tga ├── models │ └── static │ │ ├── apple.wrl │ │ ├── backpack.wrl │ │ ├── bag.wrl │ │ ├── barrel.wrl │ │ ├── bed_frame.wrl │ │ ├── bone1.wrl │ │ ├── bread.wrl │ │ ├── candle.wrl │ │ ├── chair.wrl │ │ ├── chest.wrl │ │ ├── flute.wrl │ │ ├── grass1.wrl │ │ ├── grass2.wrl │ │ ├── grass3.wrl │ │ ├── muffin.wrl │ │ ├── mushroom.wrl │ │ ├── rune_a.wrl │ │ ├── skull.wrl │ │ ├── steak.wrl │ │ ├── table.wrl │ │ ├── textures │ │ ├── apple.tga │ │ ├── backpack.tga │ │ ├── bag.tga │ │ ├── barrel.tga │ │ ├── bone.tga │ │ ├── bread.tga │ │ ├── candle.tga │ │ ├── flute.tga │ │ ├── grass.tga │ │ ├── muffin.tga │ │ ├── mushroom.tga │ │ ├── plank.tga │ │ ├── skull.tga │ │ ├── steak.tga │ │ ├── water.tga │ │ ├── wdchest.tga │ │ └── wood.tga │ │ └── water.wrl ├── studio │ └── template │ │ ├── game.cfg │ │ ├── keymap.cfg │ │ └── scripts │ │ └── game.lua ├── uadata.vcxproj ├── uadata.vcxproj.filters ├── uw1 │ ├── acknowledgements-blank.tga │ ├── audio │ │ ├── digitalmusic.m3u │ │ ├── music.m3u │ │ ├── uw01_intro.ogg │ │ ├── uw03_descent.ogg │ │ ├── uw04_wanderer.ogg │ │ └── uw15_maps_legends.ogg │ ├── game.cfg │ ├── keymap.cfg │ ├── model3d.cfg │ └── scripts │ │ ├── createchar.lua │ │ ├── critter.lua │ │ ├── cutscene.lua │ │ ├── dump.lua │ │ ├── game.lua │ │ ├── inventory.lua │ │ ├── lookat.lua │ │ ├── objectlist.lua │ │ ├── traps.lua │ │ ├── triggers.lua │ │ └── uwinterface.lua ├── uw2 │ ├── audio │ │ └── music.m3u │ ├── game.cfg │ ├── keymap.cfg │ ├── model3d.cfg │ └── scripts │ │ └── game.lua ├── uwadv-loading.png └── uwadv-title.png ├── uwadv.sln ├── vcpkg.json └── win32 └── setup ├── BackgroundImage.jpg ├── InstallWithLogging.cmd ├── Product.wxs ├── TopWizardBar.jpg ├── UninstallUwadv.cmd ├── license.rtf └── setup.wixproj /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/archive.html -------------------------------------------------------------------------------- /docs/css/lightgallery.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/css/lightgallery.min.css -------------------------------------------------------------------------------- /docs/css/uwadv.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/css/uwadv.css -------------------------------------------------------------------------------- /docs/development.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/development.html -------------------------------------------------------------------------------- /docs/devlog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/devlog.html -------------------------------------------------------------------------------- /docs/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/download.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/fonts/lg.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/fonts/lg.eot -------------------------------------------------------------------------------- /docs/fonts/lg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/fonts/lg.svg -------------------------------------------------------------------------------- /docs/fonts/lg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/fonts/lg.ttf -------------------------------------------------------------------------------- /docs/fonts/lg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/fonts/lg.woff -------------------------------------------------------------------------------- /docs/images/devel/all_levels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/devel/all_levels.jpg -------------------------------------------------------------------------------- /docs/images/devel/uadebug-ribbon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/devel/uadebug-ribbon-small.png -------------------------------------------------------------------------------- /docs/images/devel/uadebug-ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/devel/uadebug-ribbon.png -------------------------------------------------------------------------------- /docs/images/devel/uadebug01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/devel/uadebug01.jpg -------------------------------------------------------------------------------- /docs/images/devel/uadebug01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/devel/uadebug01.png -------------------------------------------------------------------------------- /docs/images/devel/uadebug02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/devel/uadebug02.jpg -------------------------------------------------------------------------------- /docs/images/devel/uadebug02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/devel/uadebug02.png -------------------------------------------------------------------------------- /docs/images/devel/uadebug03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/devel/uadebug03.jpg -------------------------------------------------------------------------------- /docs/images/devel/uadebug03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/devel/uadebug03.png -------------------------------------------------------------------------------- /docs/images/devel/uadebug04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/devel/uadebug04.jpg -------------------------------------------------------------------------------- /docs/images/devel/uadebug04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/devel/uadebug04.png -------------------------------------------------------------------------------- /docs/images/devel/uadebug05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/devel/uadebug05.jpg -------------------------------------------------------------------------------- /docs/images/devel/uadebug05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/devel/uadebug05.png -------------------------------------------------------------------------------- /docs/images/devel/uadebug06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/devel/uadebug06.jpg -------------------------------------------------------------------------------- /docs/images/devel/uadebug06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/devel/uadebug06.png -------------------------------------------------------------------------------- /docs/images/devel/uwadv-automap-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/devel/uwadv-automap-small.jpg -------------------------------------------------------------------------------- /docs/images/devel/uwadv-automap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/devel/uwadv-automap.png -------------------------------------------------------------------------------- /docs/images/devel/uwadv-uw2-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/devel/uwadv-uw2-small.png -------------------------------------------------------------------------------- /docs/images/devel/uwadv-uw2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/devel/uwadv-uw2.png -------------------------------------------------------------------------------- /docs/images/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/mail.png -------------------------------------------------------------------------------- /docs/images/mailgray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/mailgray.png -------------------------------------------------------------------------------- /docs/images/shot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/shot1.jpg -------------------------------------------------------------------------------- /docs/images/shot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/shot2.jpg -------------------------------------------------------------------------------- /docs/images/shot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/shot3.jpg -------------------------------------------------------------------------------- /docs/images/shot4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/shot4.jpg -------------------------------------------------------------------------------- /docs/images/shot5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/shot5.jpg -------------------------------------------------------------------------------- /docs/images/shot6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/shot6.jpg -------------------------------------------------------------------------------- /docs/images/shot7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/shot7.jpg -------------------------------------------------------------------------------- /docs/images/shot8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/shot8.jpg -------------------------------------------------------------------------------- /docs/images/shot9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/shot9.jpg -------------------------------------------------------------------------------- /docs/images/shota.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/shota.jpg -------------------------------------------------------------------------------- /docs/images/shotb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/shotb.jpg -------------------------------------------------------------------------------- /docs/images/shotc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/shotc.png -------------------------------------------------------------------------------- /docs/images/shotd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/shotd.jpg -------------------------------------------------------------------------------- /docs/images/shote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/shote.jpg -------------------------------------------------------------------------------- /docs/images/shotf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/shotf.jpg -------------------------------------------------------------------------------- /docs/images/tn_shot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/tn_shot1.jpg -------------------------------------------------------------------------------- /docs/images/tn_shot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/tn_shot2.jpg -------------------------------------------------------------------------------- /docs/images/tn_shot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/tn_shot3.jpg -------------------------------------------------------------------------------- /docs/images/tn_shot4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/tn_shot4.jpg -------------------------------------------------------------------------------- /docs/images/tn_shot5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/tn_shot5.jpg -------------------------------------------------------------------------------- /docs/images/tn_shot6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/tn_shot6.jpg -------------------------------------------------------------------------------- /docs/images/tn_shot7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/tn_shot7.jpg -------------------------------------------------------------------------------- /docs/images/tn_shot8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/tn_shot8.jpg -------------------------------------------------------------------------------- /docs/images/tn_shot9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/tn_shot9.jpg -------------------------------------------------------------------------------- /docs/images/tn_shota.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/tn_shota.jpg -------------------------------------------------------------------------------- /docs/images/tn_shotb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/tn_shotb.jpg -------------------------------------------------------------------------------- /docs/images/tn_shotc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/tn_shotc.jpg -------------------------------------------------------------------------------- /docs/images/tn_shotd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/tn_shotd.jpg -------------------------------------------------------------------------------- /docs/images/tn_shote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/tn_shote.jpg -------------------------------------------------------------------------------- /docs/images/tn_shotf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/tn_shotf.jpg -------------------------------------------------------------------------------- /docs/images/top1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/top1.jpg -------------------------------------------------------------------------------- /docs/images/top2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/images/top2.jpg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/lightgallery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/js/lightgallery.min.js -------------------------------------------------------------------------------- /docs/oldreleases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/oldreleases.html -------------------------------------------------------------------------------- /docs/screenshots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/docs/screenshots.html -------------------------------------------------------------------------------- /uwadv/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/.editorconfig -------------------------------------------------------------------------------- /uwadv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/.gitignore -------------------------------------------------------------------------------- /uwadv/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/.vscode/settings.json -------------------------------------------------------------------------------- /uwadv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/CMakePresets.json -------------------------------------------------------------------------------- /uwadv/Clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/Clean.cmd -------------------------------------------------------------------------------- /uwadv/Copying: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/Copying -------------------------------------------------------------------------------- /uwadv/Patch-BuildVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/Patch-BuildVersion.ps1 -------------------------------------------------------------------------------- /uwadv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/README.md -------------------------------------------------------------------------------- /uwadv/SonarCloud.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/SonarCloud.cmd -------------------------------------------------------------------------------- /uwadv/UnitTestsAndCoverage.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/UnitTestsAndCoverage.cmd -------------------------------------------------------------------------------- /uwadv/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/.gitignore -------------------------------------------------------------------------------- /uwadv/android/BuildAndroid.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/BuildAndroid.cmd -------------------------------------------------------------------------------- /uwadv/android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/android/app-logo-uus-with-margin-28dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/app-logo-uus-with-margin-28dp.svg -------------------------------------------------------------------------------- /uwadv/android/app-logo-uus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/app-logo-uus.svg -------------------------------------------------------------------------------- /uwadv/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/app/build.gradle -------------------------------------------------------------------------------- /uwadv/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /uwadv/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /uwadv/android/app/src/main/cpp/AndroidGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/app/src/main/cpp/AndroidGame.cpp -------------------------------------------------------------------------------- /uwadv/android/app/src/main/cpp/AndroidGame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/app/src/main/cpp/AndroidGame.hpp -------------------------------------------------------------------------------- /uwadv/android/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/android/app/src/main/cpp/uwadv_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/app/src/main/cpp/uwadv_android.cpp -------------------------------------------------------------------------------- /uwadv/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /uwadv/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /uwadv/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /uwadv/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/build.gradle -------------------------------------------------------------------------------- /uwadv/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/gradle.properties -------------------------------------------------------------------------------- /uwadv/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /uwadv/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/gradlew -------------------------------------------------------------------------------- /uwadv/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/gradlew.bat -------------------------------------------------------------------------------- /uwadv/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/android/settings.gradle -------------------------------------------------------------------------------- /uwadv/cppcheck/RunCppCheck.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/cppcheck/RunCppCheck.cmd -------------------------------------------------------------------------------- /uwadv/cppcheck/cppcheck-suppress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/cppcheck/cppcheck-suppress.txt -------------------------------------------------------------------------------- /uwadv/cppcheck/cppcheck.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/cppcheck/cppcheck.props -------------------------------------------------------------------------------- /uwadv/cppcheck/cppcheck.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/cppcheck/cppcheck.vcxproj -------------------------------------------------------------------------------- /uwadv/debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/debian/README.Debian -------------------------------------------------------------------------------- /uwadv/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/debian/changelog -------------------------------------------------------------------------------- /uwadv/debian/conffiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/debian/conffiles -------------------------------------------------------------------------------- /uwadv/debian/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/debian/config -------------------------------------------------------------------------------- /uwadv/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/debian/control -------------------------------------------------------------------------------- /uwadv/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/debian/copyright -------------------------------------------------------------------------------- /uwadv/debian/dirs: -------------------------------------------------------------------------------- 1 | /etc/uwadv 2 | /usr/games 3 | -------------------------------------------------------------------------------- /uwadv/debian/docs: -------------------------------------------------------------------------------- 1 | README 2 | Copying 3 | ChangeLog 4 | docs/* 5 | -------------------------------------------------------------------------------- /uwadv/debian/menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/debian/menu -------------------------------------------------------------------------------- /uwadv/debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/debian/postinst -------------------------------------------------------------------------------- /uwadv/debian/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/debian/postrm -------------------------------------------------------------------------------- /uwadv/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/debian/rules -------------------------------------------------------------------------------- /uwadv/debian/templates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/debian/templates -------------------------------------------------------------------------------- /uwadv/docs/Features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/docs/Features.md -------------------------------------------------------------------------------- /uwadv/docs/README.Developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/docs/README.Developer.md -------------------------------------------------------------------------------- /uwadv/docs/README.Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/docs/README.Manual.md -------------------------------------------------------------------------------- /uwadv/docs/README.Tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/docs/README.Tools.md -------------------------------------------------------------------------------- /uwadv/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/docs/README.md -------------------------------------------------------------------------------- /uwadv/docs/uw-formats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/docs/uw-formats.txt -------------------------------------------------------------------------------- /uwadv/docs/uw1-keyboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/docs/uw1-keyboard.txt -------------------------------------------------------------------------------- /uwadv/docs/uw1-walkthrough.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/docs/uw1-walkthrough.txt -------------------------------------------------------------------------------- /uwadv/docs/uw2-keyboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/docs/uw2-keyboard.txt -------------------------------------------------------------------------------- /uwadv/docs/uw2-spellbook.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/docs/uw2-spellbook.txt -------------------------------------------------------------------------------- /uwadv/docs/uw2-walkthrough.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/docs/uw2-walkthrough.txt -------------------------------------------------------------------------------- /uwadv/doxygen/RunDoxygen.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/doxygen/RunDoxygen.cmd -------------------------------------------------------------------------------- /uwadv/doxygen/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/doxygen/doxygen.cfg -------------------------------------------------------------------------------- /uwadv/doxygen/doxygen.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/doxygen/doxygen.props -------------------------------------------------------------------------------- /uwadv/doxygen/doxygen.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/doxygen/doxygen.vcxproj -------------------------------------------------------------------------------- /uwadv/doxygen/doxygen.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/doxygen/doxygen.vcxproj.filters -------------------------------------------------------------------------------- /uwadv/doxygen/ua-module-dependencies.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/doxygen/ua-module-dependencies.dot -------------------------------------------------------------------------------- /uwadv/hacking/bytdecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/hacking/bytdecode.cpp -------------------------------------------------------------------------------- /uwadv/hacking/cnvdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/hacking/cnvdec.cpp -------------------------------------------------------------------------------- /uwadv/hacking/crit_ai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/hacking/crit_ai.cpp -------------------------------------------------------------------------------- /uwadv/hacking/critdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/hacking/critdec.cpp -------------------------------------------------------------------------------- /uwadv/hacking/cutsdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/hacking/cutsdec.cpp -------------------------------------------------------------------------------- /uwadv/hacking/fontdecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/hacking/fontdecode.cpp -------------------------------------------------------------------------------- /uwadv/hacking/gamestrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/hacking/gamestrings.cpp -------------------------------------------------------------------------------- /uwadv/hacking/grdecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/hacking/grdecode.cpp -------------------------------------------------------------------------------- /uwadv/hacking/hacking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/hacking/hacking.cpp -------------------------------------------------------------------------------- /uwadv/hacking/hacking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/hacking/hacking.h -------------------------------------------------------------------------------- /uwadv/hacking/hacking.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/hacking/hacking.vcxproj -------------------------------------------------------------------------------- /uwadv/hacking/levarkdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/hacking/levarkdec.cpp -------------------------------------------------------------------------------- /uwadv/hacking/miscdecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/hacking/miscdecode.cpp -------------------------------------------------------------------------------- /uwadv/hacking/sgdecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/hacking/sgdecode.cpp -------------------------------------------------------------------------------- /uwadv/hacking/trdecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/hacking/trdecode.cpp -------------------------------------------------------------------------------- /uwadv/hacking/uwmdldec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/hacking/uwmdldec.cpp -------------------------------------------------------------------------------- /uwadv/lang/lang_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/lang/lang_de.txt -------------------------------------------------------------------------------- /uwadv/linux/uwadv.6.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/linux/uwadv.6.in -------------------------------------------------------------------------------- /uwadv/linux/uwadv.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/linux/uwadv.cfg.in -------------------------------------------------------------------------------- /uwadv/linux/uwadv.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/linux/uwadv.spec.in -------------------------------------------------------------------------------- /uwadv/misc/anmformt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/misc/anmformt.zip -------------------------------------------------------------------------------- /uwadv/misc/makevis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/misc/makevis.cpp -------------------------------------------------------------------------------- /uwadv/misc/ripmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/misc/ripmod.c -------------------------------------------------------------------------------- /uwadv/misc/ua-objtex00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/misc/ua-objtex00.png -------------------------------------------------------------------------------- /uwadv/misc/ua-objtex01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/misc/ua-objtex01.png -------------------------------------------------------------------------------- /uwadv/misc/uw1-combinations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/misc/uw1-combinations.txt -------------------------------------------------------------------------------- /uwadv/misc/uw1-common-obj-prop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/misc/uw1-common-obj-prop.txt -------------------------------------------------------------------------------- /uwadv/misc/uw1-object-classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/misc/uw1-object-classes.txt -------------------------------------------------------------------------------- /uwadv/misc/uw1-objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/misc/uw1-objects.png -------------------------------------------------------------------------------- /uwadv/misc/uw1-palette0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/misc/uw1-palette0.png -------------------------------------------------------------------------------- /uwadv/source/GameInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/GameInterface.hpp -------------------------------------------------------------------------------- /uwadv/source/IDebugServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/IDebugServer.hpp -------------------------------------------------------------------------------- /uwadv/source/IGameInstance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/IGameInstance.hpp -------------------------------------------------------------------------------- /uwadv/source/IScreenHost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/IScreenHost.hpp -------------------------------------------------------------------------------- /uwadv/source/IUserInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/IUserInterface.hpp -------------------------------------------------------------------------------- /uwadv/source/audio/Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/Audio.cpp -------------------------------------------------------------------------------- /uwadv/source/audio/Audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/Audio.hpp -------------------------------------------------------------------------------- /uwadv/source/audio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/source/audio/IODataSource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/IODataSource.hpp -------------------------------------------------------------------------------- /uwadv/source/audio/MidiPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/MidiPlayer.cpp -------------------------------------------------------------------------------- /uwadv/source/audio/MidiPlayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/MidiPlayer.hpp -------------------------------------------------------------------------------- /uwadv/source/audio/Playlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/Playlist.cpp -------------------------------------------------------------------------------- /uwadv/source/audio/Playlist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/Playlist.hpp -------------------------------------------------------------------------------- /uwadv/source/audio/VoiceFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/VoiceFile.cpp -------------------------------------------------------------------------------- /uwadv/source/audio/VoiceFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/VoiceFile.hpp -------------------------------------------------------------------------------- /uwadv/source/audio/VoiceResample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/VoiceResample.cpp -------------------------------------------------------------------------------- /uwadv/source/audio/audio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/audio.vcxproj -------------------------------------------------------------------------------- /uwadv/source/audio/audio.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/audio.vcxproj.filters -------------------------------------------------------------------------------- /uwadv/source/audio/midi/CoreAudioMidiDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/CoreAudioMidiDriver.cpp -------------------------------------------------------------------------------- /uwadv/source/audio/midi/CoreAudioMidiDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/CoreAudioMidiDriver.h -------------------------------------------------------------------------------- /uwadv/source/audio/midi/IDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/IDataSource.h -------------------------------------------------------------------------------- /uwadv/source/audio/midi/LowLevelMidiDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/LowLevelMidiDriver.cpp -------------------------------------------------------------------------------- /uwadv/source/audio/midi/LowLevelMidiDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/LowLevelMidiDriver.h -------------------------------------------------------------------------------- /uwadv/source/audio/midi/MidiDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/MidiDriver.cpp -------------------------------------------------------------------------------- /uwadv/source/audio/midi/MidiDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/MidiDriver.h -------------------------------------------------------------------------------- /uwadv/source/audio/midi/ODataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/ODataSource.h -------------------------------------------------------------------------------- /uwadv/source/audio/midi/WindowsMidiDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/WindowsMidiDriver.cpp -------------------------------------------------------------------------------- /uwadv/source/audio/midi/WindowsMidiDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/WindowsMidiDriver.h -------------------------------------------------------------------------------- /uwadv/source/audio/midi/XMidiEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/XMidiEvent.h -------------------------------------------------------------------------------- /uwadv/source/audio/midi/XMidiEventList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/XMidiEventList.cpp -------------------------------------------------------------------------------- /uwadv/source/audio/midi/XMidiEventList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/XMidiEventList.h -------------------------------------------------------------------------------- /uwadv/source/audio/midi/XMidiFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/XMidiFile.cpp -------------------------------------------------------------------------------- /uwadv/source/audio/midi/XMidiFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/XMidiFile.h -------------------------------------------------------------------------------- /uwadv/source/audio/midi/XMidiNoteStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/XMidiNoteStack.h -------------------------------------------------------------------------------- /uwadv/source/audio/midi/XMidiSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/XMidiSequence.cpp -------------------------------------------------------------------------------- /uwadv/source/audio/midi/XMidiSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/XMidiSequence.h -------------------------------------------------------------------------------- /uwadv/source/audio/midi/XMidiSequenceHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/XMidiSequenceHandler.h -------------------------------------------------------------------------------- /uwadv/source/audio/midi/array_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/array_size.h -------------------------------------------------------------------------------- /uwadv/source/audio/midi/common_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/common_types.h -------------------------------------------------------------------------------- /uwadv/source/audio/midi/pent_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/midi/pent_include.h -------------------------------------------------------------------------------- /uwadv/source/audio/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/pch.cpp -------------------------------------------------------------------------------- /uwadv/source/audio/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/pch.hpp -------------------------------------------------------------------------------- /uwadv/source/audio/resamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/resamp.c -------------------------------------------------------------------------------- /uwadv/source/audio/resamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/audio/resamp.h -------------------------------------------------------------------------------- /uwadv/source/base/ArchiveFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/ArchiveFile.cpp -------------------------------------------------------------------------------- /uwadv/source/base/ArchiveFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/ArchiveFile.hpp -------------------------------------------------------------------------------- /uwadv/source/base/Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Base.cpp -------------------------------------------------------------------------------- /uwadv/source/base/Base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Base.hpp -------------------------------------------------------------------------------- /uwadv/source/base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/source/base/Color3ub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Color3ub.cpp -------------------------------------------------------------------------------- /uwadv/source/base/Color3ub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Color3ub.hpp -------------------------------------------------------------------------------- /uwadv/source/base/ConfigFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/ConfigFile.cpp -------------------------------------------------------------------------------- /uwadv/source/base/ConfigFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/ConfigFile.hpp -------------------------------------------------------------------------------- /uwadv/source/base/Constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Constants.hpp -------------------------------------------------------------------------------- /uwadv/source/base/Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Exception.hpp -------------------------------------------------------------------------------- /uwadv/source/base/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/File.cpp -------------------------------------------------------------------------------- /uwadv/source/base/File.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/File.hpp -------------------------------------------------------------------------------- /uwadv/source/base/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/FileSystem.cpp -------------------------------------------------------------------------------- /uwadv/source/base/FileSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/FileSystem.hpp -------------------------------------------------------------------------------- /uwadv/source/base/KeyValuePairTextFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/KeyValuePairTextFileReader.cpp -------------------------------------------------------------------------------- /uwadv/source/base/KeyValuePairTextFileReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/KeyValuePairTextFileReader.hpp -------------------------------------------------------------------------------- /uwadv/source/base/Keymap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Keymap.cpp -------------------------------------------------------------------------------- /uwadv/source/base/Keymap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Keymap.hpp -------------------------------------------------------------------------------- /uwadv/source/base/Math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Math.hpp -------------------------------------------------------------------------------- /uwadv/source/base/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Path.cpp -------------------------------------------------------------------------------- /uwadv/source/base/Path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Path.hpp -------------------------------------------------------------------------------- /uwadv/source/base/Plane3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Plane3d.hpp -------------------------------------------------------------------------------- /uwadv/source/base/ResourceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/ResourceManager.cpp -------------------------------------------------------------------------------- /uwadv/source/base/ResourceManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/ResourceManager.hpp -------------------------------------------------------------------------------- /uwadv/source/base/SDL_rwops_gzfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/SDL_rwops_gzfile.c -------------------------------------------------------------------------------- /uwadv/source/base/SDL_rwops_gzfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/SDL_rwops_gzfile.h -------------------------------------------------------------------------------- /uwadv/source/base/SDL_rwops_zzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/SDL_rwops_zzip.c -------------------------------------------------------------------------------- /uwadv/source/base/SDL_rwops_zzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/SDL_rwops_zzip.h -------------------------------------------------------------------------------- /uwadv/source/base/Savegame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Savegame.cpp -------------------------------------------------------------------------------- /uwadv/source/base/Savegame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Savegame.hpp -------------------------------------------------------------------------------- /uwadv/source/base/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Settings.cpp -------------------------------------------------------------------------------- /uwadv/source/base/Settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Settings.hpp -------------------------------------------------------------------------------- /uwadv/source/base/SettingsLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/SettingsLoader.cpp -------------------------------------------------------------------------------- /uwadv/source/base/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/String.cpp -------------------------------------------------------------------------------- /uwadv/source/base/String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/String.hpp -------------------------------------------------------------------------------- /uwadv/source/base/TextFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/TextFile.cpp -------------------------------------------------------------------------------- /uwadv/source/base/TextFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/TextFile.hpp -------------------------------------------------------------------------------- /uwadv/source/base/Triangle3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Triangle3d.hpp -------------------------------------------------------------------------------- /uwadv/source/base/Uw2decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Uw2decode.cpp -------------------------------------------------------------------------------- /uwadv/source/base/Uw2decode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Uw2decode.hpp -------------------------------------------------------------------------------- /uwadv/source/base/Vector2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Vector2d.hpp -------------------------------------------------------------------------------- /uwadv/source/base/Vector3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Vector3d.hpp -------------------------------------------------------------------------------- /uwadv/source/base/Vertex3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/Vertex3d.hpp -------------------------------------------------------------------------------- /uwadv/source/base/base.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/base.vcxproj -------------------------------------------------------------------------------- /uwadv/source/base/base.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/base.vcxproj.filters -------------------------------------------------------------------------------- /uwadv/source/base/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/pch.cpp -------------------------------------------------------------------------------- /uwadv/source/base/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/base/pch.hpp -------------------------------------------------------------------------------- /uwadv/source/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/common.hpp -------------------------------------------------------------------------------- /uwadv/source/conv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/conv/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/source/conv/CodeGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/conv/CodeGraph.cpp -------------------------------------------------------------------------------- /uwadv/source/conv/CodeGraph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/conv/CodeGraph.hpp -------------------------------------------------------------------------------- /uwadv/source/conv/CodeVM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/conv/CodeVM.cpp -------------------------------------------------------------------------------- /uwadv/source/conv/CodeVM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/conv/CodeVM.hpp -------------------------------------------------------------------------------- /uwadv/source/conv/ConvStack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/conv/ConvStack.hpp -------------------------------------------------------------------------------- /uwadv/source/conv/Conversation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/conv/Conversation.cpp -------------------------------------------------------------------------------- /uwadv/source/conv/Conversation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/conv/Conversation.hpp -------------------------------------------------------------------------------- /uwadv/source/conv/ConversationDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/conv/ConversationDebugger.cpp -------------------------------------------------------------------------------- /uwadv/source/conv/ConversationDebugger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/conv/ConversationDebugger.hpp -------------------------------------------------------------------------------- /uwadv/source/conv/Opcodes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/conv/Opcodes.hpp -------------------------------------------------------------------------------- /uwadv/source/conv/conv.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/conv/conv.vcxproj -------------------------------------------------------------------------------- /uwadv/source/conv/conv.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/conv/conv.vcxproj.filters -------------------------------------------------------------------------------- /uwadv/source/conv/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/conv/pch.cpp -------------------------------------------------------------------------------- /uwadv/source/conv/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/conv/pch.hpp -------------------------------------------------------------------------------- /uwadv/source/game/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/game/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/source/game/DebugServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/game/DebugServer.cpp -------------------------------------------------------------------------------- /uwadv/source/game/DebugServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/game/DebugServer.hpp -------------------------------------------------------------------------------- /uwadv/source/game/GameConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/game/GameConfig.cpp -------------------------------------------------------------------------------- /uwadv/source/game/GameConfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/game/GameConfig.hpp -------------------------------------------------------------------------------- /uwadv/source/game/GameConfigLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/game/GameConfigLoader.cpp -------------------------------------------------------------------------------- /uwadv/source/game/GameConfigLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/game/GameConfigLoader.hpp -------------------------------------------------------------------------------- /uwadv/source/game/GameInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/game/GameInstance.cpp -------------------------------------------------------------------------------- /uwadv/source/game/GameInstance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/game/GameInstance.hpp -------------------------------------------------------------------------------- /uwadv/source/game/GameScreenHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/game/GameScreenHost.cpp -------------------------------------------------------------------------------- /uwadv/source/game/GameScreenHost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/game/GameScreenHost.hpp -------------------------------------------------------------------------------- /uwadv/source/game/LevelEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/game/LevelEditor.cpp -------------------------------------------------------------------------------- /uwadv/source/game/LevelEditor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/game/LevelEditor.hpp -------------------------------------------------------------------------------- /uwadv/source/game/game.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/game/game.vcxproj -------------------------------------------------------------------------------- /uwadv/source/game/game.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/game/game.vcxproj.filters -------------------------------------------------------------------------------- /uwadv/source/game/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/game/pch.cpp -------------------------------------------------------------------------------- /uwadv/source/game/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/game/pch.hpp -------------------------------------------------------------------------------- /uwadv/source/import/Bits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/Bits.hpp -------------------------------------------------------------------------------- /uwadv/source/import/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/source/import/ConvLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/ConvLoader.cpp -------------------------------------------------------------------------------- /uwadv/source/import/ConvLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/ConvLoader.hpp -------------------------------------------------------------------------------- /uwadv/source/import/CrittersLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/CrittersLoader.cpp -------------------------------------------------------------------------------- /uwadv/source/import/CrittersLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/CrittersLoader.hpp -------------------------------------------------------------------------------- /uwadv/source/import/CutsceneLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/CutsceneLoader.cpp -------------------------------------------------------------------------------- /uwadv/source/import/CutsceneLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/CutsceneLoader.hpp -------------------------------------------------------------------------------- /uwadv/source/import/FontLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/FontLoader.cpp -------------------------------------------------------------------------------- /uwadv/source/import/FontLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/FontLoader.hpp -------------------------------------------------------------------------------- /uwadv/source/import/GameStringsImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/GameStringsImporter.cpp -------------------------------------------------------------------------------- /uwadv/source/import/GameStringsImporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/GameStringsImporter.hpp -------------------------------------------------------------------------------- /uwadv/source/import/ImageLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/ImageLoader.cpp -------------------------------------------------------------------------------- /uwadv/source/import/ImageLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/ImageLoader.hpp -------------------------------------------------------------------------------- /uwadv/source/import/Import.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/Import.hpp -------------------------------------------------------------------------------- /uwadv/source/import/ItemCombineLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/ItemCombineLoader.cpp -------------------------------------------------------------------------------- /uwadv/source/import/LevelImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/LevelImporter.cpp -------------------------------------------------------------------------------- /uwadv/source/import/LevelImporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/LevelImporter.hpp -------------------------------------------------------------------------------- /uwadv/source/import/MapLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/MapLoader.cpp -------------------------------------------------------------------------------- /uwadv/source/import/ModelDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/ModelDecoder.cpp -------------------------------------------------------------------------------- /uwadv/source/import/ObjectListLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/ObjectListLoader.cpp -------------------------------------------------------------------------------- /uwadv/source/import/ObjectListLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/ObjectListLoader.hpp -------------------------------------------------------------------------------- /uwadv/source/import/PlayerImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/PlayerImporter.cpp -------------------------------------------------------------------------------- /uwadv/source/import/PlayerImporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/PlayerImporter.hpp -------------------------------------------------------------------------------- /uwadv/source/import/PropertiesLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/PropertiesLoader.cpp -------------------------------------------------------------------------------- /uwadv/source/import/TextureLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/TextureLoader.cpp -------------------------------------------------------------------------------- /uwadv/source/import/TextureLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/TextureLoader.hpp -------------------------------------------------------------------------------- /uwadv/source/import/TgaImport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/TgaImport.cpp -------------------------------------------------------------------------------- /uwadv/source/import/UnderworldLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/UnderworldLoader.cpp -------------------------------------------------------------------------------- /uwadv/source/import/VrmlImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/VrmlImporter.cpp -------------------------------------------------------------------------------- /uwadv/source/import/VrmlImporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/VrmlImporter.hpp -------------------------------------------------------------------------------- /uwadv/source/import/import.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/import.vcxproj -------------------------------------------------------------------------------- /uwadv/source/import/import.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/import.vcxproj.filters -------------------------------------------------------------------------------- /uwadv/source/import/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/pch.cpp -------------------------------------------------------------------------------- /uwadv/source/import/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/pch.hpp -------------------------------------------------------------------------------- /uwadv/source/import/vrml/FlexLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/vrml/FlexLexer.h -------------------------------------------------------------------------------- /uwadv/source/import/vrml/WrlLexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/vrml/WrlLexer.cpp -------------------------------------------------------------------------------- /uwadv/source/import/vrml/WrlLexer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/vrml/WrlLexer.hpp -------------------------------------------------------------------------------- /uwadv/source/import/vrml/flex.skl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/vrml/flex.skl -------------------------------------------------------------------------------- /uwadv/source/import/vrml/wrllexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/import/vrml/wrllexer.l -------------------------------------------------------------------------------- /uwadv/source/physics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/physics/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/source/physics/CollisionDetection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/physics/CollisionDetection.cpp -------------------------------------------------------------------------------- /uwadv/source/physics/CollisionDetection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/physics/CollisionDetection.hpp -------------------------------------------------------------------------------- /uwadv/source/physics/GeometryProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/physics/GeometryProvider.cpp -------------------------------------------------------------------------------- /uwadv/source/physics/GeometryProvider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/physics/GeometryProvider.hpp -------------------------------------------------------------------------------- /uwadv/source/physics/Pathfinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/physics/Pathfinder.cpp -------------------------------------------------------------------------------- /uwadv/source/physics/Pathfinder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/physics/Pathfinder.hpp -------------------------------------------------------------------------------- /uwadv/source/physics/PhysicsBody.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/physics/PhysicsBody.hpp -------------------------------------------------------------------------------- /uwadv/source/physics/PhysicsModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/physics/PhysicsModel.cpp -------------------------------------------------------------------------------- /uwadv/source/physics/PhysicsModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/physics/PhysicsModel.hpp -------------------------------------------------------------------------------- /uwadv/source/physics/PlayerPhysicsObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/physics/PlayerPhysicsObject.cpp -------------------------------------------------------------------------------- /uwadv/source/physics/PlayerPhysicsObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/physics/PlayerPhysicsObject.hpp -------------------------------------------------------------------------------- /uwadv/source/physics/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/physics/pch.cpp -------------------------------------------------------------------------------- /uwadv/source/physics/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/physics/pch.hpp -------------------------------------------------------------------------------- /uwadv/source/physics/physics.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/physics/physics.vcxproj -------------------------------------------------------------------------------- /uwadv/source/physics/physics.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/physics/physics.vcxproj.filters -------------------------------------------------------------------------------- /uwadv/source/renderer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/source/renderer/Critter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/Critter.cpp -------------------------------------------------------------------------------- /uwadv/source/renderer/Critter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/Critter.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/CritterFramesManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/CritterFramesManager.cpp -------------------------------------------------------------------------------- /uwadv/source/renderer/CritterFramesManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/CritterFramesManager.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/LevelTilemapRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/LevelTilemapRenderer.cpp -------------------------------------------------------------------------------- /uwadv/source/renderer/LevelTilemapRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/LevelTilemapRenderer.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/MainGameLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/MainGameLoop.cpp -------------------------------------------------------------------------------- /uwadv/source/renderer/MainGameLoop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/MainGameLoop.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/Model3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/Model3D.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/Model3DBuiltIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/Model3DBuiltIn.cpp -------------------------------------------------------------------------------- /uwadv/source/renderer/Model3DBuiltIn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/Model3DBuiltIn.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/Model3DManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/Model3DManager.cpp -------------------------------------------------------------------------------- /uwadv/source/renderer/Model3DManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/Model3DManager.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/Model3DVrml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/Model3DVrml.cpp -------------------------------------------------------------------------------- /uwadv/source/renderer/Model3DVrml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/Model3DVrml.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/OpenGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/OpenGL.cpp -------------------------------------------------------------------------------- /uwadv/source/renderer/OpenGL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/OpenGL.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/PolygonTessellator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/PolygonTessellator.cpp -------------------------------------------------------------------------------- /uwadv/source/renderer/PolygonTessellator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/PolygonTessellator.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/Quadtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/Quadtree.cpp -------------------------------------------------------------------------------- /uwadv/source/renderer/Quadtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/Quadtree.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/RenderOptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/RenderOptions.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/RenderWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/RenderWindow.cpp -------------------------------------------------------------------------------- /uwadv/source/renderer/RenderWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/RenderWindow.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/Renderer.cpp -------------------------------------------------------------------------------- /uwadv/source/renderer/Renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/Renderer.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/Scaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/Scaler.cpp -------------------------------------------------------------------------------- /uwadv/source/renderer/Scaler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/Scaler.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/Texture.cpp -------------------------------------------------------------------------------- /uwadv/source/renderer/Texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/Texture.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/TextureManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/TextureManager.cpp -------------------------------------------------------------------------------- /uwadv/source/renderer/TextureManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/TextureManager.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/UnderworldRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/UnderworldRenderer.cpp -------------------------------------------------------------------------------- /uwadv/source/renderer/UnderworldRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/UnderworldRenderer.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/VertexBufferObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/VertexBufferObject.cpp -------------------------------------------------------------------------------- /uwadv/source/renderer/VertexBufferObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/VertexBufferObject.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/Viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/Viewport.cpp -------------------------------------------------------------------------------- /uwadv/source/renderer/Viewport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/Viewport.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/pch.cpp -------------------------------------------------------------------------------- /uwadv/source/renderer/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/pch.hpp -------------------------------------------------------------------------------- /uwadv/source/renderer/renderer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/renderer.vcxproj -------------------------------------------------------------------------------- /uwadv/source/renderer/renderer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/renderer/renderer.vcxproj.filters -------------------------------------------------------------------------------- /uwadv/source/screens/AcknowledgementsScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/AcknowledgementsScreen.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/AcknowledgementsScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/AcknowledgementsScreen.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/source/screens/ConversationScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/ConversationScreen.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/ConversationScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/ConversationScreen.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/CreateCharacterScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/CreateCharacterScreen.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/CreateCharacterScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/CreateCharacterScreen.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/CutsceneViewScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/CutsceneViewScreen.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/CutsceneViewScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/CutsceneViewScreen.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/IngameControls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/IngameControls.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/MapViewScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/MapViewScreen.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/MapViewScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/MapViewScreen.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/OriginalIngameScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/OriginalIngameScreen.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/OriginalIngameScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/OriginalIngameScreen.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/Panel.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/Panel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/Panel.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/SaveGameScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/SaveGameScreen.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/SaveGameScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/SaveGameScreen.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/StartMenuScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/StartMenuScreen.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/StartMenuScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/StartMenuScreen.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/StartSplashScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/StartSplashScreen.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/StartSplashScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/StartSplashScreen.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/UwadvMenuScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/UwadvMenuScreen.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/UwadvMenuScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/UwadvMenuScreen.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/controls/Ingame3DView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/controls/Ingame3DView.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/controls/Ingame3DView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/controls/Ingame3DView.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/controls/IngameCompass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/controls/IngameCompass.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/controls/IngameCompass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/controls/IngameCompass.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/controls/IngameDragon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/controls/IngameDragon.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/controls/IngameDragon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/controls/IngameDragon.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/controls/IngameFlask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/controls/IngameFlask.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/controls/IngameFlask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/controls/IngameFlask.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/controls/IngameGargoyleEyes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/controls/IngameGargoyleEyes.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/controls/IngameGargoyleEyes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/controls/IngameGargoyleEyes.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/controls/IngameMoveArrows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/controls/IngameMoveArrows.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/controls/IngameMoveArrows.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/controls/IngameMoveArrows.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/controls/IngamePowerGem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/controls/IngamePowerGem.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/controls/IngamePowerGem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/controls/IngamePowerGem.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/controls/IngameRuneshelf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/controls/IngameRuneshelf.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/controls/IngameRuneshelf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/controls/IngameRuneshelf.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/controls/IngameSpellArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/controls/IngameSpellArea.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/controls/IngameSpellArea.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/controls/IngameSpellArea.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/pch.cpp -------------------------------------------------------------------------------- /uwadv/source/screens/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/pch.hpp -------------------------------------------------------------------------------- /uwadv/source/screens/screens.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/screens.vcxproj -------------------------------------------------------------------------------- /uwadv/source/screens/screens.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/screens/screens.vcxproj.filters -------------------------------------------------------------------------------- /uwadv/source/script/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/script/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/source/script/CreateCharacterLuaScripting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/script/CreateCharacterLuaScripting.cpp -------------------------------------------------------------------------------- /uwadv/source/script/CreateCharacterLuaScripting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/script/CreateCharacterLuaScripting.hpp -------------------------------------------------------------------------------- /uwadv/source/script/IScripting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/script/IScripting.hpp -------------------------------------------------------------------------------- /uwadv/source/script/LuaCodeDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/script/LuaCodeDebugger.cpp -------------------------------------------------------------------------------- /uwadv/source/script/LuaCodeDebugger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/script/LuaCodeDebugger.hpp -------------------------------------------------------------------------------- /uwadv/source/script/LuaScripting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/script/LuaScripting.cpp -------------------------------------------------------------------------------- /uwadv/source/script/LuaScripting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/script/LuaScripting.hpp -------------------------------------------------------------------------------- /uwadv/source/script/LuaState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/script/LuaState.cpp -------------------------------------------------------------------------------- /uwadv/source/script/LuaState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/script/LuaState.hpp -------------------------------------------------------------------------------- /uwadv/source/script/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/script/pch.cpp -------------------------------------------------------------------------------- /uwadv/source/script/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/script/pch.hpp -------------------------------------------------------------------------------- /uwadv/source/script/script.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/script/script.vcxproj -------------------------------------------------------------------------------- /uwadv/source/script/script.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/script/script.vcxproj.filters -------------------------------------------------------------------------------- /uwadv/source/thirdparty/SDL_pnglite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/SDL_pnglite/.gitignore -------------------------------------------------------------------------------- /uwadv/source/thirdparty/SDL_pnglite/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/SDL_pnglite/README.rst -------------------------------------------------------------------------------- /uwadv/source/thirdparty/SDL_pnglite/SDL_pnglite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/SDL_pnglite/SDL_pnglite.c -------------------------------------------------------------------------------- /uwadv/source/thirdparty/SDL_pnglite/SDL_pnglite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/SDL_pnglite/SDL_pnglite.h -------------------------------------------------------------------------------- /uwadv/source/thirdparty/SDL_pnglite/pnglite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/SDL_pnglite/pnglite.c -------------------------------------------------------------------------------- /uwadv/source/thirdparty/SDL_pnglite/pnglite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/SDL_pnglite/pnglite.h -------------------------------------------------------------------------------- /uwadv/source/thirdparty/SDL_pnglite/test-suite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/SDL_pnglite/test-suite.c -------------------------------------------------------------------------------- /uwadv/source/thirdparty/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/build.cmd -------------------------------------------------------------------------------- /uwadv/source/thirdparty/clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/clean.cmd -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/.gitignore -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/AUTHORS -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/COPYING -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/ChangeLog -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/INSTALL -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/Makefile.am -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/NEWS -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/README -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/README.md -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/configure.ac -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/hqx.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/hqx.pc.in -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/hqx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/hqx.vcxproj -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/hqx.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/hqx.vcxproj.filters -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/src/common.h -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/src/hq2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/src/hq2x.c -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/src/hq3x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/src/hq3x.c -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/src/hq4x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/src/hq4x.c -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/src/hqx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/src/hqx.c -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/src/hqx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/src/hqx.h -------------------------------------------------------------------------------- /uwadv/source/thirdparty/hqx/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/hqx/src/init.c -------------------------------------------------------------------------------- /uwadv/source/thirdparty/thirdparty.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/thirdparty/thirdparty.vcxproj -------------------------------------------------------------------------------- /uwadv/source/tools/animview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/animview.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/convdbg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/convdbg/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/source/tools/convdbg/convdbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/convdbg/convdbg.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/convdbg/convdbg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/convdbg/convdbg.hpp -------------------------------------------------------------------------------- /uwadv/source/tools/convdbg/convdbg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/convdbg/convdbg.vcxproj -------------------------------------------------------------------------------- /uwadv/source/tools/convdec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/convdec/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/source/tools/convdec/Decompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/convdec/Decompiler.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/convdec/Decompiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/convdec/Decompiler.hpp -------------------------------------------------------------------------------- /uwadv/source/tools/convdec/convdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/convdec/convdec.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/convdec/convdec.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/convdec/convdec.vcxproj -------------------------------------------------------------------------------- /uwadv/source/tools/map3ds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/map3ds.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/mapdisp/mapdisp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/mapdisp/mapdisp.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/mapdisp/mapdisp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/mapdisp/mapdisp.vcxproj -------------------------------------------------------------------------------- /uwadv/source/tools/strpak/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/strpak/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/source/tools/strpak/strpak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/strpak/strpak.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/strpak/strpak.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/strpak/strpak.vcxproj -------------------------------------------------------------------------------- /uwadv/source/tools/strpak/strpak.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/strpak/strpak.vcxproj.filters -------------------------------------------------------------------------------- /uwadv/source/tools/uwdump/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/uwdump/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/source/tools/uwdump/DumpArkArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/uwdump/DumpArkArchive.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/uwdump/DumpBytImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/uwdump/DumpBytImage.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/uwdump/DumpCombineData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/uwdump/DumpCombineData.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/uwdump/DumpCutscene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/uwdump/DumpCutscene.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/uwdump/DumpExecutable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/uwdump/DumpExecutable.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/uwdump/DumpGrImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/uwdump/DumpGrImage.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/uwdump/DumpLevelArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/uwdump/DumpLevelArchive.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/uwdump/DumpLevelArchive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/uwdump/DumpLevelArchive.hpp -------------------------------------------------------------------------------- /uwadv/source/tools/uwdump/DumpPalettes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/uwdump/DumpPalettes.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/uwdump/DumpTerrainData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/uwdump/DumpTerrainData.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/uwdump/DumpTrImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/uwdump/DumpTrImage.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/uwdump/DumpUwExe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/uwdump/DumpUwExe.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/uwdump/UnderworldDumper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/uwdump/UnderworldDumper.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/uwdump/UnderworldDumper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/uwdump/UnderworldDumper.hpp -------------------------------------------------------------------------------- /uwadv/source/tools/uwdump/uwdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/uwdump/uwdump.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/uwdump/uwdump.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/uwdump/uwdump.vcxproj -------------------------------------------------------------------------------- /uwadv/source/tools/uwdump/uwdump.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/uwdump/uwdump.vcxproj.filters -------------------------------------------------------------------------------- /uwadv/source/tools/uwmdlview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/uwmdlview.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/wrlview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/wrlview.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/xmi2mid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/xmi2mid/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/source/tools/xmi2mid/xmi2mid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/xmi2mid/xmi2mid.cpp -------------------------------------------------------------------------------- /uwadv/source/tools/xmi2mid/xmi2mid.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/tools/xmi2mid/xmi2mid.vcxproj -------------------------------------------------------------------------------- /uwadv/source/ui/AutomapGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/AutomapGenerator.cpp -------------------------------------------------------------------------------- /uwadv/source/ui/AutomapGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/AutomapGenerator.hpp -------------------------------------------------------------------------------- /uwadv/source/ui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/source/ui/ClickArea.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/ClickArea.hpp -------------------------------------------------------------------------------- /uwadv/source/ui/Cutscene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/Cutscene.cpp -------------------------------------------------------------------------------- /uwadv/source/ui/Cutscene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/Cutscene.hpp -------------------------------------------------------------------------------- /uwadv/source/ui/FadingHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/FadingHelper.hpp -------------------------------------------------------------------------------- /uwadv/source/ui/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/Font.cpp -------------------------------------------------------------------------------- /uwadv/source/ui/Font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/Font.hpp -------------------------------------------------------------------------------- /uwadv/source/ui/ImageManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/ImageManager.cpp -------------------------------------------------------------------------------- /uwadv/source/ui/ImageManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/ImageManager.hpp -------------------------------------------------------------------------------- /uwadv/source/ui/ImageQuad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/ImageQuad.cpp -------------------------------------------------------------------------------- /uwadv/source/ui/ImageQuad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/ImageQuad.hpp -------------------------------------------------------------------------------- /uwadv/source/ui/ImageScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/ImageScreen.cpp -------------------------------------------------------------------------------- /uwadv/source/ui/ImageScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/ImageScreen.hpp -------------------------------------------------------------------------------- /uwadv/source/ui/ImageWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/ImageWindow.cpp -------------------------------------------------------------------------------- /uwadv/source/ui/ImageWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/ImageWindow.hpp -------------------------------------------------------------------------------- /uwadv/source/ui/IndexedImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/IndexedImage.cpp -------------------------------------------------------------------------------- /uwadv/source/ui/IndexedImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/IndexedImage.hpp -------------------------------------------------------------------------------- /uwadv/source/ui/MouseCursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/MouseCursor.cpp -------------------------------------------------------------------------------- /uwadv/source/ui/MouseCursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/MouseCursor.hpp -------------------------------------------------------------------------------- /uwadv/source/ui/Palette256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/Palette256.cpp -------------------------------------------------------------------------------- /uwadv/source/ui/Palette256.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/Palette256.hpp -------------------------------------------------------------------------------- /uwadv/source/ui/Screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/Screen.cpp -------------------------------------------------------------------------------- /uwadv/source/ui/Screen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/Screen.hpp -------------------------------------------------------------------------------- /uwadv/source/ui/TextEditWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/TextEditWindow.cpp -------------------------------------------------------------------------------- /uwadv/source/ui/TextEditWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/TextEditWindow.hpp -------------------------------------------------------------------------------- /uwadv/source/ui/TextScroll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/TextScroll.cpp -------------------------------------------------------------------------------- /uwadv/source/ui/TextScroll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/TextScroll.hpp -------------------------------------------------------------------------------- /uwadv/source/ui/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/Window.cpp -------------------------------------------------------------------------------- /uwadv/source/ui/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/Window.hpp -------------------------------------------------------------------------------- /uwadv/source/ui/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/pch.cpp -------------------------------------------------------------------------------- /uwadv/source/ui/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/pch.hpp -------------------------------------------------------------------------------- /uwadv/source/ui/ui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/ui.vcxproj -------------------------------------------------------------------------------- /uwadv/source/ui/ui.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/ui/ui.vcxproj.filters -------------------------------------------------------------------------------- /uwadv/source/underworld/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/source/underworld/ConvGlobals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/ConvGlobals.cpp -------------------------------------------------------------------------------- /uwadv/source/underworld/ConvGlobals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/ConvGlobals.hpp -------------------------------------------------------------------------------- /uwadv/source/underworld/GameLogic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/GameLogic.cpp -------------------------------------------------------------------------------- /uwadv/source/underworld/GameLogic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/GameLogic.hpp -------------------------------------------------------------------------------- /uwadv/source/underworld/GameStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/GameStrings.cpp -------------------------------------------------------------------------------- /uwadv/source/underworld/GameStrings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/GameStrings.hpp -------------------------------------------------------------------------------- /uwadv/source/underworld/Inventory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/Inventory.cpp -------------------------------------------------------------------------------- /uwadv/source/underworld/Inventory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/Inventory.hpp -------------------------------------------------------------------------------- /uwadv/source/underworld/Level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/Level.cpp -------------------------------------------------------------------------------- /uwadv/source/underworld/Level.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/Level.hpp -------------------------------------------------------------------------------- /uwadv/source/underworld/LevelList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/LevelList.cpp -------------------------------------------------------------------------------- /uwadv/source/underworld/LevelList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/LevelList.hpp -------------------------------------------------------------------------------- /uwadv/source/underworld/MapNotes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/MapNotes.cpp -------------------------------------------------------------------------------- /uwadv/source/underworld/MapNotes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/MapNotes.hpp -------------------------------------------------------------------------------- /uwadv/source/underworld/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/Object.cpp -------------------------------------------------------------------------------- /uwadv/source/underworld/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/Object.hpp -------------------------------------------------------------------------------- /uwadv/source/underworld/ObjectList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/ObjectList.cpp -------------------------------------------------------------------------------- /uwadv/source/underworld/ObjectList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/ObjectList.hpp -------------------------------------------------------------------------------- /uwadv/source/underworld/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/Player.cpp -------------------------------------------------------------------------------- /uwadv/source/underworld/Player.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/Player.hpp -------------------------------------------------------------------------------- /uwadv/source/underworld/Properties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/Properties.hpp -------------------------------------------------------------------------------- /uwadv/source/underworld/QuestFlags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/QuestFlags.cpp -------------------------------------------------------------------------------- /uwadv/source/underworld/QuestFlags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/QuestFlags.hpp -------------------------------------------------------------------------------- /uwadv/source/underworld/Runes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/Runes.cpp -------------------------------------------------------------------------------- /uwadv/source/underworld/Runes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/Runes.hpp -------------------------------------------------------------------------------- /uwadv/source/underworld/TileMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/TileMap.cpp -------------------------------------------------------------------------------- /uwadv/source/underworld/Tilemap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/Tilemap.hpp -------------------------------------------------------------------------------- /uwadv/source/underworld/Underworld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/Underworld.cpp -------------------------------------------------------------------------------- /uwadv/source/underworld/Underworld.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/Underworld.hpp -------------------------------------------------------------------------------- /uwadv/source/underworld/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/pch.cpp -------------------------------------------------------------------------------- /uwadv/source/underworld/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/pch.hpp -------------------------------------------------------------------------------- /uwadv/source/underworld/underworld.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/underworld/underworld.vcxproj -------------------------------------------------------------------------------- /uwadv/source/unittest/ArchiveFileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/ArchiveFileTest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/AudioTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/AudioTest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/CollisionDetectionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/CollisionDetectionTest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/ConfigFileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/ConfigFileTest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/ConvCodeGraphTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/ConvCodeGraphTest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/CutsceneTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/CutsceneTest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/FileSystemTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/FileSystemTest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/FileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/FileTest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/ImageManagerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/ImageManagerTest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/ImportTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/ImportTest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/KeymapTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/KeymapTest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/LuaStateTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/LuaStateTest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/PathTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/PathTest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/ResourceManagerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/ResourceManagerTest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/SavegameTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/SavegameTest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/ScalerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/ScalerTest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/SettingsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/SettingsTest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/StringTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/StringTest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/TempFolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/TempFolder.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/TempFolder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/TempFolder.hpp -------------------------------------------------------------------------------- /uwadv/source/unittest/UnderworldTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/UnderworldTest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/UnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/UnitTest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/UnitTest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/UnitTest.hpp -------------------------------------------------------------------------------- /uwadv/source/unittest/convtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/convtest.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/pch.cpp -------------------------------------------------------------------------------- /uwadv/source/unittest/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/pch.hpp -------------------------------------------------------------------------------- /uwadv/source/unittest/unittest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/unittest.vcxproj -------------------------------------------------------------------------------- /uwadv/source/unittest/unittest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/unittest/unittest.vcxproj.filters -------------------------------------------------------------------------------- /uwadv/source/uwadv-debug.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/uwadv-debug.props -------------------------------------------------------------------------------- /uwadv/source/uwadv-release.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/uwadv-release.props -------------------------------------------------------------------------------- /uwadv/source/uwadv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/uwadv/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/source/uwadv/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/uwadv/Game.cpp -------------------------------------------------------------------------------- /uwadv/source/uwadv/Game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/uwadv/Game.hpp -------------------------------------------------------------------------------- /uwadv/source/uwadv/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/uwadv/main.cpp -------------------------------------------------------------------------------- /uwadv/source/uwadv/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/uwadv/pch.cpp -------------------------------------------------------------------------------- /uwadv/source/uwadv/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/uwadv/pch.hpp -------------------------------------------------------------------------------- /uwadv/source/uwadv/uwadv.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/uwadv/uwadv.vcxproj -------------------------------------------------------------------------------- /uwadv/source/uwadv/uwadv.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/uwadv/uwadv.vcxproj.filters -------------------------------------------------------------------------------- /uwadv/source/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/version.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/CrashReporting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/CrashReporting.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/CrashReporting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/CrashReporting.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/Uus.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/Uus.ico -------------------------------------------------------------------------------- /uwadv/source/win32/commctrl6.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/commctrl6.manifest -------------------------------------------------------------------------------- /uwadv/source/win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/resource.h -------------------------------------------------------------------------------- /uwadv/source/win32/uaconfig/ConfigDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uaconfig/ConfigDlg.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/uaconfig/ConfigDlg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uaconfig/ConfigDlg.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uaconfig/Corp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uaconfig/Corp.ico -------------------------------------------------------------------------------- /uwadv/source/win32/uaconfig/TooltipCtrl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uaconfig/TooltipCtrl.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uaconfig/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uaconfig/resource.h -------------------------------------------------------------------------------- /uwadv/source/win32/uaconfig/uaconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uaconfig/uaconfig.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/uaconfig/uaconfig.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uaconfig/uaconfig.vcxproj -------------------------------------------------------------------------------- /uwadv/source/win32/uaconfig/uaconfig_res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uaconfig/uaconfig_res.rc -------------------------------------------------------------------------------- /uwadv/source/win32/uaconfig/versioninfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uaconfig/versioninfo.rc -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/AboutDlg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/AboutDlg.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/ChildWindowBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/ChildWindowBase.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/DebugClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/DebugClient.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/DebugClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/DebugClient.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/DebugWindowBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/DebugWindowBase.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/DockingWindowBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/DockingWindowBase.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/EditListViewCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/EditListViewCtrl.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/EditListViewCtrl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/EditListViewCtrl.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/Filename.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/Filename.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/Filename.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/Filename.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/GameStringsView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/GameStringsView.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/GameStringsView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/GameStringsView.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/HotspotListWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/HotspotListWindow.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/HotspotListWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/HotspotListWindow.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/IMainFrame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/IMainFrame.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/LuaSourceWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/LuaSourceWindow.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/LuaSourceWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/LuaSourceWindow.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/MainFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/MainFrame.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/MainFrame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/MainFrame.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/ObjectListWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/ObjectListWindow.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/ObjectListWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/ObjectListWindow.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/OutputWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/OutputWindow.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/PlayerInfoWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/PlayerInfoWindow.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/PlayerInfoWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/PlayerInfoWindow.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/ProjectInfoWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/ProjectInfoWindow.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/ProjectInfoWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/ProjectInfoWindow.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/ProjectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/ProjectManager.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/ProjectManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/ProjectManager.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/PropertyListCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/PropertyListCtrl.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/PropertyListCtrl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/PropertyListCtrl.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/TileInfoWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/TileInfoWindow.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/TileInfoWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/TileInfoWindow.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/TileMapViewCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/TileMapViewCtrl.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/TileMapViewCtrl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/TileMapViewCtrl.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/WatchesListWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/WatchesListWindow.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/WatchesListWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/WatchesListWindow.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/pch.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/pch.hpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/Des.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/Des.ico -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/Lua.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/Lua.ico -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/Ribbon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/Ribbon.xml -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/Sanct.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/Sanct.ico -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/app_exit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/app_exit.bmp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/cursor_tilemap.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/cursor_tilemap.cur -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/debug_break.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/debug_break.bmp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/debug_run.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/debug_run.bmp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/debug_step_out.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/debug_step_out.bmp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/edit_copy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/edit_copy.bmp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/edit_cut.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/edit_cut.bmp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/edit_paste.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/edit_paste.bmp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/edit_redo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/edit_redo.bmp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/edit_undo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/edit_undo.bmp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/file_open.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/file_open.bmp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/file_save.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/file_save.bmp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/file_save_all.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/file_save_all.bmp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/file_save_as.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/file_save_as.bmp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/gamestrings.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/gamestrings.ico -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/tilemap.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/tilemap.ico -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/tree_project.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/tree_project.bmp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/underworld_run.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/underworld_run.bmp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/view_output.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/view_output.bmp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/view_project.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/view_project.bmp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/view_tileinfo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/view_tileinfo.bmp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/view_tilemap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/view_tilemap.bmp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/res/window_cascade.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/res/window_cascade.bmp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/resource.h -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/thirdparty/AtlOpengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/thirdparty/AtlOpengl.h -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/uadebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/uadebug.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/uadebug.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/uadebug.def -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/uadebug.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/uadebug.vcxproj -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/uadebug_res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/uadebug_res.rc -------------------------------------------------------------------------------- /uwadv/source/win32/uadebug/versioninfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uadebug/versioninfo.rc -------------------------------------------------------------------------------- /uwadv/source/win32/uastudio/GameStudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uastudio/GameStudio.cpp -------------------------------------------------------------------------------- /uwadv/source/win32/uastudio/Sanct.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uastudio/Sanct.ico -------------------------------------------------------------------------------- /uwadv/source/win32/uastudio/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uastudio/resource.h -------------------------------------------------------------------------------- /uwadv/source/win32/uastudio/uastudio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uastudio/uastudio.vcxproj -------------------------------------------------------------------------------- /uwadv/source/win32/uastudio/uastudio_res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uastudio/uastudio_res.rc -------------------------------------------------------------------------------- /uwadv/source/win32/uastudio/versioninfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uastudio/versioninfo.rc -------------------------------------------------------------------------------- /uwadv/source/win32/uwadv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uwadv.cfg -------------------------------------------------------------------------------- /uwadv/source/win32/uwadv_res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/uwadv_res.rc -------------------------------------------------------------------------------- /uwadv/source/win32/versioninfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/source/win32/versioninfo.rc -------------------------------------------------------------------------------- /uwadv/uadata/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/CMakeLists.txt -------------------------------------------------------------------------------- /uwadv/uadata/README.Data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/README.Data.md -------------------------------------------------------------------------------- /uwadv/uadata/Underworld Adventures Soundtrack.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/Underworld Adventures Soundtrack.m3u -------------------------------------------------------------------------------- /uwadv/uadata/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/build.cmd -------------------------------------------------------------------------------- /uwadv/uadata/common/uw1title.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/common/uw1title.tga -------------------------------------------------------------------------------- /uwadv/uadata/common/uw2title.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/common/uw2title.tga -------------------------------------------------------------------------------- /uwadv/uadata/models/static/apple.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/apple.wrl -------------------------------------------------------------------------------- /uwadv/uadata/models/static/backpack.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/backpack.wrl -------------------------------------------------------------------------------- /uwadv/uadata/models/static/bag.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/bag.wrl -------------------------------------------------------------------------------- /uwadv/uadata/models/static/barrel.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/barrel.wrl -------------------------------------------------------------------------------- /uwadv/uadata/models/static/bed_frame.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/bed_frame.wrl -------------------------------------------------------------------------------- /uwadv/uadata/models/static/bone1.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/bone1.wrl -------------------------------------------------------------------------------- /uwadv/uadata/models/static/bread.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/bread.wrl -------------------------------------------------------------------------------- /uwadv/uadata/models/static/candle.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/candle.wrl -------------------------------------------------------------------------------- /uwadv/uadata/models/static/chair.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/chair.wrl -------------------------------------------------------------------------------- /uwadv/uadata/models/static/chest.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/chest.wrl -------------------------------------------------------------------------------- /uwadv/uadata/models/static/flute.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/flute.wrl -------------------------------------------------------------------------------- /uwadv/uadata/models/static/grass1.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/grass1.wrl -------------------------------------------------------------------------------- /uwadv/uadata/models/static/grass2.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/grass2.wrl -------------------------------------------------------------------------------- /uwadv/uadata/models/static/grass3.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/grass3.wrl -------------------------------------------------------------------------------- /uwadv/uadata/models/static/muffin.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/muffin.wrl -------------------------------------------------------------------------------- /uwadv/uadata/models/static/mushroom.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/mushroom.wrl -------------------------------------------------------------------------------- /uwadv/uadata/models/static/rune_a.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/rune_a.wrl -------------------------------------------------------------------------------- /uwadv/uadata/models/static/skull.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/skull.wrl -------------------------------------------------------------------------------- /uwadv/uadata/models/static/steak.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/steak.wrl -------------------------------------------------------------------------------- /uwadv/uadata/models/static/table.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/table.wrl -------------------------------------------------------------------------------- /uwadv/uadata/models/static/textures/apple.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/textures/apple.tga -------------------------------------------------------------------------------- /uwadv/uadata/models/static/textures/backpack.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/textures/backpack.tga -------------------------------------------------------------------------------- /uwadv/uadata/models/static/textures/bag.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/textures/bag.tga -------------------------------------------------------------------------------- /uwadv/uadata/models/static/textures/barrel.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/textures/barrel.tga -------------------------------------------------------------------------------- /uwadv/uadata/models/static/textures/bone.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/textures/bone.tga -------------------------------------------------------------------------------- /uwadv/uadata/models/static/textures/bread.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/textures/bread.tga -------------------------------------------------------------------------------- /uwadv/uadata/models/static/textures/candle.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/textures/candle.tga -------------------------------------------------------------------------------- /uwadv/uadata/models/static/textures/flute.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/textures/flute.tga -------------------------------------------------------------------------------- /uwadv/uadata/models/static/textures/grass.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/textures/grass.tga -------------------------------------------------------------------------------- /uwadv/uadata/models/static/textures/muffin.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/textures/muffin.tga -------------------------------------------------------------------------------- /uwadv/uadata/models/static/textures/mushroom.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/textures/mushroom.tga -------------------------------------------------------------------------------- /uwadv/uadata/models/static/textures/plank.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/textures/plank.tga -------------------------------------------------------------------------------- /uwadv/uadata/models/static/textures/skull.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/textures/skull.tga -------------------------------------------------------------------------------- /uwadv/uadata/models/static/textures/steak.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/textures/steak.tga -------------------------------------------------------------------------------- /uwadv/uadata/models/static/textures/water.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/textures/water.tga -------------------------------------------------------------------------------- /uwadv/uadata/models/static/textures/wdchest.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/textures/wdchest.tga -------------------------------------------------------------------------------- /uwadv/uadata/models/static/textures/wood.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/textures/wood.tga -------------------------------------------------------------------------------- /uwadv/uadata/models/static/water.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/models/static/water.wrl -------------------------------------------------------------------------------- /uwadv/uadata/studio/template/game.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/studio/template/game.cfg -------------------------------------------------------------------------------- /uwadv/uadata/studio/template/keymap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/studio/template/keymap.cfg -------------------------------------------------------------------------------- /uwadv/uadata/studio/template/scripts/game.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/studio/template/scripts/game.lua -------------------------------------------------------------------------------- /uwadv/uadata/uadata.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uadata.vcxproj -------------------------------------------------------------------------------- /uwadv/uadata/uadata.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uadata.vcxproj.filters -------------------------------------------------------------------------------- /uwadv/uadata/uw1/acknowledgements-blank.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/acknowledgements-blank.tga -------------------------------------------------------------------------------- /uwadv/uadata/uw1/audio/digitalmusic.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/audio/digitalmusic.m3u -------------------------------------------------------------------------------- /uwadv/uadata/uw1/audio/music.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/audio/music.m3u -------------------------------------------------------------------------------- /uwadv/uadata/uw1/audio/uw01_intro.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/audio/uw01_intro.ogg -------------------------------------------------------------------------------- /uwadv/uadata/uw1/audio/uw03_descent.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/audio/uw03_descent.ogg -------------------------------------------------------------------------------- /uwadv/uadata/uw1/audio/uw04_wanderer.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/audio/uw04_wanderer.ogg -------------------------------------------------------------------------------- /uwadv/uadata/uw1/audio/uw15_maps_legends.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/audio/uw15_maps_legends.ogg -------------------------------------------------------------------------------- /uwadv/uadata/uw1/game.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/game.cfg -------------------------------------------------------------------------------- /uwadv/uadata/uw1/keymap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/keymap.cfg -------------------------------------------------------------------------------- /uwadv/uadata/uw1/model3d.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/model3d.cfg -------------------------------------------------------------------------------- /uwadv/uadata/uw1/scripts/createchar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/scripts/createchar.lua -------------------------------------------------------------------------------- /uwadv/uadata/uw1/scripts/critter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/scripts/critter.lua -------------------------------------------------------------------------------- /uwadv/uadata/uw1/scripts/cutscene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/scripts/cutscene.lua -------------------------------------------------------------------------------- /uwadv/uadata/uw1/scripts/dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/scripts/dump.lua -------------------------------------------------------------------------------- /uwadv/uadata/uw1/scripts/game.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/scripts/game.lua -------------------------------------------------------------------------------- /uwadv/uadata/uw1/scripts/inventory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/scripts/inventory.lua -------------------------------------------------------------------------------- /uwadv/uadata/uw1/scripts/lookat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/scripts/lookat.lua -------------------------------------------------------------------------------- /uwadv/uadata/uw1/scripts/objectlist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/scripts/objectlist.lua -------------------------------------------------------------------------------- /uwadv/uadata/uw1/scripts/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/scripts/traps.lua -------------------------------------------------------------------------------- /uwadv/uadata/uw1/scripts/triggers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/scripts/triggers.lua -------------------------------------------------------------------------------- /uwadv/uadata/uw1/scripts/uwinterface.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw1/scripts/uwinterface.lua -------------------------------------------------------------------------------- /uwadv/uadata/uw2/audio/music.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw2/audio/music.m3u -------------------------------------------------------------------------------- /uwadv/uadata/uw2/game.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw2/game.cfg -------------------------------------------------------------------------------- /uwadv/uadata/uw2/keymap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw2/keymap.cfg -------------------------------------------------------------------------------- /uwadv/uadata/uw2/model3d.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw2/model3d.cfg -------------------------------------------------------------------------------- /uwadv/uadata/uw2/scripts/game.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uw2/scripts/game.lua -------------------------------------------------------------------------------- /uwadv/uadata/uwadv-loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uwadv-loading.png -------------------------------------------------------------------------------- /uwadv/uadata/uwadv-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uadata/uwadv-title.png -------------------------------------------------------------------------------- /uwadv/uwadv.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/uwadv.sln -------------------------------------------------------------------------------- /uwadv/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/vcpkg.json -------------------------------------------------------------------------------- /uwadv/win32/setup/BackgroundImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/win32/setup/BackgroundImage.jpg -------------------------------------------------------------------------------- /uwadv/win32/setup/InstallWithLogging.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/win32/setup/InstallWithLogging.cmd -------------------------------------------------------------------------------- /uwadv/win32/setup/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/win32/setup/Product.wxs -------------------------------------------------------------------------------- /uwadv/win32/setup/TopWizardBar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/win32/setup/TopWizardBar.jpg -------------------------------------------------------------------------------- /uwadv/win32/setup/UninstallUwadv.cmd: -------------------------------------------------------------------------------- 1 | MsiExec.exe /x{22286665-1215-4d00-a87f-7e239ee56f3e} -------------------------------------------------------------------------------- /uwadv/win32/setup/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/win32/setup/license.rtf -------------------------------------------------------------------------------- /uwadv/win32/setup/setup.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vividos/UnderworldAdventures/HEAD/uwadv/win32/setup/setup.wixproj --------------------------------------------------------------------------------