Finding the Finder

Recently, somebody was asking on Emaculation forums, what would happen if Apple’s Finder would be attempted to run in M.A.C.E.? That was an interesting question, which motivated us to try it out.

Mac System Software architecture

To think about what would make Finder work, let’s consider the classic Mac system software as an architecture consisting of roughly three layers (in real Macs):

  • ROM: Most of Toolbox APIs, ROM resources and stage 0 boot loader.
  • System: Patches to ROM, extensions, system zone, the so-called “kernel” of old MacOS.
  • Finder: The “desktop metaphor” front-end running as a regular Mac application.

This categorization is very naΓ―ve, does not consider details such as role of hard drive drivers in boot process, etc. Additionally, M.A.C.E. combines roles of ROM and System as a single entity implemented in native code.

The interesting part to highlight is how Finder is basically “just another” application running on the System, and was even replaced by alternate startup applications on the old Macs (such as MiniFinder, MultiFinder, or other applications using the “Set Startup” option). As such, especially on System 6.x and older, the undocumented dependencies between System and Finder might be few in number, if any.

The first run

So, the question was, what would happen if we would try to run it? Well, we got this far on the first attempt, and with a couple minor fixes to progress further:

So, almost there. What we needed was a couple new (missing) routines and some fixes:

  • Fixed the 0x16 and 0x17 csCodes for .NativeFS driver, which return the logical/physical ICN# data for the volume icon (as seen on the desktop). We actually had that icon already one year ago, but this was the first time anything wanted to access it. πŸ™‚
  • Added working directory indexing to GetWDInfo, which Finder uses to close all open working directories, presumably left open by misbehaving applications under System 6.x.
  • Fixed a buffer overflow bug in GetVolInfo (in volume name).
  • Implemented File locking APIs, which Finder wants to use to maintain the Desktop file.

Getting to the desktop

After a long and tedious session of debugging, it was discovered that due to a stupid bug in GetWDInfo Finder was crashing upon attempting to enumerate volumes. After that fix, we got nice Finder desktop, and a lot of functionality already working:

Operating on the Finder windows added need to implement a couple other missing traps, although as dummy versions for now (SetCatInfo and SetVolInfo, which Finder attempts to use to write metadata about modifications done in the spatial finder windows, icons, etc). Some points:

  • Finder and system icons appear as documents, but that might be because those don’t yet exist in the System file. Not sure about that yet.
  • It’s nice to see how a Finder 6.1.8 from Apple’s real System 6.0.7 behaves nicely even though M.A.C.E. System declares being version 7.0. πŸ™‚
  • For some reason, doing “Get Info” on our Hard Drive turns our custom icon returned by the .NativeFS DRVR to a generic floppy icon.
  • It’s interesting how Finder considers at the moment our custom Hard Drive as “AppleTalk” device, but that might be because we’re hooking into the ExtFS file manager hooks which *I think* were used by AppleTalk in the real System 6.x. Just another thing which needs more investigation.
  • The modification and creation dates shown in “Get Info” (and list-style finder windows) use International Utilities date & time formatting functions, which are still placeholders. And as such, they only display mostly the numeric value of date-time instead of the proper, human-readable format.

Making the Desktop file work

At this point, we didn’t yet get the proper application and document icons to appear, so we did a bit more debugging on what was happening with the Desktop file – which Finder uses to keep track of known application creator & types, file comments, etc. It turned out, that we accidentally had all the “hasBundle” (0x2000) bits turned off in applications, which is why they were not detected by Finder.

As this issue was fixed, Finder started to process the applications properly, and quickly needed a some improvements to Resource Manager APIs. Mostly, it wanted to use UniqueID to allocate unique IDs for resources inside the Desktop file’s resource fork (to avoid conflicts). After that, updating Desktop file seems to work quite nicely, resulting in some fancy icons now appearing in the Finder under M.A.C.E.:

For now, running the real Finder remains as a curiosity, but nevertheless works as a great test case for a various number of Toolbox File Manager APIs which still need work (among some other minor bugs). The summary of the major known issues is:

  • The launching of programs “almost” works. Everything else appears to be fine, but it suffers from the same issue as previously found out using the “Transfer” command in THINK Pascal: The Font Manager data caches do not clear completely, leaving some dangling handles/pointers to the old application zone, which cause crash on attempting to reference them after the zone has been reinitialized for the new application.
  • Getting back to Finder (or any shell) is not yet possible, as ExitToShell is still hard-coded to terminate the entire emulator, instead of launching LMGetFinderName() application. Getting this to work would also encourage researching the Emscripten and Process Manager compatibility, as all of those features share a common need for a better in-emulator process management.
  • SetCatInfo/SetVolInfo are still dummy placeholders, so Finder is trying to use them to update metadata, though it is not yet saved.
  • Folder creation (_DirCreate), File/Folder deletion (_Delete), renaming (_Rename) are not yet implemented, so attempting those operations on Finder will still fail.
  • The _Eject trap is not yet implemented (and in any case you will not be able to eject the NativeFS drives).
  • As previously pointed out, Date & Time formatting does not yet work
  • The “Rebuild Desktop” operation (though using option + cmd keys at startup) does not yet seem to do the actual rebuild on a “fresh” start (i.e. if Desktop file has been wiped). Additionally, attempting that operation while old Desktop file exist will error out because _Delete is unimplemented, and old file cannot be removed out of the way.
  • Maybe other issues too, those are just the ones found out in the quick testing.

The “generic” M.A.C.E. environment might benefit of this though, as a replacement shell and/or program launcher, that could be optionally used by the end-user.

Full list of changes since last post

2019-12-12 18:19:41 +0200 β€’ Add UniqueID/…1ID, to allow Desktop file updates
2019-12-12 17:49:18 +0200 β€’ Add Disk Initialization Pack2 to keep Finder happy
2019-12-12 17:46:55 +0200 β€’ Fix byteswap bug in NativeFS _Allocate handler
2019-12-12 15:00:12 +0200 β€’ Add missing NativeFS.c changes for previous commit
2019-12-12 04:34:28 +0200 β€’ Add dummy SetCatInfo and SetVolInfo selectors
2019-12-12 04:02:48 +0200 β€’ Fix GetWDInfo bug (ioVRefNum & ioWDVRefNum mixed)
2019-12-09 02:58:47 +0200 β€’ Fix memFullErr check in SetApplLimit
2019-12-08 06:31:06 +0200 β€’ Fix filename overflow in GetVolInfo NativeFS call
2019-12-08 06:30:06 +0200 β€’ Implemented CloseWD
2019-12-08 06:29:03 +0200 β€’ Add WD indexing to GetWDInfo
2019-12-08 06:27:20 +0200 β€’ Add Finder test app to cmake configs
2019-12-08 06:27:01 +0200 β€’ Implement icon csCodes in NativeFS Control call
2019-12-08 06:25:52 +0200 β€’ Make more macros in memory manager MSVC friendly
2019-12-08 06:25:18 +0200 β€’ Add dummy SetFilLock and RstFilLock
2019-12-08 06:23:36 +0200 β€’ Fix FinderName lowmem global
2019-12-06 23:44:06 +0200 β€’ Add Bash Big Blue to cmake config for testing
2019-12-04 21:21:36 +0200 β€’ Fix QD_LOG to respect debug settings
2019-12-04 20:48:17 +0200 β€’ Add Cairo ShootOut! to cmake config for testing
2019-11-30 02:02:05 +0200 β€’ Fix empty VA_ARGS problem in MaceLog macro
2019-11-29 23:55:30 +0000 β€’ Make SWAP and MIN/MAX macros MSVC compatible
2019-11-29 23:54:08 +0000 β€’ Made vararg ellipsis parameters MSVC compatible
2019-11-29 23:52:21 +0000 β€’ Make Memory Manager return macros MSVC compatible
2019-11-29 23:51:27 +0000 β€’ Make ROMScratch macros MSVC compatible
2019-11-29 23:50:08 +0000 β€’ Move SwapPoint to MacQuickDraw.h to make it inline
2019-11-29 23:48:05 +0000 β€’ Change void* to UInt8* in fake ROM (for MSVC)
2019-11-29 23:46:50 +0000 β€’ Make SANE conversion macros MSVC compatible
2019-11-29 23:33:03 +0000 β€’ Merge branch 'master' of
2019-11-29 23:32:43 +0000 β€’ WinAPI EndianXX_Swap macros
2019-11-30 01:30:54 +0200 β€’ Add UInt128 type to EmuMacTypes.h

SoftPC (and the quest for the XT memory map)

Before Macintosh was created, there was a computer architecture called IBM PC. With Intel 8086 processor, it was incompatible with the Motorola 68000 family used in Macintosh computers – and thus, no IBM PC software would work in Macintosh. But there were some really smart people, who created a special application called SoftPC in mid-80’s, which interpreted Intel’s x86 instructions on the fly, and emulated enough PC architecture and BIOS ROM to allow those programs to run on Macintosh. And now, SoftPC finally also works on M.A.C.E.

SoftPC 2.51 architecture

The version of SoftPC we got to run is 2.51, which happened to be compatible with the “Classic”-type 68000 Macintosh computers, one which M.A.C.E. aims to emulate in the Phase 1. That is, it works on 68000 processor, supports the 1-bit “classic” QuickDraw on 512×342 screen, and appears to be compatible with System 6 level Toolbox calls.

The IBM PC architecture which SoftPC 2.51 emulates is IBM XT with 640 kilobytes of RAM, and a CGA monochrome display. It also supports two serial ports (although M.A.C.E. serial port drivers are still unfinished to try them out), a printer port (no printing support for us yet), two hard drives (through disk images), and two physical floppy drives (which we don’t either emulate yet).

The XT memory map

The challenging part of getting SoftPC to work was ingenious way it emulates the PC memory map. As everybody knows, IBM PC has physically 20-bit addressing scheme (through 16-bit segment and offset register pairs, which give 4+16 bits of usable virtual address space, as there is overlap between segments). This 20 bits equals 2^20 = 1048576, or 1 megabyte of address space. What SoftPC does, is that it allocates this entire 1 megabyte area to be linearly accessible throughout the physical Macintosh address space, but it saves memory by allowing this area to have “holes” in it for the non-used areas of the PC memory map. This is basically the layout it creates:

  • 000000-09FFFF: RAM
  • 0A0000-0B7FFF: hole
  • 0B8000-0DDFFF: CGA video memory
  • 0DE000-0EFFFF: hole
  • 0F0000-0F4FFF: ROM BIOS #1
  • 0F5000-0FDFFF: hole
  • 0FE000-100000: ROM BIOS #2

The steps it uses to ensure this linear layout is created is quite unique, and a good challenge to test the memory manager implementation:

  1. For starters, the availability of large enough linear memory space is ensured by doing allocation of 1048576+32 bytes of memory using NewPtr. If this fails, it will know that there won’t be enough memory.
  2. The allocated space is shrunk down to the 640K+32 RAM size using SetPtrSize. (The 32 bytes extra is used for aligning the actual addresses inside allocations to 16-byte boundaries for apparently memory access speed optimization on later Macs).
  3. The three other blocks (CGA memory and two ROM areas) are allocated at correct locations using the following algorithm:
    1. The size of “hole” preceding the allocation is calculated. For example, having video memory at B8000 would leave 18000 bytes space between A0000 and B8000.
    2. Two pointers are allocated after each other using NewPtr: one for the hole (using calculated hole size), and the actual memory block (+32 bytes for alignment).
    3. Now this is where the magic happens: If the latter allocated block’s start would not be within alignment range of the required offset (in CGA case B8000) from start of RAM (the 640K block), the size of hole would be decremented with 16 bytes, the two blocks would be disposed, and allocation re-attempted at step 3-2.
    4. After repeating steps 3-2 through 3-3 enough so that required range is reached, the pointer to the allocated hole block is saved, and next one of the three blocks is allocated starting from step 3-1. (It should be noted, that because of a very minor bug in M.A.C.E. memory manager, the allocation size failed to decrease, and this loop would be terminated after 64 attempts, with incorrect block left allocated.)
  4. After all three blocks have been allocated at correct offsets, the holes preceding each of them would be disposed using DisposePtr. This part of process leaves space inside the emulated PC address space, which the Toolbox can use for any regular memory allocations – pointers and handles, even resources. It is not 100% certain, but it may be that SoftPC may optimize performance in such way, that writing to PC address space at these holes might actually even cause native memory to get corrupted, BUT for now we did not try to see if that might happen.

The issue with Memory Manager in step 3-4 was, that as the DisposePtr call on the two blocks actually creates two adjacent “free” blocks, the allocation of new block using NewPtr right after that with only 16 bytes smaller size, would actually not return a physical block with smaller size. This was, because the block allocation routine checks if the space between allocated and next block would be less than minimum allowed block size (for creating new “free” block between allocation and next block), it would actually merge that small bit of space back to the physical allocation. The bug in Memory Manager was, that the when allocating block in free space, it was supposed to always merge the next “free” block after the allocation, and slice the new “free” space from that. A real Mac merges only one extra “free” block after allocation, but in M.A.C.E. for simplicity we fixed this by merging all free space in one run, thus at the same time reducing clutter of having many adjacent free blocks.

With this fix in Memory Manager, SoftPC is now finally able to boot up. Thanks to the Standard File Package implemented earlier this autumn, we could not only configure the hard disk image (C:/), but also set up a “shared” network disk (E:/) through a folder inside emulated Mac file system. This allows easy access of files (and thus DOS applications) from the M.A.C.E. file system, including some games. The shared disk access routines, however, surfaced luckily a couple File Manager bugs, related to the ioNamePtr handling in _GetCatInfo and _GetFileInfo calls, which possibly also improve compatibility of other applications too.

Screenshots

Below are some screenshots of the configuration dialogs of SoftPC (click for larger image):

And here is DIR command output right after booting up:

Also, there was GWBASIC included with the DOS installation, so we can run GWBASIC compatible BASIC programs:

And also some games work nicely. The Monochrome CGA emulation has interesting approach of emulating the 320×200 resolution with 1.5x scaling as 480×300 pixel bitmap display. The four CGA colors are also mapped into distinct vertical stripe patterns, which might also have been used on some old monochrome CGA displays:

Of the two above games, SOPWITH appears to be quite responsive and playable, but ALLEYCAT controls are very laggy. Also Sierra adventure games seem to run:

The Black Cauldron (pictured above) seems to work just fine, although for some reason the function keys were not working, while they did work in GWBASIC earlier (opening of doors with F6, for example). Also, none of the games produced any sound although the SoftPC boot beep works, so it might be that SoftPC may lack actual PC speaker emulation in this particular version (beyond the beep).

Other issue that we also fixed while working on this was a bug in Scrap Manager, which caused the clipboard to misbehave when working in “on-disk” mode (after _UnloadScrap was called). This allows Copy-Paste operations to work nicely in SoftPC, and it also improves clipboard functionality in other applications.

Only remaining issue with SoftPC is that some routine, possibly in SANE and most likely related to converting PC date & time, is causing divide overflow error to popup at random times, which appears to be related to the actual date & time. This needs to be investigated still at later point.

Full list of changes since last post

2019-11-27 00:34:43 +0200 β€’ Fix a Scrap Manager bugs, fixes SoftPC copy+paste 
2019-11-26 23:06:55 +0200 β€’ Fix ioDirFlag to be 4 which appears to be correct 
2019-11-26 23:06:27 +0200 β€’ Don't crash on invalid zone in Handle validation  
2019-11-26 04:01:31 +0200 β€’ Fix register-based 68k->native UPP calls' D0 nuke 
2019-11-26 03:57:20 +0200 β€’ Don't overwrite *ioNamePtr if not indexing files  
2019-11-22 03:41:15 +0200 β€’ Add FREMS selector to SANE's FP68K dispatcher     
2019-11-22 03:40:22 +0200 β€’ Force merge of free blocks at end of BlockFindSize
2019-11-19 22:59:13 +0200 β€’ Fix bug where everything left of a list got erased
2019-11-19 22:55:27 +0200 β€’ Redraw modified cell in LSetCell                  
2019-11-19 01:42:03 +0200 β€’ Add support 23 new native 68k exception handlers  

Bug fixing & stabilization

Since the previous update, focus has been mostly on improving the compatibility and stability of existing test applications through debugging, bug fixes and finishing some partially implemented features. This has so far had mostly effect on Excel, THINK Pascal and Fokker Triplane Flight Simulator:

Microsoft Excel 3.0 progress

Seems that Excel was complaining the out of memory error only because it could not locate the ‘PACK’ 6 resource (IntlUtils package). Adding a ‘PACK’ wrapper resource to System file, in similar fashion to the one which was added earlier for ResEdit as ‘PACK’ ID = 0, allowed this check to pass. After that a couple of new IntlUtils selectors were needed, with a couple file manager tweaks, and now Excel is able to start up successfully (albeit with a alert about not finding Excel, which can be passed).

It seems that a lot of tools and features are already functional, including basic worksheet creation, cell selection/modification, shape drawing, basic formatting etc. However, the most important feature, text input to allow entering data to worksheet cells, still requires TEDispatch to be implemented.

THINK Pascal 4.0 progress

One application which surfaced a lot of bugs and issues was THINK Pascal 4.0, here’s a rough summary of the issues found & ‘fixed’:

  • Reallocation of resources was not working properly in ChangedResource. Resource Manager did not save & restore active resource entry when measuring space available between current and next resource, which caused the new resource allocation in growth case to end up in wrong resource entry in the map (the next one was reallocated instead of current).
  • Removing name was attempted even if no name existed, causing resource names to get corrupted
  • RmveResource was not offsetting the types properly when removing the last instance of a given type.
  • The internal routine RGetResourceCount was trashing the resource entry pointer in resource manager’s stack state, causing some resources to be skipped altogether in iteration.
  • SetHandleSize was allowing locked blocks to move during the operation, which was explicitly told in Inside Mac documentation would not happen. This bug caused sometimes locked memory to move, with dereferenced pointers becoming invalid, causing crash during pascal code compilation.
  • A very rough approximation of MoveHHi was added. It works well enough to allow THINK Pascal to move resources out of the way to not prevent heap fragmentation from growing size of locked handles – but still causes sometimes fragmentation enough to surface this issue. However, this is for now enough to get the projects compile roughtly 2 to 3 times in one session before memory fragmentation kicks in and crashes the compiler.
  • The resource copy phase of THINK Pascal surfaced a bug in CountResources/GetIndResource, where CurMap was used instead of TopMap (CurMap should only be used when operating on 1-deep versions of the calls, Count1Resources/Get1IndResource). With this fix, the resource file copy phase succeeds.
  • Using “Transfer” command in THINK Pascal can be used to launch another app – in most cases, the application that was just compiled. However, the application zone teardown was – and still is – largely unfinished, having a number of issues. One that was fixed, was that resource manager attempts to release and purge all font caches with allocations in the application zone, which would be invalid upon launching the new program.
  • GetScrap trap had a minor issue, in which the case of hDest being nil it would crash, instead of just returning the scrap size as it was supposed to. This fixes the clipboard to (almost) work in THINK Pascal.

Now even a bit more complex programs can be compiled using THINK Pascal, for example one of Toni’s old games from as early as 1998. However, there are still minor glitches in various places:

  • Sometimes clipboard operation does not work on the first attempt.
  • Replacing existing application with “Build application” & replace dialog does not yet work because _Delete trap is still unfinished.
  • Sometimes text editing has very tiny minor selection glitches (when doing “Search again” in source code, where previous hit was selected and visible in area which was scrolled only little up, the old selection is left on when highlighting the new one).
  • Because resource map compaction is (still) unfinished, each time resources are updated and/or written in resource files, the file size grows indefinitely (by size of modified resource).
  • Compiling only works a couple times (2-3) on large projects, before heap fragmentation crashes the compiler.
  • The “Go” option does not yet work, because when running applications inside the THINK Pascal IDE, it does not actually launch a separate applications process for it. Instead, it loads the application “on top” of the pascal IDE, and in order to do this, it wraps a lot of its handlers to toolbox routines, and to do this, it manipulates the trap tables directly. This however assumes the toolbox trap table is located at 0xC00 on mac plus (0x75)-type machine, while it is currently located at 0xE00 (later machines). Because some currently used low memory globals overlap this area in non-compatible ways (for example, cursor device), they need to be adjusted a bit to behave differently on “Classic” type environment (like on real Mac Plus), and other way on later (slot-based / color-QD) environment.

Fokker Triplane Flight Simulator

It seems that the only issue causing Fokker Triplane to freeze upon starting new game was actually the lack of low-level interrupt handler emulation. The game attempted to override system VBL handler by adding its own VBL interrupt handler in the Lvl1DT low memory area containing the list of VIA’s Level 1 interrupt handler table, and as it was never called, caused the lock-up. The VBL, and 1-second timer, have now proper handlers in this low memory area, which is checked upon triggering the emulated VBL interrupt. This also includes the familiar performance optimization, where unpatched handlers skip the MixedMode interface with direct method call. It seems that with this change, the game is now fully playable with sound effects (although not thoroughly tested).

Full list of changes since last post

2019-11-16 04:08:45 +0200 β€’ Lowlevel VIA interrupt handler for Fokker Triplane
2019-11-13 03:50:11 +0200 β€’ Tweak SndNewChannel to not crash ResEdit          
2019-11-09 09:03:38 +0200 β€’ Dummy OpenDeny/OpenRDeny (=>paramErr for local FS)
2019-11-09 07:51:53 +0200 β€’ Workaround for mapping wideOpen Rgn in DrawPicture
2019-11-09 07:49:02 +0200 β€’ Move File Manager commands to separate module     
2019-11-09 07:47:37 +0200 β€’ Move SoundDriver test code to separate module     
2019-11-09 02:29:58 +0200 β€’ Add dummy BitMapRgn trap for aWorm                
2019-11-06 05:40:10 +0200 β€’ Respect port clipRgn in CopyBits                  
2019-11-06 04:31:42 +0200 β€’ Fix edge cases in UnpackBits                      
2019-11-04 21:32:35 +0200 β€’ If GetScrap argument hDest = nil, return only size
2019-11-04 11:31:38 +0200 β€’ Clear font caches when closing res file w/ fonts  
2019-11-04 04:16:41 +0200 β€’ Add IUMagString & improve Transliterate for Excel 
2019-11-04 03:09:38 +0200 β€’ Fix Count…/GetIndResource to begin at TopMap    
2019-11-04 02:15:21 +0200 β€’ Add memLockedErr enum missing from previous commit
2019-11-04 02:14:56 +0200 β€’ (HACK) MoveHHi added - works, but not as in specs!
2019-11-04 02:12:08 +0200 β€’ Fix SetHandleSize for locked blocks (don't move)  
2019-11-04 02:06:36 +0200 β€’ Fix tail check in the zone check                  
2019-11-04 02:04:53 +0200 β€’ Fix name allocation in AddResource                
2019-11-04 02:03:14 +0200 β€’ StdFile: No "New folder" button in old dialogs    
2019-11-03 05:53:37 +0200 β€’ More verbose heapcheck & optional free space debug
2019-11-02 18:13:37 +0200 β€’ Fix possible TextEdit calibration memory move bug 
2019-11-02 17:40:30 +0200 β€’ Fix resource map validation for maps with no names
2019-11-01 17:55:35 +0200 β€’ Add dummy cstr2dec and pstr2dec selectors in Pack7
2019-11-01 17:54:15 +0200 β€’ Don't trash ResourceEntry ptr in RGetResourceCount
2019-11-01 02:30:02 +0200 β€’ Dummy IUMagWString & Transliterate(Text) for Excel
2019-11-01 00:43:41 +0200 β€’ Add 'PACK' 3,4,5,6&7 mapping (Excel now starts up)
2019-10-31 21:33:21 +0200 β€’ Resource fork compact placeholder code            
2019-10-31 01:01:48 +0200 β€’ Fix RmveResource offset bug at last item of a type
2019-10-30 21:56:35 +0200 β€’ Don't try to remove name if entry doesn't have one
2019-10-30 21:55:55 +0200 β€’ Add map checks to Resource Manager calls for debug
2019-10-30 04:54:54 +0200 β€’ Fix reallocation of resource in ChangedResource   

Continuum + two other new apps & bundle write support

It’s not that long since the previous news update, but there are a couple changes that are especially important:

Application bundle writable file system support

One problem with the app bundles was that by nature, their contents have read-only privileges to prevent unwanted modifications. However, as the emulator’s virtual filesystem needs to be able to not only create new files, but also modify existing ones (such as highscore saving in ZeroGravity and Continuum), using the files directory from inside the app bundle was not suitable.

To make the virtual file system writable, the emulator now relocates it to a safely writable location at /Users/<username>/Library/Application Support/MACE/<application-name>/vfs. This has a couple of neat features:

  • On every launch, any original files which are either not present or zero-length are copied from the app bundle to the writable location. This includes the initial launch, during which the entire filesystem gets replicated there.
  • Holding down the “Shift” key performs a “soft-reset” of the writable filesystem, meaning that all originals files are replicated even if they exist already in the writable filesystem. This is handy in cases if the original system or application files get damaged and would cause the emulation to fail to start. NOTE: There is not yet any prompt when performing the “soft-reset”, but there is plan to add a confirmation dialog (including a option for “hard-reset” feature) later at some time.
  • Any files modified or saved by user are fully accessible through this folder in AppleDouble format, which can be exchanged between applications and/or other emulators (or with appropriate conversion, real Macs).

MacOS Catalina support tweaks

As the new macOS Catalina was released recently, it was discovered that there was a unnecessary privilege used by the SDL2: It was listening to background key presses solely to track state of the caps lock key. Luckily, there was already a patch for this issue in SDL 2.0.10, so updating the SDL2 library (and adjusting some caps lock support code) fixed this problem.

(Please note that there will still be warning for unsigned applications, as to remove this Apple requires not only signing, but since 10.15 also notarization of any downloaded MacOS applications, both which require the paid Apple Developer Program membership.)

New test application: Continuum 1.04

Thanks to the personal permission by Brian Wilson, in combination with the writable bundle support we added this weekend, we have now Continuum 1.04 available as a fully functional MACE app bundle (including planet editor):

You can try the game out by visiting the downloads section. If you would like to know more about Continuum and its history, you can also visit the Continuum web page Brian Wilson has created here.

Other new test applications: Mac Concentration and GunShy 1.3

Thanks to the small fix done to the bug in SANE FP68K trap’s FMULD selector, Mac Concentration now works perfectly (it was previously stuck in game board generation loop due to the messed up multiplication results).

With the writable file system support, GunShy 1.3 is also finally feature-complete as a application bundle, as players need to be able to save & load games.

Like Continuum, these two new app bundles are available freely for trying out in the downloads section.

Full list of changes since last post

2019-10-27 07:49:25 +0200 β€’ Relocate VFS to writable path on Mac OS X startup 
2019-10-27 04:52:17 +0200 β€’ Update Alice, Continuum and GunShy JSON configs   
2019-10-27 04:45:56 +0200 β€’ Adjust CapsLock check to work with new SDL version
2019-10-27 04:44:03 +0200 β€’ Update to SDL2.0.10 to remove scary Catalina popup
2019-10-27 04:21:42 +0200 β€’ Tweak InvalRgn/InvalRect to work better in Conti..
2019-10-26 05:17:58 +0300 β€’ Update cmake JSON config for MacConcentration     
2019-10-26 04:25:41 +0300 β€’ Adjust VBL routine call order for sound refresh   
2019-10-26 03:50:40 +0300 β€’ Fix FMULD bug (param1 not assigned correctly) 

Standard File Package

It’s been quite a while since last update, which is due to combination of us being busy real-life jobs, and focusing work on this project on a monolithic feature, which in this case is nothing less than getting the Standard File Package to work!

Features

This is list of the features which the M.A.C.E. Standard File Package emulation is currently capable of:

  • All 8 selectors for Pack3 (SFPutFile, SFGetFile, SFPPutFile, SFPGetFile, StandardPutFile, StandardGetFile, CustomPutFile, & CustomGetFile). The ones tested are highlighted, but others should work too.
  • Support for custom file dialogs (with assorted hacks to convert MFS-style dialogs, such as the “Save” dialog in MS-BASIC 2.00, to the new HFS-style format)
  • Supports both SFReply and StandardFileReply outputs
  • File listing using List Manager, which displays currently System 6-style SICNs, but with System 7.1+ style spacing (later expandable to use the real icons, when we get Desktop Manager interface)
  • Path popup menu, visually and functionally like on real System 7.x
  • Desktop folder support
  • Focus on selected items (including file list with highlight frame), alterable by mouse or tab key
  • Most of common SF key shortcuts: Clipboard shortcuts, Cmd+S (Save), Cmd+O (Open), Cmd+N (New folder), Cmd+D (Go to desktop), Cmd+Up (Go to parent), Cmd+Shift+Up (Go to root/desktop), Cmd+Down (Open folder), (Cmd+Left/Right to browse volumes not yet implemented)
  • Filename field input filtering (prevents “:” from being used in filenames, which is path separator). Also, copy-pasted filenames will be filtered with proper alert messages.
  • Most of SF items/hooks implemented:
    • Items: sfItemOpenButton, sfItemCancelButton, sfItemVolumeUser, sfItemEjectButton, sfItemDesktopButton, sfItemFileListUser, sfItemPopUpMenuUser, sfItemDividerLinePict, sfItemFileNameTextEdit, sfItemPromptStaticText, sfItemNewFolderUser,
    • Hooks: sfHookFirstCall, sfHookCharOffset, sfHookNullEvent, sfHookRebuildList, sfHookFolderPopUp, sfHookOpenFolder, sfHookLastCall, sfHookGoToDesktop
    • Not yet implemented: sfHookOpenAlias, sfHookGoToAliasTarget, sfHookGoToNextDrive, sfHookGoToPrevDrive, sfHookChangeSelection, sfHookSetActiveOffset
  • File type filtering supported, both by typeList and FileFilterProc
A GIF animation showing the progress done in the past month, from scratch to the latest version

Known issues

Although most of the Standard File Package is functional, and usable, there are still some issues left:

  • Because DirCreate is not yet implemented in NativeFS layer, FindFolder cannot create the Desktop Folder/Trash folders to the file system, thus at least Desktop Folder needs to exist to allow access to “Desktop” level in the SF dialogs. This also prevents “New folder” from actually creating the folders.
  • Eject button does not yet do anything, as the NativeFS volumes are non-ejectable
  • There are minor differences to real System 7.x style SF dialogs, for example with certain elements being a few pixels off their intended locations, and popup menu’s width not always expanding
  • Some custom dialogs don’t yet work exactly as they should, for example THINK Pascal 4.0 “Add files” dialog erases left edge of the applications own custom list located below the SF file list, and for some reason it allows attempts to add folders as source files…
  • Location of the SF dialog is sometimes not correct (for example, Railroad Tycoon’s “Save game” dialog is partially under the menu bar)
  • We cannot yet create app bundles for the currently working freeware/shareware applications that use StandardFile, because when sandboxed the bundle file system is read-only, and thus attempting to save anything to it would straight out fail. To work around this, we need to implement certain changes to the way file system in bundled applications is handled, but we are already working on that for the next release

Other improvements made for Standard File

There were a couple features that were implemented as part of Standard File Package implementation, some of which were necessary to make it work

NativeFS AVL tree balancing and iteration support

One important feature was the need for catalog iteration, which is used by Standard File dialogs to enumerate the files in current folder to be displayed in the file list. This allows for example GetCatInfo to use ioFDirIndex in the parameter block to index specific files inside given directory.

Also, this gave a good excuse to finally implement the actual AVL balancing algorithm in the NativeFS file system, which until now had behaved mostly as a dummy binary tree. Below is a screenshot of how the file system structure was changed by the balancing algorithm:

“Before” and “After” debug visualizations of the NativeFS binary tree data structure (click for larger view)

On the right-hand side, is the unbalanced “dummy” binary tree, and on left-hand side is the same file system, when using AVL balancing algorithm to do the insertions. The deepest nodes were reduced from, in this case, from way over 100+ key comparisons into a rough maximum of 10+.

Popup Menu Control

One important feature of the HFS-style Standard File dialogs is the navigation aid provided by the path popup menu. For this, the Popup Menu Control CDEF 63 was implemented. On real Macs, this was originally part of Communications Toolbox, before it was merged to the System 7.x at some point. The Standard File dialogs use only a subset of its features, but foundation for most use cases was built at the same time, so taking it into more common use should be quite easy. As it uses the Menu Manager’s PopUpMenuSelect trap call, the actual menu selection was already there.

One fun and tricky part though was the need to add MDEF “wrapper” for SF popup path menu, to ensure that the opened popup menu would never be narrower than width of the popup control. To do this, the control imitates how the real Macs did this by adding temporarily a MDEF “wrapper”, which injects modified menuWidth value to the menu after it receives a mSizeMsg message from the Menu Manager, thus modifying the resulting popup menu size.

Picture Button Control

The CDEF 61, picture button, was implemented just to allow adding the “New folder” button to the “put” dialogs. It is quite simple, at least in monochrome version, just drawing a PICT resource as content of a regular push button

Dialog Manager improvements

The StdFilter, which is also used by Standard File dialogs, was improved to add features used by it:

  • Outlining default button with FrameRoundRect
  • Handle “cancel” item’s shortcut key as escape/cmd+dot
  • Track cursor to turn it into i-beam over enabled textedit fields
  • Handle update events for default items

Also, the default shortcut keys (Cmd+X/C/V for Cut/Copy/Paste) were also implemented in DialogSelect trap.

Other news: 68020/68040 support

In other news, Pukka has also been busy adding 68020/68040 support, which includes:

  • Bitfield instructions (bfins, bfset, bftst, bfchg, bfclr, bfextu, bfffo)
  • cas2.b/w/l instruction
  • divs.l/divu.l 32-bit division instructions
  • move16 instruction for 68040
  • Disassembler support for the new and improved instructions
  • Various other improvements

Full list of changes since last post

2019-10-21 02:25:22 +0300 β€’ GetResource falls back to TopMap if CurMap invalid
2019-10-20 23:00:18 +0300 β€’ Fix byteswap bug in LDEF -4000 (item font & size) 
2019-10-19 21:44:23 +0300 β€’ Update ArmorAlley JSON config, it now almost works
2019-10-19 02:18:39 +0300 β€’ Fix _Allocate, use ioFRefNum/FCB to get the vcbPtr
2019-10-19 02:06:57 +0300 β€’ Make MemoryManager allocation alignment adjustable
2019-10-19 01:54:24 +0300 β€’ Fix AddResource bug, ResErr not cleared on success
2019-10-19 01:44:31 +0300 β€’ Implemented RmveResource                          
2019-10-18 17:44:45 +0300 β€’ Set ioFDirIndex for GetCatInfo in SF popup refresh
2019-10-18 17:21:28 +0300 β€’ Desktop folder support improved in SFUpdateReply  
2019-10-18 17:08:07 +0300 β€’ Show files in Desktop Folders on desktop          
2019-10-18 16:25:39 +0300 β€’ Update StdFile Eject button enable/disable state  
2019-10-18 03:39:11 +0300 β€’ Close app resource file on exit from emulator     
2019-10-18 03:07:05 +0300 β€’ Draw CDEF 63 popup triangle & hack to resize menu 
2019-10-17 00:07:14 +0300 β€’ Fix StdFile dirID byteswap bug for popup menu item
2019-10-17 00:05:13 +0300 β€’ Rough proto of autoTrack to CDEF 63 popup tracking
2019-10-16 23:28:35 +0300 β€’ Add sfHookFolderPopUp trigger & handler to StdFile
2019-10-16 23:27:14 +0300 β€’ Implement testCntl in CDEF 63 (& refactor headers)
2019-10-16 22:47:54 +0300 β€’ Merge branch 'master' of  
2019-10-16 22:47:13 +0300 β€’ Fix popup menu creation (fix title & set icon cmd)
2019-10-16 22:45:09 +0300 β€’ Work on CDEF 63 (draw menu in the control)        
2019-10-16 22:44:10 +0300 β€’ Implement mDrawItemMsg in MDEF 0                  
2019-10-16 22:40:13 +0300 β€’ fix initializing 68040 processor type and linkin..
2019-10-16 04:50:31 +0300 β€’ Implement mCalcItemMsg in MDEF 0                  
2019-10-16 03:59:46 +0300 β€’ Implement calculation of popup bounds in CDEF 63  
2019-10-16 03:58:56 +0300 β€’ Make Mac_GetMenu visible in public headers        
2019-10-16 03:58:31 +0300 β€’ Fix bugs in StdFile path popup folder iteration   
2019-10-15 02:25:13 +0300 β€’ Work on CDEF 63 init, dispose and calc messages   
2019-10-14 21:40:29 +0300 β€’ disassembler fixes and support for bit field ins..
2019-10-14 02:50:31 +0300 β€’ Work on CDEF 63: Init StdFile dir popup contents  
2019-10-13 07:21:56 +0300 β€’ Fix filename in GetFileInfo for ioFDirIndex > 0   
2019-10-12 23:57:53 +0300 β€’ Fix old-style StdFile filelist bounds byteswap bug
2019-10-12 23:56:36 +0300 β€’ Fix ioFDirIndex>0 case for GetFileInfo in NativeFS
2019-10-12 04:29:25 +0300 β€’ "New folder" dialog added, and many fixes & tweaks
2019-10-12 02:09:45 +0300 β€’ Cmd+Down in SF & fix list arrow when no selection 
2019-10-11 22:40:18 +0300 β€’ Handle Cmd+S, Cmd+O, cmd+D and cmd+N in StdFile   
2019-10-11 22:21:15 +0300 β€’ Fix crash in CDEF 61 dispCntl message handler     
2019-10-11 05:12:59 +0300 β€’ Enable "new folder" button in StdFile put dialogs 
2019-10-11 05:11:37 +0300 β€’ Implemented CDEF 61 ('PICT' button control for SF)
2019-10-11 02:44:50 +0300 β€’ Don't try to go to the parent of Desktop          
2019-10-11 02:39:49 +0300 β€’ Open parent with cmd+up, desktop with cmd+shift+up
2019-10-11 01:49:34 +0300 β€’ Implement cut/copy/paste handling in DialogSelect 
2019-10-11 00:08:41 +0300 β€’ Fix inverted zonecheck result in handle validation
2019-10-11 00:06:45 +0300 β€’ Finish IsCmdChar implementation (& fix signature) 
2019-10-11 00:05:16 +0300 β€’ Fix KCHR load from ROM (RomMapInsert & TmpResLoad)
2019-10-10 22:27:30 +0300 β€’ Cache KCHR 0 in script manager expand mem globals 
2019-10-10 10:32:50 +0300 β€’ Handle escape key in StdFilter                    
2019-10-10 10:32:26 +0300 β€’ Add dummy IsCmdChar to ScriptUtil dispatcher      
2019-10-10 02:43:08 +0300 β€’ Handle iBeam cursor in StdFilter null/updateEvents
2019-10-10 02:25:40 +0300 β€’ Frame default button in StdFilter (also disabled) 
2019-10-10 01:53:25 +0300 β€’ Handle desktop folder and related buttons         
2019-10-09 22:58:06 +0300 β€’ Use new defines for FindFolder folders in StdFile 
2019-10-09 22:57:33 +0300 β€’ Call DirCreate in FindFolder when createFolder set
2019-10-09 22:56:44 +0300 β€’ Add dummy DirCreate placeholder to FSDispatch     
2019-10-09 22:55:41 +0300 β€’ Merge branch 'master' of  
2019-10-09 22:55:37 +0300 β€’ Fix font strike size to inRec size scale ratio    
2019-10-09 22:20:59 +0300 β€’ disassembler support for move16                   
2019-10-09 21:54:33 +0300 β€’ remove unused sr_bits field from instruction data 
2019-10-09 21:33:53 +0300 β€’ finish implementing move16 instruction            
2019-10-09 21:26:06 +0300 β€’ update xcode 6 project                            
2019-10-09 17:23:48 +0300 β€’ Fix FindFolder memory corrupt (ioNamePtr not set) 
2019-10-09 11:16:53 +0300 β€’ Fix byteswap bug in fld# type comparison          
2019-10-09 11:15:00 +0300 β€’ Fix fld# search to work on non-system folder lists
2019-10-09 03:46:40 +0300 β€’ Add linecount script                              
2019-10-09 03:46:28 +0300 β€’ Add empty desktop/trash folders to THINK Pascal   
2019-10-09 03:32:46 +0300 β€’ AliasManager added, to implement FindFolder for SF
2019-10-09 02:42:02 +0300 β€’ Implemented HOpenResFile                          
2019-10-08 00:43:44 +0300 β€’ Implement sfHookCharOffset and sHookRebuildList   
2019-10-07 21:56:21 +0300 β€’ Found hidden ListManager selector, used by StdFile
2019-10-07 21:55:09 +0300 β€’ Add PageUp/Down and Home/End keys to SDL keymapper
2019-10-07 04:57:10 +0300 β€’ Use inThumb also to draw control on SetCtlMin/Max 
2019-10-07 04:55:48 +0300 β€’ Fix wrong zero-case part code bug in HiliteControl
2019-10-07 03:16:46 +0300 β€’ Fix ignore dot & '%'-prefix items in InsertResMenu
2019-10-07 02:19:28 +0300 β€’ Fix memory leak in DrawPicture                    
2019-10-07 02:18:10 +0300 β€’ Fix conversion of uncompressed pixmap data to b&w 
2019-10-06 23:37:38 +0300 β€’ fix divs.l, start implementing move16 instruction 
2019-10-06 00:00:12 +0300 β€’ allocate move16 instruction                       
2019-10-05 23:07:36 +0300 β€’ fixes for divs.l/divu.l instruction               
2019-10-05 22:00:21 +0300 β€’ Merge branch 'master' of  
2019-10-05 21:59:44 +0300 β€’ implement chk2.b/w/l instructions                 
2019-10-05 21:57:57 +0300 β€’ Merge branch 'master' of  
2019-10-05 21:57:22 +0300 β€’ Fix resource name remove bug                      
2019-10-05 21:27:28 +0300 β€’ implement cas2.w and cas2.l instructions          
2019-10-05 20:34:46 +0300 β€’ finish cas.b/w/l instruction implementation       
2019-10-05 04:50:14 +0300 β€’ Fix bug in FindWindow (theWindow not initialized) 
2019-10-05 04:10:11 +0300 β€’ Merge branch 'master' of  
2019-10-05 00:11:35 +0300 β€’ make bsr instruction branchless                   
2019-10-04 23:43:40 +0300 β€’ THINK Pascal def missing from root CMakeLists.txt 
2019-10-04 23:25:35 +0300 β€’ register variants for bfins, bfset and bftst      
2019-10-04 23:05:14 +0300 β€’ remove unused c16 param from bfxxx_read/write     
2019-10-04 22:42:22 +0300 β€’ use read_pc_immediate for bit field extension     
2019-10-04 22:30:25 +0300 β€’ fixes for bit field instructions                  
2019-10-04 01:06:20 +0300 β€’ Add THINK Pascal 4.0 test app JSON config to CMake
2019-10-04 01:06:00 +0300 β€’ Implemented MaxSizeRsrc                           
2019-10-03 22:25:37 +0300 β€’ Reinforce fake handle handling in memory manager  
2019-10-03 22:21:15 +0300 β€’ bfchg, bfclr, bfext, bfextu and bfffo instructio..
2019-10-03 22:09:06 +0300 β€’ Revert "bfchg, bfclr, bfext, bfextu and bfffo in..
2019-10-03 22:08:15 +0300 β€’ bfchg, bfclr, bfext, bfextu and bfffo instructio..
2019-10-03 04:04:45 +0300 β€’ Escape MacRoman filenames & avoid UTF8 conversions
2019-10-03 00:27:19 +0300 β€’ SF key filtering (max length, skip ':' & CR, etc.)
2019-10-03 00:26:24 +0300 β€’ Support "autoKey" in keyboard and platform modules
2019-10-02 02:55:34 +0300 β€’ Handle tab key in SFDialogFilter                  
2019-10-02 02:14:00 +0300 β€’ Tweak list ListManagerClickTrackProc visible size 
2019-10-02 02:00:26 +0300 β€’ Fix missing sfHookLastCall set on SF dialog close 
2019-10-02 01:58:50 +0300 β€’ Escape characters in NFS (and fix full-path bug)  
2019-10-02 00:08:29 +0300 β€’ Adjust Art Class JSON to use 68020 machine config 
2019-10-02 00:07:57 +0300 β€’ Update SF reply records during event loop         
2019-10-02 00:07:24 +0300 β€’ Handle invalid names and replace in "save" dialogs
2019-10-02 00:05:56 +0300 β€’ Reduce keyboard debug logging                     
2019-10-01 22:34:26 +0300 β€’ Fix missing origName in SFPutFile                 
2019-10-01 22:06:24 +0300 β€’ Merge branch 'master' of  
2019-10-01 22:06:17 +0300 β€’ Tweak Gestalt and fix M68kHelper for 68020 support
2019-10-01 21:35:17 +0300 β€’ kemu header cleanup                               
2019-10-01 21:33:14 +0300 β€’ update xcode6 project                             
2019-10-01 20:38:00 +0300 β€’ 020 bit field instructions, optimizations, some ..
2019-10-01 17:01:23 +0300 β€’ First successful "open" from Standard File        
2019-10-01 15:37:53 +0300 β€’ Missing header update for no-read privilege flag  
2019-10-01 15:37:03 +0300 β€’ Add missing part of previous LayerDispatch fix    
2019-10-01 15:36:20 +0300 β€’ Handle cancel button & implement closing dialogs  
2019-10-01 15:20:57 +0300 β€’ Handle opening of folder in file list             
2019-10-01 15:20:00 +0300 β€’ Don't hilite disabled items in file list lDrawMsg 
2019-10-01 14:58:06 +0300 β€’ Error dialog support for Standard File            
2019-10-01 14:57:19 +0300 β€’ Add some more TODOs to StdFilter proc             
2019-10-01 14:56:52 +0300 β€’ Fix bug in AutoPositionWindow lcParentWindow case 
2019-10-01 13:42:47 +0300 β€’ Fix redraw bug in file list item selection        
2019-10-01 13:40:58 +0300 β€’ Detect when a folder is opened instead of file    
2019-10-01 13:39:08 +0300 β€’ Fix accidental file list framing in "Get" dialogs 
2019-10-01 03:24:36 +0300 β€’ Update save/open button state (and title)         
2019-10-01 01:21:11 +0300 β€’ Add Desktop Folder and Trash to TeachText config  
2019-10-01 01:20:45 +0300 β€’ Add empty folder creation support to make.cmake   
2019-10-01 01:06:51 +0300 β€’ Go to parent folder by clicking volume name       
2019-09-30 02:06:23 +0300 β€’ Handle more events in SF(update, activate & mouse)
2019-09-30 02:02:42 +0300 β€’ Fix byteswap bug in FindDialogItem                
2019-09-29 03:39:31 +0300 β€’ SF activation handling: set reply & frame filelist
2019-09-29 03:35:48 +0300 β€’ Fix more maxIndex bugs in LGetSelect and LSearch  
2019-09-28 03:54:21 +0300 β€’ Add file type filtering & call custom file filters
2019-09-28 03:53:38 +0300 β€’ Fix bug in Standard File dialog autopositioning   
2019-09-28 03:28:31 +0300 β€’ Fix SF special folder detection bytes-wap bug     
2019-09-28 03:27:37 +0300 β€’ Fix ioDrDirID for folders in GetCatInfo           
2019-09-28 03:08:52 +0300 β€’ Handle list clicking in SF dialog event handler   
2019-09-28 03:08:12 +0300 β€’ Fix maxIndex case in LClick selection clearing    
2019-09-28 03:07:09 +0300 β€’ Set mouseLoc in ListRec in LClick                 
2019-09-28 03:05:32 +0300 β€’ Fix ioDirFlg setup in GetCatInfo                  
2019-09-28 01:59:31 +0300 β€’ Re-enable EraseRect calls in SF dialog item redraw
2019-09-28 01:57:24 +0300 β€’ Fix ioNamePtr handling in GetCatInfo              
2019-09-28 01:56:01 +0300 β€’ Draw volume icon & name in Standard File dialogs  
2019-09-27 15:40:16 +0300 β€’ Finalize LDEF -4000 drawing for standard file list
2019-09-27 15:38:52 +0300 β€’ Fix file type mapping bugs in standard file pack  
2019-09-27 15:37:44 +0300 β€’ Add Scratch20 low memory global                   
2019-09-27 04:21:58 +0300 β€’ First real filelist shown in Standard File Dialogs
2019-09-26 22:56:17 +0300 β€’ Add balancing algorithm to the AVL tree (+debug)  
2019-09-26 22:54:32 +0300 β€’ Add missing header from previous commit           
2019-09-26 22:53:19 +0300 β€’ Finish volume/directory setup in SF initialization
2019-09-26 11:30:42 +0300 β€’ Reset to VCBQHdr after last VCB in SF volume scan 
2019-09-26 04:06:05 +0300 β€’ Work on volume state initialization in SF package 
2019-09-26 04:03:16 +0300 β€’ Tweak FMGetDrive to allow passing nil driverRefNum
2019-09-26 04:02:01 +0300 β€’ Support GetVolInfo calls with drvNum as vRefNum   
2019-09-26 04:01:13 +0300 β€’ Add four flag bytes in front of DrvQEl in NativeFS
2019-09-25 04:33:14 +0300 β€’ Set default SF volume&folder to application folder
2019-09-25 04:11:00 +0300 β€’ Add indexing to GetCatInfo + fetch real ioDrNmFls 
2019-09-25 04:09:38 +0300 β€’ Add rough iteration support to file system AVLTree
2019-09-22 13:09:58 +0300 β€’ Refresh file list in StdFile dialogs              
2019-09-22 05:17:32 +0300 β€’ First StdFile dialogs visible, not yet functional 
2019-09-22 05:15:58 +0300 β€’ Support opcodes 0x12, 0x13 and 0x14 in pictures   
2019-09-22 04:41:36 +0300 β€’ More progress on StdFilePack                      
2019-09-22 04:39:36 +0300 β€’ Minor List Manager fixes and tweaks               
2019-09-22 04:37:15 +0300 β€’ Placeholder for popup CDEF (63)                   
2019-09-19 23:06:31 +0300 β€’ Finalize CheckWindow selector for LayerDispatch   
2019-09-19 03:25:17 +0300 β€’ More work on Standard File Package                
2019-09-19 03:23:39 +0300 β€’ Add two new selectors to LayerDispatch for StdFile
2019-09-18 03:58:15 +0300 β€’ Some work on Standard File Package                
2019-09-18 03:54:32 +0300 β€’ Use _RelString in IUMagIDString for now           
2019-09-13 01:48:34 +0300 β€’ Mac OS X 10.6.8 compatibility                     
2019-09-11 21:30:30 +0300 β€’ Enable GetNextEvent CPU throttle for Arkanoid     
2019-09-11 18:25:41 +0300 β€’ Add Crystal Quest and Armor Alley test apps       
2019-09-09 01:31:04 +0300 β€’ Bump up runtime version for new bundles           
2019-09-09 00:58:48 +0300 β€’ Tweak IAGO cmake config                           
2019-09-07 14:04:32 +0300 β€’ Add two more test app configs, IAGO and EveryMan 1
2019-09-07 14:04:02 +0300 β€’ Add substitution for missing fonts in Font Manager

A bit of nVIR-A experience, and a new test application

Infection compatibility

We had this week a rather interesting thing happen by accident, which was rather unusual: While trying out a couple potential test applications with the emulator, we ran into an application which was infected by nVIR A type virus ( https://en.wikipedia.org/wiki/NVIR ). What makes this interesting, is that it apparently was able to infect the System file of that application’s bundle, as we now have near-complete resource write support:

Above is partial output of the System file’s resource map debug dump (and Rezilla screenshot of infected System file), and the ‘nVIR’ and ‘INIT’ resources were actually written into the System file by the virus in infected application – and the system resource map seemed to be (mostly) still functional! I only found this out because a bug in resource writing corrupted Geneva font, causing the infected application to crash. A kind of controversial achievement, having good enough compatibility for even viruses to work in the toolbox emulation…

One of the positive sides of the current per-application bundling of files as isolated file systems, is that the infection never was able to break out of the application bundle. We have also scrubbed through all the disk images and Mac files downloaded we use for development and testing, to make sure there will not be any risk of infection at later time (and run Disinfectant on the source Macs/emulators regularly). These viruses are ancient, but can awake up at any time it seems…

New test application: IAGO

After we got the infection sorted out and everything back to normal, we experimented with a couple of new test applications, and found out that IAGO, which is a public domain game written by David Reed in 1984.

We were able to identify one bug in ROXLI.L instruction, which caused the game timer to not advance correctly. After it was fixed, the game works as smoothly as it does on a (fast) real Macs. It is now also available for testing as application bundle in the downloads section.

Performance improvements and menu stuff

The past few weeks have mostly gone to improving performance of the runtime environment. Although all the apps have been running smoothly without any issues, there was not much focus on improving the actual CPU usage of the host system.

Unlike hardware-based emulators such as Mini vMac, where everything including applications, ROM, and system software run on 68K, in M.A.C.E. there is distinct separation of execution between 68K based code, and the Toolbox code written in native C. This creates some minor issues with managing performance, as especially in regards of early software – QuickDraw routines would be much slower on real 68000 hardware, and thus games depending on certain 68000 execution speed would experience certain slowdown of using those QuickDraw (and other Toolbox) routines.

However, in M.A.C.E., the native code always runs at full speed, and those expectations break down as experienced in Stunt Copter, Zero Gravity, Harrier Strike Mission II, Brickles among some other applications. To mitigate this, there is an artificial slowdown that the emulator can optionally enable delay throttle in GetNextEvent, which we have so far used to make most of the aforementioned applications usable.

68K emulation throttle

Pukka added an experimental throttle to the 68K emulator, which attempts to slow down applications which do for example busy-looping and polling of TickCount to perform timing. In the old non-multithreading MacOS, this kind of timing was pretty common especially in games that required precise control on the CPU resources. This should in future help CPU usage in programs heavy on 68K code in game loops, such as Dark Castle and Apache Strike. This however does not help the cases which rely a lot on Toolbox, such as the applications which benefit of the GetNextEvent delay throttle.

SystemTask and execution yielding in Toolbox routines

As some may remember, when Apple transitioned from Mac OS 9 to X, one way to yield execution was to add SystemTask calls to blocking loops (in cases where WaitNextEvent would not be desirable). As the Toolbox in M.A.C.E. is completely implemented in C, we have the power to choose yielding strategy ourself, and for that we are experimenting at the moment with very small delays of 1 millisecond on each call to SystemTask, and any other busy-looping toolbox routines, which include:

  • MenuSelect and PopUpMenuSelect
  • TrackControl and DragControl
  • DragTheRgn (affecting DragGrayRgn and DragWindow), GrowWindow and TrackBox
  • TEClick
  • LClick
  • Delay (it had earlier implementation used by the GetNextEvent hack, but was implemented in a rather stupid way which ended up as a busy-loop on host CPU…)
  • File Manager synchronous command queueing
  • Device Manager synchronous command execution, and driver close

Video rendering and dirty-rectangle detection

Another optimization feature was the addition of detection of video memory “dirty rectangles”, which define which areas of video memory have changed, so that only those would need to be drawn to the screen. This optimization is being experimented especially to improve the future fullscreen and pixeldouble modes (which are not yet enabled due to requiring still some work), and depending on the machine and application, there is varying degree of performance improvement, but not very much (which is to be expected as the 512×342 screen with 1-bit colors does not require a lot of the CPU in regards of pixel format expansion and SDL surface updates).

With these changes, we got CPU usage of 100% to drop to around 7-10% on a Mid-2010 Mac Pro, and 9-12% on 2015 MacBook Pro of the currently bundled applications. Of course, some test applications we are experimenting with still require further work to gain these benefits, but this should help at least keep those fans more quiet on MacBook computers πŸ™‚

We have also updated the test application bundles with these new optimizations in the downloads section on this blog.

Hierarhical menus and PopUpMenuSelect

In addition to performance optimizations, we also finally added the hierarhical menu and popup menu support which was for a long time waited to make especially Railroad Tycoon way more playable.

There was a bit of tweaking, bug fixing, polishing, more bug fixing and tweaking to get those two features to work, but now they appear to work exactly like on a real Mac (timing, positioning, mouse tracking behaviour, screen buffer saving, etc). Sadly we don’t have yet any bundled test applications to demonstrate this, but at least the applications we are using internally all work perfectly.

These are again another major features which gets us closer to the “general classic replacement” release, although there is still lot of work needed to get us there. The progress is however very promising at current pace.

Full list of changes since last post

2019-09-05 01:47:24 +0300 β€’ Add dirty rectangle visualization to debug build 
2019-09-05 00:35:24 +0300 β€’ Update runtime version in cmake script 
2019-09-04 12:44:03 +0300 β€’ Fix offset of minimum-intersection dirty-rectangle 
2019-09-04 03:38:02 +0300 β€’ Finally fix that darn StretchBits… 
2019-09-04 03:14:55 +0300 β€’ Improved, faster dirty rectangles with bit-o-magic 
2019-09-03 22:35:25 +0300 β€’ Implement GetItemIcon and SetItemIcon traps 
2019-09-03 22:21:14 +0300 β€’ Add pixel-double support also to windowed mode 
2019-09-03 22:20:11 +0300 β€’ Fix uninitialized mouse loc in PopUpMenuSelect 
2019-09-03 01:27:55 +0300 β€’ Implement prototype dirty-rectangle video renderer 
2019-09-02 22:42:44 +0300 β€’ Add EnvRunBackgroundTasksReleaseCPULockWithYield 
2019-09-02 20:43:19 +0300 β€’ Fix hit-testing of hierarchical menus in MBDF 
2019-08-30 22:31:02 +0300 β€’ Fix mouse button check in relative mouse mode 
2019-08-30 03:13:25 +0300 β€’ Update trap list XLS/CSV 
2019-08-30 03:06:21 +0300 β€’ Implement basic non-styled TEPaste 
2019-08-30 02:56:58 +0300 β€’ Fix two masking bugs in CopyMask 
2019-08-30 02:07:25 +0300 β€’ Implement pic opcodes 0x1A & 0x1B (RGBColor fg/bg) 
2019-08-30 02:04:08 +0300 β€’ Fix popup menu crash 
2019-08-30 01:13:42 +0300 β€’ Initial fullscreen (and pixel-double) support 
2019-08-28 22:25:51 +0300 β€’ Enable delay hack in Brickles test app 
2019-08-28 22:25:34 +0300 β€’ Add execution yield for 1ms to SystemTask 
2019-08-28 21:54:36 +0300 β€’ Fix the earlier video update limiter adjustment 
2019-08-28 13:31:18 +0300 β€’ Experimental change to lower CPU usage, has issues 
2019-08-27 23:54:36 +0300 β€’ usleep logic to m68k helper 
2019-08-27 05:04:18 +0300 β€’ First proto of PopupMenuSelect, has bugs 
2019-08-27 00:32:21 +0300 β€’ Merge branch 'master' of  
2019-08-27 00:32:17 +0300 β€’ Also handle shortcut keys for submenus in _MenuKey 
2019-08-26 21:46:33 +0300 β€’ Merge branch 'master' of  
2019-08-26 21:45:28 +0300 β€’ revert unwanted modification 
2019-08-26 17:02:42 +0300 β€’ Fix left-hand side hierarchical menu handling 
2019-08-26 03:13:36 +0300 β€’ Fix icon alignment in default MDEF 0 item drawing 
2019-08-26 02:30:48 +0300 β€’ Merge branch 'master' of  
2019-08-26 02:30:42 +0300 β€’ Add "bermuda triangle" to hierarchical menus 
2019-08-25 20:36:24 +0300 β€’ move pc increment away from instructions + some optimizations 
2019-08-24 23:38:22 +0300 β€’ Update instructions.c 
2019-08-24 23:17:34 +0300 β€’ some optimizations and ea macros 
2019-08-24 15:33:05 +0300 β€’ Improve hierarchical menu tracking 
2019-08-24 01:12:35 +0300 β€’ Fix GetItemMark/Cmd/Style result byteswap bug 
2019-08-23 19:41:36 +0300 β€’ Fix drawing of hierarchical menu items 
2019-08-23 04:36:38 +0300 β€’ Merge branch 'master' of  
2019-08-23 04:35:57 +0300 β€’ First rough proto of hierarhical menu support 
2019-08-22 21:51:52 +0300 β€’ fix cmpm instruction with FAST_ADDRESSING 
2019-08-21 00:30:28 +0300 β€’ Add cmake config for Brickles, which was missing 
2019-08-20 02:31:00 +0300 β€’ Use rb fallback in NFSOpenFileHook is r+b fails 

A LOT of fixes, improvements and new test applications

It’s now approximately one month since last update, and a lot of “under the hood” type progress has been made.

M68K Tester and 68K bug fixes

One major task we had on roadmap was attempting to see how we could integrate Pukka’s emulator core with the amazing M68K Emulator Testsuite (by GwenolΓ© Beauchesne and Ray Arachelian, archived at this URL: http://web.archive.org/web/20090417202939/http://gwenole.beauchesne.info/en/projects/68ktester ). After holidays, Pukka was able to get the integration done, and we found a bunch of hard-to-find CPU bugs thanks to it:

Even though a lot of bugs were fixed, there are still test cases which do not pass, and will be fixed soon. However, with the fixes already done to the bugs that were found thanks to the test suite, Dark Castle and Beyond Dark Castle appear to be stable in rooms that used to crash before:

New relative mouse mode

A long-time task that has been waiting implementation has been the relative mouse mode, in which M.A.C.E. captures mouse cursor entirely, and instead of using the absolute position given by the host operation system, calculates mouse motion itself using the mouse delta vectors. This both prevents stray clicks outside emulated desktop window, and allows long delta swipes such as required to control helicopter in Apache Strike. As a result of this, Apache Strike can now be played, as previously it would immediately crash into the wall – and Pirates! no longer hangs in the swordfight at beginning – both which depended on certain low-level mouse low memory globals being emulated correctly:

Another fun feature which we added to complement the relative mouse mode as experimenting with game controller input API of SDL, which took about 30 minutes to do and works quite OK as seen on this video:

Apache Strike controlled using USB gamepad

Another issue that was fixed was missed clicks problem with “Tap to Click” MacBooks, which now should generate mouseDown events correctly.

Currently the cursor itself is still displayed using SDL “hardware” cursor API, but with the recent changes adding support for software cursor should not be a big problem – One that might be required to have decent cursor is certain games, where the cursor visibility depends on the cursor having ability to “invert” depending on underlaying graphics (such as the crosshair on black background in lemmings), which the SDL hardware cursor does not support.

Keyboard text input rewritten with proper character mapping

In first iteration of keyboard handler, we only had scancode support with minimal MacRoman mapping (without modifiers), which although was working for the simple use cases, did not allow flexibility required for example to enter upper-case letters.

For second iteration, we attempted to utilize host operating system keyboard layout mapping by using SDL text input API, and although it worked nicely for TextEdit text input, broke command keys and other things (such as Dark Castle & Lode Runner controls) horribly.

For the latest, third iteration, we went back to scancode based input, but instead are simulating the exactly same type KCHR scancode to MacRoman mapping like on real Macs. This allows every key to work properly in text editing, game input and menu shortcut etc, but one downside is that for international layouts we will need to have separate KCHR resources, currently only having U.S. as default layout. However, as “dead keys” are also working, typing special characters such as accents, umlauts, etc is working nicely even on this layout.

ResEdit bug “treasure chest”

ResEdit proved to be a real “treasure chest” of bugs and improvements, as it used literally every possible List Manager routine, and it also surfaced some unexpected bugs in other places such as TextEdit, Dialog Manager, QuickDraw, and other already heavily used toolbox traps.

Some major improvements found through testing ResEdit:

  • Most of List Manager calls were implemented, including resizing lists, deleting rows/columns, searching data. Also some bugs were fixed, such as corruption of data offsets in some cases, etc.
  • Dialog manager edit field handling had a number of bugs, which surfaced in the DLOG editor, and there also were bugs in item hiding/showing which were also manifesting in Civilization.
  • TextEdit had some bugs in the MixedMode handling of special case calling conventions, which caused crash in the hex editor. After fixing them, not only the hex editor works, but also MacPascal editing bugs were fixed, as it also used custom TEDoText hooks.
  • The PACK 1 (“BitEdit”) package in ResEdit surface a couple QuickDraw bugs, such as random SeedFill memory corruption (using the paint bucket tool) and StretchBits memory corruption. These also make MacPaint more stable, which was also suffering from the SeedFill bug.

Some of these fixes had quite universal effects, such as improving the previously buggy behaviour of Lists and TextEdit in HyperCard 1.x:

Other improvements

  • Text scaling and measuring had some bugs, which were fixed so that MacPaint and Macwrite can display text of all sizes, faces and styles.
  • MacWrite now works, at least kind of…all other edition options are working (styling, page breaks, font sizes, fonts, rulers, etc), except adding newline using enter/return causes text to corrupt.
  • As the region corruption bug in polygon rendering was fixed, PT-109 appears now the be completely stable.
  • With “dummy” SetPalette trap implemented, Railroad Tycoon is now able to proceed past first “End of Fiscal Period” report
  • Scrollbar (CDEF 1) implementation (and related Control Manager TrackControl/DragControl stuff) were finally finished, so the indicator thumb dragging works now.
  • Prototype of font fractional width support added, only test case for this is curently Photoshop, which enables them. Right now only FOND width tables are supported, but extended width tables could be easily added as soon as some application needs them.

New test applications added

Also, we have now finally two new test app bundles that should be complete enough for trying out. These are ZeroGravity by Duane Blehm, and Blob Manager Demo by Paul DuBois. They are now available for trying out in the Downloads section.

Additionally, the old test application bundles have been updated with the new M.A.C.E. runtime, which includes all the bug fixes and improvements done since their last update. For example, Stunt Copter uses now the new relative mouse mode, and all apps have been updated to support the “Tap to Click” trackpad mode on MacBooks.

Full list of changes since last post

There are too many changes to detail in a single post, so as a new feature below is the version control log of all changes made since last update:

2019-08-19 22:54:49 +0300 β€’ Add SetDialogDefaultItem/CancelItem/TracksCursor 
2019-08-19 22:47:32 +0300 β€’ Tweak TrackControl and LClick delay to 8 ticks 
2019-08-19 18:15:47 +0300 β€’ Save alert default item also in the DialogRecord 
2019-08-19 16:23:03 +0300 β€’ Partial support for default dialog StdFilter proc 
2019-08-19 07:03:12 +0300 β€’ Bumb the M.A.C.E. version number & use current date 
2019-08-19 07:02:52 +0300 β€’ Replace printfs with log, and add a few DEBUG #ifs 
2019-08-19 07:00:17 +0300 β€’ Fix the SDL window title for now by using EnvStartupFile 
2019-08-19 06:59:57 +0300 β€’ Tweak Blob Mgr Demo and ZeroGravity for release 
2019-08-19 06:00:30 +0300 β€’ Work on FOND widthtable and fractional size support 
2019-08-17 03:17:27 +0300 β€’ Work a little on resource map "shadowing" handling 
2019-08-17 03:04:32 +0300 β€’ Fix WaitMouseUp to not return 1 extra "down" state 
2019-08-17 02:23:40 +0300 β€’ Fix SeedFill random memory corruption case 
2019-08-15 23:36:01 +0300 β€’ Merge branch 'master' of  
2019-08-15 23:35:56 +0300 β€’ Fix TextEdit cursor right-side clamping 
2019-08-15 22:55:05 +0300 β€’ add xcode 6 project 
2019-08-15 22:43:06 +0300 β€’ Fix incorrect register usage in TEDoText overrides 
2019-08-15 21:21:29 +0300 β€’ Fix StretchBits stack buffer overrun 
2019-08-14 23:46:30 +0300 β€’ Fix scrollbar redraw bug in List Manager 
2019-08-14 23:25:48 +0300 β€’ SetPalette classic-QD dummy trap 
2019-08-14 21:44:36 +0300 β€’ Fix LSetSelect highlight bugs 
2019-08-14 19:28:32 +0300 β€’ Fix lNoNilHilite flag handling in LSetSelect 
2019-08-13 03:14:24 +0300 β€’ Fix value clamping in Control Manager 
2019-08-13 03:11:51 +0300 β€’ Tweak CloseWD stub to not crash 
2019-08-13 03:11:28 +0300 β€’ Implement LClrCell and proto of LDelRow/LDelColumn 
2019-08-12 21:10:26 +0300 β€’ Fix a couple byteswap bugs in lists (selection) 
2019-08-12 17:39:11 +0300 β€’ Fix one-cell delta calculation in list pageup/down 
2019-08-12 15:03:44 +0300 β€’ Fix maxIndex bug in LNew 
2019-08-12 02:34:18 +0300 β€’ List Manager LSize implementation 
2019-08-11 05:12:39 +0300 β€’ Finished LAutoScroll, another easy one for ResEdit 
2019-08-11 04:56:40 +0300 β€’ Implemented C_LFind, was simpler than I thought… 
2019-08-11 04:46:28 +0300 β€’ Finish LNextCell trap, work on LClick multiselect 
2019-08-11 02:18:20 +0300 β€’ Implement C_LClick scroll indicator handling 
2019-08-11 02:06:55 +0300 β€’ Fix dividend overflow in scrollbar CDEF 1 rounding 
2019-08-11 01:43:52 +0300 β€’ Implement DragControl, finish TrackControl & CDEF1 
2019-08-10 03:41:37 +0300 β€’ Fix caps lock usage in SDL key event handler 
2019-08-10 02:01:37 +0300 β€’ SDL gamecontroller support "hack" to Apache Strike 
2019-08-09 20:45:44 +0300 β€’ Add FSpOpenDF, FSpCreate, FSpDelete, FSpGetInfo, FSpRename & (dummy) _Rename 
2019-08-09 18:08:02 +0300 β€’ Hacked procinfo for UIMagIDString call in LSearch 
2019-08-09 03:28:00 +0300 β€’ Fix buffer overflow in GetVolParms 
2019-08-09 02:42:54 +0300 β€’ Added dummy GetVolParms selector to _FSDispatch 
2019-08-09 02:00:31 +0300 β€’ Add Jigsaw test app 
2019-08-09 02:00:10 +0300 β€’ Implement LSearch, and (dummy stub) IUMagIDString 
2019-08-09 01:58:42 +0300 β€’ Implemented 1-bit NewGWorld in QDExtensions 
2019-08-08 17:10:34 +0300 β€’ Fix allocation of key state buffer 
2019-08-08 02:45:45 +0300 β€’ C_KeyTranslate Deadkey support + fix mac scancodes 
2019-08-07 18:30:41 +0300 β€’ Fix dialog edit field handling 
2019-08-07 12:13:26 +0300 β€’ Fix picture recording of port fgColor/bkColor 
2019-08-07 04:49:10 +0300 β€’ Add git log generator, for fun πŸ™‚ 
2019-08-07 04:21:32 +0300 β€’ Tweak type of ScrapSize in low memory 
2019-08-07 04:21:04 +0300 β€’ Fix fromMode handling in Picture Line recording 
2019-08-07 04:19:58 +0300 β€’ Fix picture line recording Point saving 
2019-08-07 04:17:59 +0300 β€’ Fix Hide/Show dialog item bounds calculation 
2019-08-07 04:15:36 +0300 β€’ Prevent editfield citation replacements in dialogs 
2019-08-06 19:43:28 +0300 β€’ Fix Scrap Manager bugs 
2019-08-06 19:41:31 +0300 β€’ Clean up Mouse module a bit 
2019-08-06 19:07:03 +0300 β€’ Fix bug in DefaultShowCursor 
2019-08-06 16:38:47 +0300 β€’ Un-obscure cursor before _MDrawCursor in CrsrTask 
2019-08-06 01:42:37 +0300 β€’ Make phase-shift adjustment configurable 
2019-08-06 00:20:31 +0300 β€’ Move audio phase-shift from RAM to ClassicSound 
2019-08-06 00:17:50 +0300 β€’ Disable VM_MAP and reverse-page mapping 
2019-08-05 20:44:39 +0300 β€’ Disable a couple of mouse debug log calls 
2019-08-05 00:10:21 +0300 β€’ Updated some test apps with relative mouse mode 
2019-08-05 00:09:22 +0300 β€’ Refactor cursor to support relative motion mode 
2019-08-04 00:30:38 +0300 β€’ fix abcd, partially fix sbcd instruction 
2019-08-03 23:20:09 +0300 β€’ fix zero status for subx.b/w/l instruction 
2019-08-03 00:40:07 +0300 β€’ fix add.b, addx.b/w/l and negx.b/w/l status bits 
2019-08-03 00:40:01 +0300 β€’ Merge branch 'master' of  
2019-08-02 00:05:57 +0300 β€’ Fix TEIdle blinker 
2019-08-01 23:10:07 +0300 β€’ Implement LLastClick and tweak trap glue generator 
2019-08-01 16:03:22 +0300 β€’ Disable the extra log debug trace of heap compact 
2019-08-01 16:02:28 +0300 β€’ Reduce logging in MixedMode calls 
2019-08-01 16:01:44 +0300 β€’ Fix size bug in WriteResource 
2019-08-01 16:00:47 +0300 β€’ Fix resProtected flag check in ChangedResource 
2019-08-01 15:58:51 +0300 β€’ Fix dialog edit field disabled check + others 
2019-08-01 05:19:49 +0300 β€’ Add missing lowmem changes for CurActivate bug fix 
2019-08-01 05:19:04 +0300 β€’ Work on KeyTranslate KCHR mapping (fix keyboard) 
2019-07-31 01:21:08 +0300 β€’ Add MacConcentration test app 
2019-07-31 01:20:39 +0300 β€’ Implement FADDD & fix major 64-bit float SANE bug 
2019-07-31 01:08:21 +0300 β€’ fix lsl and lsr instruction for shift > 31 
2019-07-30 22:53:46 +0300 β€’ fixes for m68k tester 
2019-07-30 21:50:19 +0300 β€’ move x68k xcode6 project to x68k root 
2019-07-30 21:48:42 +0300 β€’ add m68k tester 
2019-07-30 21:46:25 +0300 β€’ make kemu lib c++ compatible 
2019-07-29 15:51:21 +0300 β€’ Tweak GunShy config to use version 1.3 
2019-07-28 04:54:27 +0300 β€’ Fix window activation handling 
2019-07-27 04:36:27 +0300 β€’ Fix GetFontInfo for scaled fonts 
2019-07-27 04:22:21 +0300 β€’ Fix bug in fast-case of text blitter 
2019-07-27 02:13:56 +0300 β€’ Set Lo3Bytes lowmem global properly 
2019-07-27 02:12:01 +0300 β€’ Implemented ReadDateTime and (dummy) SetDateTime 
2019-07-27 01:26:28 +0300 β€’ Fix LActivate 
2019-07-27 00:46:46 +0300 β€’ Fix cursor leak 
2019-07-26 18:29:56 +0300 β€’ Tweak InitResources to be (again) re-callable 
2019-07-26 17:32:20 +0300 β€’ Fix UPP ProcInfo of DABeeper callback 
2019-07-26 15:46:55 +0300 β€’ Implemented LActivate selector in List Manager 
2019-07-26 05:45:33 +0300 β€’ Fix bug in resource manager name remove code 
2019-07-26 05:44:44 +0300 β€’ Add Glider4 test app 
2019-07-26 05:44:24 +0300 β€’ Fix possible bug in SetVol NFS handler 
2019-07-26 05:43:07 +0300 β€’ Setup CurrentA5 during boot stage 2 for INITs 
2019-07-26 02:55:49 +0300 β€’ Re-fix PurgeSpace to also return correct D0 
2019-07-26 01:52:59 +0300 β€’ Optimize FramePolygon case 
2019-07-26 01:43:57 +0300 β€’ Actually update the existing ADF header 
2019-07-26 01:36:18 +0300 β€’ Finish SetFileinfo handler in NativeFS 
2019-07-26 01:35:28 +0300 β€’ Fix region corruption bug in polygon drawing 
2019-07-25 23:16:56 +0300 β€’ Fix MapRgn duplicate inversion point bug 
2019-07-25 23:07:21 +0300 β€’ Fix MapPt negativity check 
2019-07-25 22:08:06 +0300 β€’ Fix size of ScriptUtil selector 
2019-07-25 22:02:10 +0300 β€’ Fix edge case bug in UnpackBits 
2019-07-25 21:02:00 +0300 β€’ Fix ADF file create bug, mixed up rsrc and data 
2019-07-25 19:27:32 +0300 β€’ Also reserve space for mapping in the stack after packBuffer 

Update on resource fork writing, ResEdit, and resource ‘dcmp’ decompressors

Resource write support status

So, the plan since last update was to do some work on resource write support, and there was indeed some progress. The nature of how resource forks are handled on disk compared to memory is quite interesting; After the resource map is read into memory, the resource fork on disk only needs to preserve resource data, and thus the resource manager has quite free hands on how it can move data around in the resource fork:

  • When a new resource is added using AddResource, it gets both a resource entry in the in-memory resource map, AND the resource fork gets expanded (to reserve space on disk), and on-disk location for the resource is appended after the current data area on the disk
  • When ChangedResource is called on existing resource, its size is checked to see if it grows or shrinks. Shrinking is more simple, as its data length just gets shorter, and does not need space allocation. However, if a resource grows, it needs more space allocated to it, so while the resource file is open, the resource manager simply allocates new space at end of resource fork, like it does in AddResource, and leaves the old location as “gap” in the file. This feature actually is why apple warns in the Inside Macintosh documentation, that calling ChangedResource often without calling UpdateResFile may lead to large amount of disk space used, as each new allocation expands the file size by the new allocation length!
  • When WriteResource is called, a resource with resChanged flag will get contents of its handle written to the location specified by resource entry in the resource map
  • UpdateResFile does the real “house-keeping” of resource fork, as it will iterate through all resources, removing any gaps in the resource fork, moving data to the proper places (a process called “compating” of resource fork). After this, the resource map is written at end of the resource fork (after the data section), and file size is truncated to minimum required, releasing the extra disk space.

Currently, most of write support is in place, except that resource fork compacting still needs finalization to make it work properly

Extended resources and ‘dcmp’ decompression

Of course a natural way to stress-test resource manager is to try ResEdit, which I think uses literally almost all of resource manager features. However, an interesting surprise was that ResEdit seems to utilize resource compression on a large number of its own resource, which led to the following MacTech article:

http://preserve.mactech.com/articles/mactech/Vol.09/09.01/ResCompression/index.html

Which had nice, although brief, insight on ‘dcmp’ resources and their role in resource decompression. Adding the parsing of extended resource headers was not that difficult, and luckily ResEdit contains its own ‘dcmp’ decompressors, so they could be immediately be tested, resulting in following type of logs:

Debug log of ResEdit’s ‘PACK’ resource ID=1 decompression.

This snippet of debug log shows ResEdit’s ‘PACK’ resource ID=1 decompression procedure, when Get1IndResource was called. This shows how on-disk compressed data of 19568 bytes gets decompressed into 27200 bytes in memory, using a ‘dcmp’ ID=0 decompressor which is contained within ResEdit as 68k code.

ResEdit

And of course, with the decompression working, and with a lot of fixes to file manager, list manager and various other places, ResEdit magically appears to be starting to work, one bit at a time πŸ™‚ In this test case, we made a copy of ResEdit itself as “Test File” file, which was hard-coded for now as reply to CustomGetFile call to get it open. And this is what we got so far:

Naturally there’s still a lot to fix, but surprisingly many features seem to work out-of-the box. But at least the following problems were immediately noticeable:

  • The actual resource writing does not yet work properly
  • List Manager still has some calls which are not properly implemented which leads to a number of assertions, and most likely causes the missing icons in ‘ICN#’ editor.
  • Font scaling has issues which is why dialog texts appear weird in the preview of ‘ALRT’ editor
  • A couple IconDispatch/ScriptUtil calls which need to implemented for resource file info dialog (mostly to get Finder labels, and format the file dates)
  • Proper multi-select support for List Manager
  • A bunch of other minor issues, such as text missing from a couple places, etc.
  • Probably other issues in features not yet tested

It’s still a bit too early to start testing the actual resource write support, but it won’t be far away from now after ResEdit is made more stable first.

Package Manager update

One small, but important thing which was fixed in this update is an actual, proper ‘PACK’ resource support. This is because ResEdit uses Apple’s ‘PACK’ ID=1 to implement its “BitEdit” graphic editor (used at least in ‘ICN#’ resource editor). Until this point, all packages could be implemented as regular dispatcher calls, but for the ResEdit to work we actually had to load the ‘PACK’ resource in InitPack, and register it as one of the AppPacks in low memory globals. A quite small change, but one which ResEdit seems to be happy with, for now πŸ™‚

Ps. As another interesting side effect, with bug fixes done to toolbox HyperCard can now both close files properly (allowing us to navigate back to Home stack), and also HyperTalk editing seems to work well enough that changes to the script source actually affect behaviour of the stack πŸ™‚

Second mid-summer update: Post-roadtrip, TextEdit progress, Clipboard…

Okay, so both members of development team have been busy being on vacation trips for the past few weeks, but we’re again back (although still on “kind of” summer break). To celebrate this we decided to each post a picture of what we’ve been up to, but to make this appropriate to topic of this blog, we do this by showing the photos using M.A.C.E running Photoshop πŸ™‚

Road trip vacations

First, Pukka went on a road trip to Eastern Finland with his good old trusty Volvo station wagon for one week:

Pukka went on a road trip to Eastern Finland with his good old trusty Volvo station wagon for one week

Toni went on a two-week road trip to Northern Germany, visiting 12 cities in 14 days, including taking this amazing train from Hamburg to Kiel:

Toni went on a two-week road trip to Northern Germany, visiting 12 cities in 14 days, including taking this amazing train from Hamburg to Kiel

TextEdit progress (and Scrap Manager)

During this two weeks of visiting a lot of places, Toni had a couple evenings time to do some work on (non-styled) Text Edit, which now is nearly complete, and is able to run TeachText with almost all text editing features working:

TeachText works now on M.A.C.E.!

These are the notable features which work now in TextEdit:

  • Multi-line text display, with scrolling support (viewRect/destRect offsetting)
  • TEKey text input (still a bit hacky but functional)
  • TEClick with autoscrolling support, double-click word selection (using TEFindWord), and fExtend support for “shift-key”-type extending of selection, and recognition of left/right side of character for proper caret positioning
  • TextEdit hook support for nearly all TE Hooks (TEDoText, TERecalc, TEWordBreak, ClikLoop, TEFindWord, TEFindLine, TETrimMeasure, EOLHook, HighHook, etc…) which can be customized by 68K apps
  • Caret support with TEIdle blinking, TEKey cursor key movement (including multi-line support), and multi-line selection range support
  • Nearly all “quirks” of regular System 7.x TextEdit implemented as they work on real Mac; including the weird way caret gets positioned when moving across line boundaries using left/right arrow keys if previously clicked on right-hand side of a character, etc…
  • Dialog Manager edit field support, with System 7-type multi-line text support (i.e. edit fields with one line get extended horizontally 2x size, and scroll both horizontally and vertically, while multi-line edit fields only scroll vertically), “tabbing” between edit fields, and complete TEKey/TEClick support
  • Maybe some others I’ve forgotten to mention

Additionally, as TeachText wanted to use also Scrap Manager for edit functions, in parallel to implementing TECut/TECopy which use private TextEdit scrap, the implementation of generic Scrap Manager was finalized so that Clipboard file is fully supported (previously only in-memory state of scrap was implemented).

However, TEPaste still needs to be added for a 100% completion of “Edit” menu features for TeachText – and also, styled TextEdit work has not yet been started, which will be required in future to support more complex apps such as SimpleText and HyperCard 2.x.

Next up, on Toolbox API side, work is being done on Resource Manager’s resource fork write support, mostly just because after Scrap Manager was implemented, SuperPaint was able to progress a bit further in it’s startup, but wants to create “SuperPaint Prefs” file using Resource Manager’s functions, so might as well add that next. As of writing this, there’s already support for AddResource, ChangedResource and WriteResource, but we need to add resource fork compacting support to UpdateResFile to actually write the file properly. But we’ll get back to that later.

Bonus pic – for fun πŸ™‚

Meanwhile, here’s a funny pic of what it looks when we run 28 M.A.C.E. instances at once πŸ™‚ All quite responsive even though they’re all in full debug mode, although same can’t be said about the old Mac Pro when it was running them… πŸ˜€

28 individual M.A.C.E. applications (in debug mode) running at once πŸ™‚