Compare commits

..

29 Commits

Author SHA1 Message Date
Kelvin Sherlock
f2b08c45a3 clean up item moves a bit.
also switch media to be a mutable array (which it secretly was) and
modify in-place to be cleaner.
2020-09-06 00:31:09 -04:00
Kelvin Sherlock
498fd337eb version bump. 2020-09-06 00:02:27 -04:00
Kelvin Sherlock
3cdae0e386 finish up drag-n-drop 2020-09-05 23:58:03 -04:00
Kelvin Sherlock
9eb3727e1e drag-n-drop disk image re-ordering. WIP. 2020-09-05 23:29:30 -04:00
Kelvin Sherlock
af3ad78b94 update machines for current mame.
tweaks description of mockingboard, adds gizmo, uthernet, cms scsi
2020-09-05 17:35:19 -04:00
Kelvin Sherlock
8906d7825f more launch window tweaks. 2020-09-05 11:00:29 -04:00
Kelvin Sherlock
be04b5a00b apple2c was missing 5.25" drives. 2020-09-05 10:59:38 -04:00
Kelvin Sherlock
8e7e6fa396 update the built-in media list. previous logic was incorrect and
excluded apple 3 floppies (which are actually in slots 0,1,2, and 3)
and included and extra cassette for the Apple 1.
2020-09-05 01:20:28 -04:00
Kelvin Sherlock
ad33f06f98 download window - decrease size of status text. 2020-09-04 23:40:06 -04:00
Kelvin Sherlock
3c77f0a309 media view - only enable eject button when there's something to eject. 2020-09-04 23:39:10 -04:00
Kelvin Sherlock
69023c4af3 tweak layout sizes a bit. 2020-09-04 19:22:18 -04:00
Kelvin Sherlock
c1d9a03175 bump version. 2020-09-03 23:35:04 -04:00
Kelvin Sherlock
8b2f4c762b Clean up the ROM manager a little bit more. 2020-09-03 23:34:03 -04:00
Kelvin Sherlock
ebdf8b9395 improved download manager
a few rough edges left but it displays the list of ROMs and allows
downloading individual items and viewing them in Finder.
2020-09-03 22:37:27 -04:00
Kelvin Sherlock
26dbdae365 Add chinese clones 2020-09-03 17:12:02 -04:00
Kelvin Sherlock
fef59d29cf remove empty string from the ROM list. 2020-09-03 00:16:08 -04:00
Kelvin Sherlock
152197cae7 first pass at the ROM downloader. 2020-09-03 00:15:50 -04:00
Kelvin Sherlock
e73ff01c00 add roms.plist of romfiles to download. 2020-09-02 22:17:52 -04:00
Kelvin Sherlock
b262c8bf2f move python code into it's own directory. 2020-09-02 22:06:41 -04:00
Kelvin Sherlock
fe7c71e7c7 center the launch window. 2020-09-02 19:12:32 -04:00
Kelvin Sherlock
8264aa1515 untar mame-data.tgz to the application support directory.
This just uses NSTask to launch tar in the background.
2020-09-02 19:12:17 -04:00
Kelvin Sherlock
cfe0e950c4 set the current directory to the Application Support directory when
launching mame.

Eventually, application support directory will include bgfx, roms, etc.
2020-09-01 23:52:58 -04:00
Kelvin Sherlock
e512fb982a use constants for default keys. 2020-09-01 23:52:11 -04:00
Kelvin Sherlock
90be56f96d remove unused headers. 2020-08-31 23:25:46 -04:00
Kelvin Sherlock
076af87f91 adjust log window title. 2020-08-31 23:25:37 -04:00
Kelvin Sherlock
13529d130c cleanup minor build warnings. 2020-08-31 22:48:51 -04:00
Kelvin Sherlock
b0ff495fd3 tweak travis 2020-08-31 22:29:02 -04:00
Kelvin Sherlock
8c282596d6 add .travis.yml 2020-08-31 22:20:43 -04:00
Kelvin Sherlock
fde5b664b4 Add "Ample Lite" target (for use with CI).
Target does not embed the SDL2 framework or mame64.

xcodebuild -project Ample.xcodeproj -target "Ample Lite"
2020-08-31 22:07:16 -04:00
82 changed files with 20382 additions and 465 deletions

3
.gitignore vendored
View File

@@ -1,3 +1,6 @@
dist
embedded/mame64
embedded/SDL2.framework
build
embedded/mame-data.tgz
__pycache__

12
.travis.yml Normal file
View File

@@ -0,0 +1,12 @@
language: objective-c
osx_image:
- xcode12
- xcode11.3
- xcode10.1
xcode_project: Ample.xcodeproj
xcode_scheme: Ample Lite
script:
- set -o pipefail
- xcodebuild -project "${TRAVIS_XCODE_PROJECT}" -target "Ample Lite" | xcpretty

View File

@@ -9,6 +9,8 @@
/* Begin PBXBuildFile section */
B6004DF024FB05D600D38596 /* LogWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = B6004DEE24FB05D600D38596 /* LogWindowController.m */; };
B6004DF124FB05D600D38596 /* LogWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = B6004DEF24FB05D600D38596 /* LogWindow.xib */; };
B608E17F2502FE0C00D53465 /* TransparentScroller.m in Sources */ = {isa = PBXBuildFile; fileRef = B608E17E2502FE0C00D53465 /* TransparentScroller.m */; };
B608E1802502FE0C00D53465 /* TransparentScroller.m in Sources */ = {isa = PBXBuildFile; fileRef = B608E17E2502FE0C00D53465 /* TransparentScroller.m */; };
B60A6E1424EE0AE2004B7EEF /* FlippedView.m in Sources */ = {isa = PBXBuildFile; fileRef = B60A6E1324EE0AE2004B7EEF /* FlippedView.m */; };
B61099E724F5F231005CB652 /* SlotView.xib in Resources */ = {isa = PBXBuildFile; fileRef = B61099E324F5F230005CB652 /* SlotView.xib */; };
B61099E824F5F231005CB652 /* MediaView.xib in Resources */ = {isa = PBXBuildFile; fileRef = B61099E524F5F230005CB652 /* MediaView.xib */; };
@@ -57,12 +59,30 @@
B6109A4124F5F377005CB652 /* apple2cp.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A1424F5F376005CB652 /* apple2cp.plist */; };
B6109A4224F5F377005CB652 /* apple2p.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A1524F5F376005CB652 /* apple2p.plist */; };
B6109A4324F5F377005CB652 /* agat7.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A1624F5F376005CB652 /* agat7.plist */; };
B63C1B8B24FF4BF700511A71 /* Ample.m in Sources */ = {isa = PBXBuildFile; fileRef = B63C1B8A24FF4BF700511A71 /* Ample.m */; };
B63C1B8C24FF4BF700511A71 /* Ample.m in Sources */ = {isa = PBXBuildFile; fileRef = B63C1B8A24FF4BF700511A71 /* Ample.m */; };
B63C1B8E25004C6D00511A71 /* mame-data.tgz in Resources */ = {isa = PBXBuildFile; fileRef = B63C1B8D25004C6D00511A71 /* mame-data.tgz */; };
B63C1B90250088DD00511A71 /* roms.plist in Resources */ = {isa = PBXBuildFile; fileRef = B63C1B8F250088DC00511A71 /* roms.plist */; };
B63C1B9425008A2700511A71 /* DownloadWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = B63C1B9225008A2700511A71 /* DownloadWindowController.m */; };
B63C1B9525008A2700511A71 /* DownloadWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = B63C1B9225008A2700511A71 /* DownloadWindowController.m */; };
B63C1B9625008A2700511A71 /* DownloadWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = B63C1B9325008A2700511A71 /* DownloadWindow.xib */; };
B63C1B9725008A2700511A71 /* DownloadWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = B63C1B9325008A2700511A71 /* DownloadWindow.xib */; };
B63C1B9D250192D800511A71 /* cece.plist in Resources */ = {isa = PBXBuildFile; fileRef = B63C1B98250192D700511A71 /* cece.plist */; };
B63C1B9E250192D800511A71 /* cece.plist in Resources */ = {isa = PBXBuildFile; fileRef = B63C1B98250192D700511A71 /* cece.plist */; };
B63C1B9F250192D800511A71 /* ceci.plist in Resources */ = {isa = PBXBuildFile; fileRef = B63C1B99250192D700511A71 /* ceci.plist */; };
B63C1BA0250192D800511A71 /* ceci.plist in Resources */ = {isa = PBXBuildFile; fileRef = B63C1B99250192D700511A71 /* ceci.plist */; };
B63C1BA1250192D800511A71 /* cecg.plist in Resources */ = {isa = PBXBuildFile; fileRef = B63C1B9A250192D700511A71 /* cecg.plist */; };
B63C1BA2250192D800511A71 /* cecg.plist in Resources */ = {isa = PBXBuildFile; fileRef = B63C1B9A250192D700511A71 /* cecg.plist */; };
B63C1BA3250192D800511A71 /* cec2000.plist in Resources */ = {isa = PBXBuildFile; fileRef = B63C1B9B250192D800511A71 /* cec2000.plist */; };
B63C1BA4250192D800511A71 /* cec2000.plist in Resources */ = {isa = PBXBuildFile; fileRef = B63C1B9B250192D800511A71 /* cec2000.plist */; };
B63C1BA5250192D800511A71 /* cecm.plist in Resources */ = {isa = PBXBuildFile; fileRef = B63C1B9C250192D800511A71 /* cecm.plist */; };
B63C1BA6250192D800511A71 /* cecm.plist in Resources */ = {isa = PBXBuildFile; fileRef = B63C1B9C250192D800511A71 /* cecm.plist */; };
B63C1BA8250192E600511A71 /* zijini.plist in Resources */ = {isa = PBXBuildFile; fileRef = B63C1BA7250192E600511A71 /* zijini.plist */; };
B63C1BA9250192E600511A71 /* zijini.plist in Resources */ = {isa = PBXBuildFile; fileRef = B63C1BA7250192E600511A71 /* zijini.plist */; };
B64979C224EF6703008ABD20 /* MediaViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B64979C124EF6703008ABD20 /* MediaViewController.m */; };
B64E15A924EA1D5300E8AD3D /* MachineViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B64E15A824EA1D5300E8AD3D /* MachineViewController.m */; };
B65593B124ECB61800722E0C /* SlotViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B65593B024ECB61800722E0C /* SlotViewController.m */; };
B658DBF324FB58EC0063AB5F /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6BA258624E99BEB005FB8FF /* Info.plist */; };
B66236A924FD9A34006CABD7 /* PreferencesWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = B66236A824FD9A34006CABD7 /* PreferencesWindowController.m */; };
B66236B424FDA527006CABD7 /* SDL2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B66236B224FDA522006CABD7 /* SDL2.framework */; };
B66236B524FDA527006CABD7 /* SDL2.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = B66236B224FDA522006CABD7 /* SDL2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
B66236BC24FDA72E006CABD7 /* mame64 in CopyFiles */ = {isa = PBXBuildFile; fileRef = B66236B724FDA686006CABD7 /* mame64 */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
B66236C124FDB7A6006CABD7 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = B66236BF24FDB7A6006CABD7 /* Credits.rtf */; };
@@ -74,6 +94,69 @@
B6D6DE3B24FACF4F00661A5F /* Defaults.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6D6DE3A24FACF4F00661A5F /* Defaults.plist */; };
B6D6DE3E24FADF8B00661A5F /* LaunchWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = B6D6DE3C24FADF8B00661A5F /* LaunchWindow.xib */; };
B6D6DE4124FADFAC00661A5F /* LaunchWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = B6D6DE4024FADFAC00661A5F /* LaunchWindowController.m */; };
B6E4B5B024FDE2670094A35C /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = B6BA258724E99BEB005FB8FF /* main.m */; };
B6E4B5B124FDE2670094A35C /* LaunchWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = B6D6DE4024FADFAC00661A5F /* LaunchWindowController.m */; };
B6E4B5B224FDE2670094A35C /* MachineViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B64E15A824EA1D5300E8AD3D /* MachineViewController.m */; };
B6E4B5B324FDE2670094A35C /* MediaViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B64979C124EF6703008ABD20 /* MediaViewController.m */; };
B6E4B5B424FDE2670094A35C /* FlippedView.m in Sources */ = {isa = PBXBuildFile; fileRef = B60A6E1324EE0AE2004B7EEF /* FlippedView.m */; };
B6E4B5B524FDE2670094A35C /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = B6BA257F24E99BE9005FB8FF /* AppDelegate.m */; };
B6E4B5B624FDE2670094A35C /* LogWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = B6004DEE24FB05D600D38596 /* LogWindowController.m */; };
B6E4B5B724FDE2670094A35C /* PreferencesWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = B66236A824FD9A34006CABD7 /* PreferencesWindowController.m */; };
B6E4B5B824FDE2670094A35C /* SlotViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B65593B024ECB61800722E0C /* SlotViewController.m */; };
B6E4B5BC24FDE2670094A35C /* apple2eeuk.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A0624F5F372005CB652 /* apple2eeuk.plist */; };
B6E4B5BD24FDE2670094A35C /* las128ex.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099F724F5F36F005CB652 /* las128ex.plist */; };
B6E4B5BE24FDE2670094A35C /* space84.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099F024F5F36E005CB652 /* space84.plist */; };
B6E4B5BF24FDE2670094A35C /* agat9.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A1224F5F375005CB652 /* agat9.plist */; };
B6E4B5C024FDE2670094A35C /* LaunchWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = B6D6DE3C24FADF8B00661A5F /* LaunchWindow.xib */; };
B6E4B5C124FDE2670094A35C /* apple1.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A0424F5F372005CB652 /* apple1.plist */; };
B6E4B5C224FDE2670094A35C /* ace100.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A0824F5F373005CB652 /* ace100.plist */; };
B6E4B5C324FDE2670094A35C /* am64.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A0724F5F372005CB652 /* am64.plist */; };
B6E4B5C424FDE2670094A35C /* LogWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = B6004DEF24FB05D600D38596 /* LogWindow.xib */; };
B6E4B5C524FDE2670094A35C /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B6BA258124E99BEB005FB8FF /* Assets.xcassets */; };
B6E4B5C624FDE2670094A35C /* apple2e.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099EA24F5F36E005CB652 /* apple2e.plist */; };
B6E4B5C724FDE2670094A35C /* am100.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A0F24F5F374005CB652 /* am100.plist */; };
B6E4B5C824FDE2670094A35C /* laser2c.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099F824F5F36F005CB652 /* laser2c.plist */; };
B6E4B5C924FDE2670094A35C /* laser128.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A1024F5F375005CB652 /* laser128.plist */; };
B6E4B5CA24FDE2670094A35C /* apple2ep.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099FB24F5F370005CB652 /* apple2ep.plist */; };
B6E4B5CB24FDE2670094A35C /* apple2ees.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099EC24F5F36E005CB652 /* apple2ees.plist */; };
B6E4B5CC24FDE2670094A35C /* prav8c.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A0C24F5F374005CB652 /* prav8c.plist */; };
B6E4B5CD24FDE2670094A35C /* ivelultr.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099EF24F5F36E005CB652 /* ivelultr.plist */; };
B6E4B5CE24FDE2670094A35C /* maxxi.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A0B24F5F373005CB652 /* maxxi.plist */; };
B6E4B5CF24FDE2670094A35C /* apple2eefr.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A0124F5F371005CB652 /* apple2eefr.plist */; };
B6E4B5D124FDE2670094A35C /* spectred.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099FF24F5F371005CB652 /* spectred.plist */; };
B6E4B5D224FDE2670094A35C /* apple2cp.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A1424F5F376005CB652 /* apple2cp.plist */; };
B6E4B5D324FDE2670094A35C /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = B6BA258324E99BEB005FB8FF /* MainMenu.xib */; };
B6E4B5D424FDE2670094A35C /* prav82.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A0D24F5F374005CB652 /* prav82.plist */; };
B6E4B5D524FDE2670094A35C /* apple2euk.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099F324F5F36F005CB652 /* apple2euk.plist */; };
B6E4B5D624FDE2670094A35C /* uniap2ti.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A0224F5F371005CB652 /* uniap2ti.plist */; };
B6E4B5D724FDE2670094A35C /* apple2c.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099F124F5F36F005CB652 /* apple2c.plist */; };
B6E4B5D824FDE2670094A35C /* microeng.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099ED24F5F36E005CB652 /* microeng.plist */; };
B6E4B5D924FDE2670094A35C /* albert.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A1124F5F375005CB652 /* albert.plist */; };
B6E4B5DA24FDE2670094A35C /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = B66236BF24FDB7A6006CABD7 /* Credits.rtf */; };
B6E4B5DB24FDE2670094A35C /* apple2p.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A1524F5F376005CB652 /* apple2p.plist */; };
B6E4B5DC24FDE2670094A35C /* hkc8800a.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099EB24F5F36E005CB652 /* hkc8800a.plist */; };
B6E4B5DD24FDE2670094A35C /* apple2gsr0.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099F624F5F36F005CB652 /* apple2gsr0.plist */; };
B6E4B5DE24FDE2670094A35C /* mprof3.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099F924F5F370005CB652 /* mprof3.plist */; };
B6E4B5DF24FDE2670094A35C /* basis108.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A0524F5F372005CB652 /* basis108.plist */; };
B6E4B5E024FDE2670094A35C /* agat7.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A1624F5F376005CB652 /* agat7.plist */; };
B6E4B5E124FDE2670094A35C /* elppa.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099FE24F5F370005CB652 /* elppa.plist */; };
B6E4B5E224FDE2670094A35C /* apple2gsr1.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A0E24F5F374005CB652 /* apple2gsr1.plist */; };
B6E4B5E324FDE2670094A35C /* Defaults.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6D6DE3A24FACF4F00661A5F /* Defaults.plist */; };
B6E4B5E424FDE2670094A35C /* models.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099F524F5F36F005CB652 /* models.plist */; };
B6E4B5E524FDE2670094A35C /* craft2p.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A1324F5F375005CB652 /* craft2p.plist */; };
B6E4B5E624FDE2670094A35C /* uniap2pt.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099EE24F5F36E005CB652 /* uniap2pt.plist */; };
B6E4B5E724FDE2670094A35C /* las128e2.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A0A24F5F373005CB652 /* las128e2.plist */; };
B6E4B5E824FDE2670094A35C /* MediaView.xib in Resources */ = {isa = PBXBuildFile; fileRef = B61099E524F5F230005CB652 /* MediaView.xib */; };
B6E4B5E924FDE2670094A35C /* uniap2en.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099FA24F5F370005CB652 /* uniap2en.plist */; };
B6E4B5EA24FDE2670094A35C /* apple3.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099FD24F5F370005CB652 /* apple3.plist */; };
B6E4B5EB24FDE2670094A35C /* apple2ee.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099F424F5F36F005CB652 /* apple2ee.plist */; };
B6E4B5EC24FDE2670094A35C /* dodo.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A0924F5F373005CB652 /* dodo.plist */; };
B6E4B5ED24FDE2670094A35C /* Preferences.xib in Resources */ = {isa = PBXBuildFile; fileRef = B6D6DE3724FAC8B500661A5F /* Preferences.xib */; };
B6E4B5EE24FDE2670094A35C /* SlotView.xib in Resources */ = {isa = PBXBuildFile; fileRef = B61099E324F5F230005CB652 /* SlotView.xib */; };
B6E4B5EF24FDE2670094A35C /* apple2gs.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099FC24F5F370005CB652 /* apple2gs.plist */; };
B6E4B5F024FDE2670094A35C /* apple2jp.plist in Resources */ = {isa = PBXBuildFile; fileRef = B61099F224F5F36F005CB652 /* apple2jp.plist */; };
B6E4B5F124FDE2670094A35C /* apple2.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A0324F5F371005CB652 /* apple2.plist */; };
B6E4B5F224FDE2670094A35C /* prav8m.plist in Resources */ = {isa = PBXBuildFile; fileRef = B6109A0024F5F371005CB652 /* prav8m.plist */; };
/* End PBXBuildFile section */
/* Begin PBXCopyFilesBuildPhase section */
@@ -98,12 +181,24 @@
);
runOnlyForDeploymentPostprocessing = 0;
};
B6E4B5F324FDE2670094A35C /* Embed Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
);
name = "Embed Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
B6004DED24FB05D600D38596 /* LogWindowController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LogWindowController.h; sourceTree = "<group>"; };
B6004DEE24FB05D600D38596 /* LogWindowController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LogWindowController.m; sourceTree = "<group>"; };
B6004DEF24FB05D600D38596 /* LogWindow.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = LogWindow.xib; path = Base.lproj/LogWindow.xib; sourceTree = "<group>"; };
B608E17D2502FE0C00D53465 /* TransparentScroller.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TransparentScroller.h; sourceTree = "<group>"; };
B608E17E2502FE0C00D53465 /* TransparentScroller.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TransparentScroller.m; sourceTree = "<group>"; };
B60A6E0B24ECE23F004B7EEF /* apple2gs.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = apple2gs.plist; sourceTree = "<group>"; };
B60A6E1224EE0AE2004B7EEF /* FlippedView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FlippedView.h; sourceTree = "<group>"; };
B60A6E1324EE0AE2004B7EEF /* FlippedView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FlippedView.m; sourceTree = "<group>"; };
@@ -154,6 +249,19 @@
B6109A1424F5F376005CB652 /* apple2cp.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = apple2cp.plist; sourceTree = "<group>"; };
B6109A1524F5F376005CB652 /* apple2p.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = apple2p.plist; sourceTree = "<group>"; };
B6109A1624F5F376005CB652 /* agat7.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = agat7.plist; sourceTree = "<group>"; };
B63C1B8924FF4B7100511A71 /* Ample.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ample.h; sourceTree = "<group>"; };
B63C1B8A24FF4BF700511A71 /* Ample.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Ample.m; sourceTree = "<group>"; };
B63C1B8D25004C6D00511A71 /* mame-data.tgz */ = {isa = PBXFileReference; lastKnownFileType = file; name = "mame-data.tgz"; path = "embedded/mame-data.tgz"; sourceTree = "<group>"; };
B63C1B8F250088DC00511A71 /* roms.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = roms.plist; sourceTree = "<group>"; };
B63C1B9125008A2700511A71 /* DownloadWindowController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DownloadWindowController.h; sourceTree = "<group>"; };
B63C1B9225008A2700511A71 /* DownloadWindowController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DownloadWindowController.m; sourceTree = "<group>"; };
B63C1B9325008A2700511A71 /* DownloadWindow.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = DownloadWindow.xib; path = Base.lproj/DownloadWindow.xib; sourceTree = "<group>"; };
B63C1B98250192D700511A71 /* cece.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = cece.plist; sourceTree = "<group>"; };
B63C1B99250192D700511A71 /* ceci.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = ceci.plist; sourceTree = "<group>"; };
B63C1B9A250192D700511A71 /* cecg.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = cecg.plist; sourceTree = "<group>"; };
B63C1B9B250192D800511A71 /* cec2000.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = cec2000.plist; sourceTree = "<group>"; };
B63C1B9C250192D800511A71 /* cecm.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = cecm.plist; sourceTree = "<group>"; };
B63C1BA7250192E600511A71 /* zijini.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = zijini.plist; sourceTree = "<group>"; };
B64979C024EF6703008ABD20 /* MediaViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MediaViewController.h; sourceTree = "<group>"; };
B64979C124EF6703008ABD20 /* MediaViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MediaViewController.m; sourceTree = "<group>"; };
B64E15A724EA1D5300E8AD3D /* MachineViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MachineViewController.h; sourceTree = "<group>"; };
@@ -180,6 +288,7 @@
B6D6DE3D24FADF8B00661A5F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchWindow.xib; sourceTree = "<group>"; };
B6D6DE3F24FADFAC00661A5F /* LaunchWindowController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LaunchWindowController.h; sourceTree = "<group>"; };
B6D6DE4024FADFAC00661A5F /* LaunchWindowController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LaunchWindowController.m; sourceTree = "<group>"; };
B6E4B5FA24FDE2670094A35C /* Ample Lite.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Ample Lite.app"; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -187,7 +296,13 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
B66236B424FDA527006CABD7 /* SDL2.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B6E4B5B924FDE2670094A35C /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -206,6 +321,13 @@
B64E15AF24EA365E00E8AD3D /* Resources */ = {
isa = PBXGroup;
children = (
B63C1B8F250088DC00511A71 /* roms.plist */,
B63C1B9B250192D800511A71 /* cec2000.plist */,
B63C1B98250192D700511A71 /* cece.plist */,
B63C1B9A250192D700511A71 /* cecg.plist */,
B63C1B99250192D700511A71 /* ceci.plist */,
B63C1B9C250192D800511A71 /* cecm.plist */,
B63C1BA7250192E600511A71 /* zijini.plist */,
B6109A0824F5F373005CB652 /* ace100.plist */,
B6109A1624F5F376005CB652 /* agat7.plist */,
B6109A1224F5F375005CB652 /* agat9.plist */,
@@ -266,6 +388,7 @@
B66236BD24FDA7EA006CABD7 /* Embedded Content */ = {
isa = PBXGroup;
children = (
B63C1B8D25004C6D00511A71 /* mame-data.tgz */,
B66236B824FDA698006CABD7 /* mame64 */,
B66236B224FDA522006CABD7 /* SDL2.framework */,
);
@@ -287,6 +410,7 @@
isa = PBXGroup;
children = (
B6BA257B24E99BE9005FB8FF /* Ample.app */,
B6E4B5FA24FDE2670094A35C /* Ample Lite.app */,
);
name = Products;
sourceTree = "<group>";
@@ -294,8 +418,12 @@
B6BA257D24E99BE9005FB8FF /* Ample */ = {
isa = PBXGroup;
children = (
B63C1B9125008A2700511A71 /* DownloadWindowController.h */,
B63C1B9225008A2700511A71 /* DownloadWindowController.m */,
B6BA257E24E99BE9005FB8FF /* AppDelegate.h */,
B6BA257F24E99BE9005FB8FF /* AppDelegate.m */,
B63C1B8924FF4B7100511A71 /* Ample.h */,
B63C1B8A24FF4BF700511A71 /* Ample.m */,
B6D6DE3F24FADFAC00661A5F /* LaunchWindowController.h */,
B6D6DE4024FADFAC00661A5F /* LaunchWindowController.m */,
B65593B024ECB61800722E0C /* SlotViewController.m */,
@@ -306,6 +434,8 @@
B64E15A824EA1D5300E8AD3D /* MachineViewController.m */,
B60A6E1324EE0AE2004B7EEF /* FlippedView.m */,
B60A6E1224EE0AE2004B7EEF /* FlippedView.h */,
B608E17D2502FE0C00D53465 /* TransparentScroller.h */,
B608E17E2502FE0C00D53465 /* TransparentScroller.m */,
B6004DED24FB05D600D38596 /* LogWindowController.h */,
B6004DEE24FB05D600D38596 /* LogWindowController.m */,
B66236A724FD9A34006CABD7 /* PreferencesWindowController.h */,
@@ -324,6 +454,7 @@
B6D6DE4224FAEE8900661A5F /* Nibs */ = {
isa = PBXGroup;
children = (
B63C1B9325008A2700511A71 /* DownloadWindow.xib */,
B66236BF24FDB7A6006CABD7 /* Credits.rtf */,
B6D6DE3C24FADF8B00661A5F /* LaunchWindow.xib */,
B6004DEF24FB05D600D38596 /* LogWindow.xib */,
@@ -357,6 +488,24 @@
productReference = B6BA257B24E99BE9005FB8FF /* Ample.app */;
productType = "com.apple.product-type.application";
};
B6E4B5AE24FDE2670094A35C /* Ample Lite */ = {
isa = PBXNativeTarget;
buildConfigurationList = B6E4B5F724FDE2670094A35C /* Build configuration list for PBXNativeTarget "Ample Lite" */;
buildPhases = (
B6E4B5AF24FDE2670094A35C /* Sources */,
B6E4B5B924FDE2670094A35C /* Frameworks */,
B6E4B5BB24FDE2670094A35C /* Resources */,
B6E4B5F324FDE2670094A35C /* Embed Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = "Ample Lite";
productName = MA2ME;
productReference = B6E4B5FA24FDE2670094A35C /* Ample Lite.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
@@ -385,6 +534,7 @@
projectRoot = "";
targets = (
B6BA257A24E99BE9005FB8FF /* Ample */,
B6E4B5AE24FDE2670094A35C /* Ample Lite */,
);
};
/* End PBXProject section */
@@ -396,8 +546,10 @@
files = (
B6109A3324F5F377005CB652 /* apple2eeuk.plist in Resources */,
B6109A2424F5F377005CB652 /* las128ex.plist in Resources */,
B63C1BA8250192E600511A71 /* zijini.plist in Resources */,
B6109A1D24F5F377005CB652 /* space84.plist in Resources */,
B6109A3F24F5F377005CB652 /* agat9.plist in Resources */,
B63C1B9D250192D800511A71 /* cece.plist in Resources */,
B6D6DE3E24FADF8B00661A5F /* LaunchWindow.xib in Resources */,
B6109A3124F5F377005CB652 /* apple1.plist in Resources */,
B6109A3524F5F377005CB652 /* ace100.plist in Resources */,
@@ -414,7 +566,6 @@
B6109A1C24F5F377005CB652 /* ivelultr.plist in Resources */,
B6109A3824F5F377005CB652 /* maxxi.plist in Resources */,
B6109A2E24F5F377005CB652 /* apple2eefr.plist in Resources */,
B658DBF324FB58EC0063AB5F /* Info.plist in Resources */,
B6109A2C24F5F377005CB652 /* spectred.plist in Resources */,
B6109A4124F5F377005CB652 /* apple2cp.plist in Resources */,
B6BA258524E99BEB005FB8FF /* MainMenu.xib in Resources */,
@@ -428,20 +579,27 @@
B6109A4224F5F377005CB652 /* apple2p.plist in Resources */,
B6109A1824F5F377005CB652 /* hkc8800a.plist in Resources */,
B6109A2324F5F377005CB652 /* apple2gsr0.plist in Resources */,
B63C1BA1250192D800511A71 /* cecg.plist in Resources */,
B63C1BA3250192D800511A71 /* cec2000.plist in Resources */,
B6109A2624F5F377005CB652 /* mprof3.plist in Resources */,
B63C1B9F250192D800511A71 /* ceci.plist in Resources */,
B6109A3224F5F377005CB652 /* basis108.plist in Resources */,
B6109A4324F5F377005CB652 /* agat7.plist in Resources */,
B6109A2B24F5F377005CB652 /* elppa.plist in Resources */,
B63C1B8E25004C6D00511A71 /* mame-data.tgz in Resources */,
B6109A3B24F5F377005CB652 /* apple2gsr1.plist in Resources */,
B63C1B9625008A2700511A71 /* DownloadWindow.xib in Resources */,
B6D6DE3B24FACF4F00661A5F /* Defaults.plist in Resources */,
B6109A2224F5F377005CB652 /* models.plist in Resources */,
B6109A4024F5F377005CB652 /* craft2p.plist in Resources */,
B6109A1B24F5F377005CB652 /* uniap2pt.plist in Resources */,
B6109A3724F5F377005CB652 /* las128e2.plist in Resources */,
B61099E824F5F231005CB652 /* MediaView.xib in Resources */,
B63C1B90250088DD00511A71 /* roms.plist in Resources */,
B6109A2724F5F377005CB652 /* uniap2en.plist in Resources */,
B6109A2A24F5F377005CB652 /* apple3.plist in Resources */,
B6109A2124F5F377005CB652 /* apple2ee.plist in Resources */,
B63C1BA5250192D800511A71 /* cecm.plist in Resources */,
B6109A3624F5F377005CB652 /* dodo.plist in Resources */,
B6D6DE3924FAC8B500661A5F /* Preferences.xib in Resources */,
B61099E724F5F231005CB652 /* SlotView.xib in Resources */,
@@ -452,6 +610,74 @@
);
runOnlyForDeploymentPostprocessing = 0;
};
B6E4B5BB24FDE2670094A35C /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
B6E4B5BC24FDE2670094A35C /* apple2eeuk.plist in Resources */,
B63C1BA0250192D800511A71 /* ceci.plist in Resources */,
B6E4B5BD24FDE2670094A35C /* las128ex.plist in Resources */,
B6E4B5BE24FDE2670094A35C /* space84.plist in Resources */,
B63C1BA6250192D800511A71 /* cecm.plist in Resources */,
B6E4B5BF24FDE2670094A35C /* agat9.plist in Resources */,
B6E4B5C024FDE2670094A35C /* LaunchWindow.xib in Resources */,
B6E4B5C124FDE2670094A35C /* apple1.plist in Resources */,
B6E4B5C224FDE2670094A35C /* ace100.plist in Resources */,
B6E4B5C324FDE2670094A35C /* am64.plist in Resources */,
B6E4B5C424FDE2670094A35C /* LogWindow.xib in Resources */,
B6E4B5C524FDE2670094A35C /* Assets.xcassets in Resources */,
B6E4B5C624FDE2670094A35C /* apple2e.plist in Resources */,
B63C1BA2250192D800511A71 /* cecg.plist in Resources */,
B6E4B5C724FDE2670094A35C /* am100.plist in Resources */,
B6E4B5C824FDE2670094A35C /* laser2c.plist in Resources */,
B6E4B5C924FDE2670094A35C /* laser128.plist in Resources */,
B6E4B5CA24FDE2670094A35C /* apple2ep.plist in Resources */,
B6E4B5CB24FDE2670094A35C /* apple2ees.plist in Resources */,
B6E4B5CC24FDE2670094A35C /* prav8c.plist in Resources */,
B6E4B5CD24FDE2670094A35C /* ivelultr.plist in Resources */,
B6E4B5CE24FDE2670094A35C /* maxxi.plist in Resources */,
B6E4B5CF24FDE2670094A35C /* apple2eefr.plist in Resources */,
B6E4B5D124FDE2670094A35C /* spectred.plist in Resources */,
B63C1B9725008A2700511A71 /* DownloadWindow.xib in Resources */,
B6E4B5D224FDE2670094A35C /* apple2cp.plist in Resources */,
B6E4B5D324FDE2670094A35C /* MainMenu.xib in Resources */,
B6E4B5D424FDE2670094A35C /* prav82.plist in Resources */,
B6E4B5D524FDE2670094A35C /* apple2euk.plist in Resources */,
B6E4B5D624FDE2670094A35C /* uniap2ti.plist in Resources */,
B6E4B5D724FDE2670094A35C /* apple2c.plist in Resources */,
B6E4B5D824FDE2670094A35C /* microeng.plist in Resources */,
B6E4B5D924FDE2670094A35C /* albert.plist in Resources */,
B6E4B5DA24FDE2670094A35C /* Credits.rtf in Resources */,
B6E4B5DB24FDE2670094A35C /* apple2p.plist in Resources */,
B63C1BA4250192D800511A71 /* cec2000.plist in Resources */,
B6E4B5DC24FDE2670094A35C /* hkc8800a.plist in Resources */,
B6E4B5DD24FDE2670094A35C /* apple2gsr0.plist in Resources */,
B6E4B5DE24FDE2670094A35C /* mprof3.plist in Resources */,
B6E4B5DF24FDE2670094A35C /* basis108.plist in Resources */,
B6E4B5E024FDE2670094A35C /* agat7.plist in Resources */,
B6E4B5E124FDE2670094A35C /* elppa.plist in Resources */,
B6E4B5E224FDE2670094A35C /* apple2gsr1.plist in Resources */,
B6E4B5E324FDE2670094A35C /* Defaults.plist in Resources */,
B6E4B5E424FDE2670094A35C /* models.plist in Resources */,
B63C1BA9250192E600511A71 /* zijini.plist in Resources */,
B6E4B5E524FDE2670094A35C /* craft2p.plist in Resources */,
B6E4B5E624FDE2670094A35C /* uniap2pt.plist in Resources */,
B6E4B5E724FDE2670094A35C /* las128e2.plist in Resources */,
B63C1B9E250192D800511A71 /* cece.plist in Resources */,
B6E4B5E824FDE2670094A35C /* MediaView.xib in Resources */,
B6E4B5E924FDE2670094A35C /* uniap2en.plist in Resources */,
B6E4B5EA24FDE2670094A35C /* apple3.plist in Resources */,
B6E4B5EB24FDE2670094A35C /* apple2ee.plist in Resources */,
B6E4B5EC24FDE2670094A35C /* dodo.plist in Resources */,
B6E4B5ED24FDE2670094A35C /* Preferences.xib in Resources */,
B6E4B5EE24FDE2670094A35C /* SlotView.xib in Resources */,
B6E4B5EF24FDE2670094A35C /* apple2gs.plist in Resources */,
B6E4B5F024FDE2670094A35C /* apple2jp.plist in Resources */,
B6E4B5F124FDE2670094A35C /* apple2.plist in Resources */,
B6E4B5F224FDE2670094A35C /* prav8m.plist in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
@@ -459,7 +685,9 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
B608E17F2502FE0C00D53465 /* TransparentScroller.m in Sources */,
B6BA258824E99BEB005FB8FF /* main.m in Sources */,
B63C1B8B24FF4BF700511A71 /* Ample.m in Sources */,
B6D6DE4124FADFAC00661A5F /* LaunchWindowController.m in Sources */,
B64E15A924EA1D5300E8AD3D /* MachineViewController.m in Sources */,
B64979C224EF6703008ABD20 /* MediaViewController.m in Sources */,
@@ -468,6 +696,26 @@
B6004DF024FB05D600D38596 /* LogWindowController.m in Sources */,
B66236A924FD9A34006CABD7 /* PreferencesWindowController.m in Sources */,
B65593B124ECB61800722E0C /* SlotViewController.m in Sources */,
B63C1B9425008A2700511A71 /* DownloadWindowController.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B6E4B5AF24FDE2670094A35C /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
B608E1802502FE0C00D53465 /* TransparentScroller.m in Sources */,
B6E4B5B024FDE2670094A35C /* main.m in Sources */,
B63C1B8C24FF4BF700511A71 /* Ample.m in Sources */,
B6E4B5B124FDE2670094A35C /* LaunchWindowController.m in Sources */,
B6E4B5B224FDE2670094A35C /* MachineViewController.m in Sources */,
B6E4B5B324FDE2670094A35C /* MediaViewController.m in Sources */,
B6E4B5B424FDE2670094A35C /* FlippedView.m in Sources */,
B6E4B5B524FDE2670094A35C /* AppDelegate.m in Sources */,
B6E4B5B624FDE2670094A35C /* LogWindowController.m in Sources */,
B6E4B5B724FDE2670094A35C /* PreferencesWindowController.m in Sources */,
B6E4B5B824FDE2670094A35C /* SlotViewController.m in Sources */,
B63C1B9525008A2700511A71 /* DownloadWindowController.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -641,11 +889,7 @@
CODE_SIGN_ENTITLEMENTS = Ample/Ample.entitlements;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Ample/Frameworks",
"$(PROJECT_DIR)/embedded",
);
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
INFOPLIST_FILE = Ample/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
@@ -663,11 +907,7 @@
CODE_SIGN_ENTITLEMENTS = Ample/Ample.entitlements;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Ample/Frameworks",
"$(PROJECT_DIR)/embedded",
);
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
INFOPLIST_FILE = Ample/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
@@ -678,6 +918,42 @@
};
name = Release;
};
B6E4B5F824FDE2670094A35C /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = Ample/Ample.entitlements;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
INFOPLIST_FILE = Ample/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/../Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = "com.ksherlock.ample-lite";
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Debug;
};
B6E4B5F924FDE2670094A35C /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = Ample/Ample.entitlements;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
INFOPLIST_FILE = Ample/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/../Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = "com.ksherlock.ample-lite";
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
@@ -699,6 +975,15 @@
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
B6E4B5F724FDE2670094A35C /* Build configuration list for PBXNativeTarget "Ample Lite" */ = {
isa = XCConfigurationList;
buildConfigurations = (
B6E4B5F824FDE2670094A35C /* Debug */,
B6E4B5F924FDE2670094A35C /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = B6BA257324E99BE9005FB8FF /* Project object */;

View File

@@ -4,6 +4,16 @@
<dict>
<key>SchemeUserState</key>
<dict>
<key>Ample Lite.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>1</integer>
</dict>
<key>Ample copy.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>1</integer>
</dict>
<key>Ample.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>

23
Ample/Ample.h Normal file
View File

@@ -0,0 +1,23 @@
//
// Ample.h
// Ample
//
// Created by Kelvin Sherlock on 9/1/2020.
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
//
#ifndef Ample_h
#define Ample_h
#import <Cocoa/Cocoa.h>
NSURL *SupportDirectory(void);
NSString *SupportDirectoryPath(void);
/* NSUserDefaults keys */
extern NSString *kUseCustomMame;
extern NSString *kMamePath;
extern NSString *kAutoCloseLogWindow;
extern NSString *kMameComponentsDate;
#endif /* Ample_h */

41
Ample/Ample.m Normal file
View File

@@ -0,0 +1,41 @@
//
// Ample.m
// Ample
//
// Created by Kelvin Sherlock on 9/1/2020.
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
//
#include "Ample.h"
NSURL *SupportDirectory(void) {
static NSURL *cached = nil;
if (!cached) {
NSFileManager *fm = [NSFileManager defaultManager];
NSError *error = nil;
NSURL *url = [fm URLForDirectory: NSApplicationSupportDirectory inDomain: NSUserDomainMask appropriateForURL: nil create: YES error: &error];
cached = [url URLByAppendingPathComponent: @"Ample"];
[fm createDirectoryAtURL: cached withIntermediateDirectories: YES attributes: nil error: &error];
}
return cached;
}
NSString *SupportDirectoryPath(void) {
static NSString *cached = nil;
if (!cached) {
NSURL *url = SupportDirectory();
cached = [NSString stringWithCString: [url fileSystemRepresentation] encoding: NSUTF8StringEncoding];
}
return cached;
}
NSString *kUseCustomMame = @"UseCustomMame";
NSString *kMamePath = @"MamePath";
NSString *kAutoCloseLogWindow = @"AutoCloseLogWindow";
NSString *kMameComponentsDate = @"MameComponentsDate";

View File

@@ -5,20 +5,21 @@
// Created by Kelvin Sherlock on 8/16/2020.
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
//
#import "Ample.h"
#import "AppDelegate.h"
#import "SlotViewController.h"
#import "MediaViewController.h"
#import "LaunchWindowController.h"
#import "PreferencesWindowController.h"
#import "DownloadWindowController.h"
@interface AppDelegate ()
@property (weak) IBOutlet NSWindow *installWindow;
@end
@implementation AppDelegate {
NSWindowController *_prefs;
NSWindowController *_launcher;
NSWindowController *_downloader;
}
@@ -38,10 +39,87 @@
[[NSUserDefaults standardUserDefaults] registerDefaults: dict];
}
_launcher = [LaunchWindowController new];
if ([self installMameComponents]) {
[self displayLaunchWindow];
}
}
-(void)displayLaunchWindow {
if (!_launcher) {
_launcher = [LaunchWindowController new];
}
[_launcher showWindow: nil];
}
-(BOOL)installMameComponents {
/* install the mame data components. */
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSBundle *bundle = [NSBundle mainBundle];
NSURL *sd = SupportDirectory();
NSURL *ample_url = [sd URLByAppendingPathComponent: @"Ample.plist"];
NSMutableDictionary *d = [NSMutableDictionary dictionaryWithContentsOfURL: ample_url];
NSDate *oldDate = [d objectForKey: kMameComponentsDate];
NSDate *newDate = [defaults objectForKey: kMameComponentsDate];
if (![newDate isKindOfClass: [NSDate class]])
newDate = nil;
if (!newDate) return YES; //????
if (oldDate && [oldDate compare: newDate] >= 0) return YES;
NSString *path = [bundle pathForResource: @"mame-data" ofType: @"tgz"];
if (!path) return YES; // Ample Lite?
NSWindow *win = _installWindow;
[win makeKeyAndOrderFront: nil];
NSTask *task = [NSTask new];
NSArray *argv = @[
@"xfz",
path
];
[task setExecutableURL: [NSURL fileURLWithPath: @"/usr/bin/tar"]];
[task setArguments: argv];
[task setCurrentDirectoryURL: sd];
dispatch_time_t when = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2 * NSEC_PER_SEC));
[task setTerminationHandler: ^(NSTask *task){
dispatch_after(when, dispatch_get_main_queue(), ^{
int st = [task terminationStatus];
if (st) {
NSAlert *alert = [NSAlert new];
[alert setMessageText: @"An error occurred extracting MAME components"];
[alert runModal];
[win close];
return;
}
if (d) {
[d setObject: newDate forKey: kMameComponentsDate];
[d writeToURL: ample_url atomically: YES];
} else {
[@{ kMameComponentsDate: newDate } writeToURL: ample_url atomically: YES];
}
[win close];
[self displayLaunchWindow];
});
}];
[task launch];
return NO;
}
- (void)applicationWillTerminate:(NSNotification *)aNotification {
// Insert code here to tear down your application
@@ -65,4 +143,12 @@
}
- (IBAction)downloadROMS:(id)sender {
if (!_downloader) {
_downloader = [DownloadWindowController new];
}
[_downloader showWindow: sender];
}
@end

View File

@@ -0,0 +1,192 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="15705" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
<dependencies>
<deployment identifier="macosx"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="15705"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<customObject id="-2" userLabel="File's Owner" customClass="DownloadWindowController">
<connections>
<outlet property="tableView" destination="FLX-Wt-y53" id="a4O-pk-EAt"/>
<outlet property="window" destination="F0z-JX-Cv5" id="gIp-Ho-8D9"/>
</connections>
</customObject>
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
<window title="ROMs" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" animationBehavior="default" id="F0z-JX-Cv5">
<windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES"/>
<rect key="contentRect" x="196" y="240" width="400" height="500"/>
<rect key="screenRect" x="0.0" y="0.0" width="2560" height="1417"/>
<value key="minSize" type="size" width="300" height="300"/>
<view key="contentView" id="se5-gp-TjO">
<rect key="frame" x="0.0" y="0.0" width="400" height="500"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="rg5-Qf-4Mw">
<rect key="frame" x="324" y="19" width="56" height="23"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="roundTextured" title="Cancel" bezelStyle="texturedRounded" alignment="center" lineBreakMode="truncatingTail" state="on" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="i6Z-OM-lqE">
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="system"/>
<string key="keyEquivalent">.</string>
<modifierMask key="keyEquivalentModifierMask" command="YES"/>
<connections>
<binding destination="-2" name="enabled" keyPath="self.active" id="mBP-8S-yGB"/>
</connections>
</buttonCell>
<connections>
<action selector="cancelAll:" target="-2" id="ycl-eJ-ByB"/>
</connections>
</button>
<scrollView fixedFrame="YES" autohidesScrollers="YES" horizontalLineScroll="51" horizontalPageScroll="10" verticalLineScroll="51" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="CMD-nT-mEa">
<rect key="frame" x="0.0" y="58" width="402" height="443"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<clipView key="contentView" ambiguous="YES" drawsBackground="NO" id="Igp-aH-flp">
<rect key="frame" x="1" y="1" width="400" height="441"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<tableView verticalHuggingPriority="750" ambiguous="YES" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" selectionHighlightStyle="none" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" multipleSelection="NO" autosaveColumns="NO" rowHeight="49" rowSizeStyle="automatic" viewBased="YES" id="FLX-Wt-y53">
<rect key="frame" x="0.0" y="0.0" width="400" height="441"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="3" height="2"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<tableViewGridLines key="gridStyleMask" dashed="YES"/>
<color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
<tableColumns>
<tableColumn width="397" minWidth="40" maxWidth="1000" id="5jP-bY-fhI">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="VZP-ti-Ti8">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
<prototypeCellViews>
<tableCellView identifier="Cell" focusRingType="none" id="aBv-F5-XWo">
<rect key="frame" x="1" y="1" width="397" height="17"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="pWm-hb-BXB">
<rect key="frame" x="0.0" y="0.0" width="397" height="17"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" lineBreakMode="truncatingTail" sendsActionOnEndEditing="YES" title="Table View Cell" id="p71-gJ-vFV">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
</subviews>
<connections>
<outlet property="textField" destination="pWm-hb-BXB" id="NNG-rj-AAQ"/>
</connections>
</tableCellView>
<tableCellView identifier="DownloadCell" focusRingType="none" id="onK-6l-2iV" customClass="DownloadTableCellView">
<rect key="frame" x="1" y="20" width="397" height="49"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="A44-us-TEl">
<rect key="frame" x="25" y="28" width="371" height="17"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" lineBreakMode="truncatingTail" sendsActionOnEndEditing="YES" title="Table View Cell" id="NSU-6I-nsG">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<progressIndicator wantsLayer="YES" fixedFrame="YES" maxValue="100" displayedWhenStopped="NO" indeterminate="YES" controlSize="small" style="spinning" translatesAutoresizingMaskIntoConstraints="NO" id="jBN-UJ-tWi">
<rect key="frame" x="3" y="29" width="16" height="16"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
</progressIndicator>
<textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="hfu-hP-QAH">
<rect key="frame" x="25" y="3" width="371" height="17"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" lineBreakMode="truncatingTail" sendsActionOnEndEditing="YES" title="Table View Cell" id="1cQ-Zh-q0o">
<font key="font" metaFont="system" size="10"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
</subviews>
<connections>
<outlet property="activity" destination="jBN-UJ-tWi" id="ZwD-yU-Vne"/>
<outlet property="statusTextField" destination="hfu-hP-QAH" id="8Hv-BB-kYA"/>
<outlet property="textField" destination="A44-us-TEl" id="Ta5-nd-ed1"/>
</connections>
</tableCellView>
</prototypeCellViews>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="-2" id="Ghf-k9-bRK"/>
<outlet property="delegate" destination="-2" id="rpR-0W-4Nu"/>
<outlet property="menu" destination="RJM-21-hjO" id="xpL-0n-1jm"/>
</connections>
</tableView>
</subviews>
<nil key="backgroundColor"/>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="pcd-MD-gho">
<rect key="frame" x="1" y="314" width="480" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="jGc-PE-vaF">
<rect key="frame" x="224" y="17" width="15" height="102"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Fhd-vr-Q2G">
<rect key="frame" x="20" y="19" width="124" height="23"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="roundTextured" title="Download Missing" bezelStyle="texturedRounded" alignment="center" lineBreakMode="truncatingTail" state="on" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="AKx-eg-iLS">
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="downloadMissing:" target="-2" id="azE-F0-5wx"/>
<binding destination="-2" name="enabled" keyPath="self.active" id="NOL-Db-hgp">
<dictionary key="options">
<string key="NSValueTransformerName">NSNegateBoolean</string>
</dictionary>
</binding>
</connections>
</button>
</subviews>
</view>
<connections>
<outlet property="delegate" destination="-2" id="0bl-1N-AYu"/>
</connections>
<point key="canvasLocation" x="142" y="179"/>
</window>
<menu id="RJM-21-hjO">
<items>
<menuItem title="Show in Finder" tag="1" id="hDp-fh-9nU">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="showInFinder:" target="-2" id="ltL-yL-7EP"/>
</connections>
</menuItem>
<menuItem title="Download" tag="2" id="ree-Zg-jYB">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="download:" target="-2" id="2ua-nq-Zy1"/>
</connections>
</menuItem>
<menuItem title="Cancel" tag="3" id="7fY-83-Ads">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="cancel:" target="-2" id="cHE-Wq-jwc"/>
</connections>
</menuItem>
</items>
<connections>
<outlet property="delegate" destination="-2" id="fC3-h6-xe2"/>
</connections>
<point key="canvasLocation" x="-348" y="164"/>
</menu>
</objects>
</document>

View File

@@ -21,39 +21,16 @@
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
<window title="Ample" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" animationBehavior="default" id="Vze-YF-m6e">
<windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES"/>
<windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
<rect key="contentRect" x="335" y="390" width="718" height="763"/>
<rect key="contentRect" x="335" y="390" width="718" height="795"/>
<rect key="screenRect" x="0.0" y="0.0" width="2560" height="1417"/>
<view key="contentView" id="Ssv-Jw-EE0">
<rect key="frame" x="0.0" y="0.0" width="718" height="763"/>
<rect key="frame" x="0.0" y="0.0" width="718" height="795"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<customView fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="oVt-eD-aaj">
<rect key="frame" x="0.0" y="563" width="718" height="200"/>
<rect key="frame" x="0.0" y="615" width="718" height="180"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
</customView>
<button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="zVI-uU-muo">
<rect key="frame" x="18" y="102" width="71" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="check" title="Window" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="vx1-I7-8kN">
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<binding destination="-2" name="value" keyPath="self.mameWindow" id="uS7-cg-wqb"/>
</connections>
</button>
<button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ZUp-ni-Rr6">
<rect key="frame" x="18" y="82" width="62" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="check" title="Debug" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="6is-QN-JEc">
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<binding destination="-2" name="value" keyPath="self.mameDebug" id="vkc-sR-KnB"/>
</connections>
</button>
<textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" fixedFrame="YES" textCompletion="NO" translatesAutoresizingMaskIntoConstraints="NO" id="pKK-yY-vnY">
<rect key="frame" x="0.0" y="0.0" width="718" height="52"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
@@ -81,39 +58,6 @@ DQ
<action selector="launchAction:" target="-2" id="a4d-zv-1CU"/>
</connections>
</button>
<button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="rLP-n2-0eY">
<rect key="frame" x="18" y="62" width="91" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="check" title="No Throttle" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="NyE-jT-WqC">
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<binding destination="-2" name="value" keyPath="self.mameNoThrottle" id="tUN-EX-7PF"/>
</connections>
</button>
<button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="D5h-dm-fuZ">
<rect key="frame" x="131" y="102" width="104" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="check" title="Square Pixels" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="yWK-BP-7Z9">
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<binding destination="-2" name="value" keyPath="self.mameSquarePixels" id="BiP-wC-Hpn"/>
</connections>
</button>
<button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="zoQ-mU-ARl">
<rect key="frame" x="261" y="102" width="67" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="check" title="No Blur" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="r3s-5h-Xv5">
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<binding destination="-2" name="value" keyPath="self.mameNoBlur" id="Pvn-zw-OsQ"/>
</connections>
</button>
<button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="nNO-3T-OAy">
<rect key="frame" x="470" y="58" width="109" height="23"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
@@ -128,22 +72,211 @@ DQ
</connections>
</button>
<customView id="P9d-sS-qEb" customClass="FlippedView">
<rect key="frame" x="20" y="155" width="306" height="400"/>
<rect key="frame" x="20" y="92" width="306" height="363"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
</customView>
<tabView initialItem="nr5-4o-DyG" id="l8R-bg-6Zm">
<rect key="frame" x="13" y="453" width="692" height="160"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
<font key="font" metaFont="system"/>
<tabViewItems>
<tabViewItem label="Options" identifier="" id="nr5-4o-DyG">
<view key="view" id="ElY-YI-LLI">
<rect key="frame" x="10" y="33" width="672" height="114"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="zVI-uU-muo">
<rect key="frame" x="15" y="60" width="71" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<buttonCell key="cell" type="check" title="Window" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="vx1-I7-8kN">
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<binding destination="-2" name="value" keyPath="self.mameWindow" id="uS7-cg-wqb"/>
</connections>
</button>
<button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ZUp-ni-Rr6">
<rect key="frame" x="15" y="29" width="62" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<buttonCell key="cell" type="check" title="Debug" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="6is-QN-JEc">
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<binding destination="-2" name="value" keyPath="self.mameDebug" id="vkc-sR-KnB"/>
</connections>
</button>
<button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="D5h-dm-fuZ">
<rect key="frame" x="165" y="60" width="104" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<buttonCell key="cell" type="check" title="Square Pixels" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="yWK-BP-7Z9">
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<binding destination="-2" name="value" keyPath="self.mameSquarePixels" id="BiP-wC-Hpn"/>
</connections>
</button>
<button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="zoQ-mU-ARl">
<rect key="frame" x="315" y="60" width="67" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<buttonCell key="cell" type="check" title="No Blur" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="r3s-5h-Xv5">
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<binding destination="-2" name="value" keyPath="self.mameNoBlur" id="Pvn-zw-OsQ"/>
</connections>
</button>
<popUpButton verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="FE4-gG-fPb">
<rect key="frame" x="62" y="87" width="107" height="25"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<popUpButtonCell key="cell" type="push" title="100%" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" tag="1" imageScaling="proportionallyDown" inset="2" selectedItem="yoI-Ra-evu" id="M40-f0-awc">
<behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="system"/>
<menu key="menu" id="8Tv-0j-JhQ">
<items>
<menuItem title="100%" state="on" tag="1" id="yoI-Ra-evu"/>
<menuItem title="200%" tag="2" id="UqT-yd-8o3"/>
<menuItem title="300%" tag="3" id="awG-S1-uM4"/>
<menuItem title="400%" tag="4" id="qJ5-Ed-W5U"/>
<menuItem title="500%" tag="5" id="Phc-uW-Qog"/>
<menuItem title="No Throttle" tag="-1" id="gAc-ME-eim"/>
</items>
</menu>
</popUpButtonCell>
<connections>
<binding destination="-2" name="selectedTag" keyPath="self.mameSpeed" id="nFG-yA-KC1"/>
</connections>
</popUpButton>
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="PGK-yK-2ZK">
<rect key="frame" x="15" y="93" width="43" height="16"/>
<autoresizingMask key="autoresizingMask"/>
<textFieldCell key="cell" lineBreakMode="clipping" title="Speed" id="D9w-Mz-PXs">
<font key="font" metaFont="system"/>
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
</subviews>
</view>
</tabViewItem>
<tabViewItem label="A/V" identifier="" id="0T5-BN-lxE">
<view key="view" id="knw-WE-UU3">
<rect key="frame" x="10" y="33" width="672" height="114"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="vWt-Dx-OGG">
<rect key="frame" x="15" y="91" width="102" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<buttonCell key="cell" type="check" title="Generate AVI" bezelStyle="regularSquare" imagePosition="left" inset="2" id="hRp-Lh-Ebr">
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
<connections>
<binding destination="-2" name="value" keyPath="self.mameAVI" id="G1O-YP-DXa"/>
</connections>
</buttonCell>
</button>
<button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Ejn-wC-UXH">
<rect key="frame" x="15" y="60" width="110" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<buttonCell key="cell" type="check" title="Generate WAV" bezelStyle="regularSquare" imagePosition="left" inset="2" id="7Aa-N2-MHn">
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<binding destination="-2" name="value" keyPath="self.mameWAV" id="4r0-ZQ-nNC"/>
</connections>
</button>
<textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="5Yf-ZJ-8kx">
<rect key="frame" x="132" y="59" width="523" height="21"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" borderStyle="bezel" placeholderString="/path/to/file.wav" drawsBackground="YES" id="Xqc-zw-28b">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<connections>
<binding destination="-2" name="enabled" keyPath="self.mameWAV" id="lZM-6n-jAS"/>
<binding destination="-2" name="value" keyPath="self.mameWAVPath" id="475-s3-0e4">
<dictionary key="options">
<string key="NSNullPlaceholder">/path/to/file.wav</string>
</dictionary>
</binding>
</connections>
</textField>
<textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ne8-5I-D1H">
<rect key="frame" x="132" y="28" width="523" height="21"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" borderStyle="bezel" placeholderString="/path/to/file.vgm" drawsBackground="YES" id="xGs-Mi-wzj">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
<connections>
<binding destination="-2" name="enabled" keyPath="self.mameVGM" id="TJV-4j-uVi"/>
<binding destination="-2" name="value" keyPath="self.mameVGMPath" id="aK1-2A-QWB">
<dictionary key="options">
<string key="NSNoSelectionPlaceholder">/path/to/file.vgm</string>
</dictionary>
</binding>
</connections>
</textFieldCell>
<connections>
<binding destination="-2" name="enabled" keyPath="self.mameVGM" id="JZX-dA-3Bn"/>
<binding destination="-2" name="value" keyPath="self.mameVGMPath" id="m7G-a0-QDZ">
<dictionary key="options">
<string key="NSNullPlaceholder">/path/to/file.vgm</string>
</dictionary>
</binding>
</connections>
</textField>
<textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Xht-PS-Hw8">
<rect key="frame" x="132" y="90" width="523" height="21"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" borderStyle="bezel" placeholderString="/path/to/file.avi" drawsBackground="YES" id="iY4-FF-x2e">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<connections>
<binding destination="-2" name="enabled" keyPath="self.mameAVI" id="o4R-KR-zVV"/>
<binding destination="-2" name="value" keyPath="self.mameAVIPath" id="dSK-1u-lh6">
<dictionary key="options">
<string key="NSNullPlaceholder">/path/to/file.avi</string>
</dictionary>
</binding>
</connections>
</textField>
<button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="YVz-a3-9Pj">
<rect key="frame" x="15" y="29" width="111" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<buttonCell key="cell" type="check" title="Generate VGM" bezelStyle="regularSquare" imagePosition="left" inset="2" id="F9b-kg-ZMV">
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<binding destination="-2" name="value" keyPath="self.mameVGM" id="Oyp-Pc-Uad"/>
</connections>
</button>
</subviews>
</view>
</tabViewItem>
</tabViewItems>
</tabView>
<customView fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="J9O-xI-P5J" customClass="FlippedView">
<rect key="frame" x="392" y="155" width="306" height="400"/>
<rect key="frame" x="392" y="92" width="306" height="363"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMinY="YES"/>
</customView>
</subviews>
</view>
<point key="canvasLocation" x="769" y="104.5"/>
<point key="canvasLocation" x="769" y="120.5"/>
</window>
<viewController title="Media View" nibName="MediaView" id="t7c-zy-czN" customClass="MediaViewController"/>
<viewController title="Slot View" nibName="SlotView" id="lyS-mc-3Tf" customClass="SlotViewController"/>
<customObject id="RgH-d9-xl8" customClass="MachineViewController"/>
</objects>
<resources>
<image name="NSAppleMenuImage" width="128" height="128"/>
<image name="NSAppleMenuImage" width="11" height="14"/>
</resources>
</document>

View File

@@ -14,7 +14,7 @@
</customObject>
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
<window title="Window" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" animationBehavior="default" id="F0z-JX-Cv5">
<window title="Ample Log" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" animationBehavior="default" id="F0z-JX-Cv5">
<windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES"/>
<windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
<rect key="contentRect" x="196" y="240" width="800" height="270"/>
@@ -36,7 +36,7 @@
<color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
<size key="minSize" width="785" height="270"/>
<size key="maxSize" width="788" height="10000000"/>
<size key="maxSize" width="800" height="10000000"/>
<color key="insertionPointColor" name="textColor" catalog="System" colorSpace="catalog"/>
</textView>
</subviews>

View File

@@ -3,6 +3,7 @@
<dependencies>
<deployment identifier="macosx"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="15705"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<customObject id="-2" userLabel="File's Owner" customClass="NSApplication">
@@ -12,7 +13,11 @@
</customObject>
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
<customObject id="Voe-Tx-rLC" customClass="AppDelegate"/>
<customObject id="Voe-Tx-rLC" customClass="AppDelegate">
<connections>
<outlet property="installWindow" destination="jWX-pY-Zpb" id="xAj-Vj-Vxn"/>
</connections>
</customObject>
<customObject id="YLy-65-1bz" customClass="NSFontManager"/>
<menu title="Main Menu" systemMenu="main" id="AYu-sK-qS6">
<items>
@@ -26,6 +31,12 @@
<action selector="orderFrontStandardAboutPanel:" target="-1" id="Exp-CZ-Vem"/>
</connections>
</menuItem>
<menuItem title="Manage ROMs…" id="St3-qR-2Y8">
<modifierMask key="keyEquivalentModifierMask"/>
<connections>
<action selector="downloadROMS:" target="Voe-Tx-rLC" id="jFm-nv-kRC"/>
</connections>
</menuItem>
<menuItem isSeparatorItem="YES" id="VOq-y0-SEH"/>
<menuItem title="Preferences…" keyEquivalent="," id="BOF-NM-1cW">
<connections>
@@ -680,5 +691,25 @@
</items>
<point key="canvasLocation" x="132" y="154"/>
</menu>
<window title="Window" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" restorable="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" frameAutosaveName="" animationBehavior="default" id="jWX-pY-Zpb">
<rect key="contentRect" x="283" y="305" width="226" height="56"/>
<rect key="screenRect" x="0.0" y="0.0" width="2560" height="1417"/>
<view key="contentView" id="L7W-DF-UXe">
<rect key="frame" x="0.0" y="0.0" width="226" height="56"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="iC1-A6-a6T">
<rect key="frame" x="18" y="20" width="190" height="16"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" lineBreakMode="clipping" title="Installing MAME components…" id="ura-rh-zmZ">
<font key="font" usesAppearanceFont="YES"/>
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
</subviews>
</view>
<point key="canvasLocation" x="13" y="-182"/>
</window>
</objects>
</document>

View File

@@ -14,21 +14,21 @@
</customObject>
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
<scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="20" horizontalPageScroll="10" verticalLineScroll="20" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" id="nVT-kT-bWl">
<rect key="frame" x="0.0" y="0.0" width="306" height="400"/>
<scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="20" horizontalPageScroll="10" verticalLineScroll="20" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" horizontalScrollElasticity="none" id="nVT-kT-bWl">
<rect key="frame" x="0.0" y="0.0" width="306" height="363"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<clipView key="contentView" drawsBackground="NO" copiesOnScroll="NO" id="IBD-wb-pch">
<rect key="frame" x="0.0" y="0.0" width="306" height="400"/>
<clipView key="contentView" autoresizesSubviews="NO" copiesOnScroll="NO" id="IBD-wb-pch">
<rect key="frame" x="0.0" y="0.0" width="306" height="363"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<outlineView focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="none" selectionHighlightStyle="none" columnResizing="NO" multipleSelection="NO" autosaveColumns="NO" rowSizeStyle="automatic" viewBased="YES" outlineTableColumn="pBj-py-R6a" id="sIz-DD-PZQ">
<rect key="frame" x="0.0" y="0.0" width="306" height="400"/>
<outlineView focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="none" selectionHighlightStyle="none" columnResizing="NO" multipleSelection="NO" autosaveColumns="NO" typeSelect="NO" rowSizeStyle="automatic" viewBased="YES" outlineTableColumn="pBj-py-R6a" id="sIz-DD-PZQ">
<rect key="frame" x="0.0" y="0.0" width="306" height="363"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" white="1" alpha="0.0" colorSpace="custom" customColorSpace="calibratedWhite"/>
<color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
<tableColumns>
<tableColumn editable="NO" width="304" minWidth="40" maxWidth="1000" id="pBj-py-R6a">
<tableColumn editable="NO" width="280" minWidth="40" maxWidth="1000" id="pBj-py-R6a">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
@@ -39,14 +39,13 @@
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
<prototypeCellViews>
<tableCellView id="e4I-r0-vWM">
<rect key="frame" x="1" y="1" width="304" height="17"/>
<rect key="frame" x="1" y="1" width="280" height="17"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Mig-Wj-m5e">
<rect key="frame" x="0.0" y="0.0" width="304" height="17"/>
<rect key="frame" x="0.0" y="0.0" width="280" height="17"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" lineBreakMode="truncatingTail" sendsActionOnEndEditing="YES" title="Table View Cell" id="ZcN-bl-2D8">
<font key="font" metaFont="system"/>
@@ -60,11 +59,11 @@
</connections>
</tableCellView>
<tableCellView identifier="CategoryView" focusRingType="none" id="33q-UT-ur5">
<rect key="frame" x="1" y="21" width="304" height="17"/>
<rect key="frame" x="1" y="21" width="280" height="17"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Pep-mX-LHY">
<rect key="frame" x="0.0" y="0.0" width="304" height="17"/>
<rect key="frame" x="0.0" y="0.0" width="280" height="17"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" lineBreakMode="truncatingTail" sendsActionOnEndEditing="YES" title="Table View Cell" id="Rrg-wr-8eL">
<font key="font" metaFont="system"/>
@@ -78,11 +77,11 @@
</connections>
</tableCellView>
<tableCellView identifier="ItemView" id="yGq-lc-RCM" customClass="TablePathView">
<rect key="frame" x="1" y="41" width="304" height="27"/>
<rect key="frame" x="1" y="41" width="280" height="27"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<pathControl focusRingType="none" verticalHuggingPriority="750" fixedFrame="YES" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="f7R-TO-fmF">
<rect key="frame" x="0.0" y="1" width="251" height="22"/>
<rect key="frame" x="41" y="1" width="207" height="22"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<pathCell key="cell" controlSize="small" selectable="YES" editable="YES" focusRingType="none" alignment="left" pathStyle="popUp" id="dcz-8y-tKb">
<font key="font" metaFont="smallSystem"/>
@@ -92,19 +91,24 @@
</connections>
</pathControl>
<button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="zNo-ij-mUl">
<rect key="frame" x="256" y="5" width="23" height="18"/>
<rect key="frame" x="253" y="3" width="23" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="bevel" bezelStyle="rounded" image="NSNavEjectButton.normalSelected" imagePosition="overlaps" alignment="center" controlSize="small" imageScaling="proportionallyDown" inset="2" id="IZA-Tu-olu">
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="smallSystem"/>
</buttonCell>
<connections>
<action selector="deleteAction:" target="-2" id="XAl-eQ-nUj"/>
<action selector="ejectAction:" target="-2" id="XAl-eQ-nUj"/>
</connections>
</button>
<imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" id="6g1-NT-J1w">
<rect key="frame" x="3" y="3" width="33" height="20"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="NSListViewTemplate" id="x7F-qD-5y9"/>
</imageView>
</subviews>
<connections>
<outlet property="deleteButton" destination="zNo-ij-mUl" id="9br-3c-ddI"/>
<outlet property="ejectButton" destination="zNo-ij-mUl" id="uzY-tA-5Wf"/>
<outlet property="pathControl" destination="f7R-TO-fmF" id="oH7-N3-JC7"/>
</connections>
</tableCellView>
@@ -117,20 +121,26 @@
</connections>
</outlineView>
</subviews>
<nil key="backgroundColor"/>
<color key="backgroundColor" name="windowBackgroundColor" catalog="System" colorSpace="catalog"/>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="9Vz-lW-4GG">
<rect key="frame" x="-100" y="-100" width="306" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="f8l-nC-KhG">
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="f8l-nC-KhG" customClass="TransparentScroller">
<rect key="frame" x="224" y="17" width="15" height="102"/>
<autoresizingMask key="autoresizingMask"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="color" keyPath="backgroundColor">
<color key="value" name="windowBackgroundColor" catalog="System" colorSpace="catalog"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</scroller>
<point key="canvasLocation" x="-161" y="55"/>
<point key="canvasLocation" x="-161" y="54.5"/>
</scrollView>
</objects>
<resources>
<image name="NSListViewTemplate" width="14" height="10"/>
<image name="NSNavEjectButton.normalSelected" width="16" height="16"/>
</resources>
</document>

View File

@@ -28,10 +28,10 @@
</customObject>
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
<gridView autoresizesSubviews="NO" xPlacement="leading" yPlacement="bottom" rowAlignment="none" translatesAutoresizingMaskIntoConstraints="NO" id="OM3-7F-wiN">
<rect key="frame" x="0.0" y="0.0" width="306" height="534"/>
<gridView autoresizesSubviews="NO" misplaced="YES" xPlacement="leading" yPlacement="bottom" rowAlignment="none" translatesAutoresizingMaskIntoConstraints="NO" id="OM3-7F-wiN">
<rect key="frame" x="0.0" y="0.0" width="306" height="459"/>
<rows>
<gridRow yPlacement="center" height="30" id="tHD-ui-hIL">
<gridRow yPlacement="center" height="25" id="tHD-ui-hIL">
<connections>
<binding destination="-2" name="hidden" keyPath="machine.ram" id="ze9-jx-lv0">
<dictionary key="options">
@@ -40,7 +40,7 @@
</binding>
</connections>
</gridRow>
<gridRow yPlacement="center" height="30" id="Ccd-U2-Gx5">
<gridRow yPlacement="center" height="25" id="Ccd-U2-Gx5">
<connections>
<binding destination="-2" name="hidden" keyPath="machine.sl0" id="YsR-kI-yrh">
<dictionary key="options">
@@ -49,7 +49,7 @@
</binding>
</connections>
</gridRow>
<gridRow yPlacement="center" height="30" id="JGU-aq-3uw">
<gridRow yPlacement="center" height="25" id="JGU-aq-3uw">
<connections>
<binding destination="-2" name="hidden" keyPath="machine.sl1" id="1io-aZ-v2G">
<dictionary key="options">
@@ -58,7 +58,7 @@
</binding>
</connections>
</gridRow>
<gridRow yPlacement="center" height="30" id="gVW-Ya-phU">
<gridRow yPlacement="center" height="25" id="gVW-Ya-phU">
<connections>
<binding destination="-2" name="hidden" keyPath="machine.sl2" id="AgS-hm-ePr">
<dictionary key="options">
@@ -67,7 +67,7 @@
</binding>
</connections>
</gridRow>
<gridRow yPlacement="center" height="30" id="3fP-qp-zmi">
<gridRow yPlacement="center" height="25" id="3fP-qp-zmi">
<connections>
<binding destination="-2" name="hidden" keyPath="machine.sl3" id="98U-4P-iRh">
<dictionary key="options">
@@ -76,7 +76,7 @@
</binding>
</connections>
</gridRow>
<gridRow yPlacement="center" height="30" id="86u-5p-UT6">
<gridRow yPlacement="center" height="25" id="86u-5p-UT6">
<connections>
<binding destination="-2" name="hidden" keyPath="machine.sl4" id="hsy-pm-Qjk">
<dictionary key="options">
@@ -85,7 +85,7 @@
</binding>
</connections>
</gridRow>
<gridRow yPlacement="center" height="30" id="Wdg-xb-xQx">
<gridRow yPlacement="center" height="25" id="Wdg-xb-xQx">
<connections>
<binding destination="-2" name="hidden" keyPath="machine.sl5" id="0QC-RB-278">
<dictionary key="options">
@@ -94,7 +94,7 @@
</binding>
</connections>
</gridRow>
<gridRow yPlacement="center" height="30" id="ein-Fe-vBw">
<gridRow yPlacement="center" height="25" id="ein-Fe-vBw">
<connections>
<binding destination="-2" name="hidden" keyPath="machine.sl6" id="731-3P-DUy">
<dictionary key="options">
@@ -103,7 +103,7 @@
</binding>
</connections>
</gridRow>
<gridRow yPlacement="center" height="30" id="qjB-2w-AWE">
<gridRow yPlacement="center" height="25" id="qjB-2w-AWE">
<connections>
<binding destination="-2" name="hidden" keyPath="machine.sl7" id="sew-Ds-4I9">
<dictionary key="options">
@@ -112,7 +112,7 @@
</binding>
</connections>
</gridRow>
<gridRow yPlacement="center" height="30" id="EEX-dh-jwn">
<gridRow yPlacement="center" height="25" id="EEX-dh-jwn">
<connections>
<binding destination="-2" name="hidden" keyPath="machine.exp" id="EOZ-lS-QHF">
<dictionary key="options">
@@ -121,7 +121,7 @@
</binding>
</connections>
</gridRow>
<gridRow yPlacement="center" height="30" id="OaZ-ZQ-gKK">
<gridRow yPlacement="center" height="25" id="OaZ-ZQ-gKK">
<connections>
<binding destination="-2" name="hidden" keyPath="machine.aux" id="OlF-v7-JZx">
<dictionary key="options">
@@ -130,7 +130,7 @@
</binding>
</connections>
</gridRow>
<gridRow yPlacement="center" height="30" id="wQi-Oz-7Ye">
<gridRow yPlacement="center" height="25" id="wQi-Oz-7Ye">
<connections>
<binding destination="-2" name="hidden" keyPath="machine.rs232" id="AeP-bn-blv">
<dictionary key="options">
@@ -139,7 +139,7 @@
</binding>
</connections>
</gridRow>
<gridRow yPlacement="center" height="30" id="gr2-eY-995">
<gridRow yPlacement="center" height="25" id="gr2-eY-995">
<connections>
<binding destination="-2" name="hidden" keyPath="machine.gameio" id="x3I-Bd-9di">
<dictionary key="options">
@@ -148,7 +148,7 @@
</binding>
</connections>
</gridRow>
<gridRow yPlacement="center" height="30" id="1xN-lm-s4l">
<gridRow yPlacement="center" height="25" id="1xN-lm-s4l">
<connections>
<binding destination="-2" name="hidden" keyPath="machine.printer" id="T9a-lH-z5K">
<dictionary key="options">
@@ -157,7 +157,7 @@
</binding>
</connections>
</gridRow>
<gridRow yPlacement="center" height="30" id="M2s-qn-SIT">
<gridRow yPlacement="center" height="25" id="M2s-qn-SIT">
<connections>
<binding destination="-2" name="hidden" keyPath="machine.modem" id="PSe-R3-S3e">
<dictionary key="options">
@@ -174,7 +174,7 @@
<gridCells>
<gridCell row="tHD-ui-hIL" column="zpB-Rf-dWg" id="deJ-sv-Hb7">
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="nHa-QG-HjJ">
<rect key="frame" x="-2" y="511" width="104" height="16"/>
<rect key="frame" x="-2" y="439" width="104" height="16"/>
<textFieldCell key="cell" lineBreakMode="clipping" title="RAM:" id="CvY-8m-Ni9">
<font key="font" usesAppearanceFont="YES"/>
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
@@ -184,7 +184,7 @@
</gridCell>
<gridCell row="tHD-ui-hIL" column="6Vn-yh-FoQ" id="dak-Ha-01u">
<popUpButton key="contentView" verticalHuggingPriority="750" tag="16" translatesAutoresizingMaskIntoConstraints="NO" id="Yks-M5-vi0">
<rect key="frame" x="104" y="506" width="205" height="25"/>
<rect key="frame" x="104" y="433" width="205" height="25"/>
<popUpButtonCell key="cell" type="push" title="Item 1" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="92u-m2-3yN" id="XFo-KF-ueS">
<behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="menu"/>
@@ -206,7 +206,7 @@
</gridCell>
<gridCell row="Ccd-U2-Gx5" column="zpB-Rf-dWg" xPlacement="fill" yPlacement="center" id="QI6-Cz-URX">
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="v8c-Rp-Mnt">
<rect key="frame" x="-2" y="475" width="104" height="16"/>
<rect key="frame" x="-2" y="408" width="104" height="16"/>
<textFieldCell key="cell" lineBreakMode="clipping" title="Slot 0:" id="EF7-NX-RMW">
<font key="font" metaFont="system"/>
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
@@ -216,7 +216,7 @@
</gridCell>
<gridCell row="Ccd-U2-Gx5" column="6Vn-yh-FoQ" xPlacement="fill" yPlacement="center" id="0KQ-Qt-8KP">
<popUpButton key="contentView" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Jw1-t7-YyU">
<rect key="frame" x="104" y="470" width="205" height="25"/>
<rect key="frame" x="104" y="402" width="205" height="25"/>
<popUpButtonCell key="cell" type="push" title="Item 1" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="8Iv-mH-mEI" id="47g-IO-4Xt">
<behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="menu"/>
@@ -236,7 +236,7 @@
</gridCell>
<gridCell row="JGU-aq-3uw" column="zpB-Rf-dWg" xPlacement="fill" yPlacement="center" id="Y1R-Ob-g2b">
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="0gP-wH-DVr">
<rect key="frame" x="-2" y="439" width="104" height="16"/>
<rect key="frame" x="-2" y="377" width="104" height="16"/>
<textFieldCell key="cell" lineBreakMode="clipping" title="Slot 1:" id="bfg-tf-E34">
<font key="font" usesAppearanceFont="YES"/>
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
@@ -246,7 +246,7 @@
</gridCell>
<gridCell row="JGU-aq-3uw" column="6Vn-yh-FoQ" xPlacement="fill" yPlacement="center" id="v8q-Rj-E4q">
<popUpButton key="contentView" verticalHuggingPriority="750" tag="1" translatesAutoresizingMaskIntoConstraints="NO" id="bta-RS-JT4">
<rect key="frame" x="104" y="434" width="205" height="25"/>
<rect key="frame" x="104" y="371" width="205" height="25"/>
<popUpButtonCell key="cell" type="push" title="Item 1" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="dXO-at-nGw" id="kNn-6b-ysf">
<behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="menu"/>
@@ -266,7 +266,7 @@
</gridCell>
<gridCell row="gVW-Ya-phU" column="zpB-Rf-dWg" xPlacement="fill" yPlacement="center" id="tpv-Yc-qii">
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="EHZ-ol-QVz">
<rect key="frame" x="-2" y="403" width="104" height="16"/>
<rect key="frame" x="-2" y="346" width="104" height="16"/>
<textFieldCell key="cell" lineBreakMode="clipping" title="Slot 2:" id="FlL-pN-rn7">
<font key="font" usesAppearanceFont="YES"/>
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
@@ -276,7 +276,7 @@
</gridCell>
<gridCell row="gVW-Ya-phU" column="6Vn-yh-FoQ" xPlacement="fill" yPlacement="center" id="OzN-rM-Pgi">
<popUpButton key="contentView" verticalHuggingPriority="750" tag="2" translatesAutoresizingMaskIntoConstraints="NO" id="cDU-b1-x5a">
<rect key="frame" x="104" y="398" width="205" height="25"/>
<rect key="frame" x="104" y="340" width="205" height="25"/>
<popUpButtonCell key="cell" type="push" title="Item 1" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="vCY-qF-aB3" id="jvL-SH-nvG">
<behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="menu"/>
@@ -296,7 +296,7 @@
</gridCell>
<gridCell row="3fP-qp-zmi" column="zpB-Rf-dWg" xPlacement="fill" yPlacement="center" id="LbW-TT-AQ7">
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="zGs-8d-L0S">
<rect key="frame" x="-2" y="367" width="104" height="16"/>
<rect key="frame" x="-2" y="315" width="104" height="16"/>
<textFieldCell key="cell" lineBreakMode="clipping" title="Slot 3:" id="KZK-h8-8cw">
<font key="font" usesAppearanceFont="YES"/>
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
@@ -306,7 +306,7 @@
</gridCell>
<gridCell row="3fP-qp-zmi" column="6Vn-yh-FoQ" xPlacement="fill" yPlacement="center" id="h8H-TB-p2z">
<popUpButton key="contentView" verticalHuggingPriority="750" tag="3" translatesAutoresizingMaskIntoConstraints="NO" id="aSh-cs-0Nn">
<rect key="frame" x="104" y="362" width="205" height="25"/>
<rect key="frame" x="104" y="309" width="205" height="25"/>
<popUpButtonCell key="cell" type="push" title="Item 1" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="2yS-4z-8OR" id="HaE-TD-5Wx">
<behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="menu"/>
@@ -326,7 +326,7 @@
</gridCell>
<gridCell row="86u-5p-UT6" column="zpB-Rf-dWg" xPlacement="fill" yPlacement="center" id="hJR-nJ-yYi">
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="zsX-jd-6ba">
<rect key="frame" x="-2" y="331" width="104" height="16"/>
<rect key="frame" x="-2" y="284" width="104" height="16"/>
<textFieldCell key="cell" lineBreakMode="clipping" title="Slot 4:" id="WXv-RF-e7f">
<font key="font" usesAppearanceFont="YES"/>
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
@@ -336,7 +336,7 @@
</gridCell>
<gridCell row="86u-5p-UT6" column="6Vn-yh-FoQ" xPlacement="fill" yPlacement="center" id="dHu-cL-FyO">
<popUpButton key="contentView" verticalHuggingPriority="750" tag="4" translatesAutoresizingMaskIntoConstraints="NO" id="kU5-cR-hPZ">
<rect key="frame" x="104" y="326" width="205" height="25"/>
<rect key="frame" x="104" y="278" width="205" height="25"/>
<popUpButtonCell key="cell" type="push" title="Item 1" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="NaS-CV-XQm" id="rOP-eY-UKe">
<behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="menu"/>
@@ -356,7 +356,7 @@
</gridCell>
<gridCell row="Wdg-xb-xQx" column="zpB-Rf-dWg" xPlacement="fill" yPlacement="center" id="dsM-t5-8ng">
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ANg-c1-hGf">
<rect key="frame" x="-2" y="295" width="104" height="16"/>
<rect key="frame" x="-2" y="253" width="104" height="16"/>
<textFieldCell key="cell" lineBreakMode="clipping" title="Slot 5:" id="EhN-EV-65V">
<font key="font" usesAppearanceFont="YES"/>
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
@@ -366,7 +366,7 @@
</gridCell>
<gridCell row="Wdg-xb-xQx" column="6Vn-yh-FoQ" xPlacement="fill" yPlacement="center" id="ffm-pA-jjo">
<popUpButton key="contentView" verticalHuggingPriority="750" tag="5" translatesAutoresizingMaskIntoConstraints="NO" id="8z4-8f-kLU">
<rect key="frame" x="104" y="290" width="205" height="25"/>
<rect key="frame" x="104" y="247" width="205" height="25"/>
<popUpButtonCell key="cell" type="push" title="Item 1" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="gH7-4J-xsg" id="cmc-Gf-Slp">
<behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="menu"/>
@@ -386,7 +386,7 @@
</gridCell>
<gridCell row="ein-Fe-vBw" column="zpB-Rf-dWg" xPlacement="fill" yPlacement="center" id="PSw-Jx-eS2">
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Cr1-RK-Z7V">
<rect key="frame" x="-2" y="259" width="104" height="16"/>
<rect key="frame" x="-2" y="222" width="104" height="16"/>
<textFieldCell key="cell" lineBreakMode="clipping" title="Slot 6:" id="uzy-th-5Yc">
<font key="font" usesAppearanceFont="YES"/>
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
@@ -396,7 +396,7 @@
</gridCell>
<gridCell row="ein-Fe-vBw" column="6Vn-yh-FoQ" xPlacement="fill" yPlacement="center" id="FsV-vO-KAs">
<popUpButton key="contentView" verticalHuggingPriority="750" tag="6" translatesAutoresizingMaskIntoConstraints="NO" id="GLb-F4-PWe">
<rect key="frame" x="104" y="254" width="205" height="25"/>
<rect key="frame" x="104" y="216" width="205" height="25"/>
<popUpButtonCell key="cell" type="push" title="Item 1" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="VaX-M9-Op0" id="CjU-rC-HUT">
<behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="menu"/>
@@ -416,7 +416,7 @@
</gridCell>
<gridCell row="qjB-2w-AWE" column="zpB-Rf-dWg" xPlacement="fill" yPlacement="center" id="1WE-Mm-0O3">
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="3Ia-XB-C6D">
<rect key="frame" x="-2" y="223" width="104" height="16"/>
<rect key="frame" x="-2" y="191" width="104" height="16"/>
<textFieldCell key="cell" lineBreakMode="clipping" title="Slot 7:" id="32J-6e-nRV">
<font key="font" usesAppearanceFont="YES"/>
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
@@ -426,7 +426,7 @@
</gridCell>
<gridCell row="qjB-2w-AWE" column="6Vn-yh-FoQ" xPlacement="fill" yPlacement="center" id="Yvr-uR-Hr5">
<popUpButton key="contentView" verticalHuggingPriority="750" tag="7" translatesAutoresizingMaskIntoConstraints="NO" id="IV2-3M-qfw">
<rect key="frame" x="104" y="218" width="205" height="25"/>
<rect key="frame" x="104" y="185" width="205" height="25"/>
<popUpButtonCell key="cell" type="push" title="Item 1" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="8nb-Bq-4R4" id="nKb-Ar-bCb">
<behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="menu"/>
@@ -446,7 +446,7 @@
</gridCell>
<gridCell row="EEX-dh-jwn" column="zpB-Rf-dWg" xPlacement="fill" yPlacement="center" id="iRl-IX-FSD">
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Avf-lX-f2Q">
<rect key="frame" x="-2" y="187" width="104" height="16"/>
<rect key="frame" x="-2" y="160" width="104" height="16"/>
<textFieldCell key="cell" lineBreakMode="clipping" title="Expansion:" id="PEU-OV-910">
<font key="font" usesAppearanceFont="YES"/>
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
@@ -456,7 +456,7 @@
</gridCell>
<gridCell row="EEX-dh-jwn" column="6Vn-yh-FoQ" xPlacement="fill" yPlacement="center" id="Ehv-aA-Llc">
<popUpButton key="contentView" verticalHuggingPriority="750" tag="8" translatesAutoresizingMaskIntoConstraints="NO" id="San-wP-1ez">
<rect key="frame" x="104" y="182" width="205" height="25"/>
<rect key="frame" x="104" y="154" width="205" height="25"/>
<popUpButtonCell key="cell" type="push" title="Item 1" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="jtv-Qx-oVD" id="42u-b4-3kx">
<behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="menu"/>
@@ -476,7 +476,7 @@
</gridCell>
<gridCell row="OaZ-ZQ-gKK" column="zpB-Rf-dWg" xPlacement="fill" yPlacement="center" id="wRB-Wh-7kG">
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="EMz-7i-H38">
<rect key="frame" x="-2" y="151" width="104" height="16"/>
<rect key="frame" x="-2" y="129" width="104" height="16"/>
<textFieldCell key="cell" lineBreakMode="clipping" title="Auxiliary:" id="SoV-Qy-h2g">
<font key="font" usesAppearanceFont="YES"/>
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
@@ -486,7 +486,7 @@
</gridCell>
<gridCell row="OaZ-ZQ-gKK" column="6Vn-yh-FoQ" xPlacement="fill" yPlacement="center" id="bx6-Rc-x2V">
<popUpButton key="contentView" verticalHuggingPriority="750" tag="9" translatesAutoresizingMaskIntoConstraints="NO" id="3kq-qn-7YR">
<rect key="frame" x="104" y="146" width="205" height="25"/>
<rect key="frame" x="104" y="123" width="205" height="25"/>
<popUpButtonCell key="cell" type="push" title="Item 1" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="vWX-Cb-ldP" id="NqP-Uq-Knv">
<behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="menu"/>
@@ -506,7 +506,7 @@
</gridCell>
<gridCell row="wQi-Oz-7Ye" column="zpB-Rf-dWg" xPlacement="fill" yPlacement="center" id="KoQ-xV-fQu">
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="JAG-sJ-u2B">
<rect key="frame" x="-2" y="115" width="104" height="16"/>
<rect key="frame" x="-2" y="98" width="104" height="16"/>
<textFieldCell key="cell" lineBreakMode="clipping" title="RS 232:" id="iG2-rY-VDv">
<font key="font" usesAppearanceFont="YES"/>
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
@@ -516,7 +516,7 @@
</gridCell>
<gridCell row="wQi-Oz-7Ye" column="6Vn-yh-FoQ" xPlacement="fill" yPlacement="center" id="zWk-jd-i0V">
<popUpButton key="contentView" verticalHuggingPriority="750" tag="10" translatesAutoresizingMaskIntoConstraints="NO" id="6ln-U2-0Pi">
<rect key="frame" x="104" y="110" width="205" height="25"/>
<rect key="frame" x="104" y="92" width="205" height="25"/>
<popUpButtonCell key="cell" type="push" title="Item 1" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="uu3-rr-iD8" id="daT-eX-4Vu">
<behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="menu"/>
@@ -536,7 +536,7 @@
</gridCell>
<gridCell row="gr2-eY-995" column="zpB-Rf-dWg" id="xIE-bJ-mzr">
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Svb-pu-WPf">
<rect key="frame" x="-2" y="79" width="104" height="16"/>
<rect key="frame" x="-2" y="67" width="104" height="16"/>
<textFieldCell key="cell" lineBreakMode="clipping" title="Game I/O:" id="2Gc-mV-zCZ">
<font key="font" usesAppearanceFont="YES"/>
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
@@ -546,7 +546,7 @@
</gridCell>
<gridCell row="gr2-eY-995" column="6Vn-yh-FoQ" id="nhy-Gp-GLL">
<popUpButton key="contentView" verticalHuggingPriority="750" tag="11" translatesAutoresizingMaskIntoConstraints="NO" id="K8G-bZ-6mZ">
<rect key="frame" x="104" y="74" width="205" height="25"/>
<rect key="frame" x="104" y="61" width="205" height="25"/>
<popUpButtonCell key="cell" type="push" title="Item 1" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="GOm-Tf-6qc" id="Mig-Nu-gZB">
<behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="menu"/>
@@ -566,7 +566,7 @@
</gridCell>
<gridCell row="1xN-lm-s4l" column="zpB-Rf-dWg" id="vPV-KN-NNp">
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="31K-iE-RCe">
<rect key="frame" x="-2" y="43" width="104" height="16"/>
<rect key="frame" x="-2" y="36" width="104" height="16"/>
<textFieldCell key="cell" lineBreakMode="clipping" title="Printer:" id="QZI-H7-i8m">
<font key="font" usesAppearanceFont="YES"/>
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
@@ -576,7 +576,7 @@
</gridCell>
<gridCell row="1xN-lm-s4l" column="6Vn-yh-FoQ" id="KRc-Z8-drK">
<popUpButton key="contentView" verticalHuggingPriority="750" tag="12" translatesAutoresizingMaskIntoConstraints="NO" id="sTp-en-8Wd">
<rect key="frame" x="104" y="38" width="205" height="25"/>
<rect key="frame" x="104" y="30" width="205" height="25"/>
<popUpButtonCell key="cell" type="push" title="Item 1" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="TU9-ed-ofw" id="1OL-aw-xNL">
<behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="menu"/>
@@ -596,7 +596,7 @@
</gridCell>
<gridCell row="M2s-qn-SIT" column="zpB-Rf-dWg" id="8R2-aA-mLq">
<textField key="contentView" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="MH0-Nk-5Py">
<rect key="frame" x="-2" y="7" width="104" height="16"/>
<rect key="frame" x="-2" y="5" width="104" height="16"/>
<textFieldCell key="cell" lineBreakMode="clipping" title="Modem:" id="HQq-VN-Ju9">
<font key="font" usesAppearanceFont="YES"/>
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
@@ -606,7 +606,7 @@
</gridCell>
<gridCell row="M2s-qn-SIT" column="6Vn-yh-FoQ" id="idI-pW-e7v">
<popUpButton key="contentView" verticalHuggingPriority="750" tag="13" translatesAutoresizingMaskIntoConstraints="NO" id="KHf-kC-BpZ">
<rect key="frame" x="104" y="2" width="205" height="25"/>
<rect key="frame" x="104" y="-1" width="205" height="25"/>
<popUpButtonCell key="cell" type="push" title="Item 1" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="CxO-3g-va1" id="jDr-6p-C7y">
<behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="menu"/>

View File

@@ -2,6 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>MameComponentsDate</key>
<date>2020-09-02T16:00:00Z</date>
<key>UseCustomMame</key>
<false/>
<key>AutoCloseLogWindow</key>

View File

@@ -0,0 +1,39 @@
//
// DownloadWindowController.h
// Ample
//
// Created by Kelvin Sherlock on 9/2/2020.
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
//
#import <Cocoa/Cocoa.h>
NS_ASSUME_NONNULL_BEGIN
@interface DownloadWindowController : NSWindowController
@property NSString *currentROM;
@property NSInteger currentCount;
@property NSInteger totalCount;
@property NSInteger errorCount;
@property BOOL active;
@end
@interface DownloadWindowController (URL) <NSURLSessionTaskDelegate, NSURLSessionDownloadDelegate>
@end
@interface DownloadWindowController (Table) <NSTableViewDelegate, NSTableViewDataSource>
@end
@interface DownloadWindowController (Menu) <NSMenuDelegate, NSMenuItemValidation>
@end
@interface DownloadTableCellView : NSTableCellView
@property (weak) IBOutlet NSTextField *statusTextField;
@property (weak) IBOutlet NSProgressIndicator *activity;
@end
NS_ASSUME_NONNULL_END

View File

@@ -0,0 +1,434 @@
//
// DownloadWindowController.m
// Ample
//
// Created by Kelvin Sherlock on 9/2/2020.
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
//
#import "Ample.h"
#import "DownloadWindowController.h"
enum {
ItemMissing = 0,
ItemFound,
ItemDownloading,
ItemDownloaded,
ItemCanceled,
ItemError
};
@interface DownloadItem : NSObject
@property NSString *name;
@property NSError *error;
@property NSString *pathName;
@property NSURLSessionDownloadTask *task;
@property NSURL *localURL;
@property NSUInteger status;
@property NSUInteger index;
-(void)cancelDownload;
-(void)beginDownloadWithTask:(NSURLSessionDownloadTask *)task;
-(void)completeWithError: (NSError *)error;
-(NSString *)statusDescription;
@end
@interface DownloadWindowController ()
@property (weak) IBOutlet NSTableView *tableView;
@end
@implementation DownloadWindowController {
NSArray *_items;
NSURL *_romFolder;
NSURL *_sourceURL;
NSURLSession *_session;
NSMutableDictionary *_taskIndex;
}
-(NSString *)windowNibName {
return @"DownloadWindow";
}
- (void)windowDidLoad {
[super windowDidLoad];
// Implement this method to handle any initialization after your window controller's window has been loaded from its nib file.
NSError *error = nil;
NSBundle *bundle = [NSBundle mainBundle];
NSFileManager *fm = [NSFileManager defaultManager];
NSURL *url = [bundle URLForResource: @"roms" withExtension: @"plist"];
NSDictionary *d = [NSDictionary dictionaryWithContentsOfURL: url];
NSURL *sd = SupportDirectory();
NSString *romdir = [SupportDirectoryPath() stringByAppendingPathComponent: @"roms"];
_romFolder = [sd URLByAppendingPathComponent: @"roms"];
[fm createDirectoryAtURL: _romFolder withIntermediateDirectories: YES attributes: nil error: &error];
NSArray *roms = [d objectForKey: @"roms"];
[self setCurrentROM: @""];
[self setCurrentCount: 0];
[self setTotalCount: [roms count]];
[self setErrorCount: 0];
_sourceURL = [NSURL URLWithString: @"https://archive.org/download/mame0224_rom"]; // hardcoded....
NSMutableArray *tmp = [NSMutableArray arrayWithCapacity: [roms count]];
unsigned ix = 0;
for (NSString *name in roms) {
DownloadItem *item = [DownloadItem new];
[item setName: name];
[item setIndex: ix++];
[tmp addObject: item];
// check if the file exists.
NSString *s = [romdir stringByAppendingPathComponent: name];
NSString *path;
path = [s stringByAppendingPathExtension: @"zip"];
if ([fm fileExistsAtPath: path]) {
[item setStatus: ItemFound];
[item setLocalURL: [NSURL fileURLWithPath: path]];
continue;
}
path = [s stringByAppendingPathExtension: @"7z"];
if ([fm fileExistsAtPath: path]) {
[item setStatus: ItemFound];
[item setLocalURL: [NSURL fileURLWithPath: path]];
continue;
}
}
_items = tmp;
NSURLSessionConfiguration *config = [NSURLSessionConfiguration defaultSessionConfiguration];
_session = [NSURLSession sessionWithConfiguration: config delegate: self delegateQueue: nil];
_taskIndex = [NSMutableDictionary dictionaryWithCapacity: [_items count]];
//[self download];
}
-(void)downloadItem: (DownloadItem *)item {
if (!_session) {
NSURLSessionConfiguration *config = [NSURLSessionConfiguration defaultSessionConfiguration];
_session = [NSURLSession sessionWithConfiguration: config delegate: self delegateQueue: nil];
}
NSURLSessionDownloadTask *task;
NSString *s = [item name];
NSString *path = [s stringByAppendingString: @".7z"]; // hardcoded.
NSURL *url = [_sourceURL URLByAppendingPathComponent: path];
task = [_session downloadTaskWithURL: url];
[item beginDownloadWithTask: task];
[_taskIndex setObject: item forKey: task];
[task resume];
}
-(void)download {
// run in thread?
//unsigned count = 0;
for (DownloadItem *item in _items) {
NSURLSessionDownloadTask *task;
NSString *s = [item name];
NSString *path = [s stringByAppendingString: @".7z"]; // hardcoded.
NSURL *url = [_sourceURL URLByAppendingPathComponent: path];
task = [_session downloadTaskWithURL: url];
[_taskIndex setObject: item forKey: task];
[item setTask: task];
[task resume];
//++count;
//if (count >= 2) break;
}
[self setActive: YES];
}
-(DownloadItem *)clickedItem {
NSInteger row = [_tableView clickedRow];
if (row < 0 || row >= [_items count]) return nil;
return [_items objectAtIndex: row];
}
-(void)redrawRow: (NSUInteger)row {
//NSRect r = [_tableView rectOfRow: row];
//[_tableView setNeedsDisplayInRect: r];
NSIndexSet *rIx = [NSIndexSet indexSetWithIndex: row];
NSIndexSet *cIx = [NSIndexSet indexSetWithIndex: 0];
[_tableView reloadDataForRowIndexes: rIx columnIndexes: cIx];
}
#pragma mark - IBActions
-(IBAction)cancelAll:(id)sender {
for (DownloadItem *item in _items) {
[item cancelDownload];
}
[_session invalidateAndCancel];
_session = nil;
[_taskIndex removeAllObjects];
[self setCurrentCount: 0];
[self setActive: NO];
[_tableView reloadData];
//[_tableView setNeedsDisplay: YES]; // doesn't work...
}
- (IBAction)downloadMissing:(id)sender {
BOOL delta = NO;
for (DownloadItem *item in _items) {
NSURL *url = [item localURL];
id task = [item task];
if (!url && !task) {
[self downloadItem: item];
delta = YES;
}
}
if (delta) {
[self setActive: YES];
[_tableView reloadData];
}
}
- (IBAction)showInFinder:(id)sender {
DownloadItem *item = [self clickedItem];
if (!item) return;
NSURL *url = [item localURL];
if (!url) return;
NSWorkspace *ws = [NSWorkspace sharedWorkspace];
[ws activateFileViewerSelectingURLs: @[url]];
}
- (IBAction)download:(id)sender {
DownloadItem *item = [self clickedItem];
if (!item) return;
[self downloadItem: item];
[self setActive: YES];
[self redrawRow: [item index]];
}
- (IBAction)cancel:(id)sender {
DownloadItem *item = [self clickedItem];
if (!item) return;
[item cancelDownload];
[self redrawRow: [item index]];
}
#pragma mark - NSURLSessionDelegate
-(void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didCompleteWithError:(NSError *)error {
// not sure if strictly necessary but this happens in a background thread
// and these are used in KVO binding. Also, main thread only
// means no race conditions.
dispatch_async(dispatch_get_main_queue(), ^(void){
if (error)
[self setErrorCount: self->_errorCount + 1];
else
[self setCurrentCount: self->_currentCount + 1];
NSMutableDictionary *taskIndex = self->_taskIndex;
DownloadItem *item = [taskIndex objectForKey: task];
[taskIndex removeObjectForKey: task];
if ([taskIndex count] == 0) {
[self setActive: NO];
}
if (item) {
[item completeWithError: error];
NSUInteger row = [item index];
[self redrawRow: row];
}
});
}
- (void)URLSession:(NSURLSession *)session downloadTask:(nonnull NSURLSessionDownloadTask *)task didFinishDownloadingToURL:(nonnull NSURL *)location {
// need to move to the destination directory...
// file deleted after this function returns, so can't move asynchronously.
NSFileManager *fm = [NSFileManager defaultManager];
NSURL *src = [[task originalRequest] URL];
NSURL *dest = [_romFolder URLByAppendingPathComponent: [src lastPathComponent]];
NSError *error = nil;
[fm moveItemAtURL: location toURL: dest error: &error];
DownloadItem *item = [_taskIndex objectForKey: task];
[item setLocalURL: dest];
/*
dispatch_async(dispatch_get_main_queue(), ^(void){
[item setLocalURL: dest];
}
*/
NSLog(@"%@", src);
}
@end
@implementation DownloadWindowController (Table)
- (NSInteger)numberOfRowsInTableView:(NSTableView *)tableView {
return [_items count];
}
- (id)tableView:(NSTableView *)tableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
return [_items objectAtIndex: row];
}
- (NSView *)tableView:(NSTableView *)tableView viewForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
DownloadItem *item = [_items objectAtIndex: row];
DownloadTableCellView *v = [tableView makeViewWithIdentifier: @"DownloadCell" owner: self];
[[v textField] setObjectValue: [item name]];
NSTextField *tf = [v statusTextField];
[tf setObjectValue: [item statusDescription]];
if ([item error]) {
[tf setTextColor: [NSColor redColor]];
} else {
[tf setTextColor: [NSColor blackColor]];
//if ([tableView isRowSelected: row]){
//[tf setTextColor: [NSColor whiteColor]];
//}
}
if ([item task]) {
[[v activity] startAnimation: nil];
} else {
[[v activity] stopAnimation: nil];
}
return v;
}
@end
@implementation DownloadTableCellView
@end
@implementation DownloadItem
-(void)beginDownloadWithTask:(NSURLSessionDownloadTask *)task {
_task = task;
_error = nil;
if (task) _status = ItemDownloading;
}
-(void)cancelDownload {
if (!_task) return;
[_task cancel];
_task = nil;
_status = ItemCanceled;
}
-(void)completeWithError: (NSError *)error {
_task = nil;
if (error) {
_error = error;
_status = ItemError;
} else {
// what if there was an error moving it?
_error = nil;
_status = ItemDownloaded;
}
}
-(NSString *)statusDescription {
static NSString *Names[] = {
@"ROM missing",
@"ROM found",
@"Downloading…",
@"Downloaded",
@"Canceled",
@"Error"
};
if (_error) return [_error description];
if (_status > sizeof(Names)/sizeof(Names[0])) return @"Unknown";
return Names[_status];
}
@end
@implementation DownloadWindowController (Menu)
enum {
kOpenInFinder = 1,
kDownload,
kCancel,
};
- (BOOL)validateMenuItem:(NSMenuItem *)menuItem {
NSInteger row = [_tableView clickedRow];
if (row < 0) return NO;
DownloadItem *item = [_items objectAtIndex: row];
NSUInteger status = [item status];
switch([menuItem tag]) {
case kOpenInFinder:
return status == ItemFound || status == ItemDownloaded;
break;
case kDownload:
return YES;
//return status == ItemMissing || status == ItemError || status == ItemCanceled;
break;
case kCancel:
return status == ItemDownloading;
break;
}
return NO;
}
@end

View File

@@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>release 3</string>
<string>release 5</string>
<key>CFBundleVersion</key>
<string>3</string>
<string>5</string>
<key>LSMinimumSystemVersion</key>
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
<key>NSHumanReadableCopyright</key>

View File

@@ -6,6 +6,7 @@
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
//
#import "Ample.h"
#import "LaunchWindowController.h"
#import "MediaViewController.h"
#import "SlotViewController.h"
@@ -36,7 +37,15 @@ static NSString *kContextMachine = @"kContextMachine";
@property BOOL mameSquarePixels;
@property BOOL mameNoBlur;
@property BOOL mameAVI;
@property BOOL mameWAV;
@property BOOL mameVGM;
@property NSString *mameAVIPath;
@property NSString *mameWAVPath;
@property NSString *mameVGMPath;
@property NSInteger mameSpeed;
@end
@@ -47,6 +56,10 @@ static NSString *kContextMachine = @"kContextMachine";
return @"LaunchWindow";
}
-(void)windowWillLoad {
[self setMameSpeed: 1];
}
- (void)windowDidLoad {
[super windowDidLoad];
@@ -57,23 +70,29 @@ static NSString *kContextMachine = @"kContextMachine";
[_mediaView addSubview: [_mediaController view]];
[_machineView addSubview: [_machineViewController view]];
[self addObserver: self forKeyPath: @"mameMachine" options:0 context: (__bridge void * _Nullable)(kMyContext)];
[self addObserver: self forKeyPath: @"mameWindow" options:0 context: (__bridge void * _Nullable)(kMyContext)];
[self addObserver: self forKeyPath: @"mameSquarePixels" options:0 context: (__bridge void * _Nullable)(kMyContext)];
[self addObserver: self forKeyPath: @"mameDebug" options:0 context: (__bridge void * _Nullable)(kMyContext)];
[self addObserver: self forKeyPath: @"mameNoThrottle" options:0 context: (__bridge void * _Nullable)(kMyContext)];
[self addObserver: self forKeyPath: @"mameNoBlur" options:0 context: (__bridge void * _Nullable)(kMyContext)];
NSArray *keys = @[
@"mameMachine", @"mameWindow", @"mameSquarePixels", @"mameNoBlur",
@"mameDebug",
@"mameSpeed", // @"mameNoThrottle",
@"mameAVI", @"mameAVIPath",
@"mameWAV", @"mameWAVPath",
@"mameVGM", @"mameVGMPath",
];
for (NSString *key in keys) {
[self addObserver: self forKeyPath: key options:0 context: (__bridge void * _Nullable)(kMyContext)];
}
[_slotController addObserver: self forKeyPath: @"args" options: 0 context: (__bridge void * _Nullable)(kMyContext)];
[_mediaController addObserver: self forKeyPath: @"args" options: 0 context: (__bridge void * _Nullable)(kMyContext)];
[_mediaController bind: @"media" toObject: _slotController withKeyPath: @"media" options: 0];
[self buildCommandLine];
[_machineViewController addObserver: self forKeyPath: @"machine" options: 0 context: (__bridge void * _Nullable)kContextMachine];
[self buildCommandLine];
}
@@ -97,8 +116,8 @@ static NSURL *MameURL(void) {
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSBundle *bundle = [NSBundle mainBundle];
if ([defaults boolForKey: @"UseSystemMame"]) {
NSString *path = [defaults stringForKey: @"MamePath"];
if ([defaults boolForKey: kUseCustomMame]) {
NSString *path = [defaults stringForKey: kMamePath];
if (![path length]) return [NSURL fileURLWithPath: path];
}
@@ -114,8 +133,8 @@ static NSString *MamePath(void) {
NSString *path;
if ([defaults boolForKey: @"UseCustomMame"]) {
path = [defaults stringForKey: @"MamePath"];
if ([defaults boolForKey: kUseCustomMame]) {
path = [defaults stringForKey: kMamePath];
if ([path length]) return path;
}
path = [bundle pathForAuxiliaryExecutable: @"mame64"];
@@ -197,6 +216,7 @@ static NSString * JoinArguments(NSArray *argv) {
-(void)buildCommandLine {
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
if (!_mameMachine) {
[self setCommandLine: @""];
@@ -249,10 +269,35 @@ static NSString * JoinArguments(NSArray *argv) {
[argv addObjectsFromArray: tmp];
}
if (_mameNoThrottle) [argv addObject: @"-nothrottle"];
//if (_mameNoThrottle) [argv addObject: @"-nothrottle"];
if (_mameSpeed < 0) {
[argv addObject: @"-nothrottle"];
} else if (_mameSpeed > 1) {
[argv addObject: @"-speed"];
[argv addObject: [NSString stringWithFormat: @"%d", (int)_mameSpeed]];
}
// audio video.
if (_mameAVI && [_mameAVIPath length]) {
[argv addObject: @"-aviwrite"];
[argv addObject: _mameAVIPath];
}
if (_mameWAV && [_mameWAVPath length]) {
[argv addObject: @"-wavwrite"];
[argv addObject: _mameWAVPath];
}
// vgm only valid for custom mame.
if (![defaults boolForKey: kUseCustomMame]) {
if (_mameVGM && [_mameVGMPath length]) {
[argv addObject: @"-vgmwrite"];
[argv addObject: _mameVGMPath];
}
}
[self setCommandLine: JoinArguments(argv)]; //[argv componentsJoinedByString:@" "]];
[self setCommandLine: JoinArguments(argv)];
[self setArgs: argv];
}
@@ -264,7 +309,8 @@ static NSString * JoinArguments(NSArray *argv) {
- (IBAction)launchAction:(id)sender {
if (![_args count]) return;
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSURL *url = MameURL();
if (!url) {
@@ -278,12 +324,12 @@ static NSString * JoinArguments(NSArray *argv) {
NSTask *task = [NSTask new];
[task setExecutableURL: url];
[task setArguments: _args];
#if 0
// interferes w/ termination notification.
[task setTerminationHandler: ^(NSTask *t){
}];
#endif
if (![defaults boolForKey: kUseCustomMame]) {
// run in Application Support/Ample.
[task setCurrentDirectoryURL: SupportDirectory()];
}
[LogWindowController controllerForTask: task];
}

View File

@@ -6,6 +6,7 @@
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
//
#import "Ample.h"
#import "LogWindowController.h"
static NSMutableSet *LogWindows;
@@ -73,7 +74,7 @@ static NSMutableSet *LogWindows;
return error;
}
_task = task;
NSString *title = [NSString stringWithFormat: @"Log Window - %u", [task processIdentifier]];
NSString *title = [NSString stringWithFormat: @"Ample Log - %u", [task processIdentifier]];
[[self window] setTitle: title];
_handle = [pipe fileHandleForReading];
@@ -148,7 +149,7 @@ static NSMutableSet *LogWindows;
[[self window] setDocumentEdited: NO];
if (ok && [[NSUserDefaults standardUserDefaults] boolForKey: @"AutoCloseLogWindow"]) {
if (ok && [[NSUserDefaults standardUserDefaults] boolForKey: kAutoCloseLogWindow]) {
[[self window] close];
//[LogWindows removeObject: self]; // close sends WindowWillClose notification.

View File

@@ -16,7 +16,7 @@ NS_ASSUME_NONNULL_BEGIN
@property (nonatomic) NSDictionary *media;
@property NSArray *args;
- (IBAction)deleteAction:(id)sender;
- (IBAction)ejectAction:(id)sender;
- (IBAction)pathAction:(id)sender;
@@ -28,7 +28,7 @@ NS_ASSUME_NONNULL_BEGIN
@interface TablePathView : NSTableCellView
@property (weak) IBOutlet NSPathControl *pathControl;
@property (weak) IBOutlet NSButton *deleteButton;
@property (weak) IBOutlet NSButton *ejectButton;
@end

View File

@@ -22,14 +22,16 @@
-(NSString *)viewIdentifier;
-(void)prepareView: (NSTableCellView *)view;
-(CGFloat)height;
-(NSInteger)index;
@end
@interface MediaCategory : NSObject <MediaNode> {
}
@property NSInteger validCount;
@property NSArray *children; // URLs?
@property NSMutableArray *children; // URLs?
@property NSString *title;
@property NSInteger index;
-(NSInteger)count;
-(id)objectAtIndex:(NSInteger)index;
@@ -40,6 +42,7 @@
@property NSURL *url;
@property BOOL valid;
@property NSInteger index;
-(NSInteger)count;
-(id)objectAtIndex:(NSInteger)index;
@@ -92,27 +95,29 @@
}
unsigned count = (unsigned)[_children count];
NSMutableArray *tmp = [NSMutableArray arrayWithArray: _children];
_validCount = newCount;
if (!_children) _children = [NSMutableArray new];
for (unsigned i = count; i < newCount; ++i) {
[tmp addObject: [MediaItem new]];
MediaItem *item = [MediaItem new];
[item setIndex: i];
[_children addObject: item];
}
// delete excess items, if blank. otherwise, mark invalid.
unsigned ix = 0;
for(MediaItem *item in tmp) {
for(MediaItem *item in _children) {
[item setValid: ix++ < newCount];
}
for (unsigned i = newCount; i < count; ++i) {
MediaItem *item = [tmp lastObject];
MediaItem *item = [_children lastObject];
if ([item url]) break;
[tmp removeLastObject];
[_children removeLastObject];
}
[self setChildren: tmp];
return YES;
}
@@ -121,24 +126,45 @@
BOOL delta = NO;
if (_validCount == count) return NO;
NSMutableArray *tmp = [NSMutableArray arrayWithArray: _children];
for (NSInteger i = _validCount; i < count; ++i) {
MediaItem *item = [tmp lastObject];
MediaItem *item = [_children lastObject];
if ([item url]) break;
[tmp removeLastObject];
[_children removeLastObject];
delta = YES;
}
if (delta) {
[self setChildren: tmp];
return YES;
}
return NO;
}
-(BOOL)moveItemFrom: (NSInteger)oldIndex to: (NSInteger)newIndex {
if (newIndex == oldIndex) return NO;
NSUInteger count = [_children count];
if (oldIndex >= count) return NO;
MediaItem *item = [_children objectAtIndex: oldIndex];
[_children removeObjectAtIndex: oldIndex];
if (newIndex > oldIndex) newIndex--;
if (newIndex >= count) {
[_children addObject: item];
} else {
[_children insertObject: item atIndex: newIndex];
}
// re-index and re-validate.
unsigned ix = 0;
for (MediaItem *item in _children) {
[item setIndex: ix];
[item setValid: ix < _validCount];
++ix;
}
[self pruneChildren];
return YES;
}
@end
@implementation MediaItem
-(instancetype)initWithURL: (NSURL *)url {
@@ -168,14 +194,19 @@
-(void)prepareView: (TablePathView *)view {
NSPathControl *pc = [view pathControl];
NSButton *button = [view ejectButton];
[pc setURL: _url]; //??? will binding take care of it?
[pc unbind: @"value"];
[pc bind: @"value" toObject: self withKeyPath: @"url" options: nil];
[button unbind: @"enabled"];
NSValueTransformer *t = [NSValueTransformer valueTransformerForName: NSIsNotNilTransformerName];
NSDictionary *options = @{ NSValueTransformerBindingOption: t};
[button bind: @"enabled" toObject: self withKeyPath: @"url" options: options];
NSColor *tintColor = nil;
if (!_valid) tintColor = [NSColor redColor];
[[view deleteButton] setContentTintColor: tintColor];
[button setContentTintColor: tintColor];
}
-(CGFloat)height {
@@ -265,12 +296,16 @@ enum {
-(void)rebuildRoot {
NSMutableArray *tmp = [NSMutableArray new];
int ix = 0;
for (unsigned j = 0 ; j < 5; ++j) {
MediaCategory *cat = _data[j];
if ([cat count]) [tmp addObject: cat];
[cat setIndex: -1];
if ([cat count]) {
[cat setIndex: ix++];
[tmp addObject: cat];
}
}
_root = tmp;
//[_outlineView reloadItem: nil reloadChildren: YES];
[_outlineView reloadData];
[_outlineView expandItem: nil expandChildren: YES];
@@ -310,6 +345,7 @@ enum {
}
}
static NSString *kDragType = @"private.ample.media";
- (void)viewDidLoad {
[super viewDidLoad];
@@ -317,8 +353,11 @@ enum {
//NSOutlineView *view = [self view];
//[view expandItem: nil expandChildren: YES];
// Do view setup here.
[_outlineView reloadData];
[_outlineView expandItem: nil expandChildren: YES];
[_outlineView registerForDraggedTypes: @[kDragType]];
}
#pragma mark - NSOutlineViewDelegate
@@ -402,9 +441,137 @@ enum {
return [item height];
}
#if 0
- (id<NSPasteboardWriting>)outlineView:(NSOutlineView *)outlineView pasteboardWriterForItem:(id<MediaNode>)item {
if ([item isGroupItem]) return nil;
NSPasteboardItem *pb = [NSPasteboardItem new];
return pb;
}
#endif
- (BOOL)outlineView:(NSOutlineView *)outlineView writeItems:(NSArray *)items toPasteboard:(NSPasteboard *)pasteboard {
if ([items count] > 1) return NO;
//NSLog(@"%s", sel_getName(_cmd));
MediaItem *item = [items firstObject];
if (![item isKindOfClass: [MediaItem class]]) return NO;
// find the category. only allow if more than 1 item in the category.
MediaCategory *cat = nil;
for (MediaCategory *c in _root) {
NSUInteger ix = [[c children] indexOfObject: item];
if (ix != NSNotFound){
cat = c;
break;
}
}
if (!cat) return NO;
if ([cat count] < 2) return NO;
NSInteger indexes[2] = { 0, 0 };
indexes[0] = [cat index];
indexes[1] = [item index];
NSData *data =[NSData dataWithBytes: indexes length: sizeof(indexes)];
[pasteboard setData: data forType: kDragType];
return YES;
}
/*
* IF item is present, it's a MediaCategory and index is the index of the MediaItem it would be inserted as.
* IF item is nil, index is the MediaCategory index, which should be converted to moving to the end.
* IF index < 0, dragging far beyond the category list, so NOPE it.
*
*/
- (NSDragOperation)outlineView:(NSOutlineView *)outlineView validateDrop:(id<NSDraggingInfo>)info proposedItem:(id)item proposedChildIndex:(NSInteger)index {
if (index < 0) return NSDragOperationNone;
NSPasteboard *pb = [info draggingPasteboard];
NSData *data = [pb dataForType: kDragType];
if (!data) return NSDragOperationNone;
NSInteger indexes[2];
if ([data length] != sizeof(indexes)) return NSDragOperationNone;
[data getBytes: &indexes length: sizeof(indexes)];
//NSLog(@"%d - %d", (int)indexes[0], (int)indexes[1]);
MediaCategory *cat = item;
if (!item) {
// move to the END of the previous category.
if (index == 0) return NSDragOperationNone;
cat = [_root objectAtIndex: index - 1];
index = [cat count]; // -1; - interferes w/ -1 logic below.
}
//NSLog(@"%d - %d", (int)[(MediaCategory *)item index], (int)index);
if ([cat index] != indexes[0]) return NSDragOperationNone;
if (indexes[1] == index) return NSDragOperationNone;
if (indexes[1] == index-1) return NSDragOperationNone;
return NSDragOperationMove;
}
- (BOOL)outlineView:(NSOutlineView *)outlineView acceptDrop:(id<NSDraggingInfo>)info item:(id)item childIndex:(NSInteger)index {
if (index < 0) return NO;
NSPasteboard *pb = [info draggingPasteboard];
NSData *data = [pb dataForType: kDragType];
if (!data) return NSDragOperationNone;
NSInteger indexes[2];
if ([data length] != sizeof(indexes)) return NO;
[data getBytes: &indexes length: sizeof(indexes)];
//NSLog(@"%d - %d", (int)indexes[0], (int)indexes[1]);
MediaCategory *cat = item;
if (!item) {
// move to the END of the previous category.
if (index == 0) return NO;
cat = [_root objectAtIndex: index - 1];
index = [cat count]; // -1; - interferes w/ -1 logic below.
}
//NSLog(@"%d - %d", (int)[(MediaCategory *)item index], (int)index);
if ([cat index] != indexes[0]) return NO;
if (indexes[1] == index) return NO;
if (indexes[1] == index-1) return NO;
NSInteger oldIndex = indexes[1];
[cat moveItemFrom: oldIndex to: index];
[self rebuildArgs];
[_outlineView reloadItem: cat reloadChildren: YES];
return YES;
}
#pragma mark - IBActions
- (IBAction)deleteAction:(id)sender {
- (IBAction)ejectAction:(id)sender {
NSInteger row = [_outlineView rowForView: sender];
if (row < 0) return;
@@ -423,6 +590,7 @@ enum {
}
- (IBAction)pathAction:(id)sender {
// need to update the eject button...
[self rebuildArgs];
}
@end

View File

@@ -6,6 +6,7 @@
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
//
#import "Ample.h"
#import "PreferencesWindowController.h"
@interface PreferencesWindowController ()
@@ -25,7 +26,7 @@
// Implement this method to handle any initialization after your window controller's window has been loaded from its nib file.
[self validateMamePath: [defaults stringForKey: @"MamePath"]];
[self validateMamePath: [defaults stringForKey: kMamePath]];
}

View File

@@ -496,7 +496,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -945,7 +945,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1394,7 +1394,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1843,7 +1843,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2292,7 +2292,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2741,7 +2741,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3190,7 +3190,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3295,6 +3295,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

View File

@@ -19,8 +19,6 @@
</array>
<key>media</key>
<dict>
<key>flop_5_25</key>
<integer>2</integer>
<key>cass</key>
<integer>1</integer>
</dict>

View File

@@ -19,8 +19,6 @@
</array>
<key>media</key>
<dict>
<key>flop_5_25</key>
<integer>2</integer>
<key>cass</key>
<integer>1</integer>
</dict>

View File

@@ -448,7 +448,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -897,7 +897,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1346,7 +1346,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1795,7 +1795,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2244,7 +2244,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2693,7 +2693,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3142,7 +3142,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3247,6 +3247,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

View File

@@ -448,7 +448,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -897,7 +897,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1346,7 +1346,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1795,7 +1795,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2244,7 +2244,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2693,7 +2693,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3142,7 +3142,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3247,6 +3247,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

View File

@@ -448,7 +448,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -897,7 +897,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1346,7 +1346,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1795,7 +1795,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2244,7 +2244,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2693,7 +2693,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3142,7 +3142,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3247,6 +3247,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

View File

@@ -107,8 +107,6 @@
</array>
<key>media</key>
<dict>
<key>cass</key>
<integer>1</integer>
</dict>
<key>resolution</key>
<array>

View File

@@ -496,7 +496,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -945,7 +945,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1394,7 +1394,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1843,7 +1843,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2292,7 +2292,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2741,7 +2741,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3190,7 +3190,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3295,6 +3295,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

View File

@@ -19,6 +19,8 @@
</array>
<key>media</key>
<dict>
<key>flop_5_25</key>
<integer>2</integer>
</dict>
<key>resolution</key>
<array>
@@ -59,6 +61,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
</array>
<key>printer</key>
<array>

View File

@@ -95,6 +95,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
</array>
<key>printer</key>
<array>

View File

@@ -53,6 +53,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -285,6 +293,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -445,7 +466,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -542,6 +563,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -774,6 +803,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -934,7 +976,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1031,6 +1073,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1263,6 +1313,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1423,7 +1486,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1520,6 +1583,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1752,6 +1823,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1912,7 +1996,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2009,6 +2093,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2241,6 +2333,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2401,7 +2506,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2498,6 +2603,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2730,6 +2843,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2890,7 +3016,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2987,6 +3113,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -3219,6 +3353,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -3379,7 +3526,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3519,6 +3666,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
</array>
</dict>
</plist>

View File

@@ -53,6 +53,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -285,6 +293,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -445,7 +466,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -542,6 +563,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -774,6 +803,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -934,7 +976,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1031,6 +1073,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1263,6 +1313,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1423,7 +1486,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1520,6 +1583,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1752,6 +1823,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1912,7 +1996,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2009,6 +2093,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2241,6 +2333,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2401,7 +2506,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2498,6 +2603,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2730,6 +2843,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2890,7 +3016,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2987,6 +3113,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -3219,6 +3353,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -3379,7 +3526,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3519,6 +3666,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
</array>
</dict>
</plist>

View File

@@ -53,6 +53,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -285,6 +293,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -445,7 +466,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -542,6 +563,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -774,6 +803,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -934,7 +976,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1031,6 +1073,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1263,6 +1313,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1423,7 +1486,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1520,6 +1583,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1752,6 +1823,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1912,7 +1996,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2009,6 +2093,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2241,6 +2333,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2401,7 +2506,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2498,6 +2603,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2730,6 +2843,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2890,7 +3016,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2987,6 +3113,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -3219,6 +3353,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -3379,7 +3526,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3519,6 +3666,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
</array>
</dict>
</plist>

View File

@@ -53,6 +53,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -285,6 +293,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -445,7 +466,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -542,6 +563,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -774,6 +803,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -934,7 +976,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1031,6 +1073,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1263,6 +1313,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1423,7 +1486,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1520,6 +1583,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1752,6 +1823,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1912,7 +1996,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2009,6 +2093,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2241,6 +2333,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2401,7 +2506,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2498,6 +2603,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2730,6 +2843,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2890,7 +3016,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2987,6 +3113,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -3219,6 +3353,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -3379,7 +3526,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3519,6 +3666,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
</array>
</dict>
</plist>

View File

@@ -53,6 +53,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -285,6 +293,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -445,7 +466,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -542,6 +563,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -774,6 +803,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -934,7 +976,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1031,6 +1073,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1263,6 +1313,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1423,7 +1486,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1520,6 +1583,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1752,6 +1823,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1912,7 +1996,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2009,6 +2093,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2241,6 +2333,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2401,7 +2506,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2498,6 +2603,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2730,6 +2843,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2890,7 +3016,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2987,6 +3113,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -3219,6 +3353,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -3379,7 +3526,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3519,6 +3666,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
</array>
</dict>
</plist>

View File

@@ -53,6 +53,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -285,6 +293,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -445,7 +466,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -542,6 +563,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -774,6 +803,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -934,7 +976,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1031,6 +1073,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1263,6 +1313,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1423,7 +1486,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1520,6 +1583,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1752,6 +1823,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1912,7 +1996,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2009,6 +2093,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2241,6 +2333,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2401,7 +2506,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2498,6 +2603,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2730,6 +2843,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2890,7 +3016,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2987,6 +3113,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -3219,6 +3353,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -3379,7 +3526,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3519,6 +3666,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
</array>
</dict>
</plist>

View File

@@ -53,6 +53,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -285,6 +293,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -445,7 +466,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -542,6 +563,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -774,6 +803,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -934,7 +976,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1031,6 +1073,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1263,6 +1313,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1423,7 +1486,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1520,6 +1583,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1752,6 +1823,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1912,7 +1996,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2009,6 +2093,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2241,6 +2333,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2401,7 +2506,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2498,6 +2603,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2730,6 +2843,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2890,7 +3016,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2987,6 +3113,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -3219,6 +3353,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -3379,7 +3526,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3519,6 +3666,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
</array>
</dict>
</plist>

View File

@@ -111,6 +111,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -283,6 +291,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -427,7 +448,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -516,6 +537,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -688,6 +717,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -832,7 +874,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -921,6 +963,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1093,6 +1143,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1237,7 +1300,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1326,6 +1389,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1498,6 +1569,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1642,7 +1726,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1731,6 +1815,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1903,6 +1995,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2047,7 +2152,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2136,6 +2241,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2308,6 +2421,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2452,7 +2578,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2541,6 +2667,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2713,6 +2847,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2857,7 +3004,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2954,6 +3101,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
</array>
<key>printer</key>
<array>

View File

@@ -143,6 +143,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -315,6 +323,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -459,7 +480,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -548,6 +569,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -720,6 +749,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -864,7 +906,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -953,6 +995,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1125,6 +1175,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1269,7 +1332,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1358,6 +1421,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1530,6 +1601,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1674,7 +1758,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1763,6 +1847,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1935,6 +2027,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2079,7 +2184,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2168,6 +2273,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2340,6 +2453,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2484,7 +2610,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2573,6 +2699,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2745,6 +2879,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2889,7 +3036,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2986,6 +3133,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
</array>
<key>printer</key>
<array>

View File

@@ -143,6 +143,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -315,6 +323,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -459,7 +480,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -548,6 +569,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -720,6 +749,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -864,7 +906,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -953,6 +995,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1125,6 +1175,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1269,7 +1332,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1358,6 +1421,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1530,6 +1601,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1674,7 +1758,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1763,6 +1847,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1935,6 +2027,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2079,7 +2184,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2168,6 +2273,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2340,6 +2453,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2484,7 +2610,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2573,6 +2699,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2745,6 +2879,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2889,7 +3036,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2986,6 +3133,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
</array>
<key>printer</key>
<array>

View File

@@ -448,7 +448,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -897,7 +897,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1346,7 +1346,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1795,7 +1795,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2244,7 +2244,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2693,7 +2693,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3142,7 +3142,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3247,6 +3247,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

View File

@@ -448,7 +448,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -897,7 +897,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1346,7 +1346,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1795,7 +1795,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2244,7 +2244,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2693,7 +2693,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3142,7 +3142,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3247,6 +3247,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

View File

@@ -35,6 +35,8 @@
</array>
<key>media</key>
<dict>
<key>flop_5_25</key>
<integer>4</integer>
</dict>
<key>resolution</key>
<array>
@@ -72,6 +74,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>focusdrive</string>
@@ -130,6 +145,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>focusdrive</string>
@@ -188,6 +216,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>focusdrive</string>
@@ -246,6 +287,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>focusdrive</string>

View File

@@ -496,7 +496,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -945,7 +945,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1394,7 +1394,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1843,7 +1843,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2292,7 +2292,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2741,7 +2741,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3190,7 +3190,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3295,6 +3295,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

File diff suppressed because it is too large Load Diff

2624
Ample/Resources/cece.plist Normal file

File diff suppressed because it is too large Load Diff

2624
Ample/Resources/cecg.plist Normal file

File diff suppressed because it is too large Load Diff

2624
Ample/Resources/ceci.plist Normal file

File diff suppressed because it is too large Load Diff

2624
Ample/Resources/cecm.plist Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -448,7 +448,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -897,7 +897,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1346,7 +1346,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1795,7 +1795,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2244,7 +2244,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2693,7 +2693,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3142,7 +3142,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3247,6 +3247,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

View File

@@ -448,7 +448,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -897,7 +897,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1346,7 +1346,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1795,7 +1795,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2244,7 +2244,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2693,7 +2693,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3142,7 +3142,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3247,6 +3247,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

View File

@@ -448,7 +448,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -897,7 +897,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1346,7 +1346,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1795,7 +1795,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2244,7 +2244,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2693,7 +2693,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3142,7 +3142,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3247,6 +3247,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

View File

@@ -448,7 +448,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -897,7 +897,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1346,7 +1346,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1795,7 +1795,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2244,7 +2244,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2693,7 +2693,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3142,7 +3142,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3247,6 +3247,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

View File

@@ -448,7 +448,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -897,7 +897,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1346,7 +1346,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1795,7 +1795,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2244,7 +2244,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2693,7 +2693,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3142,7 +3142,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3247,6 +3247,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

View File

@@ -93,6 +93,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
</array>
<key>printer</key>
<array>

View File

@@ -85,6 +85,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -317,6 +325,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -477,7 +498,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -574,6 +595,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -806,6 +835,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -966,7 +1008,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1071,6 +1113,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
</array>
<key>printer</key>
<array>

View File

@@ -85,6 +85,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -317,6 +325,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -477,7 +498,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -574,6 +595,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -806,6 +835,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -966,7 +1008,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1071,6 +1113,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
</array>
<key>printer</key>
<array>

View File

@@ -448,7 +448,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -897,7 +897,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1346,7 +1346,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1795,7 +1795,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2244,7 +2244,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2693,7 +2693,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3142,7 +3142,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3247,6 +3247,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

View File

@@ -448,7 +448,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -897,7 +897,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1346,7 +1346,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1795,7 +1795,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2244,7 +2244,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2693,7 +2693,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3142,7 +3142,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3247,6 +3247,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

View File

@@ -448,7 +448,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -897,7 +897,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1346,7 +1346,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1795,7 +1795,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2244,7 +2244,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2693,7 +2693,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3142,7 +3142,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3247,6 +3247,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

View File

@@ -173,6 +173,43 @@
</dict>
</array>
</dict>
<dict>
<key>description</key>
<string>China Education Computer</string>
<key>children</key>
<array>
<dict>
<key>description</key>
<string>China Education Computer 2000</string>
<key>value</key>
<string>cec2000</string>
</dict>
<dict>
<key>description</key>
<string>China Education Computer E</string>
<key>value</key>
<string>cece</string>
</dict>
<dict>
<key>description</key>
<string>China Education Computer G</string>
<key>value</key>
<string>cecg</string>
</dict>
<dict>
<key>description</key>
<string>China Education Computer I</string>
<key>value</key>
<string>ceci</string>
</dict>
<dict>
<key>description</key>
<string>China Education Computer M</string>
<key>value</key>
<string>cecm</string>
</dict>
</array>
</dict>
<dict>
<key>description</key>
<string>II Clones</string>
@@ -323,6 +360,12 @@
<key>value</key>
<string>spectred</string>
</dict>
<dict>
<key>description</key>
<string>Zi Jin I</string>
<key>value</key>
<string>zijini</string>
</dict>
</array>
</dict>
</array>

View File

@@ -53,6 +53,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -285,6 +293,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -445,7 +466,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -542,6 +563,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -774,6 +803,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -934,7 +976,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1031,6 +1073,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1263,6 +1313,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1423,7 +1486,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1520,6 +1583,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1752,6 +1823,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1912,7 +1996,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2009,6 +2093,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2241,6 +2333,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2401,7 +2506,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2498,6 +2603,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2730,6 +2843,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2890,7 +3016,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2987,6 +3113,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -3219,6 +3353,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -3379,7 +3526,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3519,6 +3666,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
</array>
</dict>
</plist>

View File

@@ -448,7 +448,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -897,7 +897,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1346,7 +1346,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1795,7 +1795,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2244,7 +2244,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2693,7 +2693,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3142,7 +3142,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3247,6 +3247,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

View File

@@ -53,6 +53,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -285,6 +293,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -445,7 +466,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -542,6 +563,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -774,6 +803,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -934,7 +976,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1031,6 +1073,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1263,6 +1313,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1423,7 +1486,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1520,6 +1583,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1752,6 +1823,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1912,7 +1996,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2009,6 +2093,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2241,6 +2333,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2401,7 +2506,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2498,6 +2603,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2730,6 +2843,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2890,7 +3016,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2987,6 +3113,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -3219,6 +3353,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -3379,7 +3526,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3519,6 +3666,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
</array>
</dict>
</plist>

View File

@@ -448,7 +448,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -897,7 +897,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1346,7 +1346,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1795,7 +1795,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2244,7 +2244,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2693,7 +2693,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3142,7 +3142,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3247,6 +3247,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

View File

@@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>source</key>
<string>https://archive.org/download/mame0224_rom</string>
<key>type</key>
<string>7z</string>
<key>version</key>
<string>0.224</string>
<key>roms</key>
<array>
<string>a1cass</string>
<string>a2aevm80</string>
<string>a2ap16</string>
<string>a2ap16a</string>
<string>a2aplcrd</string>
<string>a2cffa02</string>
<string>a2cffa2</string>
<string>a2corvus</string>
<string>a2diskii</string>
<string>a2diskiing</string>
<string>a2focdrv</string>
<string>a2hsscsi</string>
<string>a2iwm</string>
<string>a2memexp</string>
<string>a2mouse</string>
<string>a2pic</string>
<string>a2ramfac</string>
<string>a2scsi</string>
<string>a2ssc</string>
<string>a2surance</string>
<string>a2swyft</string>
<string>a2thunpl</string>
<string>a2tmstho</string>
<string>a2twarp</string>
<string>a2ultrme</string>
<string>a2ulttrm</string>
<string>a2vidtrm</string>
<string>a2vtc1</string>
<string>a2vulcan</string>
<string>a2vulgld</string>
<string>a2vuliie</string>
<string>a2zipdrv</string>
<string>a3fdc</string>
<string>apple1</string>
<string>apple2</string>
<string>apple2c</string>
<string>apple2e</string>
<string>apple2gs</string>
<string>apple3</string>
<string>cec2000</string>
<string>cece</string>
<string>cecg</string>
<string>ceci</string>
<string>cecm</string>
<string>cga</string>
<string>cmsscsi</string>
<string>d2fdc</string>
<string>diskii13</string>
<string>keytronic_pc3270</string>
<string>m68705p3</string>
<string>votrax</string>
<string>zijini</string>
</array>
</dict>
</plist>

View File

@@ -448,7 +448,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -897,7 +897,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1346,7 +1346,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1795,7 +1795,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2244,7 +2244,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2693,7 +2693,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3142,7 +3142,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3247,6 +3247,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

View File

@@ -53,6 +53,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -285,6 +293,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -445,7 +466,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -542,6 +563,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -774,6 +803,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -934,7 +976,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1031,6 +1073,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1263,6 +1313,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1423,7 +1486,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1520,6 +1583,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -1752,6 +1823,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -1912,7 +1996,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2009,6 +2093,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2241,6 +2333,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2401,7 +2506,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2498,6 +2603,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -2730,6 +2843,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -2890,7 +3016,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2987,6 +3113,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>uthernet</string>
<key>description</key>
<string>a2RetroSystems Uthernet</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>alfam2</string>
@@ -3219,6 +3353,19 @@
<integer>2</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>cmsscsi</string>
<key>description</key>
<string>CMS SCSI II Card</string>
<key>default</key>
<false/>
<key>media</key>
<dict>
<key>hard</key>
<integer>1</integer>
</dict>
</dict>
<dict>
<key>value</key>
<string>corvus</string>
@@ -3379,7 +3526,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3519,6 +3666,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
</array>
</dict>
</plist>

View File

@@ -448,7 +448,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -897,7 +897,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1346,7 +1346,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1795,7 +1795,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2244,7 +2244,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2693,7 +2693,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3142,7 +3142,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3247,6 +3247,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

View File

@@ -448,7 +448,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -897,7 +897,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1346,7 +1346,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1795,7 +1795,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2244,7 +2244,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2693,7 +2693,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3142,7 +3142,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3247,6 +3247,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

View File

@@ -448,7 +448,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -897,7 +897,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1346,7 +1346,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -1795,7 +1795,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<true/>
</dict>
@@ -2244,7 +2244,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -2693,7 +2693,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3142,7 +3142,7 @@
<key>value</key>
<string>mockingboard</string>
<key>description</key>
<string>Sweet Micro Systems Mockingboard</string>
<string>Sweet Micro Systems Mockingboard Sound/Speech I</string>
<key>default</key>
<false/>
</dict>
@@ -3247,6 +3247,14 @@
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>gizmo</string>
<key>description</key>
<string>HAL Labs Gizmo</string>
<key>default</key>
<false/>
</dict>
<dict>
<key>value</key>
<string>joyport</string>

2624
Ample/Resources/zijini.plist Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,19 @@
//
// TransparentScroller.h
// Ample
//
// Created by Kelvin Sherlock on 9/4/2020.
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
//
#import <Cocoa/Cocoa.h>
NS_ASSUME_NONNULL_BEGIN
@interface TransparentScroller : NSScroller
@property NSColor *backgroundColor;
@end
NS_ASSUME_NONNULL_END

View File

@@ -0,0 +1,23 @@
//
// TransparentScroller.m
// Ample
//
// Created by Kelvin Sherlock on 9/4/2020.
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
//
#import "TransparentScroller.h"
@implementation TransparentScroller
- (void)drawRect:(NSRect)dirtyRect {
//[super drawRect:dirtyRect];
NSColor *color = _backgroundColor;
if (color) {
[color setFill];
NSRectFill(dirtyRect);
}
[self drawKnob];
}
@end

View File

@@ -18,6 +18,9 @@ MACHINES = (
"dodo", "elppa", "hkc8800a", "ivelultr",
"maxxi", "microeng", "prav82", "prav8m",
"space84", "uniap2en", "uniap2pt", "uniap2ti",
"zijini",
# China Education Computer
"cec2000", "cece", "cecg", "ceci", "cecm",
)
@@ -30,4 +33,4 @@ SLOTS = (
"gameio",
"printer",
"modem"
)
)

View File

@@ -34,5 +34,5 @@ for m in MACHINES:
devices[name] = tmp
with open("Resources/devices.plist", "w") as f:
f.write(to_plist(devices))
with open("../Ample/Resources/devices.plist", "w") as f:
f.write(to_plist(devices))

View File

@@ -14,11 +14,67 @@ DISABLED = set((
'hsscsi', # doesn't work
'corvus', # these apparently don't use normal disk images.
'zipdrive',
'vulcan',
'focusdrive',
'vulcangold'
'vulcan',
'vulcangold',
'vulcaniie',
))
def find_machine_media(parent):
# look for relevant device nodes. If the tag contains a slot, skip since it's
# not built in. Except the Apple3, where the floppy drives are actually slots 0/1/2/3/4
#
# apple1 has a "snapshot" device. not currently supported.
#
# in the //c (but not //c+) the floppy drives are in slot 6 which doesn't otherwise exist.
#
# no machines have built-in hard drives.
mname = parent.get("name")
remap = {
"cassette": "cass",
"apple1_cass": "cass",
"apple2_cass": "cass",
"floppy_5_25": "flop_5_25",
"floppy_3_5": "flop_3_5",
}
media = {}
for x in parent.findall("./device"):
tag = x.get("tag")
typ = x.get("type")
intf = x.get("interface")
if intf == None: intf = typ # cassette has no interface.
# print(" ",intf)
slot = None
if ':' in tag:
tt = tag.split(':')
if len(tt) >= 3: slot = tt[0]
# exclude:
# apple1 - tag="exp:cassette:cassette"
# apple2 - tag="sl6:diskiing:0:525" - <slot name="sl6">
# include:
# apple2c - tag="sl6:0:525" - <slot name="sl:0">.
# apple3 - tag="0:525" - <slot name="0">
# format slot name : slotoption name : machine->device type name
if mname == "apple2c" and slot == "sl6": slot = None
if slot: continue
# skip slot devices -- they'll be handled as part of the device.
#if ":" in tag and tag[0] not in "0123456789": continue
if intf in remap:
name = remap[intf]
media[name] = media.get(name, 0) + 1
return media
def find_media(parent, include_slots=False):
@@ -93,7 +149,8 @@ for m in MACHINES:
print(m)
st = subprocess.run(["mame", m, "-listxml"], capture_output=True)
env = {'DYLD_FALLBACK_FRAMEWORK_PATH': '../embedded'}
st = subprocess.run(["../embedded/mame64", m, "-listxml"], capture_output=True, env=env)
if st.returncode != 0:
print("mame error: {}".format(m))
exit(1)
@@ -122,7 +179,7 @@ for m in MACHINES:
data["ram"] = tmp
data["media"] = find_media(machine)
data["media"] = find_machine_media(machine)
# node = machine.find('display[@tag="screen"]')
@@ -165,7 +222,7 @@ for m in MACHINES:
data[s] = tmp
path = "Resources/{}.plist".format(m)
path = "../Ample/Resources/{}.plist".format(m)
with open(path, "w") as f:
f.write(to_plist(data))

View File

@@ -20,7 +20,8 @@ ii_clones_children = ["ace100", "agat7", "agat9", "albert",
"dodo", "elppa", "hkc8800a", "ivelultr",
"maxxi", "microeng", "prav82", "prav8m",
"space84", "uniap2en", "uniap2pt", "uniap2ti"]
iie_clones_children = ["mprof3", "prav8c", "spectred"]
iie_clones_children = ["mprof3", "prav8c", "spectred", "zijini"]
cec_children = ["cec2000", "cece", "cecg", "ceci", "cecm"]
tree = [
("Apple I", "apple1", apple1_children),
@@ -30,11 +31,13 @@ tree = [
("Apple IIgs", "apple2gs", apple2gs_children),
("Apple ///", "apple3", apple3_children),
("Laser", "laser128", laser_children),
("China Education Computer", None, cec_children),
("II Clones", None, ii_clones_children),
("IIe Clones", None, iie_clones_children),
]
st = subprocess.run(["mame", "-listfull", *MACHINES], check=True, capture_output=True, text=True)
env = {'DYLD_FALLBACK_FRAMEWORK_PATH': '../embedded'}
st = subprocess.run(["../embedded/mame64", "-listfull", *MACHINES], check=True, capture_output=True, text=True, env=env)
# Name: Description:
# apple2gs "Apple IIgs (ROM03)"
# apple2gsr0 "Apple IIgs (ROM00)"
@@ -74,7 +77,7 @@ for x in tree:
data.append(tmp)
path = "Resources/models.plist"
path = "../Ample/Resources/models.plist"
with open(path, "w") as f:
f.write(to_plist(data))

76
python/rom.py Normal file
View File

@@ -0,0 +1,76 @@
from plist import to_plist
ROMS = """
a1cass
a2aevm80
a2ap16
a2ap16a
a2aplcrd
a2cffa02
a2cffa2
a2corvus
a2diskii
a2diskiing
a2focdrv
a2hsscsi
a2iwm
a2memexp
a2mouse
a2pic
a2ramfac
a2scsi
a2ssc
a2surance
a2swyft
a2thunpl
a2tmstho
a2twarp
a2ultrme
a2ulttrm
a2vidtrm
a2vtc1
a2vulcan
a2vulgld
a2vuliie
a2zipdrv
a3fdc
apple1
apple2
apple2c
apple2e
apple2gs
apple3
cec2000
cece
cecg
ceci
cecm
cga
cmsscsi
d2fdc
diskii13
keytronic_pc3270
m68705p3
votrax
zijini
""".splitlines()
#
# others
# mprof3
# spectred
# tk3000
# prav8c
#
ROMS.remove("")
ROMS.sort()
data = {}
data["source"] = "https://archive.org/download/mame0224_rom"
data["type"] = "7z"
data["version"] = "0.224"
data["roms"] = ROMS
# print(ROMS)
with open("../Ample/Resources/roms.plist", "w") as f:
f.write(to_plist(data))