TweetFollow Us on Twitter

Apr 96 Factory Floor
Volume Number:12
Issue Number:4
Column Tag:From The Factory Floor

From the Factory Floor

By Dave Mark

In this month’s Factory Floor, we’ll meet Greg Dow. Greg designed and wrote PowerPlant, the next generation framework from Metrowerks. Before we get to the interview, I wanted to take a sec and thank Jim Trudeau for all his help in putting this interview together. Cognac and cigars on me at WWDC, Jim!

Dave: Greg, since not all of our readers have a background in object programming, let’s start things off by defining a few terms. What is the difference between a class library and a framework?

Greg: People often use the terms interchangeably. However, I think of a class library as a collection of utilities and a framework as a structure for building programs.

With a class library, you are in control. You design the program structure and use library classes where convenient. For example, you can use the ANSI C++ streams class library to handle file I/O.

With a framework, the framework is in control. You usually start with a “do nothing” program provided by the framework and add your own code. The framework calls your code at the appropriate time.

PowerPlant is a framework, but it also has families of utility classes that you can use independently.

Dave: Why would a C programmer want to move to C++ and PowerPlant? What are the advantages?

Greg: Using PowerPlant lets you build upon code written by other programmers. It’s code that you don’t have to write yourself. PowerPlant classes handle mundane tasks such as menu and window management, as well as more advanced features such as Apple events and threads. By not having to start from scratch, you have more time to concentrate on the unique features of your program.

Another big advantage is Constructor, which lets you graphically lay out the visual elements of your PowerPlant programs. PowerPlant can create a window and its contents from information edited in Constructor, so it’s possible to create a program that displays items such as scrolling pictures, text, and buttons without ever writing a line of code.

Dave: Once someone has learned the basics of C++ and object programming, how do they pick up on PowerPlant?

Greg: The first thing everyone should do is read The PowerPlant Book, which is part of the Inside PowerPlant for CW8 manual that comes with CW8. This book, written by Jim Trudeau, is an excellent guide to understanding and using PowerPlant.

After that, they should start using PowerPlant. Look over the sample programs. Run the samples and use the source debugger to single-step through some of the code to follow the flow of control. For example, set a breakpoint in the main event loop, then hit a key and follow the resulting sequence of calls to see how PowerPlant handles it.

Finally, talk with other people who use PowerPlant by getting a modem and an Internet account. Read the Usenet newsgroup comp.sys.mac.programmer.codewarrior. (A new group, comp.sys.oop.powerplant, will probably form soon.) Metrowerks also has an active forum on America Online. And join the PowerPlant Dream Team.

Dave: What exactly is the PowerPlant Dream Team? What do they do? How do you go about joining?

Greg: The PowerPlant Dream Team is an organization of developers interested in learning PowerPlant in a team-based environment. It started as a study group formed by Stephen Jovanovic, but has grown to over 200 people. A small subset of the PP Dream Team wrote an LNewTextEdit class that supports styled text and drag-and-drop editing. Very cool. To find out more about the PP Dream Team, visit their Web page at: http://petrified.cic.net/powerplant-dt/

Dave: Tell me about the PowerPlant architecture.

Greg: One of my favorite toys is Lego™ blocks. You can build complex structures by combining simple parts. PowerPlant follows this approach by using a mixin architecture, where the base classes are relatively simple, and subclasses use multiple inheritance to combine features.

For example, the EditField class multiply inherits from Pane (so it can draw and handle mouse clicks), Commander (so it can handle keystrokes and menu commands), and Periodical (so it gets time during the event loop to flash the insertion point).

I also tried to eliminate dependencies between classes so that you can use them separately. In particular, PowerPlant is not just an application framework. You can use PowerPlant to build code resources such as HyperCard XCMDs and control panels, or even integrate PowerPlant classes into existing procedural programs.

Dave: What is your favorite part of PowerPlant?

Greg: Other than the overall design, my favorite feature of PowerPlant is the Drag Manager support. Drag and drop is cool, and it’s one of the better implemented features in the Mac OS. The API is clean and simple. It took me only two days (and three classes) to implement all the basic support.

Dave: Tell me about your life before Metrowerks.

Greg: I have a Bachelor’s degree from MIT in chemical engineering, and I spent a few years at UC Berkeley working on a Ph.D., also in chemical engineering, that I never completed. My thesis research was computer modeling of coal gasification reactors, and I did a lot of scientific programming in FORTRAN.

During that time, I became more interested in programming than in chemical engineering, so I started taking computer science classes. In July 1987, I bought my first personal computer, a Mac SE. A few months later, I dropped out of school to devote my time to learning Mac programming.

One of my first projects was writing a generic application shell. I kept tinkering with this shell, and it eventually turned into version 1.0 of the THINK Class Library (TCL), which Symantec shipped with THINK C in July 1989.

Dave: How did you get hooked up with Metrowerks? Did Greg Galanos recruit you? Was the company already building CodeWarrior when you started work on PowerPlant?

Greg: My first contact with Metrowerks was actually with Jean Belanger, sometime before the MacWorld Expo in January 1992. I lead the Programmers Group at BMUG (Berkeley Macintosh Users Group), and Jean called up looking for some volunteers to staff his booth at the show. At the time, Metrowerks was selling Pascal and Modula 2 compilers for the education market.

I never actually met anyone from Metrowerks then, but a year later John McEnerney asked me if I was interested in writing a new C++ framework for some little Canadian company. John is the PowerPC Compiler Architect for Metrowerks, and he worked at Symantec when I wrote TCL 1.0.

I met with Greg Galanos and started working on PowerPlant in March 1993. Codewarrior as we know it did not exist. There was a prototype C compiler and environment. It fit on a floppy disk.

Dave: A lot of people ask about cross-platform development using PowerPlant. I know that the Microsoft Foundation Classes (MFC) are the de facto standard on the Windows side. What’s the best way to get a PowerPlant-based application ported to run under Windows?

Greg: I know that a lot of people are interested in developing programs that run on both the Mac and Windows. However, PowerPlant is a Mac-only framework. Metrowerks has no intention of developing a Windows version of PowerPlant.

To port code to Windows, I recommend that people investigate Mac2Win from Altura Software. The Mac2Win libraries emulate the Mac Toolbox on Windows. Metrowerks is using these libraries to port portions of the CodeWarrior environment to Windows.

Dave: What are your future plans for PowerPlant?

Greg: My future work with PowerPlant will concentrate on three major areas: (1) Visual programming; (2) OpenDoc; and (3) Copland.

Right now, you can specify the static layout of interface elements using PowerPlant Constructor. Future versions of Constructor will let you specify runtime relationships between objects. For example, adding Attachments to Panes and linking Broadcasters to Listeners.

If you know what you’re doing, you can use PowerPlant today to develop both OpenDoc parts and OpenDoc container applications. In fact, a few programmers (besides me) have already done so. However, it’s not easy. Future versions of PowerPlant will make it as easy to create an OpenDoc part as it is to create a stand-alone application.

Copland, the next major version of the Mac OS, will provide many new capabilities and interface elements. I intend to keep PowerPlant on the leading edge of Mac development by supporting these new features as soon as possible.

 

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.