TweetFollow Us on Twitter

Apr 89 Mousehole
Volume Number:5
Issue Number:4
Column Tag:Mousehole Report

Mousehole Report

By Rusty Hodge & Larry Nedry, Mousehole BBS

From: dbieber (Douglas Bieber, Alta Loma, CA)

Subject: PICT display

HELP!! I am currently using a Mac II w/a Supermac 19" color monitor. I am programming under MPW C 2.0.2. I have been attempting to convert the PICT file Pascal tech-note examples into work-able “C” code. Unfortunately, I have not been successful. I would be interested in any “C” source that reads and displays a PICT-2 file. Any help would be appreciated. Thanks.

From: emmayche (Mark Hartman, Fullerton, CA)

Subject: Re: PICT display

Here’s some Lightspeed C code that I’ve written which does what I think you want to do. This also takes care of picture spooling. I’m not sure how much will be applicable to MPW C.

/* 1 */

int   thePath;
pascal void GetPICTData(dataPtr, byteCount)
 Ptr  dataPtr;
 int  byteCount;
{
 long longCount;
 longCount = byteCount;
 filErr = FSRead(thePath, &longCount, dataPtr);
}
ReadPICTFile(path, window)
 int  path;
 GrafPtrwindow;
{
 QDProcsPtr savedProcs;
 CQDProcs myProcs;
 PicHandlemyPicture;
 long longCount, myEOF, filePos;
 Rect r;
 thePath = path;
 SetStdCProcs(&myProcs);
 myProcs.getPicProc = (Ptr)&GetPICTData;
 savedProcs = window->grafProcs;
 window->grafProcs = (QDProcsPtr)&myProcs;
 SetPort(window);
 myPicture = (PicHandle)NewHandle(sizeof(Picture));
 if (filErr=GetEOF(path, &myEOF))
 return FALSE;
 if (filErr=SetFPos(path, fsFromStart, 512))
 return FALSE;
 longCount = sizeof(Picture);
 if (filErr=FSRead(path, &longCount, (Ptr)*myPicture))
  return FALSE;
 r = (*myPicture)->picFrame;
 DrawPicture(myPicture, &r);
 if (filErr=GetFPos(path, &filePos))
 return FALSE;
 KillPicture(myPicture);
 window->grafProcs = savedProcs;
 if (filePos != myEOF)
  return FALSE;
 return TRUE;
}

Note that there are some casts to QDProcsPtr when you’d think it should really be CQDProcsPtr; don’t worry about these, they work fine and leave the flexibility to return to black-and-white should you ever be crazy enough to do so. “filErr” is a global error code declared in a .h file.

Hope this helps - please let me know. [Another good source is Dave Wilson's Color Paint Example program in his Macintosh II Programming Class Notes, available from the MacTutor Mail Order Store. -ED]

From: andyv (Andrew Voelker, Long Beach, CA)

Subject: Mac II bus error

I wrote a program that works fine on my SE, but it bombs with a bus error on a Mac II. What does a bus error mean on a Mac II?

From: emmayche (Mark Hartman, Fullerton, CA)

Subject: Re: Mac II bus error

It very much depends upon what you’re doing. Generally, a bus error means that somebody (generally the CPU) has asserted an address and nobody lives there (actually, nobody has responded within the time limit of the bus).

If you can figure out about where you’re bombing and post some of the code around that point, it would be helpful in the diagnosis.

From: lsr (Larry Rosenstein, Cupertino, CA)

Subject: Re: Mac II bus error

You can never get a bus error on the Mac SE (or Plus) because of the way the hardware is designed. Your program is still accessing some strange error, but the hardware is mapping that access back to some valid memory address. This means you could be stomping on random memory locations on the SE.

From: dbieber (Douglas Bieber, Alta Loma, CA)

Subject: PICT display again...

The code that emmayche provided worked great! However, I am having two problems:

1) A color picture created by MacDraw II will not appear in color using the aforementioned code. Perhaps further “tweeks” are necessary.

2) A color picture created by Pixel Paint will appear in color. However, the update region (the area of the picture window covered by the SFGetFile dialog) is updated in black & white. I am using CopyBits in my update function. I have retrieved the picture window using GetNewCWindow, and I have defined an off screen PixMap for use with the CopyBits routine. Unfortunately, when I initialize the system, the pixSize variable has a value of zero. I suppose I need to do further “initializations” not previously required for B&W. But what??

Any code and/or suggestions would be appreciated. The February 1988 issue of MacTutor has an excellent article entitled “Macintosh II: Color Screen Dump FKEY”. The use of PixMaps is demonstrated in a Pascal DA. Unfortunately, no update procedures are performed.

From: emmayche (Mark Hartman, Fullerton, CA)

Subject: Re: PICT display again

It is unclear to me how your program is handling the update event that it will receive after the SFGetFile dialog clears away. If you are updating from an off-screen PixMap, you should be sure that the offscreen port is opened with the proper depth, and use the OpenCPort command for it.

I open my palette window first with a GetCWindow call, then steal the depth of that window for document windows. Works fine unless someone makes the screen shallower on you (deeper, we can handle). This is tricky, which is one of the reasons Pixel Paint *requires* 256-color mode to be set. (My program, Photon Paint, is more intelligent, so it’ll operate in 16- or 4-color mode. It’ll do 2-color mode, too, but that gets boring.)

If this doesn’t give you enough help, let me know and maybe we can do something about it off-line.

From: andyv (Andrew Voelker, Long Beach, CA)

Subject: my bus error

I get my bus error on the Mac II in the first instruction of this function:

void  DrawCard(thePile, cardNumber)
struct pile *thePile;
char  cardNumber;
{
 struct cardtheCard;
 theCard = *(thePile->cards[cardNumber]);
}

the following are global variables:

struct card {
 Rect rect
 char   suit, value;
 BooleanfacingUp;
} deck[NUM_OF_CARDS];
struct pile {
 Rect baseRect;
 char numInPile;
 struct Card   *cards[MAX_CARDS_IN_PILES];
} playPile[NUM_OF_PLAY_PILES], accumPile[NUM_OF_ACCUM_PILES], drawPile, 
discardPile;

It doesn’t bomb on a Mac SE.

From: emmayche (Mark Hartman, Fullerton, CA)

Subject: Re: my bus error

Try changing:

 theCard = *(thePile->cards[cardNumber]);

to:

 theCard = *(thePile->cards[(int)cardNumber]);

I think that the byte-wide subscript may be killing you here. It’s probably got some junk in the upper byte(s) which are pointing way-the-heck off somewhere. This is a wild guess - everything else looks fine.

From: dbieber (Douglas Bieber, Alta Loma, CA)

Subject: it’s a start.

Well, nobody has left a message on this board yet. So, I thought I’d start. I’m currently using a Mac II with 19" color monitor. It’s amazing how small the screen on my SE looks when I go home at night. In fact, I almost wish I’d spent the extra money for a Mac II... Too bad the SE doesn’t have color caps besides old Quickdraw...

From: wliao (Willy Liao, Fullerton, CA)

Subject: Re: it’s a start.

Ah, but if you upgrade to the 030 SE it looks like you will have the ability to add a second color monitor to your SE, in a manner analogous to a //x with one 9" monochrome & a 13" (or 19") color. The slot in the 030 SE isn’t NuBus, nor is it the old 96-pin SE slot; it’s been modified for faster access from the 030. Since the ROMs are similar (or identical? Don’t know what’d happen to the slot manager) to the //x’s, you should be able to drive multiple screens if a 3rd party comes out with a card for the slot (or a NuBus chassis, but that would cost extra $$$).

From: ossian1(James Von Schmacht,Santa Ana)

Subject: SE screen wiggle

I just inherited an SE from my company, and have found that it has the “aircraft carrier” fan and the annoying screen shimmy. There used to be a no-cost to the user upgrade which replaced the analog board and the fan unit. Does it still exist? Who should I talk to? What is their number? Should I talk to tech supt at Apple? What is their number? Thanks for any help you can give. The trade I worked out was pretty good too. A Mac Plus, System Saver plus, 800K external drive, A+ optical mouse, and a carrying case for an SE-20 and carrying case, straight across the board...oh yeah, the Plus was a three-plus year old 512k that had been upgraded...tee hee.

From: thecloud (Ken Mcleod, La Habra, CA)

Subject: Re: SE screen wiggle

There is (or was) a service program for free replacement of the fan unit, but it was limited to SE’s with serial numbers less than some magic number, which I don’t have handy at the moment. An Apple dealer should be able to look up the info for you... good luck.

From: rusty (Mr. Rusty Hodge, Orange, CA)

Subject: Re: SE screen wiggle

My fan has been rattling lately, it is truly horrible. I’ll have to get AppleCare I guess.

From: sstaton (Steven R. Staton, Dallas, TX)

Subject: Re: SE screen wiggle

I must inform you, sadly, that there truly was no “no-cost” fix for the SE fan/video wiggle problem. Apple merely acknowledged the problem, fixed it in the SE line, and went about gouging existing owners for fixes.

The Mobius fan can fix the fan noise problem for only $39. I was able to coax my local Apple Dealer into selling me the fix board for the video yoke. It took ten minutes to swap it in. Cost: $17.

From: rusty (Mr. Rusty Hodge, Orange, CA)

Subject: Re: SE screen wiggle

Can someone give some details on the Mobius fan, how it is installed and all that stuff...

From: jr7 (John Rodeffer, Costa Mesa, CA)

Subject: Mac SE/30

PC Week (yes, I have my heresy filter turned on) has an article in the January 23 issue about this machine. Some highlights are:

16 Mhz 68030 Processor with Page Memory Management,Version 6.0.3 OS, 40 or 80 MB Hard Disk w/ 30ms access, FDHD (Floppy Disk High Density) SuperDrive like the Mac IIx, Single Expansion Slot called 030 Direct Slot NOT compatible with “old” SE or the Mac II’s Nubus, 16Mhz bus vs. 8Mhz for “old” SE

Configurations and Pricing

4MB w/ 80MB $6569

1MB w/ 40MB $4869

1MB w/ single 800k Floppy $4369

Evidently 6.0.3 will be required by Apple’s “forthcoming” 32-bit Quickdraw screen drawing software. No mention of any possible upgrade (i.e. Motherboard trade-in) for “old” SE’s. If we make the right noises, maybe Apple will offer it. Mac users’ presence is obviously felt by Apple as illustrated in accompanying article in this same issue: [There is an official upgrade path from both the SE and Mac II to the 030 SE and Mac IIx. It involves a motherboard swap. Ed]

“Experts Pin Apple’s Cuts on Competition, Buyer Pressure” Only four months after raising prices on its full featured Macs, Apple Computer Inc. slashed them last week. While Apple cited reduced costs from falling memory prices as the reason for the cuts, industry analysts said the changes were influenced more by competition and customer resistance to high prices than by memory costs. “They had some problems in the fourth quarter based on price,” said Bill Lempesis, an analyst with market researcher Dataquest, Inc., of San Jose, Calif. Even Allan Loren, president of Apple USA, the sales arm of Apple Computer Inc., said buying patterns shifted to less costly, less fully configured Macs in the fourth quarter. Some analysts say the price cuts don’t go far enough. “Macintosh users would be better served with more powerful computers at lower cost,” said Jonathan Seybold, publisher of the Seybold Reports, in Malibu, Calif. “Apple is going for (profit) margins and responding to shareholders these days. Apple should be going for market share-attracting more users with lower prices-and therefore positioning itself to fend off the challenge of OS/2 and Presentation Manager.”

HEY, APPLE, ARE YOU LISTENING OUT THERE? Users buy Macs, not shareholders.

Let Apple know your feelings on this and maybe we can lower prices to a more realistic level before we have to buy those 386 PS/2’s.

From: macww (Mark Worthington, Worcester, MA)

Subject: 800K external drive

I need to get an 800K floppy drive. Apple’s lists at $429 (gag!). I have ordered and returned “two” CMS 800K drives. Both were defective. I am trying to get a Central Point drive from Programs Plus, but the drives are on backorder and have been for some time. Any recommendations? Thanks.

From: thecloud (Ken Mcleod, La Habra, CA)

Subject: Re: 800K external drive

I would also appreciate info on this. I’m currently running without ANY floppy drives (I’ve used up 3 of ‘em so far; the last one was a typical Apple rebuilt 800K internal --it lasted 3 months), and backups of my hard disk can only occur when I take it over to a friend’s Mac. (I’ve got a drive on order, but I’d like to know if anyone has a “source” for getting broken drives repaired cheaply. Even Computer Quick in La Mirada won’t touch floppy drive repair...)

By the way, all the drives have failed identically: the upper head, which is mounted on a flimsy piece of copper foil, gets caught by a sticking disk shutter and breaks off, rendering the otherwise-sound unit worthless. Does anyone know anyone in the department at Apple where defective floppy drives are returned by dealers? (I’m curious as to what percentage of these failures involve the upper head... bet it’s >90%!)

From: ossian1 (J. Von Schmacht, Santa Ana, CA)

Subject: Re: 800K external drive

How about better disks.....you really gotta watch them there furren imports. Sorry, couldn’t resist...is it possible that the drive cage is not correctly aligned with the insertion slot? I’ve had a 400k then an 800k in my plus for three years, and never encountered this problem. Hope this helps.

From: thecloud (Ken Mcleod, La Habra, CA)

Subject: Re: 800K external drive rec needed

How about better disks.....you really gotta watch them there furren imports. Well, the drive is made by Sony... and I use Sony disks... hmmmm! Also, the drive was correctly mounted... the problem was on the “inside”.

From: cliffh (Cliff Harris, Anaheim, CA)

Subject: Re: 800K external drive rec needed

I have had two Ehman Engineering external drives. After I returned the first drive, which died after three weeks, they sent me a new drive. The new drive wouldn’t format a disk correctly right out of the box. After a week of use it became extremely noisy. I lived with the noise, and then the speed changed so badly that I couldn’t interchange disks written with this drive with those written on the internal drive. I finally solved the problem by buying a demo Apple drive off the bargain table at Heath/Zenith for $250. So far this drive has been perfect. Ehman has apparently changed their name to Cutting Edge (to protect the guilty?). The external appearance of the Cutting Edge drive has changed recently. If the internals have also changed then all of the above comments are of course null and void. I am not surprised that Computer Quick will not fix these drives as all the components are surface mount, which are almost impossible to get and also require special equipment to remove and install.

 
AAPL
$433.26
Apple Inc.
-1.32
MSFT
$34.87
Microsoft Corpora
+0.79
GOOG
$909.18
Google Inc.
+5.31

MacTech Search:
Community Search:

Software Updates via MacUpdate

Apple iTunes 11.0.3 - Manage your music,...
Apple iTunes lets you organize and play digital music and video on your computer. It can automatically download new music, app, and book purchases across all your devices and computers. And it's a... Read more
Spotify 0.9.0.133. - Stream music, creat...
Spotify is a new way to enjoy music. Simply download and install. Before you know it you'll be singing along to the genre, artist, or song of your choice. With Spotify you are never far away from... Read more
JollysFastVNC 1.46 - Fast VNC client. (S...
JollysFastVNC is a VNC client which aims to become the best VNC client on the Mac. When I started ScreenRecycler I thought that there are enough VNC clients out there to support it. When the program... Read more
Skitch 2.5.2 - Take screenshots, annotat...
Skitch allows you to take screenshots on your Mac, edit them and share them with others. It makes the sharing process seamless by making it a natural workflow to send the image (with edited arrows... Read more
Backblaze 2.1.0.608 - Online backup serv...
Backblaze is an online backup service, available fo $5/month for unlimited storage. With half of the founding team heralding from Apple, Backblaze is deeply committed to the Mac platform. The... Read more
The Cave 1.0.0 - Adventure game featurin...
The Cave is an adventure game that offers a unique blend of fast-paced action, mind-bending puzzles, and winning humor. Assemble your team and embark on a journey into the shadowy underworld. Once... Read more
StatsBar 1.4 - Monitor system processes...
StatsBar gives you a comprehensive and detailed analysis of the following areas of your Mac: CPU usage Memory usage Disk usage Network and bandwidth usage Battery power and health (MacBooks only)... Read more
Thunderbird 17.0.6 - Email client from M...
As of July 2012, Thunderbird is no longer being actively developed, although security improvements will continue to be released as needed. Thunderbird is a free, open-source, cross-platform e-mail... Read more
Adobe Flash Player 11.8.800.50 - Multime...
Adobe Flash Player is a cross-platform, browser-based application runtime that provides uncompromised viewing of expressive applications, content, and videos across browsers and operating systems.... Read more
Apple iMovie 9.0.9 - Edit personal video...
Apple iMovie makes it easy to turn your home videos into your all-time favorite films. You'll laugh. You'll cry. You'll watch them over and over again. And you'll share them with everyone.Version 9.... Read more

Second Home – Xbox Live Indie Developers...
The indie game development scene has been around for an incredibly long time; pretty much ever since people had the opportunity to program for themselves. However it wasn’t until shareware became a common method of distribution the 90s that it began... | Read more »
The Simpsons: Tapped Out Adds New Charac...
The Simpsons: Tapped Out Adds New Character and Locations In Latest Update Posted by Andrew Stevens on May 17th, 2013 [ permalink ] | Read more »
Fast & Furious 6: The Game Review
Fast & Furious 6: The Game Review By Jennifer Allen on May 17th, 2013 Our Rating: :: SPEEDY YET SLOW PACEDUniversal App - Designed for iPhone and iPad It’s not that Fast & Furious 6 isn’t a fun drag racer, it’s just that... | Read more »
N.O.V.A. 3 – Near Orbit Vanguard Allianc...
N.O.V.A. 3 – Near Orbit Vanguard Alliance Is Free For Today Only Posted by Andrew Stevens on May 17th, 2013 [ permalink ] Universal App - Designed for iPhone and iPad | Read more »
Turbo Racing League Is Now Available, Pr...
Turbo Racing League Is Now Available, Provides Players A Chance To Win Cash Prizes Posted by Andrew Stevens on May 17th, 2013 [ permalink ] | Read more »
Running with Friends Review
Running with Friends Review By Blake Grundman on May 17th, 2013 Our Rating: :: FAMILIAR, YET FUNUniversal App - Designed for iPhone and iPad A game may look and play identically to other titles on the market, but this is one that... | Read more »
Festival de Cannes Lets You Experience T...
Festival de Cannes Lets You Experience The Festival In Real Time Posted by Andrew Stevens on May 17th, 2013 [ permalink ] | Read more »
Sonic the Hedgehog’s Remastered Version...
The original Sonic the Hedgehog has been remastered for iOS, a la Sonic CD. | Read more »
tenXer Tracks All Your Activities And Re...
tenXer Tracks All Your Activities And Reports Them For You Posted by Andrew Stevens on May 17th, 2013 [ permalink ] iPhone App - Designed for the iPhone, compatible with the iPad | Read more »
Redline Rush Review
Redline Rush Review By Andrew Stevens on May 17th, 2013 Our Rating: :: TAKEDOWNUniversal App - Designed for iPhone and iPad Redline Rush puts players in the driver’s seat of endless racing action as they swerve to avoid traffic and... | Read more »

Price Scanner via MacPrices.net

Save up to $100 on iMacs with Apple Education disc...
Take up to $100 off the price of a new 21″ or 27″ iMac at The Apple Store for Education. All students, teachers, and staff at any educational institution qualify for the discount, and shipping is... Read more
Mac mini Server on sale for $50 off MSRP
B&H Photo has the 2012 Mac mini Server on sale for $949 including free shipping plus NY sales tax only. Their price is $50 off MSRP, and it’s the lowest price available for this model. B&H... Read more
Steve Jobs Triumphs Posthumously In Platform Wars...
The Register’s Paul Kunert says it’s finally official – the epic battle of legendary Apple CEO Steve Jobs is finally won, now that he has toppled the PC platform from beyond the grave, in the UK, at... Read more
Microsoft Surface Pro vs Apple MacBook Air 11in
Stuff has posted a concise comparo review of the Microsoft Surface Pro tablet PC versus Apple’s 11.6-inch MacBook Air, noting that both machines offer a full desktop OS and a current-generation Intel... Read more
Pixelmator 2.2 First Week Downloads Top Half a Mil...
The Pixelmator Team has announced that Pixelmator 2.2 downloads have topped half a million since last Thursday, making it the most successful release in Pixelmator history. With over 100 new features... Read more
AppleCare Protection Plans on sale for up to $105...
B&H Photo has 3-Year AppleCare Warranties on sale for up to $105 off MSRP including free shipping plus NY sales tax only: - Mac Laptops 15″ and Above: $244 $105 off MSRP - Mac Laptops 13″ and... Read more
27″ Apple Display (refurbished) available for $829...
The Apple Store has Apple Certified Refurbished 27″ Thunderbolt Displays available for $829 including free shipping. That’s $170 off the cost of new models. Read more
Walmart online offers iPad mini for $299
Walmart is offering 16GB WiFi iPad minis for $299 on their online store for a limited time. Choose free home delivery or free local store pickup. MSRP for this model is $329. Read more
PC Markets in Western Europe Collapse; Only Apple...
PC shipments in Western Europe totaled 12.3 million units in the first quarter of 2013, a decline of 20.5 percent from the corresponding period of 2012, according to Gartner, Inc. (see Table 1). “... Read more
Google To Enable Sending Money Via Gmail
Google Wallet Founding Engineers Rob von Behren and Jonathan Wall have a announced on The Google Commerce Blog and Google Mobile Blog that Google’s New York City office, along with Citi, MasterCard,... Read more

Jobs Board

*Apple* Retail - Manager - Apple Inc. (...
Job SummaryKeeping an Apple Store thriving requires a diverse set of leadership skills, and as a Manager, you're a master of them all. In the store's fast-paced, dynamic Read more
*Apple* Support Engineer - Systemtec, I...
Apple Support Engineer SYSTEMTEC. FIND YOUR NEW CAREER PATH! Technology projects within organizations present unique opportunities. By offering your expertise within a Read more
*Apple* Engineer - DP Professionals Inc...
DP Professionals is seeking an Apple Engineer for a contract in Charleston, SC. The Apple Engineer will provide Mac and iOS device and application support, and Read more
*Apple* Engineer - Tailwind Associates...
" Apple Engineer" Information ID 6024 Title Apple Engineer Category City N. Charleston State SC Date Posted 2013-05-15 Job Description Tailwind Associates, Read more
" *Apple* Engineer" - Tailwin...
" Apple Engineer" Information ID 6024 Title Apple Engineer Category City N. Charleston State SC Date Posted 2013-05-15 Job Description Tailwind Associates, Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.