Is the SDL "GUI" slated for obsoletion any time soon?
Because in the past few months I have been hacking on it to make it more useful to me and if it could help anybody else, I am willing to clean up the changes for upstreaming.
Â
List of changes follows:
Added cheat capability to commandline
- up to 100 cheats as parameters
- CTRL-E to toggle (Enable) cheats
Â
Rewinds
- toss away the "stack" approach
- make a ring of (8) rewind-states
- allow free navigation among them: back, forward, repeat (home to) last rewind-state, jump to the newest rewind-state
- make messages (rewind stored, ...) go only to terminal
Â
save/load
- configurable keymap
. F# saves/ SHIFT+F# loads
. F# loads/ SHIFT+F# saves
. F5/F6 changes slot, F7 saves, F8 loads
- this means that I no longer need to fear that SDL will eat my SHIFTs
- backups
. make backup of a on-disk savestate we are overwriting (when saving) - last such backup loadable with
. make backup of a in-memory savestate we are tossing (when loading) - last such backup loadable with
Â
IPS patches
- up to 100 IPS files specifiable on commandline
- make it actually work (there was a bug - but it might have been my bug, in an intermediate version)
Â
Sound pseudo-muting
- CTRL-S toggles this
- muting implemented by muting all channels when something is on
- unmuting implemented by restoring "muted channels" to whatever they were before last muting
- in the "rare" case that unmuting would leave everything muted (after loading a state that was saved with muted channels), unmute all channels instead
Â
General code cleanup
- use DEFINES for some literal constant (FIXME: should use const variables instead)
- fix configuration bug for the 4th pad
- factor out some bigger code chunks from sdlPollEvents (save/load, rewinds, ...)
- wrote a simple file with all keyboard shortucts found
Â
OpenGL scaling default
- configurable default scaling factor for OpenGL stretching
- only applicable for the "1x" filter (ie. no filter) and when not fullscreen
- changes dimension of the window on startup and when the "1x" filter is chosen (with CTRL-G)
Â
Autofire
- added per-gamepad autofire for A and B (extensible to L and R, ...)
- the previous "solution" (still present) actually toggles autofire for all pads at the same time and you can't suppres it without disabling it altogether
- my solution configures a button that, when pressed, causes rapid changes of the A/B button for the given pad
- and pressing A/B while auto-A/auto-B is on just makes the A/B be persistent (as if it was pressed without autofire) [or maybe not, but this seems to be what I inteded]
Â
Messages
- messages going to the main display are now echoed to terminal
- more messages added (some of them just to the terminal) - for savestates, pausing, cheats, ...
- most terminal messages have timestamp added
Â
Â
I am pretty sure some of the functionality belongs to common code, but so far I have only built the SDL port ...