TweetFollow Us on Twitter

Scrolling Menubar
Volume Number:5
Issue Number:4
Column Tag:Programmer's Workshop

April Fool's INIT: Scrolling the Menu Bar!?

By Mike Scanlin, San Diego, CA

Note: Source code files accompanying article are located on MacTech CD-ROM or source code disks.

Probably everyone who reads this magazine knows at least one person who owns a Mac that they’d like to play a joke on. This INIT resource might be just the thing you’re looking for. It is a patch to _GetNextEvent that will scroll the menu bar off the right side of the screen (leaving the menu bar blank) when the mouse is clicked in the very top pixel of the menu bar with an odd horizontal position. It does nothing if the mouse is clicked anywhere else on the screen, so it is possible to use the menus when this patch is installed, just so long as you don’t click in the very top pixel at an odd position. The menus will come back eventually (after a few sarcastic messages are displayed in the empty menu bar), so this is a pretty harmless patch (although extremely annoying according to my guinea pig roommate). Command key equivalents for current menus (like COMMAND-Q) will work even though no menus are shown. It is possible to remove the patch once it is installed by typing COMMAND-SHIFT-OPTION-TAB. The patch will beep to let you know it has been removed.

HOW IT WORKS

This patch to _GetNextEvent is an application of the technique I used in the Shift Mod patch (September 1987 issue of MacTutor). It is a tail patch on _GetNextEvent that looks at the event being returned and intercepts it if it is a mouseDown event with a vertical position of zero and an odd horizontal position. When it finds such an event the menu bar is scrolled off the screen and then _DrawMenuBar and _HiliteMenu are patched to do nothing. The reason those two traps are patched is because we don’t want anything drawn in the menu bar while we’re displaying our messages. The menu bar is restored by restoring those two traps and then calling _DrawMenuBar. Note that because we are patching _DrawMenuBar the user will not be able to get the menus back by quitting the current application and/or launching another application (because every application uses _DrawMenuBar to put their menus up).

Once we have scrolled the menus off, the patch to _GetNextEvent will intercept any mouseDown event anywhere in the menu bar area and display a message in the menu bar for 1 second or until the mouse button is let go, which ever is longer. After four such messages, the patches to _DrawMenuBar and _HiliteMenuBar are removed and _DrawMenuBar is called to draw the current menu bar (which may not necessarily be the one that was scrolled off since the user could have changed applications in the mean time).

To do the actual scrolling you would expect me to use _ScrollRect. That’s what I tried at first, but it was too slow (took about 10 seconds for the menu bar to get all the way off the screen). Then I tried scrolling by 3 or 4 pixels at a time, but it wasn’t smooth enough. The version you see here is scrolling by rotating bits in screen memory (via the 68000’s roxr instruction). Although somewhat unorthodox (Apple wouldn’t approve) it now only takes about 2 seconds to smoothly scroll the menu bar all the way off the screen.

PROBLEM

There is a potential problem with this patch. There is a danger in patching and unpatching traps that may be patched by other applications. For applications that patch traps this isn’t normally a problem because they get a chance to restore the traps when they quit (before something else can patch them). But it is possible for our patches to be unpatched at a bad time. A “bad time” to unpatch would be after something else has patched on top of one of our patches. For instance, if we patch _GetNextEvent and then some other program patches it and then we unpatch ours, the second patch will be unpatched along with ours, but the application that made the second patch won’t know about it. To partially correct this from happening, I have the removePatch routine check if something has patched _GetNextEvent after we have patched it (by calling _GetTrapAddress and comparing it to ourself) and if it has, then ignore the request to unpatch ourself. I did not do this for _DrawMenuBar and _HiliteMenu, but it is unlikely that other applications would patch either of those two (besides, this is only a joke -- it’s not something you’re going to leave around in your System Folder forever).

One additional problem is that while this patch should work on any size monochrome monitor, it will not work on a Mac II color monitor. If anyone comes up with a simple fix, please send it in.

/* scrollMenuBarPatch.c     18 Nov 1987
 *
 * by Mike Scanlin and Andy Voelker
 *
 * This will install a patch to
 * _GetNextEvent that intercepts
 * mouseDown events if they occur in the
 * very top pixel-row of the screen. If
 * an event is intercepted, the menu bar
 * is scrolled off the right side of the
 * screen before the user can react.
 * After 4 more clicks in the menuBar
 * (with appropriately sarcastic messages 
 * displayed after each one) the origina
 * l menuBar is restored. The patch can
 * be removed by typing
 * COMMAND-OPTION-SHIFT-TAB.
 */

#include “EventMgr.h”
#include “QuickDraw.h”
#include “asm.h”

/* low memory globals */
extern Handle    MenuList : 0x0A1C;
extern PtrScrnBase : 0x0824;
extern GrafPtr WMgrPort   : 0x09DE;

/* the traps we patch */
#define GetNextEventTrap  0xA970
#define DrawMenuBarTrap   0xA937
#define HiliteMenuTrap    0xA938

#define CLICKS_TO_MENU    4
#define MESSAGE_DELAY60
#define MENU_BAR_HEIGHT   20
#define TAB_KEY  0x09
#define JMP_INSTRUCTION   0x4EF9

#define memFullErr -108
#define screenBits_bounds_right  -110
#define screenBits_bounds_left-114

void  main(void);

void main()
{
 asm {
 
/* This first section is the only part
 * that gets run initially. It gets some
 * space in the system heap and sets up a 
 * patch to _GetNextEvent. The patch
 * won’t do anything until the user
 * clicks in the very top pixel of the
 * menu bar (in which case it will scroll 
 * the menu bar off the screen to the
 * right). */
 
   move.l D3,-(SP)

/* get the old trap address */
 move   #GetNextEventTrap,D0
 _GetTrapAddress

/* set the address for the JMP
 * instruction that calls the original
 * trap */
 lea    @origTrap,A1
 move.l A0,(A1)

/* get some space in the system heap for
 * our patch */
 lea    @last,A0
 lea    @first,A1
 suba.l A1,A0
/* D0 = length of patch */
 move.l A0,D0  
/* save length for _BlockMove */
 move.l D0,D3    
 _NewPtrSYS
 cmpi   #memFullErr,D0
 beq.s  @noPatch
 lea    @saveLoc,A1
/* save for removePatch */
 move.l A0,(A1)
/* save for _BlockMove */ 
 move.l A0,-(SP) 

/* set the trap address to the space we
 * just got in the system heap. */
 move   #GetNextEventTrap,D0
 _SetTrapAddress

/* now move our patch into place */
 lea    @first,A0
/* (SP)+ is the result from _NewPtr */
 move.l (SP)+,A1 
 move.l D3,D0
 _BlockMove

@noPatch
 move.l (SP)+,D3

/* this is the end of the installation
 * part, but we can’t do an RTS here
 * because LSC needs to clean up. So we
 * fall through to the end. */
 bra    @last

/***************************************
 * Here’s the new _GetNextEvent. It calls 
 * the existing _GetNextEvent and then
 * checks if a mouseDown or keyDown event 
 * is being reported. If not, the event
 * is passed to the application
 * unmodified. If we end up using the
 * event ourselves, a null event is
 * returned to the application.
 ***************************************/

@first
/* pop the original return address and
 * save it */
 lea    @exitAddress,A0
 move.l (SP)+,(A0)
/* save ptr to event record so we can get 
 * at it later */
 lea    @eventRecPtr,A0
 move.l (SP),(A0)
/* set the return address to our patch */
 pea    @tailPatch

/* the nops get filled with the address
 * of the original _GetNextEvent */
 dcJMP_INSTRUCTION
@origTrap 
 nop
 nop

/* this is where it comes after the
 * normal _GetNextEvent processing */
@tailPatch
 movem.lA1/D0-D3,-(SP)
 
 lea    @eventRecPtr,A0
 move.l (A0),A0

/* check if it’s a keydown event that
 * says to remove ourself. This is the
 * only keyDown that we intercept. */
 move 
 OFFSET(EventRecord,what)(A0),D0
 cmpi   #keyDown,D0
 bne.s  @noKeyDown
/* the key to remove the patch is
 * COMMAND-SHIFT-OPTION-Tab */
 move.l 
 OFFSET(EventRecord,message)(A0),D0
 cmpi.b #TAB_KEY,D0
 bne.s  @noKeyDown
 move 
 OFFSET(EventRecord,modifiers)(A0),D0
 andi   
 #optionKey+cmdKey+shiftKey,D0
 eori   
 #optionKey+cmdKey+shiftKey,D0
 beq.s  @removePatch
 
@noKeyDown
/* if it’s not a mousedown event, then
 * ignore it */
 cmpi   #mouseDown,D0
 bne.s  @patchExit

/* if we’ve already scrolled the menu
 * list, then don’t scroll it again */
 lea    @menus,A1
 tst    (A1)
 bne.s  @alreadyGone
 
/* if no menus exist, then leave */
 move.l MenuList,A1
 move.l (A1),A1
 tst    (A1)
 beq.s  @patchExit

/* if the mouse is not at an odd
 * location, then leave */
 move.l 
 OFFSET(EventRecord,where)(A0),D0
 andi   #1,D0
 beq.s  @patchExit
/* if the mouse is not at the very top
 * pixel of the menu bar, then leave */
 move.l 
 OFFSET(EventRecord,where)(A0),D0
/* put vertical coordinate in low word */
 swap   D0
 cmpi   #1,D0
 bge.s  @patchExit
 
/* now we’re set to scroll that puppy. */
 bsr    @scrollMenuBar

/* save the fact that the menu bar that
 * was just scrolled */
 lea    @menus,A0
 move   #1,(A0)
 
/* patch _DrawMenuBar and _HiliteMenu to
 * do nothing if and when they’re
 * called */
 bsr    @disableTraps

 lea    @clicks,A1
 move   #CLICKS_TO_MENU,(A1)
 
 bra.s  @returnNullEvent

@alreadyGone
/* if mouse is not in menu bar, then
 * leave */
 move.l 
 OFFSET(EventRecord,where)(A0),D0
/* put vertical coordinate in low word */
 swap   D0
 cmpi   #MENU_BAR_HEIGHT,D0
 bge.s  @patchExit

/* print a message in the menu bar */
 bsr    @drawAMessage

 lea    @clicks,A0
 subi   #1,(A0)
 bne.s  @returnNullEvent

/* now that we’re finished playing,
 * restore _DrawMenuBar and 
 * _HiliteMenu */
 bsr    @restoreMenus
 
@returnNullEvent
/* set the event to null */
 lea    @eventRecPtr,A0
 move.l (A0),A0
 clr    
 OFFSET(EventRecord,what)(A0)
/* change _GetNextEvent’s return value to 
 * false. The 20 is for the 5 regs that
 * are saved on the stack at this point
 */
 clr    20(SP)

@patchExit
 movem.l(SP)+,A1/D0-D3
/* JMP to the place that called
 * _GetNextEvent */
 dcJMP_INSTRUCTION
@exitAddress
 nop
 nop

/* this is where it comes to remove the
 * _GetNextEvent patch */
@removePatch
/* if the menus aren’t shown, then
 * restore them before leaving */
 bsr    @restoreMenus
/* check if we are the most recent patch
 * to _GetNextEvent. If we’re not, then
 * don’t unpatch. */
   move #GetNextEventTrap,D0
 _GetTrapAddress
 lea    @first,A1
 cmpa.l A1,A0
 bne.s  @returnNullEvent
/* set the trap address back to the
 * original trap. */
 lea    @origTrap,A0
 move.l (A0),A0
 move   #GetNextEventTrap,D0
 _SetTrapAddress
/* beep to let them know it has been 
 * removed */
 move   #1,-(SP)
 _SysBeep
/* free up mem occupied by this patch */
 lea    @saveLoc,A0
 move.l A0),A0
 _DisposPtr
 bra.s  @returnNullEvent

/* This routine will disable _DrawMenuBar 
 * and _HiliteMenu */
@disableTraps
 move   #DrawMenuBarTrap,D0
 _GetTrapAddress
 lea    @drawMenuBarAddr,A1
 move.l A0,(A1)
 lea    @doNothing,A0
 move   #DrawMenuBarTrap,D0
 _SetTrapAddress
 move   #HiliteMenuTrap,D0
 _GetTrapAddress
 lea    @hiliteMenuAddr,A1
 move.l A0,(A1)
 lea    @doNothingWithParam,A0
 move   #HiliteMenuTrap,D0
 _SetTrapAddress
 rts
 
/* This routine will restore _DrawMenuBar 
 * and _HiliteMenu and then draw the 
 * current menu bar */
@restoreMenus
 lea    @menus,A0
 tst    (A0)
 beq.s  @doNothing
/* unpatch DrawMenuBar and then draw the
 * old menu bar */
 lea    @drawMenuBarAddr,A0
 move.l (A0),A0
 move   #DrawMenuBarTrap,D0
 _SetTrapAddress
 lea    @hiliteMenuAddr,A0
 move.l (A0),A0
 move   #HiliteMenuTrap,D0
 _SetTrapAddress
 lea    @menus,A0
 clr    (A0)
 _DrawMenuBar
@doNothing
 rts

/* This is the _HiliteMenu routine that
 * does nothing. It gets rid of the
 * parameter passed to _HiliteMenu and
 * then returns. */
@doNothingWithParam
 move.l (SP)+,A0
 addq.l #2,SP
 jmp    (A0)

/* This is the routine that actually does 
 * the scrolling */
@scrollMenuBar
/* hide the cursor so we don’t get part
 * of the cursor scrolled with the
 * menuBar */
 _HideCursor

/* get the current screen width from the
 * Quickdraw global screenBits */
 move.l (A5),A0
/* D3 = # of columns (width) - 1 in the
 * current screen */
 move 
 screenBits_bounds_right(A0),D3
 sub    
 screenBits_bounds_left(A0),D3
 move   D3,D2
 subq   #1,D3
/* D2 = # of bytes - 1 in one screen
 * row */ 
 asr    #3,D2
 subq   #1,D2

/* here’s the loop that actually scrolls
 * the menu bar all the way across the
 * screen */
@wayOut
 move   #MENU_BAR_HEIGHT - 2,D1

/* this outside loop will scroll all rows 
 * of the menu bar one pixel to the right 
 */
@outside
 move   D2,D0
 addq   #1,D0
/* calc # of bytes from base addr to
 * start of current row */
 mulu   D1,D0    
 move.l ScrnBase,A0
 adda.l D0,A0
/* white-out the left edge of this row */
 clr.b  (A0)
/* D0 = number of words in one row */
 move   D2,D0    
 asr    #1,D0
/* set the X flag */
 andi.b #0xEF,CCR
/* this inner loop will scroll one row of 
 * the screen one pixel to the right */
@inside
 roxr   (A0)+
 dbra   D0,@inside

/* go and do the next row */
 dbra   D1,@outside

/* make the corners look like they used
 * to (i.e. rounded and black) */
 move   D2,D0
 move.l ScrnBase,A1
 ori.b  #0xF8,(A1)
 adda   D0,A1
 ori.b  #0x1F,(A1)+
 ori.b  #0xE0,(A1)
 adda   D0,A1
 ori.b  #0x07,(A1)+
 ori.b  #0xC0,(A1)
 adda   D0,A1
 ori.b  #0x03,(A1)+
 ori.b  #0x80,(A1)
 adda   D0,A1
 ori.b  #0x01,(A1)+
 ori.b  #0x80,(A1)
 adda   D0,A1
 ori.b  #0x01,(A1)
 
 dbra   D3,@wayOut

 _ShowCursor
 rts

/* this routine will print a string in
 * the menu bar, wait a bit and then
 * erase it */
@drawAMessage
/* set the current port to the window
 * manager’s */
 move.l (A5),A0
 lea    @savePort,A1
 move.l (A0),(A1)
 move.l WMgrPort,(A0)

/* save the old clipRgn */
 lea    @saveClip,A0
 move.l WMgrPort,A1
 move.l 
 OFFSET(GrafPort,clipRgn)(A1),(A0)
/* set the clipRgn to be big enough for
 * the string we want to print */
 subq   #4,SP
 _NewRgn
 move.l WMgrPort,A1
 move.l 
 (SP)+,OFFSET(GrafPort,clipRgn)(A1)
 pea    @stringRect
 _ClipRect

/* the string we print depends on the
 * value of the clicks variable */
 lea    @clicks,A0
 move   (A0),D0
 cmpi   #4,D0
 bne.s  @1
 pea    @string1
 bra.s  @5
@1 cmpi #3,D0
 bne.s  @2
 pea    @string2
 bra.s  @5
@2 cmpi #2,D0
 bne.s  @3
 pea    @string3
 bra.s  @5
@3 cmpi #1,D0
 bne.s  @delay
 pea    @string4
@5 move #10,-(SP)
 move   #14,-(SP)
 _MoveTo
 _DrawString
@delay  
 lea    @downTime,A0
 move.l Ticks,(A0)

/* wait until the mouse is released or 60 
 * ticks, which ever is longer */
@waitTilMouseUp
 subq.l #2,SP
 _StillDown
 tst    (SP)+
 bne.s  @waitTilMouseUp
 lea    @downTime,A0
 move.l (A0),D0
 addi.l #MESSAGE_DELAY,D0
 cmp.l  Ticks,D0
 bgt.s  @waitTilMouseUp

/* erase the string */
 pea    @stringRect
 _EraseRect

/* dispose of the clipRgn we created */
 move.l WMgrPort,A1
 move.l 
 OFFSET(GrafPort,clipRgn)(A1),-(SP)
 _DisposeRgn
/* restore the old clip rgn */
 lea    @saveClip,A0
 move.l WMgrPort,A1
 move.l 
 (A0),OFFSET(GrafPort,clipRgn)(A1)
 
/* restore the old port */
 move.l (A5),A0
 lea    @savePort,A1
 move.l (A1),(A0)
 rts
 
@eventRecPtrdc.l 0
/* @menus is TRUE while menus that exist
 * are not being shown */
@menus  dc0 
@downTime dc.l   0
/* @clicks is the number of menus clicks
 * until menus return */
@clicks dc0 
/* @words is the number of 16 bit words
 * in one row of screen */
@words  dc0
/* @saveLoc is the address of our patch
 * in the system heap */  
@saveLocdc.l0  
@savePort dc.l   0
@saveClip dc.l   0
@drawMenuBarAddr dc.l0
@hiliteMenuAddr  dc.l0

/* this rect should be big enough to
 * enclose the longest of the strings. */
@stringRect dc
 0,8,MENU_BAR_HEIGHT-1,300

/* define the pascal strings. Does LSC
 * provide a better way than this? */
@string1dc.b13,’N’,’o’,
 ‘ ‘,’M’,’e’,’n’,’u’,’s’,’ ‘,’H’,’e’,
 ‘r’,’e’
@string2dc.b14,’S’,’t’,’i’,
 ‘l’,’l’,’ ‘,’N’,’o’,’ ‘,’M’,’e’,’n’,
 ‘u’,’s’
@string3dc.b7,’N’,’o’,’t’,
 ‘ ‘,’Y’,’e’,’t’
@string4dc.b25,’W’,’h’,’e’,
 ‘r’,’e’,’ ‘,’D’,’i’,’d’,’ ‘,’T’,’h’,
 ‘o’,’s’,’e’, ‘,’M’,’e’,’n’,’u’,’s’,
 ‘ ‘,’G’,’o’,’?’
@last
 }
}

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Top Mobile Game Discounts
Every day, we pick out a curated list of the best mobile discounts on the App Store and post them here. This list won't be comprehensive, but it every game on it is recommended. Feel free to check out the coverage we did on them in the links... | Read more »
Price of Glory unleashes its 1.4 Alpha u...
As much as we all probably dislike Maths as a subject, we do have to hand it to geometry for giving us the good old Hexgrid, home of some of the best strategy games. One such example, Price of Glory, has dropped its 1.4 Alpha update, stocked full... | Read more »
The SLC 2025 kicks off this month to cro...
Ever since the Solo Leveling: Arise Championship 2025 was announced, I have been looking forward to it. The promotional clip they released a month or two back showed crowds going absolutely nuts for the previous competitions, so imagine the... | Read more »
Dive into some early Magicpunk fun as Cr...
Excellent news for fans of steampunk and magic; the Precursor Test for Magicpunk MMORPG Crystal of Atlan opens today. This rather fancy way of saying beta test will remain open until March 5th and is available for PC - boo - and Android devices -... | Read more »
Prepare to get your mind melted as Evang...
If you are a fan of sci-fi shooters and incredibly weird, mind-bending anime series, then you are in for a treat, as Goddess of Victory: Nikke is gearing up for its second collaboration with Evangelion. We were also treated to an upcoming... | Read more »
Square Enix gives with one hand and slap...
We have something of a mixed bag coming over from Square Enix HQ today. Two of their mobile games are revelling in life with new events keeping them alive, whilst another has been thrown onto the ever-growing discard pile Square is building. I... | Read more »
Let the world burn as you have some fest...
It is time to leave the world burning once again as you take a much-needed break from that whole “hero” lark and enjoy some celebrations in Genshin Impact. Version 5.4, Moonlight Amidst Dreams, will see you in Inazuma to attend the Mikawa Flower... | Read more »
Full Moon Over the Abyssal Sea lands on...
Aether Gazer has announced its latest major update, and it is one of the loveliest event names I have ever heard. Full Moon Over the Abyssal Sea is an amazing name, and it comes loaded with two side stories, a new S-grade Modifier, and some fancy... | Read more »
Open your own eatery for all the forest...
Very important question; when you read the title Zoo Restaurant, do you also immediately think of running a restaurant in which you cook Zoo animals as the course? I will just assume yes. Anyway, come June 23rd we will all be able to start up our... | Read more »
Crystal of Atlan opens registration for...
Nuverse was prominently featured in the last month for all the wrong reasons with the USA TikTok debacle, but now it is putting all that behind it and preparing for the Crystal of Atlan beta test. Taking place between February 18th and March 5th,... | Read more »

Price Scanner via MacPrices.net

AT&T is offering a 65% discount on the ne...
AT&T is offering the new iPhone 16e for up to 65% off their monthly finance fee with 36-months of service. No trade-in is required. Discount is applied via monthly bill credits over the 36 month... Read more
Use this code to get a free iPhone 13 at Visi...
For a limited time, use code SWEETDEAL to get a free 128GB iPhone 13 Visible, Verizon’s low-cost wireless cell service, Visible. Deal is valid when you purchase the Visible+ annual plan. Free... Read more
M4 Mac minis on sale for $50-$80 off MSRP at...
B&H Photo has M4 Mac minis in stock and on sale right now for $50 to $80 off Apple’s MSRP, each including free 1-2 day shipping to most US addresses: – M4 Mac mini (16GB/256GB): $549, $50 off... Read more
Buy an iPhone 16 at Boost Mobile and get one...
Boost Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering one year of free Unlimited service with the purchase of any iPhone 16. Purchase the iPhone at standard MSRP, and then choose... Read more
Get an iPhone 15 for only $299 at Boost Mobil...
Boost Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering the 128GB iPhone 15 for $299.99 including service with their Unlimited Premium plan (50GB of premium data, $60/month), or $20... Read more
Unreal Mobile is offering $100 off any new iP...
Unreal Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering a $100 discount on any new iPhone with service. This includes new iPhone 16 models as well as iPhone 15, 14, 13, and SE... Read more
Apple drops prices on clearance iPhone 14 mod...
With today’s introduction of the new iPhone 16e, Apple has discontinued the iPhone 14, 14 Pro, and SE. In response, Apple has dropped prices on unlocked, Certified Refurbished, iPhone 14 models to a... Read more
B&H has 16-inch M4 Max MacBook Pros on sa...
B&H Photo is offering a $360-$410 discount on new 16-inch MacBook Pros with M4 Max CPUs right now. B&H offers free 1-2 day shipping to most US addresses: – 16″ M4 Max MacBook Pro (36GB/1TB/... Read more
Amazon is offering a $100 discount on the M4...
Amazon has the M4 Pro Mac mini discounted $100 off MSRP right now. Shipping is free. Their price is the lowest currently available for this popular mini: – Mac mini M4 Pro (24GB/512GB): $1299, $100... Read more
B&H continues to offer $150-$220 discount...
B&H Photo has 14-inch M4 MacBook Pros on sale for $150-$220 off MSRP. B&H offers free 1-2 day shipping to most US addresses: – 14″ M4 MacBook Pro (16GB/512GB): $1449, $150 off MSRP – 14″ M4... Read more

Jobs Board

All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.