From ae8dde2d874f2b4e8f9d400acf066900fc4d4327 Mon Sep 17 00:00:00 2001 From: Jeremy Rand Date: Fri, 27 Nov 2020 02:19:31 -0500 Subject: [PATCH] Add the ability to use mame as the GS emulator. The mouse works better under mame than GSPlus for this game. For now, I have both options in the launchEmulator script with one of them commented out. It would be good to put this into the base Makefile infrastructure so mame could be selected as the emulator to use. --- .../jrand.xcuserdatad/xcschemes/xcschememanagement.plist | 4 ++-- BuGS/make/launchEmulator | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/BuGS.xcodeproj/xcuserdata/jrand.xcuserdatad/xcschemes/xcschememanagement.plist b/BuGS.xcodeproj/xcuserdata/jrand.xcuserdatad/xcschemes/xcschememanagement.plist index 2596fb4..0d0faee 100644 --- a/BuGS.xcodeproj/xcuserdata/jrand.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/BuGS.xcodeproj/xcuserdata/jrand.xcuserdatad/xcschemes/xcschememanagement.plist @@ -7,7 +7,7 @@ Binary.xcscheme_^#shared#^_ orderHint - 2 + 3 BuGS.xcscheme_^#shared#^_ @@ -22,7 +22,7 @@ doNotBuild.xcscheme_^#shared#^_ orderHint - 3 + 2 diff --git a/BuGS/make/launchEmulator b/BuGS/make/launchEmulator index d1debe2..be5dc28 100755 --- a/BuGS/make/launchEmulator +++ b/BuGS/make/launchEmulator @@ -29,6 +29,9 @@ sed -i "" "s:^s7d1 *=.*$:s7d1 = $DISKIMAGE:" config.txt $EMULATORPATH -fullscreen -mem 1572864 & PID=$! +#cd "/Users/jrand/Library/Application Support/Ample" +#/Applications/Ample.app/Contents/MacOS/mame64 apple2gs -skip_gameinfo -mouse -window -resolution 1408x1056 -ramsize 4M -sl7 cffa202 -hard1 "$DISKIMAGE" & +#PID=$! trap 'kill $PID' SIGTERM SIGINT SIGHUP EXIT wait