-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Yamagi Quake 2 version 8.50 overhaul #4057
base: master
Are you sure you want to change the base?
Conversation
@protocultor thank you for the PR and the yquake2 changes. While I don't have a Pi1 to test, I'll run some tests over the week-end to see how the new version works with the new GLES1 renderer. In general, the PR looks fine, for the moment I have just one question which I'll address inline with a review. |
scriptmodules/ports/yquake2.sh
Outdated
elif isPlatform "gl" || isPlatform "mesa"; then | ||
params+=("+set vid_renderer gl1") | ||
else | ||
params+=("+set vid_renderer soft") | ||
fi | ||
|
||
if isPlatform "kms"; then | ||
if ! isPlatform "gles" && isPlatform "kms"; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AFAICT there's no kms
but non-gles
system in RetroPie, so the kms
check would be redundant. Why the new test here ? Is the new renderer not working with r_customwidth
/r_customheight
or you think the video mode parameters are no longer necessary ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My apologies, my cleanup wasn't a as complete as I thought. The mentioned verification and parameters are no longer needed, so they were taken out.
For the record, the new renderer does work with r_customwidth
/ r_customheight
, but it's no longer necessary to put them on the parameters since the r_mode -2
(automatic resolution) included in the new default config is more succint, and achieves the exact same result, with the possibility for the user to change it if it's needed. Vsync is also enabled by default, on all renderers.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@protocultor no worries, I just wanted to know the reason for the modification.
I think that the r_customwidth/r_customheight
might not be needed anymore for KMS, though maybe we can add - globally, for all platforms - the +set r_mode -2
parameter. For new installation, the r_mode
is part of the .cfg
file, but for existing installation it may not be. For now it's ok, I'll do some tests with how the resolution change from runcommand
is affected.
Uses GLES1 renderer where available Applies patch to enable Hotkey + Start to quit game Also applies patch to convert from SDL3 joy controls to SDL2 Default config file added, and renamed game expansions for ordering
@protocultor Ok, so I've done a few tests using a Pi4 running both current OS (Buster) and the current RaspiOS (bookworm) and also a Pi3 using the current OS (Buster). It's fullspeed on a Pi3 @720p and it's really fast !
For now, I'll think of something for 2. Regarding 3. - what was/is your testbed for the GLES1 renderer ? |
@cmitu it's funny that you mention GLES3, since it's not new at all but no one added it to the YQ2 script in these years. About my testbed, I only have a RPi 3B+, so I've only tested in that. This comment documents my experience on different RPi OSs: About RetroPie, I've only tested the official image, so I didn't even know that it was possible to install it in newer OSs. I'll do that now (hope it doesn't break anything on any partition). |
Renderer is set in default config, so it can be changed later GLES1 is not forced in unsupported OSs Disable "point parameters" GL extension support in Bullseye or newer
Done in the new commit, now it sets the renderer in the default config.
Also solved, the default is the software renderer but in any installation the script should be able to change it. Now it checks if running Buster or earlier to set GLES1 as the renderer (although maybe shouldn't be recognized as a |
Changelog: https://github.com/yquake2/yquake2/blob/QUAKE2_8_50/CHANGELOG
Most relevant addition for RetroPie is a new OpenGL ES 1.0 renderer, which provides excellent performance under Buster for basically all Pis that are supported in this OS.
Works on Bullseye, but requires a little fiddling to run the Legacy driver there:
yquake2/yquake2#1128 (comment) (point 2).
Note that, even if you don't use GLES1, its new options for optimization in mobile / embedded GPUs (
gl1_discardfb
andgl1_lightmapcopies
) are also available in GL1, so all SBCs and their OSs are benefitted from it.This PR includes:
A patch that enables the "Exit shortcut", RetroArch style, in YQ2. Meaning, Hotkey + Start immediately quits the game and returns to EmulationStation. In terms of SDL buttons, "Guide" is the one used as Hotkey; if that doesn't exist, "Back" ("Select") is used.
Another patch, which applies a "fake revert" of the SDL3 gamepad buttons PR of YQ2 (Consistent binding between multiple gamepad types + labels by style yquake2/yquake2#1183), so it doesn't conflict with the SDL2 configuration applied by
runcommand
on RetroPie. The reasoning behind this is detailed in point 3 of this comment:Input auto-configuration for SDL2 gamepads #4035 (comment)
A new default configuration file to install for the game. This includes predefined gamepad buttons (that can be reassigned in options menu), gameplay changes for a smoother experience with controller, and most importantly, enables the mentioned optimization options for embedded GPUs.
Changed name of the game expansions to properly order them by release date (instead of the second being shown first).
Something that I wanted to do, but it's not my call, is to change the module section from "experimental" to "optional". Please evaluate this after seeing this PR in action, in every platform, including Pi 1.