TweetFollow Us on Twitter

May 91 Mousehole
Volume Number:7
Issue Number:5
Column Tag:Mousehole Report

Mac to Vax Problems

By Larry Nedry, Mousehole BBS

From: Hweiss

Re: Object code debugging

There have been occasions where I need to debug an application outside of the THINK C environment. I decided to teach myself how to do object code debugging with TMON and Knaster’s book on the subject. I managed to find a THINK C port of the Pascal source used in Knaster’s Showoff example. The resulting application duplicates the same bugs as the Pascal version, however, due to the differences in the object code generated by the two different compilers and the fact that I am using a IIci (not a Mac Plus which generates an address error instead of a bus error when you double-dereference a Nil handle), I am having a great deal of difficulty following the text as the author explains the process of debugging with TMON. Would anyone have any suggestions how I can overcome these obstacles? Thanks.

From: Btoback

Re: Object code debugging

This might not be a terribly constructive suggestion, but use Jasik’s Debugger rather than TMON. It’s a combined source/object debugger that is a lot easier to use than TMON. It does work with Think C. The only disadvantage is that it’s about twice the price of TMON. It’s worth the difference. Because it’s a combined debugger, you can easily figure out which source statements generated which object code.

From: Gator

Re: >32K data items

I’m having a problem with an array to hold an image of greater than 32k in length. I am aware of the problems with global and static data larger than 32k and am using a call to NewPtr to allocate the required memory.

However when I view my image it seems that all data beyond 32k is either corrupted or absent. Downsizing my image to less than 32k takes care of the problem. The following is a fragment of my code:

main()
{
    unsigned char *Image;
    Image = NewPtr( myImageSize );

I’d appreciate any info on what to look out for. Thanks.

From: Sysop

Re: >32K data items

What compiler are you using?

I you are using a signed short for indexing into the array then that would explain why you can’t access the rest of the array.

From: Mrteague

Re: >32K data items

Also make sure the argument you pass to NewPtr is a LONG - you might want to verify that you have more than 32K allocated by doing a Heap Dump in MacsBug. If not, the garbage could be coming from anything in memory, following your memory block.

From: Ray

Re: PICTS in dialog boxes

I am using PICTS as logos and/or visual aids in alerts and dialog boxes. I put them in as PICT resources using ResEdit 2.1, then include them in the DITL. I’ve noticed that when the dialog/alert comes up, it takes a long time (2-3 seconds) to display the PICT. You can see it being painted on the screen. This is with a Mac IIcx, which should be no slouch in the screen painting department. The PICTS originated in MacDraw. Could this be the problem? Should these be bit-mapped graphics instead? I’d like to have the whole dialog including the PICT flash up on the screen “instantaneously”.

From: Dave

Re: PICTS in dialog boxes

The usual way to handle this is to draw the dialog contents into an offscreen buffer and then blit the contents to the screen. You *could* use bitmap picts, but do you want to pay the storage overhead?

From: Kim

Re: Mac to Vax...burp!

To whom they think they know...:

We have been having a real problem with PostScript text files that have been generated in Mac applications by holding ‘COMMAND-K’, while clicking on the “Print” button in the printing dialog of most Mac apps. Using v6.0 of the Laserwriter driver and (at least) System 6.02, we get standard Mac text files that we then try to upload to a Vax using a Kermit transfer Protocol in White Knight. If the transfer is binary, we have no problem... but for ‘text’ transfers the transfer is never completed, bailing out at about 33,000 characters. After looking in the PS text file, I have found that the LaseWriter driver inserts 2 instances of “<LF>eexec<LF>”, or, ‘eexec’ flanked by 2 Linefeed characters ($0A). What gives?

I don’t know much about VMS, or the various file-types available under the same OS, but it appears that the Vax chokes on Mac text files.

Several PC’s that perform the same transfer with WordPerfect PS files all have no problems, either with the transfer or with printing. The Mac files, even though we can get them transferred, can’t print to a Laser- Writer under VMS !!!! I think I might have to write a conversion utility that I can execute in White Knight as an RCMD...at least this seems preferable to buying DEC’s PathWorks S/W, and a Mac, and listening to everything that DEC and Apple tell us. Maybe I have to learn more about VMS/file types/text-files.

Has anybody else done this, and if so, what results did they get? Did they have the same problems, and most importantly, how did they get around them? This one’s really got me(and apparently Apple) stumped.

This week I’m going to send Apple our stuff (S/W, scripts, VMS Kermit), so they can load it on their VAX to try and better define (resolve..) the problem.

It should be said that up here, in Canada, Apple has been most attentive to our problem, as has FreeSoft, the makers of White Knight. I’ll try and get back on this board later on in the week.

From: Mward

Re: Mac to Vax...burp!

Kermit attempts to perform whatever conversions are needed in order to make files passed in text mode readable on the various machines it is hosted on. Mac files use a carriage return to signify end-of-line. I’m not sure what VMS uses. MS-DOS uses carriage return/line feed. I have found that you really have to experiment with Kermit to find the best transfer mode for any given purpose.

I have not had any luck printing Mac generated Postscript file either on a Vax or on a Sun. My guess is that the Laser Prep routines are needed in the Laserwriter to print these files. If only someone would provide these in a downloadable form, or provide a Vax download program...

From: Kim

Re: Mac to Vax...burp!

If you look at about byte position 32333, you find several linefeed characters imbedded in the Laser Prep header. Actually, “<LF>exec<LF>”, I think. This seems to be where the transfer stops in Kermit. The Vax side sends an error message “Kermit’s internal buffers are full”, and the transfer just stops. But as you say, the most maddening part is that the Mac PS files won’t print on the Vax’ed LaserWriter!

I think I’m going to try and write a small utility to convert the “Mac’d” PS files into the exact Vax equivalent, i.e., convert “char-char-<CR>” lines on Mac to “<#of chars>char-char-...-<LF>” on the Vax...if this is my understanding of Vax ‘text’ files, which I think they (VMS) call ‘stream_LF’. The funny thing is that I can’t get anybody who KNOWS exactly what is going on in VAXland either. Perhaps one of the translators in the print daemon, or maybe something the print ‘queue’ does? Anyway, the good thing is that I’ve had to learn a little about VMS and DCL (yeuch!!!)

From: Mward

Re: MAC TO DOS FILE CONVERSION.

There’s an application called PICTure This that will translate many types of PC graphics to PICT format. You will have to translate the graphics in a different step, of course.

From: Steinman

Re: GWorld Help

I’m trying to write a program that presents an animated sequence of images that have been pre-loaded from a disk file. Does anybody know of any GWorld example code that sets up multiple GWorlds, each sharing the same GDevice and CLUT?

Thanks in advance,

Dr. Scott Steinman,

University of Missouri-St. Louis,

School of Optometry

From: Inbox

Re: ImageWriterII programming

I think this belongs more in this section than in hardware, so here goes...

The three-page escape code listing in the back of the IM2 manual says the following about printing stuff as bit image graphics:

(a sequence follows)

Print next nnnn bytes as bit image graphics

ESCAPE G nnnn 27 71 dddd (comment) nnnn = #

of bytes.

----

Q: How, in what format, must I send the “nnnn”? Do they mean that 4 bytes must be sent the values thereof somehow combined will determine the size of the bitmap to be sent? Should bytes the values of which are digits be sent? Should the ASCII values of digits be sent?

----

I think I’ve tried all of these, and nothing seems to work properly. I mean, the damn thing would print, but it expects some huge byte #, for it doesn’t recognize other control sequences I’ve got at the end of the bitmap. HELP!

From: Don

Re: irregular windows

I am looking for some examples for showing how to make irregular shaped windows in Think C 4.0. Also how to work with regions. Can anyone out there help me.

From: Dave

Re: irregular windows

You should be looking for code for a WDEF resource. I know there is some out there.

From: Stet

Re: InterNet

I recently downloaded some Mac files to my Internet account. Now I would like to use my modem to remote login and then transfer the Mac Files from my Internet account to my Macintosh. I can remote login fine but I haven’t been able to transfer the files. Can anyone help?

From: Mrteague

Re: InterNet

Assuming that you can remote login into your InterNet account, and can see the files you downloaded when you do a ‘ls’, then you should be able to get the files without too much problem, if your site is any good.

What you need is a comms program on the non-Mac side - for example most UN*X based machines will have a ‘xmodem’ utility, and the better machines will have zmodem in the form of the ‘rz’ and ‘sz’ utilities.

Try typing any of these commands and see what you get - most have help facilities. If all that fails, then with any luck (especially if your non-Mac machine is a VAX running VMS) there will be at least a Kermit file transfer implementation - it is a bit trickier to use, and it’s name be differ from machine to machine. Then are always conversion programs (like mget and mput etc) that are usually designed to be used with a FTP connection.

Anyway, if you manage to send a file from the non-Mac end, type the command in first, then have your Mac comms program start the receive (if it doesn’t autostart). Once you have the file, you will probably find that it is ‘BinHex’ format. Use something like StuffIt (any flavor) to convert the file to the appropriate Mac file.

If you still have problems after reading this msg, leave me a msg telling me what machines are involved, what operating systems etc, and I will see what I can do to help.

Hope this helps.

From: Stet

Re: InterNet

Thanks a million! Kermit did the trick. Unfortunately we don’t have access to any xmodem or zmodem utilities. (It seemed that kermit ran a little slowly.) I am going to work on that though.

I just wanted to drop you a line and thank you for your time.

From: Willcox

Re: On Location

I just purchased On Location for use in searching through the source code of my Think Pascal projects. However, On Location is not able to index the text in a Think Pascal file saved in the “non-text” format.

Does anyone have an XTND file written for this type of file (Type = QPED, Creator = PJMM)?

From: Johnbaro

Re: video slot

Does anybody know how to find out what slot the video card(s) is/are in? I need to have a slot number to be able to sync with the vertical retrace. Thanks in advance.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Combo Quest (Games)
Combo Quest 1.0 Device: iOS Universal Category: Games Price: $.99, Version: 1.0 (iTunes) Description: Combo Quest is an epic, time tap role-playing adventure. In this unique masterpiece, you are a knight on a heroic quest to retrieve... | Read more »
Hero Emblems (Games)
Hero Emblems 1.0 Device: iOS Universal Category: Games Price: $2.99, Version: 1.0 (iTunes) Description: ** 25% OFF for a limited time to celebrate the release ** ** Note for iPhone 6 user: If it doesn't run fullscreen on your device... | Read more »
Puzzle Blitz (Games)
Puzzle Blitz 1.0 Device: iOS Universal Category: Games Price: $1.99, Version: 1.0 (iTunes) Description: Puzzle Blitz is a frantic puzzle solving race against the clock! Solve as many puzzles as you can, before time runs out! You have... | Read more »
Sky Patrol (Games)
Sky Patrol 1.0.1 Device: iOS Universal Category: Games Price: $1.99, Version: 1.0.1 (iTunes) Description: 'Strategic Twist On The Classic Shooter Genre' - Indie Game Mag... | Read more »
The Princess Bride - The Official Game...
The Princess Bride - The Official Game 1.1 Device: iOS Universal Category: Games Price: $3.99, Version: 1.1 (iTunes) Description: An epic game based on the beloved classic movie? Inconceivable! Play the world of The Princess Bride... | Read more »
Frozen Synapse (Games)
Frozen Synapse 1.0 Device: iOS iPhone Category: Games Price: $2.99, Version: 1.0 (iTunes) Description: Frozen Synapse is a multi-award-winning tactical game. (Full cross-play with desktop and tablet versions) 9/10 Edge 9/10 Eurogamer... | Read more »
Space Marshals (Games)
Space Marshals 1.0.1 Device: iOS Universal Category: Games Price: $4.99, Version: 1.0.1 (iTunes) Description: ### IMPORTANT ### Please note that iPhone 4 is not supported. Space Marshals is a Sci-fi Wild West adventure taking place... | Read more »
Battle Slimes (Games)
Battle Slimes 1.0 Device: iOS Universal Category: Games Price: $1.99, Version: 1.0 (iTunes) Description: BATTLE SLIMES is a fun local multiplayer game. Control speedy & bouncy slime blobs as you compete with friends and family.... | Read more »
Spectrum - 3D Avenue (Games)
Spectrum - 3D Avenue 1.0 Device: iOS Universal Category: Games Price: $2.99, Version: 1.0 (iTunes) Description: "Spectrum is a pretty cool take on twitchy/reaction-based gameplay with enough complexity and style to stand out from the... | Read more »
Drop Wizard (Games)
Drop Wizard 1.0 Device: iOS Universal Category: Games Price: $1.99, Version: 1.0 (iTunes) Description: Bring back the joy of arcade games! Drop Wizard is an action arcade game where you play as Teo, a wizard on a quest to save his... | Read more »

Price Scanner via MacPrices.net

Our MacBook Price Trackers will show you the...
Our Apple award-winning MacBook Price Trackers are continually updated with the latest information on prices, bundles, and availability for 16″ and 14″ MacBook Pros along with 13″ and 15″ MacBook... Read more
Amazon is offering a 10% discount on Apple’s...
Don’t pay full price! Amazon has 16-inch M4 Pro MacBook Pros (Silver and Black colors) on sale today for 10% off Apple’s MSRP. Shipping is free. These are the lowest prices currently available for 16... Read more
13-inch M4 MacBook Airs on sale for $150 off...
Amazon has new 13″ M4 MacBook Airs on sale for $150 off MSRP right now, starting at $849. Sale prices apply to most colors and configurations. Be sure to select Amazon as the seller, rather than a... Read more
15-inch M4 MacBook Airs on sale for $150 off...
Amazon has new 15″ M4 MacBook Airs on sale for $150 off Apple’s MSRP, starting at $1049. Be sure to select Amazon as the seller, rather than a third-party: – 15″ M4 MacBook Air (16GB/256GB): $1049, $... Read more
Amazon is offering a $50 discount on Apple’s...
Amazon has Apple’s 11th-generation A16 iPads in stock on sale for $50 (or a little more) off MSRP this week. Shipping is free: – 11″ 11th-generation 128GB WiFi iPads: $299 $50 off MSRP – 11″ 11th-... Read more
Clearance 13-inch M1 MacBook Airs available f...
Walmart has clearance, but new, Apple 13″ M1 MacBook Airs (8GB RAM, 256GB SSD) available online for $649, $360 off original MSRP, in Space Gray, Silver, and Gold colors. These are new MacBooks for... Read more
iPad minis on sale for $100 off Apple’s MSRP...
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
AirPods Max headphones on sale for $479, $70...
Amazon has AirPods Max with USB-C on sale for $479.99 in all colors. Shipping is free. Their price is $70 off Apple’s MSRP, and it’s the lowest price available today for AirPods Max. Keep an eye on... Read more
14-inch M4 Pro/M4 Max MacBook Pros on sale th...
Don’t pay full price! Get a new 14″ MacBook Pro with an M4 Pro or M4 Max CPU for up to $320 off Apple’s MSRP this weekend at these retailers…they are the lowest prices available for these MacBook... Read more
Get a 15-inch M4 MacBook Air for $150 off App...
A couple of Apple retailers are offering $150 discounts on new 15″ M4 MacBook Airs this weekend. Prices at these retailers start at $1049: (1): Amazon has new 15″ M4 MacBook Airs on sale for $150 off... Read more

Jobs Board

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