shinyquagsire23 / OpenJKDF2

A cross-platform reimplementation of JKDF2 in C
Other
508 stars 42 forks source link

Quickload #296

Open samlay opened 9 months ago

samlay commented 9 months ago

Any chance we could get a keybinding for a quickload function? To load most recent quicksave. It was a bizarre omission in the original version - quicksave but no quickload.

shinyquagsire23 commented 9 months ago

should be doable, I can't recall any technical reasons it wouldn't work (though to keep things easy on myself, it'll probably have a screen transition anyhow instead of just zooming to the quicksave like emulators do with save states)

samlay commented 9 months ago

That would be hugely appreciated! Many thanks in advance :-)

samlay commented 9 months ago

If anyone else is wanting this, I found a workaround with this autohotkey script to load top save in list via F8 and F9:

F8:: Send, {Esc} Sleep, 50 Click, 1880, 880 Sleep, 50 Click, 1935, 1345 return

F9:: Send, {Esc} Sleep, 50 Click, 1880, 880 Sleep, 50 Click, 1935, 1345 return

This works for my 2650x1440 display but you'd need to adjust it for other resolutions. A simple solution would be Fraps to grab screenshots of the menu screens and then MS Paint or whatever to get the coordinates from those screenshots, then adjust the script accordingly.