TweetFollow Us on Twitter

Prograph 2.0
Volume Number:7
Issue Number:1
Column Tag:Tools of the Trade

Prograph 2.0

By Dave Kelly, MacTutor Editorial Board

Prograph Grows Up

As announced earlier in 1990, TGS Systems’ compiler for the Prograph object-oriented programming environment is here. Refer to the March 1990 (Vol. 6 No. 3) MacTutor for an introduction to the Prograph environment. Prograph is now a real development environment. If you have been waiting for the Prograph compiler to try Prograph, the waiting is over. Prograph is a delightful language to use. I have enjoyed working with it. Now that the compiler is available, Prograph has been added to the list of viable development languages available on the Macintosh.

There are a few improvements from Prograph Editor/Interpreter version 1.2 to 2.0. Some of the improvements include:

• Undo of Delete

• Propagate Comments

• cmd key equivalents improved (cmd-I for Info etc.)

• Ability to Hide/Show classes

• Memory Status item in Info menu

• Check Program status in Info menu for checking syntax.

• Improved Options panel: Option to not close editor windows when executing a method; option to make backups automatically.

• Paste pictures and icons directly from the clipboard into Pict (System Class) and Icon window items in Application builder.

• use shift-option-command-click to open a value window

• Menu item editor permits menu items to have either style information or multi-key key equivalents.

• wind-draw-prep method provided in class Window to do SetPort on the window.

• Window-items with click methods now provide the event record as an input to the click method.

• several new primitive (methods provided by Prograph) and full support of Inside Macintosh volumes I-V is provided (with a few exceptions).

• XPrim C-code protocol has been changes to that the same code may be used in both the interpreter and the compiler, with only a compiler switch.

• New XPrim called XLink™ from CEL Software that lets you call HyperCard XCMDs and XFCNs.

THE COMPILER

The obvious advantages to compiling a program is that compiled programs run faster than interpreted programs, large interpreted programs take up more space than compiled programs, and interpreted programs require that the interpreter be present (they are not stand alone). In addition, most developers don’t want their programs modified; interpreted programs are open to modifications.

You can almost use the Prograph Compiler blindfolded. The compiler can be launched directly from the interpreter and in Multifinder, you can switch between the two applications. To compile a program, you must create a Prograph project. Clicking in the blank area of the project window prompts you for your program file and adds two special library files automatically. One file, SCLibrary, contains code for the Prograph system classes, and must be present if your Prograph program uses the system classes. The file Library contains runtime and Mac Toolbox code; this file must always be included. Next, just select Build Application from the Project menu and a dialog prompts you to give a name for you new application. Or you may choose Run and run the program immediately after compiling. It’s as simple as that.

There are a few compiler options available too. Options include use of 68020/30 instructions, Integer Only Arithmetic, Multifinder settings, creator signature and other options. You may also add THINK C or MPW C object files. This code cannot be run under the interpreter. Calls to these routines must have empty methods, or stubs, when you run your Prograph program in the interpreter environment.

PERFORMANCE

You’re probably wondering just how the Prograph compiler compares to other compilers. The smallest application that can be created with Prograph is about 50K. The Prograph Library adds 50K to any application. Then if you use system classes (which most people will), you add another 80K, a total of 130K overhead). After the overhead, the code size varies depending on what is in the code.

Before doing any benchmark comparisons with regard to this, I must caution you to realize that there are many other factors which effect the overall performance that benchmarks cannot adequately show. With that in mind, here are some results of benchmarks I ran with Prograph. I only checked the compiler response since I’m not interested in comparing interpreters. The Prograph interpreter is great for development, debugging, and testing your program. However, any interpreter is SLOW! no matter how you look at it especially when compared to a compiled system.

Remember the accuracy benchmark I used to compare BASIC a few years ago. This program re-written for Prograph is shown in the first program. (The printout was generated from Prograph printed output). The accuracy method shown at the bottom first gets the tick count and then calls the main loop with the initial conditions set. In the main loop, s is added to x times x and x is added to .00123. This loop is repeated 1000 times and then the answer is displayed. On a Macintosh Plus, the benchmark gave the correct answer of s=503.5438021499999912 and x=1.229999999999999985 in 9.25 seconds. The same routine took .85 seconds on a IIci (with cache card). As you can see there was some round off errors past the 8th significant digit, but the result was acceptable. The time should be ignored since I also used the System class (i.e. the Macintosh shell) running when I ran the benchmark. I suspect that this slows down performance because of event handling. Also, the Evaluate operation (for evaluating mathematical expressions) is more efficient for math operations. I’m not using the Evaluate operation; the effect of different operations will effect the results.

The next benchmark is the familiar Sieve of Erastothenes. The version shown below is the fastest of the versions of the Sieve that I ran and I am still cautious when looking at these results. Depending on the implementation of the loops and allocation of memory for variables, etc. the speed can vary quite a bit. The routine shown executes the prime number generation only one time. In the comparisons I have done in the past, I ran 10 iterations. In this case I multiplied the result by 10 to approximate what the result would be for 10 iterations. The Macintosh Plus generated 1899 primes (10 iterations) in 126 seconds. This turns out to be about the same time as True Basic (Ref. The Complete MacTutor, Vol. 2, pg. 380-381). On the IIci, the time was about 14 seconds.

As I stated to begin with, the results don’t necessarily represent the overall performance. According to these results, it is evident that there is some performance lost in exchange for the ability to use object oriented programming. This implies that if speed is a requirement Prograph may not be the best choice to use.

Mark Szpakowski of Prograph sums it all up: “We did comparison benchmarks between Prograph 2.0 and Parc Place Systems’ Smalltalk-80 on a Mac CX, both running compiled, and found performance about the same (some things we were better, some things they were better). Comparing integer and float computations with ThinkC, ThinkC is much faster. However, comparing OOP operations, such as method selection based on class of input data, we have a slight edge over ThinkC 4.0. The bottom line is that if someone wants or needs high performance in math computations, they can write their code in Think or MPW C or assembler, and then link that with their compiled Prograph code. For most stuff, though, Prograph is not only productive, but, fun!”

Learning and using Prograph is fun and the learning curve is much shorter than for other languages. In spite of the benchmark results, I still like Prograph enough to continue using it to develop real applications. In addition, C object code can be used to speed up the slower routines.

Prograph 2.0 is available from:

TGS Systems

1127 Barrington St.,Suite 19

Halifax, NS B3H 2P8

Canada

(902) 429-5642

FAX: (902) 425-0561

Order toll free from the US: 1-800-565-1978

AppleLink: CDA0242

CompuServe: 73300,3460

BIX: szpak

Bitnet: gunakar@tuns

America Online: szpak

The W.E.L.L.: szpak

Price: $395 + $5 shipping

Requires: Mac Plus with 128K ROM; 1M RAM

No copy protection

In addition a Prograph BBS operated by TGS Systems is at (902) 423-4921, accessible at 300/1200/2400 baud, 8 bits, no parity, almost 24 hrs/day. This has private mail, public message areas, and file areas for uploading and downloading Prograph code.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Players can take a peek into the design...
It doesn’t matter how much effort developers put into their classes, or how many special little mechanics there are; if there is one that wields two blades, I’m ignoring everything else. Diablo Immortal recently announced such a class in the shape... | Read more »
Android users have a new option in the c...
When you are in the thick of a firefight or trying to pull off a mid-combat parkour flip through a squad of foes, sometimes touchscreen control just won’t do it for you. For those intense sessions, you could benefit from a good mobile controller,... | Read more »
Jagex releases the first of three origin...
At this point, I am sure everyone has heard of Runescape, and or Runescape Classic. It has been going strong for 23 years, with constant content and story coming out. Luckily for fans of the game, or fantasy in general, Jagex has announced an... | Read more »
Watcher of Realms unveils new story and...
Watcher of Realms players are in for quite the feast this month, as Moonton release two powerful new heroes, including one that will burst down even the most mighty of foes. Recruit your new friends, and then burn through the Main Quest expansion... | Read more »
Reverse: 1999 continues its trip down un...
The field trip to Australia continues in Reverse: 1999 as Phase 2 of Revival! The Uluru Games kicks off. You will be able to collect new characters, engage with new events, get hordes of free gifts, and follow the story of a mushroom-based... | Read more »
Ride into the zombie apocalypse in style...
Back in the good old days of Flash games, there were a few staples; Happy Wheels, Stick RPG, and of course the apocalyptic driver Earn to Die. Fans of the running over zombies simulator can rejoice, as the sequel to the legendary game, Earn to Die... | Read more »
Top 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 »
Netflix Games expands its catalogue with...
It is a good time to be a Netflix subscriber this month. I presume there's a good show or two, but we are, of course, talking about their gaming service that seems to be picking up steam lately. May is adding five new titles, and there are some... | Read more »
Pokemon Go takes a step closer to real P...
When Pokemon Go was first announced, one of the best concepts of the whole thing was having your favourite Pokemon follow you in the real world and be able to interact with them. To be frank, the AR Snapshot tool could have done a lot more to help... | Read more »
Seven Knights Idle Adventure drafts in a...
Seven Knights Idle Adventure is opening up more stages, passing the 15k mark, and players may find themselves in need of more help to clear these higher stages. Well, the cavalry has arrived with the introduction of the Legendary Hero Iris, as... | Read more »

Price Scanner via MacPrices.net

Weekend Deal! Best Buy has Apple Watch Series...
Best Buy has Apple Watch Series 9 models on sale for $100 off MSRP on their online store this weekend. Sale prices available for online orders only, in-store prices may vary. Order online, and choose... Read more
Apple Watch SE on sale starting at $199 this...
Best Buy has all Apple Watch SE models on sale this weekend for $50 off MSRP on their online store. Sale prices available for online orders only, in-store prices may vary. Order online, and choose... Read more
Mac Pro with M2 Ultra CPU on sale for $6699,...
In the market for one of Apple’s Mac Pro towers? B&H Photo has the base Mac Pro with an Apple M2 Ultra CPU, 64GB RAM, and 1TB SSD on sale for $6699 including free 1-2 day shipping to most... Read more
New May Verizon promotion: Switch and get a f...
Red Hot Deal Days at Verizon: Switch to Verizon this month, and get the 256GB iPhone 15 Pro for free, with trade-in, when you add a new line of service. Verizon is also offering a free cellular iPad... Read more
Updated Apple MacBook Price Trackers
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
13-inch M2 MacBook Airs on sale for only $849...
B&H Photo has 13″ MacBook Airs with M2 CPUs and 256GB of storage in stock and on sale for $150 off Apple’s new MSRP, only $849. Free 1-2 day delivery is available to most US addresses. Their... Read more
13-inch M3 MacBook Airs on sale starting at $...
Amazon has every configuration and color of Apple’s 13″ M3 MacBook Air on sale for $150 off MSRP, now starting at $949 shipped. Their prices are the lowest available for these Airs among Apple’s... Read more
14-inch M3 Pro/Max MacBook Pro available toda...
Apple has 14″ M3 Pro and M3 Max MacBook Pros in stock today and available, Certified Refurbished, starting at $1699 and ranging up to $480 off MSRP. Each model features a new outer case, shipping is... Read more
Apple has the Apple Watch Ultra available for...
Apple has several Certified Refurbished Apple Watch Ultra models available in their online store for $589, or $210 off original MSRP. Each Watch includes Apple’s standard one-year warranty, a new... Read more
M2 Mac minis on sale starting at only $449
B&H Photo has M2-powered Mac minis in stock and on sale today for $100 off Apple’s MSRP. Free 1-2 day shipping is available for most US addresses: – Mac mini M2/256GB SSD: $499, save $100 – Mac... Read more

Jobs Board

Sublease Associate Optometrist- *Apple* Val...
Sublease Associate Optometrist- Apple Valley, CA- Target Optical Date: Apr 20, 2024 Brand: Target Optical Location: Apple Valley, CA, US, 92307 **Requisition Read more
Remote Secret *Apple* MacOS Workspace ONE A...
Job Description The Apple MacOS Workspace ONE AirWatch Engineer role is primarily responsible for managing a fleet of 400-500 MacBook computers. The ideal candidate Read more
Senior Software Engineer - *Apple* Fundamen...
…center of Microsoft's efforts to empower our users to do more. The Apple Fundamentals team focused on defining and improving the end-to-end developer experience in Read more
*Apple* Software Engineer - HP Inc. (United...
…Mobile, Windows and Mac applications. We are seeking a high energy Senior Apple mobile engineer who can lead and drive application development while also enabling Read more
Pharmacy Technician (Community) - *Apple* H...
Pharmacy Technician (Community) - Apple Hill Pharmacy - Day Location: WellSpan Health, York, PA Schedule: Full Time Sign-On Bonus Eligible Remote/Hybrid Regular Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.