TweetFollow Us on Twitter

Sep 98 Online

Volume Number: 14 (1998)
Issue Number: 9
Column Tag: MacTech Online

The Little Framework that Could

by Jeff Clites, online@mactech.com

Getting Started with C++

Code reuse was one of the key motivating forces behind the development of object-oriented programming. It's a simple idea, really - come up with a way to organize code so that conceptually separate pieces are independent and self-contained. Then, since these pieces don't rely on other parts of an application, they can be reused in multiple projects without modification.

The obvious next step in this evolution is the development of application frameworks, and the idea here is simple, too: most Macintosh applications, for instance, have a lot of code in common - they initialize managers, track mouse clicks in menus, and use scroll bars. This is where a framework comes in - it collects commonly-used code and organizes it so that you can develop an application by focusing on the parts which make your application distinctive while ignoring the mundane. This frees you from the burden of writing the same code over and over, and provides you with well-debugged code to do the dirty work. This all sounds great - so you may be asking, "what's the problem?"

MacZoop

Beginning C++ programmers on the Mac face a bit of a Catch-22. On the one hand, they need to be able to test out small stretches of code while they are learning, but there really is a lot of work to be done just to get a small application up and running. So, they could really benefit from a framework - it would relieve them from writing support code which they don't yet feel confident writing, and would allow them to be pretty sure that if something doesn't work then it is a problem with their code and not, say, that they forgot to initialize TextEdit. But, frameworks such as Apple's MacApp and Metrowerks' PowerPlant were not designed with the beginner in mind - they were designed for industrial-strength commercial application development. (For instance, the front end to the Mac version of Netscape Navigator is PowerPlant-based.) Despite excellent documentation, they can be overwhelming, especially for someone who is just learning what inheritance and polymorphism are all about.

This is where MacZoop comes in. It is a small (well, maybe medium-sized) Macintosh application framework generously developed and supported by Graham Cox, and it was specifically designed to be a learning tool for those just starting out with C++. And, in the spirit of enriching the Macintosh community, it's free.

MacZoop!
http://www.maczoop.com
MacApp
http://developer.apple.com/dev/tools/macapp/index.html
Metrowerks (PowerPlant)
http://www.metrowerks.com/

In fact, without any additional code MacZoop builds into a working application. The application doesn't do much, but it has File and Edit menus with the usual menu items, and you can open new (empty) windows which are movable, zoomable, and resizable, and they tile nicely across the screen, just as you would expect from a Mac application. This may not sound like much, but any Mac programmer knows how much effort it takes to set up such things, and how hard it can be for a beginner. This lets them build their code in top of something which already works.

Graham has included a full bag of goodies to help you along. There is an electronic manual, just shy of 200 pages, which uses color more effectively than any other technical documentation I have seen. It provides a compact introduction to the key concept of C++ and of programming the Macintosh in general, and really touches on most subjects that a first-time Mac programmer needs to have under his belt. Also, there is a small demo application showing off many of its main features, and a full-featured paint program which serves as a more extensive example. (Both, of course, come with full source code, and the manual has detailed instructions for compiling the framework using CodeWarrior.)

Harnessing the Power of Resources

MacZoop sports a wealth of very clever features which make it useful beyond its role as a learning tool, and it warrants a look from more experienced programmers as well. For example, if you create a window with one of the traditional floating-window WDEFs, it floats - it stays above all other windows in your application, and hides itself when your application goes into the background - you don't have to worry about the details. It also takes full advantage of ResEdit as an interface editor; for instance, it provides two separate methods (one based on TCL and one on MacApp) for associating commands with menu items, so that after setting up your resources you can forget about your menus and think in terms of commands that your classes understand. ResEdit is also used to create enhanced dialogs, with icon lists or scrolling text boxes installed as easily as any other control.

A few other niceties round out the package, and are worthy of special mention. The framework comes with its own small set of container classes and avoids any use of the STL. This seems to violate the spirit of code reuse, since it duplicates functionality already available as part of the language. But it is actually a clever move - it introduces the concept of containers and templates without requiring a full understanding of the ins and outs of the STL, and it avoids the code bloat often associated with it. Finally, there are many utility classes which make things like creating custom icons or displaying JPEGs a snap.

Extra Toppings

Well, I hope I've given you a sense of what MacZoop has to offer to beginners and to experts alike - there are a multitude of features that I didn't get to mention. In addition to the core distribution, there are a few must-have items contributed by other authors. M. Uli Kusterer has written an extensive set of pane classes specifically for MacZoop, which allow you to organize elements of your visual interface in a natural, hierarchical manner. Uli is also developing Resurrection, a free resource editor for use with MacZoop, written (of course) using MacZoop itself. Finally, Joe Strout has a smaller set of pane classes, which work with MacZoop and with his own framework Moof, which is much smaller than 'Zoop and which would also be well-suited to a beginner.

Uli's MacZoop Classes
http://www.weblayout.com/witness/ZoopClasses.htm
Uli's Resurrection
http://www.weblayout.com/witness/Resurrection.htm
Joe's MacDev Page (Pane Classes, Moof, etc.)
http://www.strout.net/info/coding/macdev/intro.html

The Future

I encourage you to give MacZoop a look, or to point it out to your friends who are just beginning to tinker with programming on the Mac. Professional programmers will at some point want to learn about larger frameworks, but MacZoop will introduce you to concepts that you can take with you when you move on, and it's a rich source of code snippets and example of how to do things the "right" way. This is an especially exciting time to be a Mac developer, with the advent of Mac OS X and ever-faster hardware, and I hope that MacZoop and the work of other generous folk can help open the door to non-programmers wishing to try their hand. Graham intends to make MacZoop fully Mac OS X compliant as soon as the API is finalized (support for Appearance and Navigation Services is in place now), and he has already begun work on a gaming framework built around MacZoop. It should all be a lot of fun.

These and piles of other links are available from the MacTech Online web pages at www.mactech.com/online/.

 

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

Apple’s M4 Mac minis on sale for record-low p...
B&H Photo has M4 and M4 Pro Mac minis in stock and on sale right now for up to $150 off Apple’s MSRP, each including free 1-2 day shipping to most US addresses. Prices start at only $469: – M4... Read more
Deal Alert! Mac Studio with M4 Max CPU on sal...
B&H Photo has the standard-configuration Mac Studio model with Apple’s M4 Max CPU in stock today and on sale for $300 off MSRP, now $1699 (10-Core CPU and 32GB RAM/512GB SSD). B&H also... Read more

Jobs Board

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