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

Pack a magnifying glass and practice you...
Somehow it has already been a year since Torchlight: Infinite launched, and XD Games is celebrating by blending in what sounds like a truly fantastic new update. Fans of Cthulhu rejoice, as Whispering Mist brings some horror elements, and tests... | Read more »
Summon your guild and prepare for war in...
Netmarble is making some pretty big moves with their latest update for Seven Knights Idle Adventure, with a bunch of interesting additions. Two new heroes enter the battle, there are events and bosses abound, and perhaps most interesting, a huge... | Read more »
Make the passage of time your plaything...
While some of us are still waiting for a chance to get our hands on Ash Prime - yes, don’t remind me I could currently buy him this month I’m barely hanging on - Digital Extremes has announced its next anticipated Prime Form for Warframe. Starting... | Read more »
If you can find it and fit through the d...
The holy trinity of amazing company names have come together, to release their equally amazing and adorable mobile game, Hamster Inn. Published by HyperBeard Games, and co-developed by Mum Not Proud and Little Sasquatch Studios, it's time to... | Read more »
Amikin Survival opens for pre-orders on...
Join me on the wonderful trip down the inspiration rabbit hole; much as Palworld seemingly “borrowed” many aspects from the hit Pokemon franchise, it is time for the heavily armed animal survival to also spawn some illegitimate children as Helio... | Read more »
PUBG Mobile teams up with global phenome...
Since launching in 2019, SpyxFamily has exploded to damn near catastrophic popularity, so it was only a matter of time before a mobile game snapped up a collaboration. Enter PUBG Mobile. Until May 12th, players will be able to collect a host of... | Read more »
Embark into the frozen tundra of certain...
Chucklefish, developers of hit action-adventure sandbox game Starbound and owner of one of the cutest logos in gaming, has released their roguelike deck-builder Wildfrost. Created alongside developers Gaziter and Deadpan Games, Wildfrost will... | Read more »
MoreFun Studios has announced Season 4,...
Tension has escalated in the ever-volatile world of Arena Breakout, as your old pal Randall Fisher and bosses Fred and Perrero continue to lob insults and explosives at each other, bringing us to a new phase of warfare. Season 4, Into The Fog of... | 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 »
Marvel Future Fight celebrates nine year...
Announced alongside an advertising image I can only assume was aimed squarely at myself with the prominent Deadpool and Odin featured on it, Netmarble has revealed their celebrations for the 9th anniversary of Marvel Future Fight. The Countdown... | Read more »

Price Scanner via MacPrices.net

Every model of Apple’s 13-inch M3 MacBook Air...
Best Buy has Apple 13″ MacBook Airs with M3 CPUs in stock and on sale today for $100 off MSRP. Prices start at $999. Their prices are the lowest currently available for new 13″ M3 MacBook Airs among... Read more
Sunday Sale: Apple iPad Magic Keyboards for 1...
Walmart has Apple Magic Keyboards for 12.9″ iPad Pros, in Black, on sale for $150 off MSRP on their online store. Sale price for online orders only, in-store price may vary. Order online and choose... Read more
Apple Watch Ultra 2 now available at Apple fo...
Apple has, for the first time, begun offering Certified Refurbished Apple Watch Ultra 2 models in their online store for $679, or $120 off MSRP. Each Watch includes Apple’s standard one-year warranty... Read more
AT&T has the iPhone 14 on sale for only $...
AT&T has the 128GB Apple iPhone 14 available for only $5.99 per month for new and existing customers when you activate unlimited service and use AT&T’s 36 month installment plan. The fine... Read more
Amazon is offering a $100 discount on every M...
Amazon is offering a $100 instant discount on each configuration of Apple’s new 13″ M3 MacBook Air, in Midnight, this weekend. These are the lowest prices currently available for new 13″ M3 MacBook... Read more
You can save $300-$480 on a 14-inch M3 Pro/Ma...
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
24-inch M1 iMacs available at Apple starting...
Apple has clearance M1 iMacs available in their Certified Refurbished store starting at $1049 and ranging up to $300 off original MSRP. Each iMac is in like-new condition and comes with Apple’s... Read more
Walmart continues to offer $699 13-inch M1 Ma...
Walmart continues to offer new Apple 13″ M1 MacBook Airs (8GB RAM, 256GB SSD) online for $699, $300 off original MSRP, in Space Gray, Silver, and Gold colors. These are new MacBook for sale by... Read more
B&H has 13-inch M2 MacBook Airs with 16GB...
B&H Photo has 13″ MacBook Airs with M2 CPUs, 16GB of memory, and 256GB of storage in stock and on sale for $1099, $100 off Apple’s MSRP for this configuration. Free 1-2 day delivery is available... Read more
14-inch M3 MacBook Pro with 16GB of RAM avail...
Apple has the 14″ M3 MacBook Pro with 16GB of RAM and 1TB of storage, Certified Refurbished, available for $300 off MSRP. Each MacBook Pro features a new outer case, shipping is free, and an Apple 1-... Read more

Jobs Board

*Apple* Systems Administrator - JAMF - Activ...
…**Public Trust/Other Required:** None **Job Family:** Systems Administration **Skills:** Apple Platforms,Computer Servers,Jamf Pro **Experience:** 3 + years of Read more
IT Systems Engineer ( *Apple* Platforms) - S...
IT Systems Engineer ( Apple Platforms) at SpaceX Hawthorne, CA SpaceX was founded under the belief that a future where humanity is out exploring the stars is Read more
Nurse Anesthetist - *Apple* Hill Surgery Ce...
Nurse Anesthetist - Apple Hill Surgery Center Location: WellSpan Medical Group, York, PA Schedule: Full Time Sign-On Bonus Eligible Remote/Hybrid Regular Apply Now Read more
Housekeeper, *Apple* Valley Village - Cassi...
Apple Valley Village Health Care Center, a senior care campus, is hiring a Part-Time Housekeeper to join our team! We will train you for this position! In this role, Read more
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
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.