TweetFollow Us on Twitter

Nov 98 Tips

Volume Number: 14 (1998)
Issue Number: 11
Column Tag: Tips & Tidbits

Nov 98 Tips & Tidbits

by Jeff Clites

Strings and Numbers - The Twain Shall Meet

String and numbers are different animals, but programmers are constantly faced with the need to translate back and forth between the two. For integers, it is easy: StringToNum() and NumToString() to the job nicely. But for floating-point numbers, things get a little more tricky, because there are a myriad of choices about how to format them. Apple has provided StringToExtended() and ExtendedToString() to give you complete control over the process - too much control, you might say. Sometimes, you don't want the hassle of the page of code needed, and a simple solution would be appreciated. The classic solution in C is to use sprintf(), but this can wastefully increase the size of your executable if this is the only Standard Library function you need, and it doesn't respect localization settings. The following clever solution convinces the Apple Event Manager to do the work for you:

#include "AppleEvents.h"

OSErr ConvertDoubleToString( double inValue, AEDesc *outResult )
{
   OSErr theErr = noErr;
 
   theErr = AECoercePtr( typeFloat,            // input data type--'doub'
                  (const void *) &inValue, // pointer to input data.
                  (Size) (sizeof(double)),     // size of input data
                  typeChar,       // desired 'want' type is character
                  outResult );    // pointer to AEDesc for output data

   return theErr;                 // the error returned by the coercion.
}

The returned AEDescriptor will contain a descriptor type of typeChar ('TEXT') and a Handle to a block of text (use GetHandleSize() to determine the resulting string length). Of course, don't forget to AEDispose() the AEDescriptor returned by this call.

Stephen L. Reid
sreid@ti.com


Loading a Graphics File with QuickTime

QuickTime makes it easy to load a graphics file into an offscreen GWorld, but as simple as the process is, it can be hard to track down sample code to show you how it is done. The following simple snippet illustrates the process nicely, and has two of my favorite characteristics in a snippet: it doesn't omit error checking, and once you have looked it over it is so intuitive that you will be able to recreate it when you need it, without digging up the actual example:

FSSpec                   fsp;
ComponentInstance        gi;
Rect                     r;
ImageDescriptionHandle   idH;
GWorldPtr                outGWp;
OSErr                    errCode = noErr;

// fill in the FSSpec

if(noErr == errCode){ errCode = GetGraphicsImporterForFile(fsp, &gi); }
if(noErr == errCode){ errCode = GraphicsImportGetImageDescription(gi, &idH); }
if(noErr == errCode){
   r.left = 0;
   r.top = 0;
   r.right = (**idH).width;
   r.bottom = (**idH).height;
   errCode = NewGWorld(&outGWp,(**idH).depth, &r, nil, nil,0);
   if(noErr != errCode){
      errCode = NewGWorld(&outGWp, (**idH).depth, &r, nil, nil,
                          useTempMem);
   }
}
if(noErr == errCode){
   CGrafPtr   savePort;
   GDHandle   saveGD;

   GetGWorld(&savePort, &saveGD);
   SetGWorld(outGWp, nil);
   EraseRect(&r);                   // in case PICT has transparent areas
   GraphicsImportSetBoundsRect(gi, &r);
   GraphicsImportSetGWorld(gi, outGWp, nil);
   errCode = GraphicsImportDraw(gi);
   SetGWorld(savePort, saveGD);
}

if(noErr != errCode && nil != outGWp){  // error occurred
   DisposeGWorld(outGWp);
   outGWp = nil;
}
if(nil != idH){
   DisposeHandle(reinterpret_cast<Handle>(idH));
}
if(nil != gi){
   CloseComponent(gi);
}

If outGWp is not nil, it is a GWorld of the file.

David Phillip Oster
oster@netcom.com

 
AAPL
$561.16
Apple Inc.
-4.16
MSFT
$29.11
Microsoft Corpora
+0.04
GOOG
$590.76
Google Inc.
-12.90
MacTech Search:
Community Search:

Autumn Dynasty Review
Autumn Dynasty Review By Kevin Stout on May 25th, 2012 Our Rating: :: NEARLY FLAWLESSiPad Only App - Designed for the iPad Autumn Dynasty is an oriental-themed real-time strategy game.   | Read more »
Our Annual “Holy Cow It’s Memorial Day A...
So, it’s that time of year again! BBQs, lawn chairs, beer, and the ability to finally wear shorts with sandals without fear of frostbite. Tan those legs and check out all the huge sales that are going on across the App Store below. We’ll try and... | Read more »
FREEday 5/25/12 – “They Call Me FREE but...
Another week of freebies, this time with very little in the way of “Big Name” titles. No need to panic, it’s intentional. Anyone browsing the App Store will no doubt see the more popular games anyway. | Read more »
Shoot the Zombirds Review
Shoot the Zombirds Review By Kevin Stout on May 25th, 2012 Our Rating: :: ADDICTINGUniversal App - Designed for iPhone and iPad Shoot the Zombirds is an archery game where the player shoots arrows at avian zombies.   | Read more »
Apple Debuts Free App of the Week Promot...
Apple has made a couple of changes to their weekly app features that pop up in the Featured tab of the App Store. While “App of the Week” and “Game of the Week” appear to be just rebranded as “Editors’ Choice,” there’s a new feature: the Free Game... | Read more »
Gun Runner Review
Gun Runner Review By Jason Wadsworth on May 25th, 2012 Our Rating: :: RUN AND GUNUniversal App - Designed for iPhone and iPad The name says it all. This clever homage to classic side-scrolling shooters is easy to enjoy but hard to... | Read more »
Five For Friday: Week Of May 25
This week’s Five for Friday is pretty heavy on the apps front but that’s not to say it’s all seriousness here. We’ve got a fun selection of ways to entertain the kids, a powerful web development tool, a companion app for avid golfers and an... | Read more »

Price Scanner via MacPrices.net

Apple Maintains Leading Mobile Device Manufacturer...
Milennial Media says Apple continued to be the number one mobile device manufacturer on their platform in Q1, representing 28% of the top manufacturers impression share. Apple iPhone accounted for 15... Read more
Asustek To Launch Three New ZenBook Ultrabook Mode...
Digitimes’ Rebecca Kuo and Steve Shen report that PC-maker Asustek Computer will launch three new models to its ZenBook Prime Ultrabook lineup – the UX21A, UX31A and UX32VD – in June, featuring full... Read more
Yahoo! Introduces Axis Search Browser For Mobile D...
Yahoo! has announced the availability of Yahoo! Axis, a new Web browser tool that it claims will re-imagine how people search and browse on the web, Axis offering a faster, smarter search with... Read more
Android- and iOS-Powered Smartphones Expand Market...
Smartphones powered by Android and iOS mobile operating systems accounted for more than eight out of ten smartphones shipped in the first quarter of 2012 (1Q12), according to the International Data... Read more
Roundup of Memorial Day Weekend MacBook Pro sales,...
 Apple resellers have MacBook Pros on sale for up to $240 off MSRP this Holiday weekend. Here is a roundup of the best prices available from any reseller: (1) B&H Photo has MacBook Pros on sale... Read more
iPad wait times down to 1-3 days at The Apple Stor...
The Apple Store Online is now reporting a 1-3 business day wait on all iPad orders, as it appears that Apple is clearing out their backlog. The iPad is available in Wi-Fi or Wi-Fi + Cellular... Read more
Roundup of Memorial Day Weekend MacBook Air sales,...
 Apple resellers have MacBook Airs on sale for up to $101 off MSRP this Holiday weekend. Here is a roundup of the best prices available from any reseller: (1) B&H Photo has 11-inch and 13-inch... Read more
13″ 2.8GHz MacBook Pro on sale for $100 off MSRP
Adorama has lowered their price on the 13″ 2.8GHz MacBook Pro to $1399 including free shipping plus NY/NJ sales tax only. Their price is $100 off MSRP, and it’s the lowest price for this model from... Read more

Jobs Board

*Apple* Retail - Manager - Natick Colle...
Much more than just a place for amazing products, the Apple Retail Store serves a dazzling range of needs for its customers. Not only can users get hands-on experience Read more
XML image iPhone App at Elance.com (Uppe...
I want a similar iphone app like the following App below: /us/app/hd-tattoo-designs-catalog/id524766650?mt=8 I want a ... can tell who knows the expertise and who outsources the project to others.... Read more
iPhone Modem DSP Firmware Engineer at Ap...
Firmware Engineer to help develop our next generation of iPhone products. This position requires directly related ... to deliver high performance best in class modem for iPhone products. Strong... Read more
iPhone Developer at Third Eye Consulting...
Third Eye is looking for an iPhone Developer.The ideal candidate will have the following:3-6 years experience in iOS design and developmentknowledge of iPhone Native AppsKnowledge of Java and... Read more
iPhone Mobile Developer at Mapmyfitness...
About MapMyFitness, Inc.: We're a well-funded and fast growing start-up. We're building the future of fitness applications on both the web and mobile. MapMyFitness is consistently ranked among the... Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.