TweetFollow Us on Twitter

Serius89, HyperBASIC
Volume Number:6
Issue Number:2
Column Tag:Kelly's Corner

Serius89 and HyperBASIC

By Dave Kelly, MacTutor Editorial Board

Serius 89

Object Oriented Programming (OOP) has become a household phrase recently. Out of all of the OOP-la about OOP a wave of new OOP products have emerged. One of these is Serius89™ Developer which I have had the opportunity to examine. Serius Corporation of Salt Lake City, Utah is committed to developing Serius89 into a serious OOP development environment. It is their goal to fill needs of all Macintosh users, from developers to end users, to create their own applications.

Serius89 is a radically different approach to computer programming. It is based upon a set of Object Oriented routines written in C which Serius calls Object Interaction Protocol (OIP). OIP uses these self supporting routines called objects to present the user with a new way to put together a Macintosh application. You could think of Serius89 as a programmer’s erector set. You can create applications by connecting objects together much like tiles are connected together in a Double Helix data base. If you like Helix you’ll like this icon based approach to programming.

You as a Macintosh developer may develop OIP components which end users can assemble together in Serius89. There are some advantages to this approach it can eliminate costly code duplication, allowing a developer to utilize existing sets of routines. Once the routines have been written, you never need to rewrite the routine again.

The developer creates routines called methods that manage the low-level operation of data entities called objects. These methods are executed in response to events, which are generally posted by developers’ routines and managed privately by OIP. The Serius89 programmer never has to deal with the low-level operations once the developer has created the OIP routines. Here’s the catch the routines need to be pre-written before the programmer can put together the application.

Serius89 does not generate source code, but it does generate stand-alone, fully operational applications. The methods and functions are compiled together by the developer using any common Macintosh development system, then integrated into Serius89 to be used graphically to construct applications. The developer doesn’t need to know or understand conventional OOP to create the methods or functions.since most of the object orientation is handled automatically by the nature and structure of OIP. There are a number of MPW utility routines available in Pascal to handle the necessary tasks. (C or assembly developers may need to modify the interface declarations).

Serius89 includes several objects and functions which are ready to use to create applications. The big drawback is that the existing routines do not yet fully support the entire Macintosh toolbox. As long as your application is restricted to the objects that exist, you won’t have to write any new ones. I found that every application I wrote could not be implemented exactly as I desired because of missing functions. This isn’t all bad though, especially if you write your own objects and functions. These objects need only be written once and may then be used as many times as needed in your application. Serius is encouraging developers to create new functions and updates are provided periodically as new functions are made available.

Serius is a clearinghouse for all Serius89 objects and functions. Object Interaction Protocol, as with any development system, has basic guidelines that are established to maintain future compatibility. Each component has a unique ID number which should be registered with Serius to avoid ID conflicts in the future. As new components are created, some may require license agreements especially if written by third party developers. Objects which are provided with Serius89 include:

• Application: allows your program to launch other applications

• Button: specify any kind of button

• CD Audio: play audio CDs from your application

• Database: a powerful database engine

• Date: retrieves the current date

• File: allows your application to save objects to disk

• Menu: provides menus for your application

• Menu bar: creates a menu bar

• Menu item: defines menu items

• Number: this object stores a number (includes math functions)

• Picture: load and display PICT images

• Printer: allows access to standard Macintosh printers.

• Sound: load and play sound (snd) resources.

• Text: this object stores text

• Time: retrieves the current time

• Window: defines windows (zoomable document, document, fixed size document, dialog box, plain, plain with shadow, or rounded).

• Workstation: access AppleTalk networks and communicate with other Macintosh computers that are running Serius89 applications.

The version of Serius89 that I have reviewed is version 1.1. As I write this I am aware that version 1.2 has been completed (not yet reviewed) which allows all components to run under Multifinder, signals for windows to respond to Multifinder “switching”, workstation object now supports logging on with dynamic workstation names, improvements to keyboard, list, text, number, date and time objects, and several bug fixes. Alignment grids for positioning items as well as a layering system for functions on the workbench are also a part of version 1.2 . There are several other enhancements that are of importance including a faster database object. Version 1.3 was scheduled for release December 30 (prior to writing this column). Improvements are frequent and Serius is set up with a toll free technical support line to assist you. Even with all of this, there are a few areas that need to be improved which I should mention:

• There is no way to import resources from other sources with the exception of the Picture Object which will import PICT resources. This is a heavy stumbling block especially if you have special resources to include or want to use a favorite resource from another application. However, an icon editor is built in for creating icons for your application (no cut and paste available).

• The facility for positioning buttons, text, numbers etc is very crude. There are no tools and no grid lines. You can only drag objects and resize them in the window. I was assured that this was improved in the latest version which I have not yet seen.

I am sure that in time there will be significant improvements to Serius89. Updates have been coming out to registered users at the rate of about one every 4-6 weeks. If you can’t wait, and you can program, you could add your own objects. Serius89 is still in its infancy and will be quite powerful as soon as objects have been created which implement every aspect of the Macintosh toolbox. Until then, Serius89 is a powerful tool which can be expanded to meet any developer’s needs.

Serius Corporation

1981 East 4800 South

Salt Lake City, Utah 84117

801 272-7788 General Offices

800 876-6847 Technical Support

801 277-2440 FAX

BASIC WARS TAKES A RIGHT TURN

Note: Source code files accompanying article are located on MacTech CD-ROM or source code disks.

Along the way, HyperCard has both been praised and jeered. Yes, it has opened up a whole new world to some people who never dreamed they could program anything on a computer. Yet serious programmers have complained about its speed and others have wished it had more capabilities. Those with the C and Pascal compilers have been able to exclusively rule the world of XCMDs and XFCNs. Not any longer! Basic has taken a right hand turn and parked itself in the backyard of XCMD and XFCN.

Presenting HyperBASIC™ by Teknosys, Inc.

Creation of XCMDs and XFCNs is now easier than ever. The HyperBASIC application is a combination editor (multiple windows), compiler, linker and resource mover. Compiling a program is easy, just select the destination stack and select “Compile”. HyperBASIC does a quick syntax check then compiles, links, and moves the new XCMD or XFCN into the stack. If the syntax check finds an error, HyperBASIC gives suggestions of what needs to be changed. It doesn’t tell you exactly what the error is but it does flag the line the error occurred on except in a few cases when problems exist in a subroutine and the cursor is placed at the beginning of the XCMD or at the beginning of the subroutine. Suggestions of what went wrong are listed in a menu and when that item is selected, the item in the menu is pasted at the insertion point. Some improvement could be made in this area, but at least you don’t have to compile and run the routine before finding out that the problem is a simple typo.

In addition to being quick and easy to program, HyperBASIC is fast. When I ran the historic Sieve of Erastothenes,. HyperBASIC generated the 10 iterations of 1900 primes in 7.48 seconds on a Macintosh Plus, very close to the same speed as ZBasic. You can’t really compare HyperBasic and ZBasic though because they both serve different purposes. The “Accuracy” benchmark gives good results with an answer of x=503.43802 (correct answer) and s=1.23 in 2.12 seconds. (The benchmarks are shown below for the benefit of those that don’t have “The Complete MacTutor, Volume 2”, pg 379).

‘ 1

xCMD SieveofErastothenes
DEFINT a-s
DEFDBL t
DIM Flags(8191)
time1=_TickCount
’10 Iterations
FOR m=1 TO 10
Count=0
FOR i=1 to 8191
Flags(i)=1
NEXT i
FOR i=1 to 8191
IF Flags(i)=0 THEN GOTO 170
Prime=i+i+3
k=i+Prime
120 IF k<= 8190 THEN 
          Flags(k)=0
          k=k+Prime
          GOTO 120
END IF
Count=Count+1
170 NEXT i
NEXT m
time2=_TickCount
Totaltime=(time2-time1)/60
Totaltime$=str$(Totaltime)
SETFIELDBYNUM 1,8,Totaltime$
END

xCMD accuracy
‘ Accuracy Benchmark
‘ developed by R. Broucke
‘ at University of Texas, Austin
DEFDBL a-z
time1=_TickCount
s=0
x=0
FOR n=1 TO 1000
    s=s+x*x
    x=x+.00123
NEXT n
time2=_Tickcount
Totaltime=(time2-time1)/60
s$=str$(s)
x$=str$(x)
Totaltime$=str$(Totaltime)
SETFIELDBYNUM 1,1,s$
SETFIELDBYNUM 1,2,x$
SETFIELDBYNUM 1,3,Totaltime$
end

HyperBASIC is a rich basic language which includes all the latest syntax such as CASE and multiple line IF-THEN-ELSE. With only minor modifications, programs written for MS QuickBASIC or ZBasic may be converted for use in HyperBASIC. Several new commands have been added to enhance the HyperCard XCMD/XFCN environment. A set of callback statements will allow you to:

• Get the contents of a card of background field by Name, ID, or Number.

• Set the contents of a card of background field by Name, ID, or Number. (a sample of this command is shown in the example above which sets the contents of specific field to the results of the benchmark).

• Get the contents of a global variable.

• Set the contents of a global variable.

• Evaluate expressions such as “the short name of this card”.

• Send a Message to a card such as “show card button 3”

• Send a Message to HyperCard such as “domenu new card”.

There are 376 built-in calls to the Macintosh toolbox which are listed in the HyperBASIC manual. Although the list is not expandable, it appears to be complete. Teknosys plans to add more toolbox calls in the next version (1.1) which will be released late in the first quarter of 1990. Version 1.1 will be free of charge to registered users (except for shipping and handling). Also included in version 1.1 will be support for strings greater than 32K in length (in case you want to use something besides HyperCard). More direct support for SuperCard and other products that can use XCMDs and XFCNs. MicroPhone from Software Ventures is already supported although you need to use ResEdit (or equivalent) to more the resources into MicroPhone.

For debugging purposes, subprogram names may be used to create a MacsBug symbol table. You can use the toolbox statement “_Debugger” to halt execution of the program at a critical point and call Macsbug to step through the processor instructions to find the problem. If you’re experienced with assembly language you may generate assembler output instead of the XCMD or XFCN to examine the code.

There are more than 30 example programs to get you started and get some great ideas for other XCMDs and XFCNs. Soon, Teknosys will be putting together a Tips and Techniques newsletter to provide help and examples of how to change Inside Macintosh calls for use in HyperBASIC. Currently, you must be familiar enough with the syntax used in IM to know what to change to use toolbox calls in HyperBASIC.

I highly recommend HyperBASIC as a “quick and easy” way to extend and speed up HyperCard. System Requirements: 1M RAM, System 6.0.2 (or later), HyperCard 1.2.1 (or later). A hard drive is recommended.

Teknosys, Inc.

3923 Coconut Palm Drive, Suite 111

Tampa, Florida 33619

813-620-3494

AppleLink: D3375

CompuServe: 73237,2370

MacNET: TEKNOSYS

Price: $99

No Copy Protection!

 

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.