TweetFollow Us on Twitter

Wars and Windows
Volume Number:4
Issue Number:10
Column Tag:Basic School

Basic Wars and True Windows

By Dave Kelly, Editorial Board

Basic Wars Revisited

I promised more information about True Basic. First I would like you to refer back to MacTutor August 1986, February 1987 and March 1987 for the previous episodes of “Basic Wars”. The following table gives True Basic (Version 2.0) data for most of the benchmarks used to compare ZBasic and MS Basic 2.0 the last time I ran the benchmark. Please be aware that the math operations were corrected in the March 1987 issue. From a comparison of the benchmarks we can draw a few conclusions. First, True Basic appears to be faster for all math operations even though True Basic is not truly compiled. Only Microsoft Basic (binary) is comparable in math speed, but does not include the accuracy of True Basic. Graphic operations are slower than the MS Basic interpreter. Array look up was comparable to compiled speeds for MS Basic or ZBasic. String handling approaches ZBasic compiled speeds. True Basic ran the Sieve in less time than the MS Interpreter, but slower than any of the compiled Basics.

Still keep in mind that benchmarks are not the only way to determine the strengths of a language. These results show that True Basic performs very well considering that it is not truly compiled to native machine code. It would be much more of a speed competitor if it was compiled. True Basic’s strengths are in other areas which cannot be measured only by benchmarks. To some people the other capabilities of True Basic are not enough to justify the slow speed. If the only thing you are looking for in a language is speed then you’ll probably be disappointed.

True Basic Benchmark: System 6.0

BENCHMARK Macintosh Plus Macintosh II

FOR Loop 1.6 sec. .388 sec.

Array Lookup 20.67 sec 5.25 sec.

Math Operations

Addition 22.15 sec. 3.8 sec.

Subtraction 23.23 sec. 3.55 sec.

Multiply 25.55 sec. 3.8 sec.

Divide 39.15 sec. 3.78 sec.

String Operations

Concatenation 10.3167 sec. 2.35 sec.

Matching 12.15 sec. 3.12 sec.

Graphics

Line(Basic statement)

61.25 sec. 15.33 sec.

Horizontal line 38.867 sec. 12.3 sec.

Circle 13.4667 sec. 6.63 sec.

Set Pixel (PLOT) 119.3 sec. 37.83 sec.

File I/O (Floppy disk)

Random READ 24.5 sec. 8.2 sec.

Random WRITE 43.48 sec. 13.7667 sec.

Sequential PRINT #17.0667 sec. 4.3 sec.

Sequential INPUT 17.45 sec. 4.533 sec.

Sieve (1980 primes) 118.917 sec. 29.0333 sec

Accuracy Benchmark

Answer: 503.543802149746 503.5438021499906

1.224999999999966 1.2299999999999960

.88333 sec. .166667 sec.

Some of True Basic’s strength comes from the structured nature of the ANSI committee standard which it closely follows. Rather than go through a blow by blow account of what each command in True Basic does (you can always read the manual to find out that), I’ll tell you what’s new since version 1.0 was released. Mostly True Basic is the same very structured, capable language as before. From a scientific, engineering and educational standpoint True Basic offers the best learning environment. It has all the advanced structures of the latest Basics available such as SELECT CASE, DO/LOOP with WHILE and UNTIL, and multi-line IF/ELSE IF/END IF. True Basic is modular in that you can define your own modules which can be loaded as required. Local and global variables are supported. As discussed last month, True Basic has a full set of matrix algebra statements. Arrays are dynamic and resizable. Line numbers are now optional. Recursion is supported. Optional variables may be declared in CALLs.

The built-in editor works very well (unlike the ZBasic editor). It is not the best editor in the world, but is adequate. You have search and replace (Find and Change) and Include (which inserts a file from disk at the cursor point). The annoying little stop light (version 1.0) has been removed. You may select breakpoints in your program where you want to suspend execution to examine variables or do debugging. There are three windows that are used in the interpreter environment. The source window contains the source code, the output window lets you save output from several runs of the program if you want, and the command window lets you type commands specific to managing the interpreter (Actually, True Basic is compiled to b-code for extra speed, but since it is not true native machine code I hesitate to call it a compiler). You can use almost any True Basic statement in direct mode, that is, directly typed into the command window. A simple help system is available, but I feel that unless you are a beginner, the help system is next to useless.

Script files and DO programs can be set up to configure True Basic or to automate actions. It’s sort of like having a a set of exec files that can be executed as short cuts. Since there may be several folders containing library files used, you will want to configure your disk with a TBStartup file containing an ALIAS statement which references all of the places you want True Basic to look for library files. This is a very awkward way to do things, but once it gets set up you just declare your library and True Basic takes care of things for you. (Sort of reminds me of what I don’t like about MSDOS). DO programs are used for things such as formatting the source code, getting a cross reference list of variables, or tracing a programs variables. Since you can always write your own DO program you can set it up however you wish.

True Basic supports the 68881 coprocessor which speeds up calculations quite a bit. We’ve already seen samples of True Basic color capabilities in previous issues of MacTutor.

Macintosh Goodies

Macintosh people want their applications to look right and feel right for the Macintosh user. True Basic provides a library “MacTools*” which contains most of the simple graphics calls:

call MacPenSize (width, height)
call MacPenMode (mode)
call MacTextFont (font)
call MacTextFace (style$)
call MacTextMode (mode)
call MacTextSize (size)
call MacTextBox (left, right, bottom, top, s$, just$)
call MacSpaceExtra (extra)
let n = MacStringWidth (s$)
call MacGetFontInfo (ascent, descent,widmax, leading)
call MacInvertRect (left,right,bottom,top)
call MacPaintOval (left,right,bottom,top)
call MacInvertOval (left,right,bottom,top)
call MacFrameRoundRect (left,right,bottom,top,x,y)
call MacPaintRoundRect (left,right,bottom,top,x,y)
call MacInvertRoundRect (left,right,bottom,top,x,y)
let name$=MacGetFile$(h,v,type$,button$)
let name$=MacPutFile$(h,v,pr$,iname$,button$)
call MacSysBeep (duration)
call copy_clipboard
call copy_done
call copy_pictfile (filename$)  supports PICT2 format
call copy_printer(1)
call draw_clipboard(1)
call Read_clipboard(type$,s$)
call Write_clipboard(type$,s$)
call Read_pictfile(filename$,s$)
call Write_pictfile(filename$,s$)
call Draw_string(s$,fit)

These are basically the same sort of commands available to MS Basic users as built in statements. Other statements for printer control are also included in “MacTools*” library. True Basic file handling is done using the file names with colons separating the volume names. If the more preferred method of using volume numbers is desired then you should plan on using Mac ROM calls.

The Macintosh Developer’s ToolKit supplies the rest of the Macintosh interface. The libraries included in the ToolKit include:

TrueWindows* True Windows

ExecLib* Semi-portable system routines

HexLib* Integer arithmetic aids

System* Low-level interface to System

MacLib* Trap interfaces for other libraries

DataLib* Data conversion for ToolKit routines

ColorLib* Color manager

PickerLib* Color picker package

ControlLib* Control manager

DeskLib* Desk accessory manager

DialogLib* Dialog manager

DiskLib* Disk driver

DiskInitLib* Disk initialization package

EventLib* Toolbox/System event managers

FileLib* File manager

FontLib* Font manager

ListLib* List manager

MenuLib* Menu manager

PackageLib* Package manager

PaletteLib* Palette manager

QuickLib* Quickdraw

ResourceLib* Resource manager

ScrapLib* Scrap manager

SFPlib* Standard file package

SoundLib* Sound manager

SystemLib* System utilities

TextEditLib* Text edit

ToolboxLib* Toolbox utilities

WindowLib* Window manager

As in version 1.0, some calls cannot be mixed with some True Basic commands (especially graphics) very easily. However, this is really not to bad considering the problems we’ve run into with ZBasic and keeping Macintosh events separate from ZBasic events. Also, the Developer’s ToolKit now provides some easy menu and window statements for simple applications. They call this set of routines, TrueWindows.

INTRODUCING “TRUE WINDOWS”

At first it doesn’t seem to make a lot of sense to even have the TRUE WINDOWS library available, but in a pinch when you need a quick and dirty application (what Basic is used for the most often), it is good to not have to set up the GetNextEvent Loop. True Windows gives you access to menu, dialog and alert, event handling and window routines. An example using True Windows is included with this column.

True Windows menu statements are set up with DATA statements. The MAT statement makes it easy to read in the entire menu in one statement. The array containing the menu is dimensioned as DIM menu$(0:menus, 0:items) where menus is the number of menus and items is the max number of menu items in any one menu. This set up is fairly simple and easy to use.

A set of 5-6 types of dialog/alert boxes are available. You can also set a timeout for the dialog box so that if there is no user response the program will continue. Using that function is not recommended by the Macintosh user interface guidelines because it allows something to happen which the user has no control over and does not expect to happen.

A True Windows event handler returns menu,refresh, window selection, close box events, window move events, window resize events, up, down, left, right, pageup, pagedown, pageleft, pageright, vscroll, hscroll, single click, double click, triple click and mouse down events as only as often as you ask for them. True Windows or True Basic does not go out and do a GetNextEvent just for the fun of it which in turn messes up your own event handling.

While it is true that True Windows does not do everything, it is a way to get Macintosh looking interfaces without a lot of extra work. If it doesn’t handle the job then the rest of the Developer’s Toolkit is sufficient to handle any other jobs that might come up that require the Mac ROM routines. And if Apple comes out with a new call some day it is very simple to go in and add the call yourself just by examining the source code for the Toolkit libraries. The copy of Developer’s Toolkit that I have is a prerelease copy, but it appears to be complete in every way.

The hardest thing about using any library is to know the routines that need to be declared in the DECLARE DEF statement so that they can be used in your program. All external functions must be declared. However, the LOAD statement could be used to make the library become a part of the Basic language and thus the DECLARE statement would not be necessary.

Ok, so we know that True Basic can do all this stuff, should I use it for my development project? The answer to this has to be answered yourself, but you should ask your self the following questions:

1. Does my program need to run fast? True Basic speed is satisfactory for many needs, but there are some things that must run faster.

2. Do I care if my application program is greater than 73K? The runtime package uses 73K of disk space. About 35 K of that is in the resource fork of the file and may be shared by more than one application by cutting the resources from the application and pasting into the system file. This is not the preferred method, but could be done if necessary.

3. Do I have a lot of math operations to perform? True Basic is extremely strong in its math support. This is especially true on the Mac II which also includes 68881 math coprocessor support.

4. Do I want full access to the entire Macintosh ROM routines? The Developer’s Toolkit does a great job of supporting all of the ROM routines in a way that can be understood. It is easy to add new ROM calls as they are added in the future. You won’t have to wait for True Basic’s next upgrade to have support of the new features. It would be nice if the ROM support was built into True Basic, but by loading the Library into memory it can become a part of True Basic. Besides, even Lightspeed Pascal requires that Libraries be declared (in the project window) in order to use them.

In my opinion, True Basic has come a long ways by including the runtime package with the Basic system. I would like to see the Developer’s Toolkit bundled with the language system, though the price would certainly be near the same price anyway. Currently, the True Basic language system, including Runtime is $99.95. True Basic libraries are $69.95. This makes the combined package cost $169.90. There are only two areas that I wish could be improved upon with True Basic. One would be to have a true compiler that produces real machine code instead of the b-code stuff. I realize that the b-code is designed to be able to transfer applications in True Basic to other computers. As a matter of fact, True Windows routines are supposed to be transferable to other computers such as the Amiga (gasp) which use a window approach. The other area that could improve is in the code size of the runtime package. Some of the size problem could be eliminated if a ‘true’ compiler were available, that is if it compiled the code efficiently.

!Color Picker Demo
!Demonstrates True Basic’s True Windows and
!illustrates use of the Color Picker routine
!©1988 MacTutor
!By Dave Kelly

LIBRARY “TrueWindows*”,”QuickLib*”,”PickerLib*”
LIBRARY “datalib*”, “maclib*”, “system*”

DECLARE DEF H,V,GetColor$,UnpackEnvirons$,RGB$
DIM menu$(0:1,0:2)
LET false=0
LET true=1
LET Done=false
CALL tw_init(“COLOR”)
! Color isn’t supported yet, but I’m ready for it!
! Find out what kind of computer this is
CALL SysEnvirons(sysEnvRec$,status)
CALL UnpackEnvirons(sysEnvRec$,envversion,machine,sysversion, processor, 
hasFPU,hasColorQD,keyboardtype,atversion, sysvrefnum)
IF hasColorQD<>1 then
   ! we gotta quit, this isn’t a Mac II
   LET done=true
   CALL tw_dwarn(3,”Color Quickdraw is not available!
   Sorry, but you can’t run this     !”,”OK”,1,result)
END IF
IF done<> true then
   MAT READ menu$
   DATA “”,About MacTutor Picker Demo...,””
   DATA File,Get Picker...,Quit
   CALL tw_menu_set(menu$)        ! Set up the menu

   DO
      CALL tw_event(maxnum,type$,window,menunumber,menuitem)
      SELECT CASE type$
      CASE “MENU”
           SELECT CASE menunumber
           CASE 0
                CALL About
           CASE 1
                CALL file(menuitem,done,inrgb$)
           CASE ELSE
           END SELECT
      CASE ELSE
      END SELECT
   LOOP Until Done=true
   CALL tw_menu_clear
! Get rid of the menus
END IF
CALL tw_cleanup
! clean up all the TrueWindows stuff
END

SUB about
    ! Set up the About dialog box.
    CALL tw_dwarn(0,”MacTutor Picker Demo|©1988 MacTutor|By Dave Kelly”,”OK”,1,Result)
END SUB

SUB file(menuitem,done,inrgb$)
    SELECT CASE menuitem
    CASE 1
         ! Set up the upper corner of picker dialog
         CALL SetPt(Point$,0,0)
         ! do picker dialog
         CALL GetColor(point$,”Pick a color, just for fun!”,inrgb$,outrgb$,okflag)
         ! select the color
         IF okflag=1 then LET inrgb$=outrgb$
         CALL unpackRGB(inrgb$,r,g,b)
         LET string$=”Color selected was:|r=”&str$(r)&”|g=”&str$(g)&”|b=”&str$(b)
         ! Display the color in rgb coordinates
         CALL tw_dwarn(1,string$,”OK”,1,result)
    CASE 2
         LET done=1
    CASE ELSE
    END SELECT
END SUB
 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Tokkun Studio unveils alpha trailer for...
We are back on the MMORPG news train, and this time it comes from the sort of international developers Tokkun Studio. They are based in France and Japan, so it counts. Anyway, semantics aside, they have released an alpha trailer for the upcoming... | Read more »
Win a host of exclusive in-game Honor of...
To celebrate its latest Jujutsu Kaisen crossover event, Honor of Kings is offering a bounty of login and achievement rewards kicking off the holiday season early. [Read more] | Read more »
Miraibo GO comes out swinging hard as it...
Having just launched what feels like yesterday, Dreamcube Studio is wasting no time adding events to their open-world survival Miraibo GO. Abyssal Souls arrives relatively in time for the spooky season and brings with it horrifying new partners to... | Read more »
Ditch the heavy binders and high price t...
As fun as the real-world equivalent and the very old Game Boy version are, the Pokemon Trading Card games have historically been received poorly on mobile. It is a very strange and confusing trend, but one that The Pokemon Company is determined to... | Read more »
Peace amongst mobile gamers is now shatt...
Some of the crazy folk tales from gaming have undoubtedly come from the EVE universe. Stories of spying, betrayal, and epic battles have entered history, and now the franchise expands as CCP Games launches EVE Galaxy Conquest, a free-to-play 4x... | Read more »
Lord of Nazarick, the turn-based RPG bas...
Crunchyroll and A PLUS JAPAN have just confirmed that Lord of Nazarick, their turn-based RPG based on the popular OVERLORD anime, is now available for iOS and Android. Starting today at 2PM CET, fans can download the game from Google Play and the... | Read more »
Digital Extremes' recent Devstream...
If you are anything like me you are impatiently waiting for Warframe: 1999 whilst simultaneously cursing the fact Excalibur Prime is permanently Vault locked. To keep us fed during our wait, Digital Extremes hosted a Double Devstream to dish out a... | Read more »
The Frozen Canvas adds a splash of colou...
It is time to grab your gloves and layer up, as Torchlight: Infinite is diving into the frozen tundra in its sixth season. The Frozen Canvas is a colourful new update that brings a stylish flair to the Netherrealm and puts creativity in the... | Read more »
Back When AOL WAS the Internet – The Tou...
In Episode 606 of The TouchArcade Show we kick things off talking about my plans for this weekend, which has resulted in this week’s show being a bit shorter than normal. We also go over some more updates on our Patreon situation, which has been... | Read more »
Creative Assembly's latest mobile p...
The Total War series has been slowly trickling onto mobile, which is a fantastic thing because most, if not all, of them are incredibly great fun. Creative Assembly's latest to get the Feral Interactive treatment into portable form is Total War:... | Read more »

Price Scanner via MacPrices.net

Early Black Friday Deal: Apple’s newly upgrad...
Amazon has Apple 13″ MacBook Airs with M2 CPUs and 16GB of RAM on early Black Friday sale for $200 off MSRP, only $799. Their prices are the lowest currently available for these newly upgraded 13″ M2... Read more
13-inch 8GB M2 MacBook Airs for $749, $250 of...
Best Buy has Apple 13″ MacBook Airs with M2 CPUs and 8GB of RAM in stock and on sale on their online store for $250 off MSRP. Prices start at $749. Their prices are the lowest currently available for... Read more
Amazon is offering an early Black Friday $100...
Amazon is offering early Black Friday discounts on Apple’s new 2024 WiFi iPad minis ranging up to $100 off MSRP, each with free shipping. These are the lowest prices available for new minis anywhere... Read more
Price Drop! Clearance 14-inch M3 MacBook Pros...
Best Buy is offering a $500 discount on clearance 14″ M3 MacBook Pros on their online store this week with prices available starting at only $1099. Prices valid for online orders only, in-store... Read more
Apple AirPods Pro with USB-C on early Black F...
A couple of Apple retailers are offering $70 (28%) discounts on Apple’s AirPods Pro with USB-C (and hearing aid capabilities) this weekend. These are early AirPods Black Friday discounts if you’re... Read more
Price drop! 13-inch M3 MacBook Airs now avail...
With yesterday’s across-the-board MacBook Air upgrade to 16GB of RAM standard, Apple has dropped prices on clearance 13″ 8GB M3 MacBook Airs, Certified Refurbished, to a new low starting at only $829... Read more
Price drop! Apple 15-inch M3 MacBook Airs now...
With yesterday’s release of 15-inch M3 MacBook Airs with 16GB of RAM standard, Apple has dropped prices on clearance Certified Refurbished 15″ 8GB M3 MacBook Airs to a new low starting at only $999.... Read more
Apple has clearance 15-inch M2 MacBook Airs a...
Apple has clearance, Certified Refurbished, 15″ M2 MacBook Airs now available starting at $929 and ranging up to $410 off original MSRP. These are the cheapest 15″ MacBook Airs for sale today at... Read more
Apple drops prices on 13-inch M2 MacBook Airs...
Apple has dropped prices on 13″ M2 MacBook Airs to a new low of only $749 in their Certified Refurbished store. These are the cheapest M2-powered MacBooks for sale at Apple. Apple’s one-year warranty... Read more
Clearance 13-inch M1 MacBook Airs available a...
Apple has clearance 13″ M1 MacBook Airs, Certified Refurbished, now available for $679 for 8-Core CPU/7-Core GPU/256GB models. Apple’s one-year warranty is included, shipping is free, and each... Read more

Jobs Board

Seasonal Cashier - *Apple* Blossom Mall - J...
Seasonal Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Seasonal Fine Jewelry Commission Associate -...
…Fine Jewelry Commission Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) Read more
Seasonal Operations Associate - *Apple* Blo...
Seasonal Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Read more
Hair Stylist - *Apple* Blossom Mall - JCPen...
Hair Stylist - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.