TweetFollow Us on Twitter

Mar 94 Tips
Volume Number:10
Issue Number:3
Column Tag:Tips & Tidbits

Tips & Tidbits

Using GWorlds and the Pallette Manager

Edited by Scott Boyd and Neil Ticktin

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

Tip Of The Month

Studies have shown that anyone who has to focus visual attention in one place for a long time (like a computer user), will blink less often. This makes your eyes dry, and is the main cause of eyestrain. Even though blinking is a reflex action and usually outside of conscious control, there’s an easy way to increase your blink-rate.

Write the word “Blink!” on a small piece of paper. Then stick it someplace on your computer monitor where you will always be able to see it. Put one on every monitor you have. Every time you notice it, follow the instruction: Blink a couple of times, and look away from your monitor to focus on some distant object for a few seconds. Then get back to work before your boss catches you staring off into space.

You’ll notice the paper a lot at first, eventually less often. The initial effect is just to make you think about it. But even after you stop noticing it consciously, leave the note there. It has a subliminal “training” effect that makes you blink more often. It’s like tying a string around your finger to help you remember something. This really works to reduce eyestrain. But it’s so simple and inexpensive that most people don’t believe it until they’ve used it for a while.

- Lee David Rimar, Absoft Corporation

[As with all tips, consult your physician before trying this at home! - Ed. nst]

This column is your opportunity to spread the word about little bits of information that you find out about. These tidbits can be programming related or they can be user tips that are particularly useful to programmers.

MacTech Magazine will pay $25 for every tip used, and $50 for the Tip of the Month. Or you can take your award in orders or subscriptions.

To submit a tip, send in a letter to the magazine. E-mail is our preferred method, but feel free to send something via the US Mail. See page two for all addresses. If you do send snail mail, enclose a printed copy and a disk copy of the letter so that it does not have to be retyped.

Down and dirty

The following two MOVE instructions will load a zero into lower D0 on a 68000 processor and a one on 68020 or better.


/* 1 */
; Get offset to be scaled
303C 0001  Move.W  #1,D0

; Get one of the two bytes 00 or 01!
103B 02FB  Move.B  *-3(PC,D0.W*2),D0 

This is a much cheaper way than _Gestalt to find out if the 32x32 => 64 multiply instructions are available, etc. To see why this works, first consider 68020 or better hardware. After the Move.W instruction lower D0 will contain the value one. The *-3(PC) part of the Move.B addresses the 3C byte of the Move.W instruction, but indexing by D0 is also specified. Since the scaling field is two, the effective index is two times one or two. Thus the Move.B fetches the byte two down from the 3C byte, which is the 01 byte. Thus on 68020 or better hardware we get a one.

Now consider 68000 hardware. It does not implement index scaling, nor does it notice it being called for! Thus a 68000 will execute the Move.B instruction as if it were the instruction:


/* 2 */
 Move.B  *-3(PC,D0.W),D0

Now the effective index is one (not two) and the zero byte that is one down from the 3C byte is loaded. Thus on 68000 hardware we get a zero. Note also that the Zero toggle will be set on 68000 and cleared on 68020 or better hardware. This allows an immediate BZ/BEq or BNZ/BNE to be used.

The information that the 68000 processor fully decodes all 16384 possible opcode words but does not fully decode the addressing modes in extension words can be found in the Advanced Topics appendix of Motorola's MC68020 32-Bit Microprocessor User's Manual (Second Edition).

- Charles Cranston

zben@ni.umd.edu

Starting an init

I always the following code for the entry point for an INIT, WDEF or any other code resource. This template can only be used with Think C, as it uses assembly and it relies on A4 to reference globals. The 'Custom Header' must be checked in the 'Set Project Type '-dialog.


/* 3 */
void main (void) ;
void header (void) ;

void header (void)
{
  asm {
    BRA.S  @next   ; jump over the following data
    DC.L   'TMON'  ;   tell TMON todo label-searching
    DC.L   'INIT'  ;   use this and the next 4 bytes to label
    DC.L   'SPPS'  ;   this code resouce
 next:
    LEAheader, A0  ; load the address of the code resource in A0
    JMP    main  ; jump to main
  }
}

#include <SetUpA4.h>   // We need this if we have globals

void main (void)
{ Ptr  mySelf ;  // pointer to this code resource

  asm {
    move.l A0, mySelf
  }

  RememberA0()   ;  // put A0 in a save spot
  SetUpA4() ;  // and use it to set up A4
        
  RestoreA4() ;

The low-level debugger TMON looks for MacsBug labels in code resources that it knows about. If it doesn’t know the type of a resource to be code, or if it is detached and no longer a resource, TMON will not show labels in the code. The TMON User Area 'AddRange/TMON.fixed' looks for the string 'TMON' two bytes into every block it finds, and then asks TMON to scan it for labels. It was written by Ken Schalk and it is available on bulletin boards.

The following two strings mark what the block is about. This is great for debugging. If I want to set a breakpoint, I simply search for these strings in memory,

After the 'next' label, I load the address of the start of the code resource in register A0. This is required by Think C so that it can retrieve it to set A4 for accessing globals. The statements RememberA0() and SetUpA4() do the trick. Always be sure to call RestoreA4() before leaving the routine. A0 contains a pointer to the start of the block, and I save it in the variable 'mySelf'. If I want to keep the code in memory afterwards, I simply have to execute 'DetachResource(RecoverHandle(mySelf))'.

- Jan Bruyndonckx

Wave Research, Belgium

Tiny MPWScript

Here’s a tiny MPW script I find indispensible when collaborating on an MPW project. It lets you instantly open the files that your coworkers have changed.

The CheckOut command does have a -open option, but with this script you can choose which files to open and in what order, and you can wait until later to do it. Of course, once you have a file open you can use CompareRevisions to see what changed. Put this script in your MPW:Scripts folder and call it “Checked”. Opens the file referenced in the output of a projector CheckOut -p command:


/* 4 */
Checked out "HD:Blah:Blah.c,9" from "Blah ".

You can execute lines of this form directly from your worksheet (in groups or individually). This is an amazingly complicated script...not! It ignores its first argument, which is always “out”, its third argument, which is always “from”, and its fourth argument, which is the project pathname. All we care about is the second argument, which is almost the filename that we want the trick is ignoring the comma and digits at the end, which we do by matching the argument against a regular expression (see “help patterns”).


/* 5 */
(evaluate "{2}" =~ /( )®1,[0-9.]+/ ) > Dev:Null
open "{®1}"

Yes, it’s a two-line script.

- Dave Lyons

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Six fantastic ways to spend National Vid...
As if anyone needed an excuse to play games today, I am about to give you one: it is National Video Games Day. A day for us to play games, like we no doubt do every day. Let’s not look a gift horse in the mouth. Instead, feast your eyes on this... | Read more »
Old School RuneScape players turn out in...
The sheer leap in technological advancements in our lifetime has been mind-blowing. We went from Commodore 64s to VR glasses in what feels like a heartbeat, but more importantly, the internet. It can be a dark mess, but it also brought hundreds of... | Read more »
Today's Best 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 below... | Read more »
Nintendo and The Pokémon Company's...
Unless you have been living under a rock, you know that Nintendo has been locked in an epic battle with Pocketpair, creator of the obvious Pokémon rip-off Palworld. Nintendo often resorts to legal retaliation at the drop of a hat, but it seems this... | Read more »
Apple exclusive mobile games don’t make...
If you are a gamer on phones, no doubt you have been as distressed as I am on one huge sticking point: exclusivity. For years, Xbox and PlayStation have done battle, and before this was the Sega Genesis and the Nintendo NES. On console, it makes... | Read more »
Regionally exclusive events make no sens...
Last week, over on our sister site AppSpy, I babbled excitedly about the Pokémon GO Safari Days event. You can get nine Eevees with an explorer hat per day. Or, can you? Specifically, you, reader. Do you have the time or funds to possibly fly for... | Read more »
As Jon Bellamy defends his choice to can...
Back in March, Jagex announced the appointment of a new CEO, Jon Bellamy. Mr Bellamy then decided to almost immediately paint a huge target on his back by cancelling the Runescapes Pride event. This led to widespread condemnation about his perceived... | Read more »
Marvel Contest of Champions adds two mor...
When I saw the latest two Marvel Contest of Champions characters, I scoffed. Mr Knight and Silver Samurai, thought I, they are running out of good choices. Then I realised no, I was being far too cynical. This is one of the things that games do best... | Read more »
Grass is green, and water is wet: Pokémo...
It must be a day that ends in Y, because Pokémon Trading Card Game Pocket has kicked off its Zoroark Drop Event. Here you can get a promo version of another card, and look forward to the next Wonder Pick Event and the next Mass Outbreak that will be... | Read more »
Enter the Gungeon review
It took me a minute to get around to reviewing this game for a couple of very good reasons. The first is that Enter the Gungeon's style of roguelike bullet-hell action is teetering on the edge of being straight-up malicious, which made getting... | Read more »

Price Scanner via MacPrices.net

Take $150 off every Apple 11-inch M3 iPad Air
Amazon is offering a $150 discount on 11-inch M3 WiFi iPad Airs right now. Shipping is free: – 11″ 128GB M3 WiFi iPad Air: $449, $150 off – 11″ 256GB M3 WiFi iPad Air: $549, $150 off – 11″ 512GB M3... Read more
Apple iPad minis back on sale for $100 off MS...
Amazon is offering $100 discounts (up to 20% off) on Apple’s newest 2024 WiFi iPad minis, each with free shipping. These are the lowest prices available for new minis among the Apple retailers we... Read more
Apple’s 16-inch M4 Max MacBook Pros are on sa...
Amazon has 16-inch M4 Max MacBook Pros (Silver and Black colors) on sale for up to $410 off Apple’s MSRP right now. Shipping is free. Be sure to select Amazon as the seller, rather than a third-party... Read more
Red Pocket Mobile is offering a $150 rebate o...
Red Pocket Mobile has new Apple iPhone 17’s on sale for $150 off MSRP when you switch and open up a new line of service. Red Pocket Mobile is a nationwide MVNO using all the major wireless carrier... Read more
Switch to Verizon, and get any iPhone 16 for...
With yesterday’s introduction of the new iPhone 17 models, Verizon responded by running “on us” promos across much of the iPhone 16 lineup: iPhone 16 and 16 Plus show as $0/mo for 36 months with bill... Read more
Here is a summary of the new features in Appl...
Apple’s September 2025 event introduced major updates across its most popular product lines, focusing on health, performance, and design breakthroughs. The AirPods Pro 3 now feature best-in-class... Read more
Apple’s Smartphone Lineup Could Use A Touch o...
COMMENTARY – Whatever happened to the old adage, “less is more”? Apple’s smartphone lineup. — which is due for its annual refresh either this month or next (possibly at an Apple Event on September 9... Read more
Take $50 off every 11th-generation A16 WiFi i...
Amazon has Apple’s 11th-generation A16 WiFi iPads in stock on sale for $50 off MSRP right now. Shipping is free: – 11″ 11th-generation 128GB WiFi iPads: $299 $50 off MSRP – 11″ 11th-generation 256GB... Read more
Sunday Sale: 14-inch M4 MacBook Pros for up t...
Don’t pay full price! Amazon has Apple’s 14-inch M4 MacBook Pros (Silver and Black colors) on sale for up to $220 off MSRP right now. Shipping is free. Be sure to select Amazon as the seller, rather... Read more
Mac mini with M4 Pro CPU back on sale for $12...
B&H Photo has Apple’s Mac mini with the M4 Pro CPU back on sale for $1259, $140 off MSRP. B&H offers free 1-2 day shipping to most US addresses: – Mac mini M4 Pro CPU (24GB/512GB): $1259, $... Read more

Jobs Board

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