A libretro core for Game & Watch simulators
Go to file
2024-10-21 10:03:12 -07:00
build See if this builds on Android instead 2020-01-01 12:20:04 +01:00
bzip2 Initial commit 2015-03-01 20:03:42 -03:00
etc Release 1.4.0, see the changelog 2017-12-03 21:15:00 +00:00
games Fixed dkong and dkong2 freezing 2019-05-05 18:24:57 +01:00
gwlua Remove snprintf 2022-04-08 11:40:09 +02:00
gwrom Remove declaration-after-statement 2022-04-08 11:39:03 +02:00
lua version 2 2015-03-29 23:01:51 -03:00
retroluxury Fix accidental shadowing 2022-04-09 08:10:55 +02:00
src Fix PSP video 2022-04-09 08:52:24 +02:00
.gitignore Re-add mkmake and mkall 2018-04-07 17:04:53 +01:00
.gitlab-ci.yml Update .gitlab-ci.yml 2022-07-26 05:49:59 +02:00
.gitmodules removed submodule gwrom 2015-03-03 16:37:54 -03:00
.travis.yml add 3ds to travis build 2017-10-23 21:24:12 -04:00
LICENSE added license 2015-04-07 01:11:10 -03:00
Makefile Add Makefile 2015-08-01 21:44:05 +02:00
Makefile.libretro ios/tvos: properly set min supported version (#77) 2024-10-21 10:03:12 -07:00
README.md Update buildbot link. 2018-11-11 14:31:03 -07:00

gw-libretro

gw-libretro is a libretro core that runs Game & Watch simulators.

It runs simulators converted from source code for the games available at MADrigal. Each simulator is converted with pas2lua, which was written specifically for this purpose, and uses bstree, which was also specifically written to obfuscate the generated Lua source code as per MADrigal's request.

The converted games are available at libretro's buildbot site. Unpack the zip and read the README.txt for instructions.

The SNES controller, the hand cursor, and the Boxy Bold font used in gw-libretro are released under the CC0.

Changelog

1.6.3

  • Fixed the first sprite layer being set to 0 instead of 16383.

1.6.2

  • Fixed call to undefined method showmenu.
  • Fixed calculating the center of the screen when zoom is on.

1.6.1

  • Added label position fine tuning to avoid they being on top of each other.

1.6.0

  • Added support for mouse and touch screens.
    • All buttons can be activated with clicks and taps
    • Gameplay buttons can be activated even when the screen is zoomed
    • Added help for hot zones when then screen is zoomed
  • Added iszoomed to system.

1.5.1

  • Fixed a crash while trying to play a sound without associated data, now it errors with a stack trace.

1.5.0

  • Avoided buttons being pressed when the menu or the controller are active.
  • Added ability to pause and resume audio playback.
  • Pause the timers and the audio when the game is not active.

1.4.0

  • Removed the constcast.cpp aberration, the core is now pure C.
  • Added the core version to version.c.templ.
  • Exposed core version to Lua code (helps to add new features and fixes in a backwards compatible way):
    • system.GW_VERSIONSTR, a string containing the full version, i.e. "1.4.0"
    • system.GW_VERSION, a number containing the full version as major << 16 | minor << 8 | patch, i.e. 0x010400
    • system.GW_MAJOR, system.GW_MINOR, and system.GW_PATCH
  • Fixed Galaxy II, Motor Cross, and Tron throwing errors when used with previous versions of the core.

1.3

  • Implemented a menu system to avoid weird button mappings. Now only the buttons used to play the game are mapped to the controller, all other buttons are accessed via the Select (cycle options) and Start (perform action) buttons.
  • Added proper credits in the controller help overlay.
  • Fixed sounds not looping in Galaxy II, Motor Cross, and Tron.
  • Fixed the transparency settings of some images. It fixes some artifacts around the buttons and some backgrounds having the wrong color.