From 77a0f47d06f3d21b78c7f34a129bc3f75d69fbf7 Mon Sep 17 00:00:00 2001 From: aszlig Date: Mon, 19 Feb 2018 04:32:32 +0100 Subject: games/gog: Add statically recompiled Albion We only fetch the data files from GOG here and use the port from OpenPandora (https://repo.openpandora.org/?page=detail&app=albion_sr) for the main game executable. Instead of using the binaries of the static recompiler, this is completely compiled from source and comes with a few changes in the form of a few patches: config.patch: Hide the mouse cursor and set the default scaled resolution to 1280x960 (the window can still be resized) in the default albion.cfg. error-log-stderr.patch: Whenever an error happens, the game usually creates a file called "error.log", which contains the actual error message. This patch makes sure the file isn't created but the error message is printed to stderr. scons.patch: Fixes a few SConstruct/SConscript files to use the builder's environment, so that it can find executables such as gcc. sdl2.patch: SDL 2 has dropped support for the keysym.unicode field at some point, so use keysym.sym instead. This has the disadvantage that it doesn't recognize key modifiers, so we might want to switch this to use the SDL_TEXTINPUT event. xdg-paths.patch: We want to use XDG_CONFIG_HOME and XDG_DATA_HOME instead of writing everything to one directory, so this patch makes sure that the paths are correctly read depending on whether its an XDG directory or one of the store paths of the game. Signed-off-by: aszlig --- pkgs/games/gog/albion/config.patch | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pkgs/games/gog/albion/config.patch (limited to 'pkgs/games/gog/albion/config.patch') diff --git a/pkgs/games/gog/albion/config.patch b/pkgs/games/gog/albion/config.patch new file mode 100644 index 00000000..6bac229c --- /dev/null +++ b/pkgs/games/gog/albion/config.patch @@ -0,0 +1,19 @@ +diff --git a/games/Albion/release/linux/Albion.cfg b/games/Albion/release/linux/Albion.cfg +index 50d4327..8c901f1 100644 +--- a/games/Albion/release/linux/Albion.cfg ++++ b/games/Albion/release/linux/Albion.cfg +@@ -50,11 +50,11 @@ Audio_MIDI_Device= + # - this setting renders the 3d part of the game in the native resolution instead of rendering it in the original resolution and then scaling it + # - there are some minor issues, read the readme for more information + # Display_MouseCursor=normal/minimal/none - shape of SDL mouse cursor in window mode +-Display_ScaledWidth=720 +-Display_ScaledHeight=480 ++Display_ScaledWidth=1280 ++Display_ScaledHeight=960 + Display_Fullscreen=no + Display_Enhanced_3D_Rendering=on +-Display_MouseCursor=normal ++Display_MouseCursor=none + + + # Screenshot settings -- cgit 1.4.1