On Thu, 25 Apr 2024 17:56:28 +0200, Solene Rapenne wrote: > I got openmw to work with latest version, > but unfortunately I get an error before the in-game menu. > > I share the diff so people could try if it works with > their hardware, and potentially figure a fix =D > > > the crash logs looks like this, I tried to add egdb in $PATH > with the name gdb, but it didn't help much to get a trace: >
This is the diff I sent to lraab@ some time ago, working from his update. This fixes the crash you are likely seeing, although enabling shadows will still cause the game to coredump. (the settings-default.cfg patch is the important bit) Index: Makefile =================================================================== RCS file: /home/cvs/ports/games/openmw/Makefile,v diff -u -p -r1.31 Makefile --- Makefile 26 Sep 2023 17:58:07 -0000 1.31 +++ Makefile 30 Mar 2024 13:46:53 -0000 @@ -2,7 +2,7 @@ ONLY_FOR_ARCHS = amd64 i386 COMMENT = open source implementation of TES III: Morrowind -V = 0.47.0 +V = 0.48.0 GH_ACCOUNT = OpenMW GH_PROJECT = openmw GH_TAGNAME = openmw-$V @@ -21,29 +21,38 @@ MAINTAINER = Pascal Stumpf <pascal@stum # GPLv3 / custom BSD-like font license / DejaVu license PERMIT_PACKAGE = Yes +USE_NOBTCFI = Yes + WANTLIB += ${COMPILER_LIBCXX} BulletCollision GL LinearMath MyGUIEngine +WANTLIB += boost_atomic-mt boost_filesystem-mt boost_iostreams-mt +WANTLIB += boost_program_options-mt boost_system-mt icudata icui18n +WANTLIB += icuuc luajit-5.1 WANTLIB += OpenThreads Qt5Core Qt5Gui Qt5Network Qt5OpenGL Qt5Widgets WANTLIB += SDL2 avcodec avformat avutil c lz4 m openal osg osgAnimation WANTLIB += osgDB osgFX osgGA osgParticle osgShadow osgText osgUtil -WANTLIB += osgViewer swresample swscale unshield +WANTLIB += osgViewer sqlite3 swresample swscale unshield yaml-cpp -MODULES = devel/cmake x11/qt5 +MODULES = devel/cmake lang/lua x11/qt5 BUILD_DEPENDS = sysutils/e2fsprogs -LIB_DEPENDS = audio/openal \ +LIB_DEPENDS = archivers/unshield \ + audio/openal \ + databases/sqlite3 \ + devel/boost \ devel/bullet \ devel/mygui \ devel/sdl2 \ + devel/yaml-cpp \ graphics/ffmpeg \ graphics/openscenegraph \ - archivers/unshield + lang/luajit \ + textproc/icu4c RUN_DEPENDS = devel/desktop-file-utils CONFIGURE_ARGS += -DBINDIR=${LOCALBASE}/bin \ -DDATADIR:PATH=${LOCALBASE}/share/openmw \ -DSYSCONFDIR=${PREFIX}/share/examples/openmw \ -DGLOBAL_CONFIG_PATH="${SYSCONFDIR}" \ - -DMORROWIND_DATA_FILES="${LOCALBASE}/share/openmw/data"\ -DOPENMW_RESOURCE_FILES="${LOCALBASE}/share/openmw/resources" \ -DCMAKE_PREFIX_PATH="${LOCALBASE}/lib/qt5/cmake" \ -DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=ON Index: distinfo =================================================================== RCS file: /home/cvs/ports/games/openmw/distinfo,v diff -u -p -r1.12 distinfo --- distinfo 1 Jan 2022 12:35:09 -0000 1.12 +++ distinfo 30 Mar 2024 11:46:57 -0000 @@ -1,4 +1,4 @@ SHA256 (openmw/e75adf86f91eb3082220085e42dda62679f9a3ea.zip) = 0zOarqHYEwe8rCvs4XbFNZ7V+Mj5ch/DYNKPgvkRklM= -SHA256 (openmw/openmw-0.47.0.tar.gz) = vX934VJ8IYDpsN/L5AHW+0jyTbs3cB2sd0dpeHPW7bQ= +SHA256 (openmw/openmw-0.48.0.tar.gz) = vpe46QCFPEPd6IFvLOSYAftnLP/fSKx6+Xgqv7inSvQ= SIZE (openmw/e75adf86f91eb3082220085e42dda62679f9a3ea.zip) = 1644592 -SIZE (openmw/openmw-0.47.0.tar.gz) = 5156857 +SIZE (openmw/openmw-0.48.0.tar.gz) = 6022261 Index: patches/patch-extern_CMakeLists_txt =================================================================== RCS file: /home/cvs/ports/games/openmw/patches/patch-extern_CMakeLists_txt,v diff -u -p -r1.2 patch-extern_CMakeLists_txt --- patches/patch-extern_CMakeLists_txt 11 Mar 2022 19:04:46 -0000 1.2 +++ patches/patch-extern_CMakeLists_txt 30 Mar 2024 11:46:57 -0000 @@ -1,24 +1,19 @@ Index: extern/CMakeLists.txt --- extern/CMakeLists.txt.orig +++ extern/CMakeLists.txt -@@ -178,11 +178,13 @@ if(NOT OPENMW_USE_SYSTEM_RECASTNAVIGATION) +@@ -179,14 +179,7 @@ if(NOT OPENMW_USE_SYSTEM_RECASTNAVIGATION) + set(RECASTNAVIGATION_TESTS OFF CACHE BOOL "") set(RECASTNAVIGATION_EXAMPLES OFF CACHE BOOL "") - # master on 15 Feb 2021 +- # master on 15 Feb 2021 - include(FetchContent) - FetchContent_Declare(recastnavigation - URL https://github.com/recastnavigation/recastnavigation/archive/e75adf86f91eb3082220085e42dda62679f9a3ea.zip -- URL_HASH MD5=af905d121ef9d1cdfa979b0495cba059 +- URL_HASH SHA512=93a19490cdfa55e98a6af9cc050e94af88fdb95fae2059ceeff28b62f3b48515f5fdd2c806c910550933b6861a4f6a91173ee0ed1b61c1396f7b34d4c78f0793 - SOURCE_DIR fetched/recastnavigation - ) - FetchContent_MakeAvailableExcludeFromAll(recastnavigation) -+# include(FetchContent) -+# FetchContent_Declare(recastnavigation -+# URL https://github.com/recastnavigation/recastnavigation/archive/e75adf86f91eb3082220085e42dda62679f9a3ea.zip -+# URL_HASH MD5=af905d121ef9d1cdfa979b0495cba059 -+# SOURCE_DIR fetched/recastnavigation -+# ) -+# FetchContent_MakeAvailableExcludeFromAll(recastnavigation) -+ + add_subdirectory("fetched/recastnavigation") endif() + + if (NOT OPENMW_USE_SYSTEM_SQLITE3) Index: patches/patch-files_settings-default_cfg =================================================================== RCS file: patches/patch-files_settings-default_cfg diff -N patches/patch-files_settings-default_cfg --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ patches/patch-files_settings-default_cfg 30 Mar 2024 13:46:26 -0000 @@ -0,0 +1,12 @@ +Index: files/settings-default.cfg +--- files/settings-default.cfg.orig ++++ files/settings-default.cfg +@@ -27,7 +27,7 @@ field of view = 60.0 + first person field of view = 60.0 + + # Reverse the depth range, reduces z-fighting of distant objects and terrain +-reverse z = true ++reverse z = false + + [Cells] + Index: pkg/PLIST =================================================================== RCS file: /home/cvs/ports/games/openmw/pkg/PLIST,v diff -u -p -r1.12 PLIST --- pkg/PLIST 11 Mar 2022 19:04:46 -0000 1.12 +++ pkg/PLIST 30 Mar 2024 11:46:57 -0000 @@ -2,11 +2,43 @@ @bin bin/esmtool @bin bin/niftest @bin bin/openmw +@bin bin/openmw-bulletobjecttool @bin bin/openmw-cs @bin bin/openmw-essimporter @bin bin/openmw-iniimporter @bin bin/openmw-launcher +@bin bin/openmw-navmeshtool @bin bin/openmw-wizard +include/recastnavigation/ +include/recastnavigation/DebugDraw.h +include/recastnavigation/DetourAlloc.h +include/recastnavigation/DetourAssert.h +include/recastnavigation/DetourCommon.h +include/recastnavigation/DetourCrowd.h +include/recastnavigation/DetourDebugDraw.h +include/recastnavigation/DetourLocalBoundary.h +include/recastnavigation/DetourMath.h +include/recastnavigation/DetourNavMesh.h +include/recastnavigation/DetourNavMeshBuilder.h +include/recastnavigation/DetourNavMeshQuery.h +include/recastnavigation/DetourNode.h +include/recastnavigation/DetourObstacleAvoidance.h +include/recastnavigation/DetourPathCorridor.h +include/recastnavigation/DetourPathQueue.h +include/recastnavigation/DetourProximityGrid.h +include/recastnavigation/DetourStatus.h +include/recastnavigation/DetourTileCache.h +include/recastnavigation/DetourTileCacheBuilder.h +include/recastnavigation/Recast.h +include/recastnavigation/RecastAlloc.h +include/recastnavigation/RecastAssert.h +include/recastnavigation/RecastDebugDraw.h +include/recastnavigation/RecastDump.h +@static-lib lib/libDebugUtils.a +@static-lib lib/libDetour.a +@static-lib lib/libDetourCrowd.a +@static-lib lib/libDetourTileCache.a +@static-lib lib/libRecast.a share/applications/org.openmw.cs.desktop share/applications/org.openmw.launcher.desktop share/doc/pkg-readmes/${PKGSTEM} @@ -22,114 +54,65 @@ share/examples/openmw/openmw.cfg @sample ${SYSCONFDIR}/openmw/openmw.cfg share/examples/openmw/version @sample ${SYSCONFDIR}/openmw/version -share/licenses/ -share/licenses/openmw/ -share/licenses/openmw/DejaVuFontLicense.txt share/metainfo/ share/metainfo/openmw.appdata.xml share/openmw/ share/openmw/data/ share/openmw/resources/ share/openmw/resources/defaultfilters -share/openmw/resources/mygui/ -share/openmw/resources/mygui/DejaVuLGCSansMono.ttf -share/openmw/resources/mygui/OpenMWResourcePlugin.xml -share/openmw/resources/mygui/core.skin -share/openmw/resources/mygui/core.xml -share/openmw/resources/mygui/core_layouteditor.xml -share/openmw/resources/mygui/openmw.png -share/openmw/resources/mygui/openmw_alchemy_window.layout -share/openmw/resources/mygui/openmw_book.layout -share/openmw/resources/mygui/openmw_box.skin.xml -share/openmw/resources/mygui/openmw_button.skin.xml -share/openmw/resources/mygui/openmw_chargen_birth.layout -share/openmw/resources/mygui/openmw_chargen_class.layout -share/openmw/resources/mygui/openmw_chargen_class_description.layout -share/openmw/resources/mygui/openmw_chargen_create_class.layout -share/openmw/resources/mygui/openmw_chargen_generate_class_result.layout -share/openmw/resources/mygui/openmw_chargen_race.layout -share/openmw/resources/mygui/openmw_chargen_review.layout -share/openmw/resources/mygui/openmw_chargen_select_attribute.layout -share/openmw/resources/mygui/openmw_chargen_select_skill.layout -share/openmw/resources/mygui/openmw_chargen_select_specialization.layout -share/openmw/resources/mygui/openmw_companion_window.layout -share/openmw/resources/mygui/openmw_confirmation_dialog.layout -share/openmw/resources/mygui/openmw_console.layout -share/openmw/resources/mygui/openmw_console.skin.xml -share/openmw/resources/mygui/openmw_container_window.layout -share/openmw/resources/mygui/openmw_count_window.layout -share/openmw/resources/mygui/openmw_debug_window.layout -share/openmw/resources/mygui/openmw_debug_window.skin.xml -share/openmw/resources/mygui/openmw_dialogue_window.layout -share/openmw/resources/mygui/openmw_dialogue_window.skin.xml -share/openmw/resources/mygui/openmw_edit.skin.xml -share/openmw/resources/mygui/openmw_edit_effect.layout -share/openmw/resources/mygui/openmw_edit_note.layout -share/openmw/resources/mygui/openmw_enchanting_dialog.layout -share/openmw/resources/mygui/openmw_font.xml -share/openmw/resources/mygui/openmw_hud.layout -share/openmw/resources/mygui/openmw_hud_box.skin.xml -share/openmw/resources/mygui/openmw_hud_energybar.skin.xml -share/openmw/resources/mygui/openmw_infobox.layout -share/openmw/resources/mygui/openmw_interactive_messagebox.layout -share/openmw/resources/mygui/openmw_interactive_messagebox_notransp.layout -share/openmw/resources/mygui/openmw_inventory_window.layout -share/openmw/resources/mygui/openmw_itemselection_dialog.layout -share/openmw/resources/mygui/openmw_jail_screen.layout -share/openmw/resources/mygui/openmw_journal.layout -share/openmw/resources/mygui/openmw_journal.skin.xml -share/openmw/resources/mygui/openmw_layers.xml -share/openmw/resources/mygui/openmw_levelup_dialog.layout -share/openmw/resources/mygui/openmw_list.skin.xml -share/openmw/resources/mygui/openmw_loading_screen.layout -share/openmw/resources/mygui/openmw_magicselection_dialog.layout -share/openmw/resources/mygui/openmw_mainmenu.layout -share/openmw/resources/mygui/openmw_mainmenu.skin.xml -share/openmw/resources/mygui/openmw_map_window.layout -share/openmw/resources/mygui/openmw_map_window.skin.xml -share/openmw/resources/mygui/openmw_merchantrepair.layout -share/openmw/resources/mygui/openmw_messagebox.layout -share/openmw/resources/mygui/openmw_persuasion_dialog.layout -share/openmw/resources/mygui/openmw_pointer.xml -share/openmw/resources/mygui/openmw_progress.skin.xml -share/openmw/resources/mygui/openmw_quickkeys_menu.layout -share/openmw/resources/mygui/openmw_quickkeys_menu_assign.layout -share/openmw/resources/mygui/openmw_recharge_dialog.layout -share/openmw/resources/mygui/openmw_repair.layout -share/openmw/resources/mygui/openmw_resources.xml -share/openmw/resources/mygui/openmw_savegame_dialog.layout -share/openmw/resources/mygui/openmw_screen_fader.layout -share/openmw/resources/mygui/openmw_screen_fader_hit.layout -share/openmw/resources/mygui/openmw_scroll.layout -share/openmw/resources/mygui/openmw_scroll.skin.xml -share/openmw/resources/mygui/openmw_settings.xml -share/openmw/resources/mygui/openmw_settings_window.layout -share/openmw/resources/mygui/openmw_spell_buying_window.layout -share/openmw/resources/mygui/openmw_spell_window.layout -share/openmw/resources/mygui/openmw_spellcreation_dialog.layout -share/openmw/resources/mygui/openmw_stats_window.layout -share/openmw/resources/mygui/openmw_text.skin.xml -share/openmw/resources/mygui/openmw_text_input.layout -share/openmw/resources/mygui/openmw_tooltips.layout -share/openmw/resources/mygui/openmw_trade_window.layout -share/openmw/resources/mygui/openmw_trainingwindow.layout -share/openmw/resources/mygui/openmw_travel_window.layout -share/openmw/resources/mygui/openmw_wait_dialog.layout -share/openmw/resources/mygui/openmw_wait_dialog_progressbar.layout -share/openmw/resources/mygui/openmw_windows.skin.xml -share/openmw/resources/mygui/skins.xml +share/openmw/resources/lua_api/ +share/openmw/resources/lua_api/README.md +share/openmw/resources/lua_api/coroutine.doclua +share/openmw/resources/lua_api/global.doclua +share/openmw/resources/lua_api/math.doclua +share/openmw/resources/lua_api/openmw/ +share/openmw/resources/lua_api/openmw/async.lua +share/openmw/resources/lua_api/openmw/core.lua +share/openmw/resources/lua_api/openmw/debug.lua +share/openmw/resources/lua_api/openmw/nearby.lua +share/openmw/resources/lua_api/openmw/postprocessing.lua +share/openmw/resources/lua_api/openmw/self.lua +share/openmw/resources/lua_api/openmw/types.lua +share/openmw/resources/lua_api/openmw/ui.lua +share/openmw/resources/lua_api/openmw/util.lua +share/openmw/resources/lua_api/openmw/world.lua +share/openmw/resources/lua_api/string.doclua +share/openmw/resources/lua_api/table.doclua +share/openmw/resources/lua_libs/ +share/openmw/resources/lua_libs/content.lua +share/openmw/resources/openmw.png share/openmw/resources/shaders/ share/openmw/resources/shaders/alpha.glsl +share/openmw/resources/shaders/blended_depth_postpass_fragment.glsl +share/openmw/resources/shaders/blended_depth_postpass_vertex.glsl +share/openmw/resources/shaders/debug_fragment.glsl +share/openmw/resources/shaders/debug_vertex.glsl +share/openmw/resources/shaders/depth.glsl +share/openmw/resources/shaders/fog.glsl +share/openmw/resources/shaders/fullscreen_tri_fragment.glsl +share/openmw/resources/shaders/fullscreen_tri_vertex.glsl share/openmw/resources/shaders/groundcover_fragment.glsl share/openmw/resources/shaders/groundcover_vertex.glsl +share/openmw/resources/shaders/gui_fragment.glsl +share/openmw/resources/shaders/gui_vertex.glsl +share/openmw/resources/shaders/hdr_luminance_fragment.glsl +share/openmw/resources/shaders/hdr_resolve_fragment.glsl share/openmw/resources/shaders/lighting.glsl share/openmw/resources/shaders/lighting_util.glsl +share/openmw/resources/shaders/multiview_resolve_fragment.glsl +share/openmw/resources/shaders/multiview_resolve_vertex.glsl share/openmw/resources/shaders/nv_default_fragment.glsl share/openmw/resources/shaders/nv_default_vertex.glsl share/openmw/resources/shaders/nv_nolighting_fragment.glsl share/openmw/resources/shaders/nv_nolighting_vertex.glsl share/openmw/resources/shaders/objects_fragment.glsl share/openmw/resources/shaders/objects_vertex.glsl +share/openmw/resources/shaders/openmw_fragment.glsl +share/openmw/resources/shaders/openmw_fragment.h.glsl +share/openmw/resources/shaders/openmw_fragment_multiview.glsl +share/openmw/resources/shaders/openmw_vertex.glsl +share/openmw/resources/shaders/openmw_vertex.h.glsl +share/openmw/resources/shaders/openmw_vertex_multiview.glsl share/openmw/resources/shaders/parallax.glsl share/openmw/resources/shaders/s360_fragment.glsl share/openmw/resources/shaders/s360_vertex.glsl @@ -137,6 +120,10 @@ share/openmw/resources/shaders/shadowcas share/openmw/resources/shaders/shadowcasting_vertex.glsl share/openmw/resources/shaders/shadows_fragment.glsl share/openmw/resources/shaders/shadows_vertex.glsl +share/openmw/resources/shaders/sky_fragment.glsl +share/openmw/resources/shaders/sky_vertex.glsl +share/openmw/resources/shaders/skypasses.glsl +share/openmw/resources/shaders/softparticles.glsl share/openmw/resources/shaders/terrain_fragment.glsl share/openmw/resources/shaders/terrain_vertex.glsl share/openmw/resources/shaders/vertexcolors.glsl @@ -145,6 +132,196 @@ share/openmw/resources/shaders/water_nm. share/openmw/resources/shaders/water_vertex.glsl share/openmw/resources/version share/openmw/resources/vfs/ +share/openmw/resources/vfs/builtin.omwscripts +share/openmw/resources/vfs/fonts/ +share/openmw/resources/vfs/fonts/DejaVuFontLicense.txt +share/openmw/resources/vfs/fonts/DejaVuLGCSansMono.omwfont +share/openmw/resources/vfs/fonts/DejaVuLGCSansMono.ttf +share/openmw/resources/vfs/fonts/DemonicLetters.omwfont +share/openmw/resources/vfs/fonts/DemonicLetters.ttf +share/openmw/resources/vfs/fonts/DemonicLettersFontLicense.txt +share/openmw/resources/vfs/fonts/MysticCards.omwfont +share/openmw/resources/vfs/fonts/MysticCards.ttf +share/openmw/resources/vfs/fonts/MysticCardsFontLicense.txt +share/openmw/resources/vfs/l10n/ +share/openmw/resources/vfs/l10n/BuiltInShaders/ +share/openmw/resources/vfs/l10n/BuiltInShaders/de.yaml +share/openmw/resources/vfs/l10n/BuiltInShaders/en.yaml +share/openmw/resources/vfs/l10n/BuiltInShaders/fr.yaml +share/openmw/resources/vfs/l10n/BuiltInShaders/ru.yaml +share/openmw/resources/vfs/l10n/BuiltInShaders/sv.yaml +share/openmw/resources/vfs/l10n/Calendar/ +share/openmw/resources/vfs/l10n/Calendar/de.yaml +share/openmw/resources/vfs/l10n/Calendar/en.yaml +share/openmw/resources/vfs/l10n/Calendar/fr.yaml +share/openmw/resources/vfs/l10n/Calendar/ru.yaml +share/openmw/resources/vfs/l10n/Calendar/sv.yaml +share/openmw/resources/vfs/l10n/DebugMenu/ +share/openmw/resources/vfs/l10n/DebugMenu/de.yaml +share/openmw/resources/vfs/l10n/DebugMenu/en.yaml +share/openmw/resources/vfs/l10n/DebugMenu/fr.yaml +share/openmw/resources/vfs/l10n/DebugMenu/ru.yaml +share/openmw/resources/vfs/l10n/DebugMenu/sv.yaml +share/openmw/resources/vfs/l10n/Interface/ +share/openmw/resources/vfs/l10n/Interface/de.yaml +share/openmw/resources/vfs/l10n/Interface/en.yaml +share/openmw/resources/vfs/l10n/Interface/fr.yaml +share/openmw/resources/vfs/l10n/Interface/ru.yaml +share/openmw/resources/vfs/l10n/Interface/sv.yaml +share/openmw/resources/vfs/l10n/Navigation/ +share/openmw/resources/vfs/l10n/Navigation/de.yaml +share/openmw/resources/vfs/l10n/Navigation/en.yaml +share/openmw/resources/vfs/l10n/Navigation/fr.yaml +share/openmw/resources/vfs/l10n/Navigation/ru.yaml +share/openmw/resources/vfs/l10n/Navigation/sv.yaml +share/openmw/resources/vfs/l10n/OMWCamera/ +share/openmw/resources/vfs/l10n/OMWCamera/de.yaml +share/openmw/resources/vfs/l10n/OMWCamera/en.yaml +share/openmw/resources/vfs/l10n/OMWCamera/fr.yaml +share/openmw/resources/vfs/l10n/OMWCamera/ru.yaml +share/openmw/resources/vfs/l10n/OMWCamera/sv.yaml +share/openmw/resources/vfs/l10n/PostProcessing/ +share/openmw/resources/vfs/l10n/PostProcessing/de.yaml +share/openmw/resources/vfs/l10n/PostProcessing/en.yaml +share/openmw/resources/vfs/l10n/PostProcessing/fr.yaml +share/openmw/resources/vfs/l10n/PostProcessing/ru.yaml +share/openmw/resources/vfs/l10n/PostProcessing/sv.yaml +share/openmw/resources/vfs/l10n/SavegameMenu/ +share/openmw/resources/vfs/l10n/SavegameMenu/de.yaml +share/openmw/resources/vfs/l10n/SavegameMenu/en.yaml +share/openmw/resources/vfs/l10n/SavegameMenu/fr.yaml +share/openmw/resources/vfs/l10n/SavegameMenu/ru.yaml +share/openmw/resources/vfs/l10n/SavegameMenu/sv.yaml +share/openmw/resources/vfs/l10n/SettingsMenu/ +share/openmw/resources/vfs/l10n/SettingsMenu/de.yaml +share/openmw/resources/vfs/l10n/SettingsMenu/en.yaml +share/openmw/resources/vfs/l10n/SettingsMenu/fr.yaml +share/openmw/resources/vfs/l10n/SettingsMenu/ru.yaml +share/openmw/resources/vfs/l10n/SettingsMenu/sv.yaml +share/openmw/resources/vfs/mygui/ +share/openmw/resources/vfs/mygui/OpenMWResourcePlugin.xml +share/openmw/resources/vfs/mygui/core.skin +share/openmw/resources/vfs/mygui/core.xml +share/openmw/resources/vfs/mygui/core_layouteditor.xml +share/openmw/resources/vfs/mygui/openmw_alchemy_window.layout +share/openmw/resources/vfs/mygui/openmw_book.layout +share/openmw/resources/vfs/mygui/openmw_box.skin.xml +share/openmw/resources/vfs/mygui/openmw_button.skin.xml +share/openmw/resources/vfs/mygui/openmw_chargen_birth.layout +share/openmw/resources/vfs/mygui/openmw_chargen_class.layout +share/openmw/resources/vfs/mygui/openmw_chargen_class_description.layout +share/openmw/resources/vfs/mygui/openmw_chargen_create_class.layout +share/openmw/resources/vfs/mygui/openmw_chargen_generate_class_result.layout +share/openmw/resources/vfs/mygui/openmw_chargen_race.layout +share/openmw/resources/vfs/mygui/openmw_chargen_review.layout +share/openmw/resources/vfs/mygui/openmw_chargen_select_attribute.layout +share/openmw/resources/vfs/mygui/openmw_chargen_select_skill.layout +share/openmw/resources/vfs/mygui/openmw_chargen_select_specialization.layout +share/openmw/resources/vfs/mygui/openmw_companion_window.layout +share/openmw/resources/vfs/mygui/openmw_confirmation_dialog.layout +share/openmw/resources/vfs/mygui/openmw_console.layout +share/openmw/resources/vfs/mygui/openmw_console.skin.xml +share/openmw/resources/vfs/mygui/openmw_container_window.layout +share/openmw/resources/vfs/mygui/openmw_count_window.layout +share/openmw/resources/vfs/mygui/openmw_debug_window.layout +share/openmw/resources/vfs/mygui/openmw_debug_window.skin.xml +share/openmw/resources/vfs/mygui/openmw_dialogue_window.layout +share/openmw/resources/vfs/mygui/openmw_dialogue_window.skin.xml +share/openmw/resources/vfs/mygui/openmw_edit.skin.xml +share/openmw/resources/vfs/mygui/openmw_edit_effect.layout +share/openmw/resources/vfs/mygui/openmw_edit_note.layout +share/openmw/resources/vfs/mygui/openmw_enchanting_dialog.layout +share/openmw/resources/vfs/mygui/openmw_hud.layout +share/openmw/resources/vfs/mygui/openmw_hud_box.skin.xml +share/openmw/resources/vfs/mygui/openmw_hud_energybar.skin.xml +share/openmw/resources/vfs/mygui/openmw_infobox.layout +share/openmw/resources/vfs/mygui/openmw_interactive_messagebox.layout +share/openmw/resources/vfs/mygui/openmw_interactive_messagebox_notransp.layout +share/openmw/resources/vfs/mygui/openmw_inventory_window.layout +share/openmw/resources/vfs/mygui/openmw_itemselection_dialog.layout +share/openmw/resources/vfs/mygui/openmw_jail_screen.layout +share/openmw/resources/vfs/mygui/openmw_journal.layout +share/openmw/resources/vfs/mygui/openmw_journal.skin.xml +share/openmw/resources/vfs/mygui/openmw_layers.xml +share/openmw/resources/vfs/mygui/openmw_levelup_dialog.layout +share/openmw/resources/vfs/mygui/openmw_list.skin.xml +share/openmw/resources/vfs/mygui/openmw_loading_screen.layout +share/openmw/resources/vfs/mygui/openmw_lua.xml +share/openmw/resources/vfs/mygui/openmw_magicselection_dialog.layout +share/openmw/resources/vfs/mygui/openmw_mainmenu.layout +share/openmw/resources/vfs/mygui/openmw_mainmenu.skin.xml +share/openmw/resources/vfs/mygui/openmw_map_window.layout +share/openmw/resources/vfs/mygui/openmw_map_window.skin.xml +share/openmw/resources/vfs/mygui/openmw_merchantrepair.layout +share/openmw/resources/vfs/mygui/openmw_messagebox.layout +share/openmw/resources/vfs/mygui/openmw_persuasion_dialog.layout +share/openmw/resources/vfs/mygui/openmw_pointer.xml +share/openmw/resources/vfs/mygui/openmw_postprocessor_hud.layout +share/openmw/resources/vfs/mygui/openmw_postprocessor_hud.skin.xml +share/openmw/resources/vfs/mygui/openmw_progress.skin.xml +share/openmw/resources/vfs/mygui/openmw_quickkeys_menu.layout +share/openmw/resources/vfs/mygui/openmw_quickkeys_menu_assign.layout +share/openmw/resources/vfs/mygui/openmw_recharge_dialog.layout +share/openmw/resources/vfs/mygui/openmw_repair.layout +share/openmw/resources/vfs/mygui/openmw_resources.xml +share/openmw/resources/vfs/mygui/openmw_savegame_dialog.layout +share/openmw/resources/vfs/mygui/openmw_screen_fader.layout +share/openmw/resources/vfs/mygui/openmw_screen_fader_hit.layout +share/openmw/resources/vfs/mygui/openmw_scroll.layout +share/openmw/resources/vfs/mygui/openmw_scroll.skin.xml +share/openmw/resources/vfs/mygui/openmw_settings.xml +share/openmw/resources/vfs/mygui/openmw_settings_window.layout +share/openmw/resources/vfs/mygui/openmw_spell_buying_window.layout +share/openmw/resources/vfs/mygui/openmw_spell_window.layout +share/openmw/resources/vfs/mygui/openmw_spellcreation_dialog.layout +share/openmw/resources/vfs/mygui/openmw_stats_window.layout +share/openmw/resources/vfs/mygui/openmw_text.skin.xml +share/openmw/resources/vfs/mygui/openmw_text_input.layout +share/openmw/resources/vfs/mygui/openmw_tooltips.layout +share/openmw/resources/vfs/mygui/openmw_trade_window.layout +share/openmw/resources/vfs/mygui/openmw_trainingwindow.layout +share/openmw/resources/vfs/mygui/openmw_travel_window.layout +share/openmw/resources/vfs/mygui/openmw_wait_dialog.layout +share/openmw/resources/vfs/mygui/openmw_wait_dialog_progressbar.layout +share/openmw/resources/vfs/mygui/openmw_windows.skin.xml +share/openmw/resources/vfs/mygui/skins.xml +share/openmw/resources/vfs/openmw_aux/ +share/openmw/resources/vfs/openmw_aux/calendar.lua +share/openmw/resources/vfs/openmw_aux/time.lua +share/openmw/resources/vfs/openmw_aux/ui.lua +share/openmw/resources/vfs/openmw_aux/util.lua +share/openmw/resources/vfs/scripts/ +share/openmw/resources/vfs/scripts/omw/ +share/openmw/resources/vfs/scripts/omw/ai.lua +share/openmw/resources/vfs/scripts/omw/camera/ +share/openmw/resources/vfs/scripts/omw/camera/camera.lua +share/openmw/resources/vfs/scripts/omw/camera/first_person_auto_switch.lua +share/openmw/resources/vfs/scripts/omw/camera/head_bobbing.lua +share/openmw/resources/vfs/scripts/omw/camera/move360.lua +share/openmw/resources/vfs/scripts/omw/camera/settings.lua +share/openmw/resources/vfs/scripts/omw/camera/third_person.lua +share/openmw/resources/vfs/scripts/omw/console/ +share/openmw/resources/vfs/scripts/omw/console/global.lua +share/openmw/resources/vfs/scripts/omw/console/local.lua +share/openmw/resources/vfs/scripts/omw/console/player.lua +share/openmw/resources/vfs/scripts/omw/mwui/ +share/openmw/resources/vfs/scripts/omw/mwui/borders.lua +share/openmw/resources/vfs/scripts/omw/mwui/constants.lua +share/openmw/resources/vfs/scripts/omw/mwui/filters.lua +share/openmw/resources/vfs/scripts/omw/mwui/init.lua +share/openmw/resources/vfs/scripts/omw/mwui/space.lua +share/openmw/resources/vfs/scripts/omw/mwui/text.lua +share/openmw/resources/vfs/scripts/omw/mwui/textEdit.lua +share/openmw/resources/vfs/scripts/omw/settings/ +share/openmw/resources/vfs/scripts/omw/settings/common.lua +share/openmw/resources/vfs/scripts/omw/settings/global.lua +share/openmw/resources/vfs/scripts/omw/settings/player.lua +share/openmw/resources/vfs/scripts/omw/settings/render.lua +share/openmw/resources/vfs/scripts/omw/settings/renderers.lua +share/openmw/resources/vfs/shaders/ +share/openmw/resources/vfs/shaders/adjustments.omwfx +share/openmw/resources/vfs/shaders/bloomlinear.omwfx +share/openmw/resources/vfs/shaders/debug.omwfx share/openmw/resources/vfs/textures/ share/openmw/resources/vfs/textures/omw_menu_scroll_center_h.dds share/openmw/resources/vfs/textures/omw_menu_scroll_center_v.dds