TweetFollow Us on Twitter

Recursion and Windows
Volume Number:1
Issue Number:11
Column Tag:Lisp Listener

Recursion and Windows

By Andy Cohen, Human Factors Engineer, MacTutor Contributing Editor

MacScheme offers an Alternative

This month I am happy to announce that there is now a third Lisp environment available for the Mac. The first was XLisp (which is now in version 5, which included some quickdraw routines), the second was ExperLisp (see below for the current version number) and the third is called MacScheme from Semantic Micro Systems in Beaverton, Oregon. MacScheme is an implementation of Scheme, which is actually an idealized version of Common Lisp which was proposed by Guy Steele. MacScheme is implemented on the Macintosh in a different way then ExperLisp or XLisp. I will give the details of how it was developed in a more detailed review in the near future. For now though I can say that it will have the capability to manipulate over 20,000 cons cells with just a 512K Mac. I'm also told that a Levco MonsterMac (2 mbyte) using Macscheme can have approximately 120,000 cons cells. In contrast, ExperLisp can only create 5,912 cons cells in a 512K Mac and 30,480 in a MonsterMac. Macscheme however, will not have the bells and whistles that ExperLisp has. There is currently no way in Macscheme to access the Mac's rom toolbox. John Ulrich, one of the developers of Macscheme tells me that in time they eventually will be able to access the toolbox. Macscheme does use the standard Macintosh user-interface. It uses the menu bar and can produce up to four windows. These windows contain things like a compiler, an editor, a debugger (!) and a Listener window. It is supposedly as interactive as ExperLisp. One can compile and evaluate a single line from the Listener window or compile an entire file. There are two more aspects to Macscheme which I feel are almost as significant as it's capacity; cost and copy protection. The cost is extremely low, $125.00 and it is not copy protected. It can easily be put onto a hard disk or a RAM disk for more speed during startup. As soon as I get Macscheme I will give a more detailed review. I hope to include some benchmarks and a better comparison to ExperLisp.

SIMPLE RECURSION

Recursion is one of the most basic control structures in Lisp. To recur is to occur again. A recursive structure or function is one which is essentially iterative in that it is repetitive. Recursive structures or functions are different from iterative procedures in that they call themselves repeatedly in a circular fashion in order to solve a problem. The recursion ends when the solution is computed. For example, suppose one needed to know how fast a printer can print a certain number of pages. Let us assume that we already know it takes .763 minutes per page. We have also just learned that a certain Masters thesis is 72 pages long. Well, we could just simply multiply .763 by 72, however that would not be an example of recursion. Multiplication would be the easy way. Let's try the hard way. What the following will do is add the time per page (.763) to a variable, which I have called timecount, once for each page.

(setq timecount 0)
(defun Printtime (pagenum)
(setq timecount (+ timecount .763)) 
    (cond ((= 1 pagenum) timecount)
    (t (Printtime (sub1 pagenum)))))

(Printtime 72)
;54.936

When the above is compiled, "timecount" is assigned the value zero. When "Printtime" is called the value sent with the call is the number of pages (pagenum). The second line of Printtime reassigns to "timecount" the value of the sum of the previous value of timecount and the number .763. The next line is a conditional which tests the value of pagenum. If pagenum is one, the "=" predicate returns "t", the value of timecount is displayed and the procedure is terminated. If pagenum is not equal to the number one then the equal predicate returns "nil" and the next line is evaluated. The third line forces it's evaluation by virtue of the "t" at the beginning of the list. This list then calls the very same defined function, however the parameter ,"pagenum" is decremented by one. This continues until pagenum equals zero. The time it took the printer to print the given number of pages is then displayed. In the case of 72 pages it took 54.936 minutes (it was probably high quality!).

Sometimes it requires more than one function to solve a problem. Two-part recursion is when one function calls a second and the second function does all the work. Since we actually need to have the variable "timecount" set to zero every time we use the function it can be more efficiently implemented in terms of our Lisp environment as a two-part recursive function.

(defun setup (n)
   (setq timecount 0)
   (Printtime n))

(defun Printtime (pagenum)
    (setq timecount (+ timecount .763)) 
    (cond ((zerop pagenum) timecount)
    (t (Printtime (sub1 pagenum)))))

(setup 72)
; 54.936
(setup 90)
;68.67 
(setup 12)
;9.156 
(setup 32)
;24.416 

Given the above, one can now solve the problem without having to compile the entire source listing everytime. Using "setup" which calls "Printtime" the variable timecount is initiated without recompiling. Note that the value represented by variable "n" is passed to Printtime which then assigns it to "pagenum". If one was to call Printtime after compiling and running the above, the last number assigned to timecount will still be assigned. Therefore, the number returned is the total of the last total time plus the number of pages given when Printtime was called by itself. Recursion is an important feature of Lisp. The above was a very simple example. In next month's column I'll discuss more complicated recursive functions.

Windows!

Yes, ExperLisp does do windows. After months of saying that I'll show how, I've finally got around to doing it. As you might already know from previous months, one may generate a window by simply accessing either the Bunny or Quickdraw graphics routines available in ExperLisp. In this case the window is the standard graphics window or "Std_graf" to ExperLisp. "Std_graf" is the term used by ExperLisp in referring to a window. One may associate a "Std_graf" with their own window by assigning the special term "newgraphwindow" and a list containing a set of coordinates (which correspond to the top left and bottom right corners of the window) to the chosen term which identifies the window. For my example the term I have chosen is "Win1". After this assignment is made one must then assign the name "Win1" to the special term "Std_graf". To assign a title to the window which will be displayed on top of the window the special term "setwtitle" is used. My sample follows:

(setq Win1 (newgrafwindow '(90 115 290 335))
           std_graf Win1))
 (Win1 'setwtitle "My First Window")

The above will generate a window which does not contain scroll bars or an expand corner. Expanding the window or shrinking it however, is possible by placing the mouse on the lower right corner and dragging it to the desired size. One might note that after running the above, the window is covered up by the Listener Window. It has to be selected before it can be changed or moved. This is because when there is no other functions operating the Listener Window becomes the active window. In order to keep the programmed window active one must be within a procedure which selected it or a procedure which is called by a previous procedure which selected the window. Figure 1 is a screen dump of what the window looks like on the ExperLisp desktop. The screen dump also contains the output generated within the Listener window as a result of the window creation. Windows can also be selected via quickdraw routines. For example:

(FILLOVAL '(34 67 89 90) dkgrey Win1)

The window is selected by including the window title at the end of the quickdraw routine. The window can be deleted by using the following:

(CLOSEWINDOW)

One can size a window using the following:

(SIZEWINDOW width height)

One can also HIDEWINDOW, SHOWWINDOW, MOVEWINDOW x y, or SENDBEHIND window. All of the window primitives are as easy to use as those sampled above.

Putting It All Together

Now lets' put all that has been discussed over the last couple of months together into a simple bunch of procedures which will allow the user to draw a black rectangle with the mouse into the window generated by the code described above.

(defun Watch ()
 (Win1 'selectwindow) 
   (prog ()
     look
      (if (button) (Mousey (REVERSE (getmouse))))
       (go look)))

(defun Mousey (x) 
      (prog ()
     try
         (setq inputs (append x (REVERSE(getmouse))))
          (framerect inputs)
          (eraserect inputs)
          (if (not(button)) (halt x) (go try))))

(defun halt (x)
   (paintrect (append x (REVERSE (getmouse)))))

(Watch)

The overall structure of the above is the same as that used with the procedures presented last month which printed the mouse location. When "Watch" is called, the window "Win1" is selected and brought to the front. The procedure "Watch" also scans the mouse awaiting a button press. When the button on the mouse is pressed the X-Yvalues of the mouse position are reversed (to correspond to the top-left of the quickdraw syntax) and sent in a list as a parameter to the procedure "Mousey". Mousey appends together a list made up of the passed parameter "x" and a second (REVERSE (GETMOUSE)). This list is assigned to the symbol "inputs", which is then used in the FRAMERECT. The FRAMERECT is immediately erased using ERASERECT to give the outline effect prior to releasing the button and selecting the rectangle size. When the button is released the procedure "Halt" is called with the exact same value passed to it as the value passed to "Mousey". It is still the top, left hand corner of our rectangle. In "Halt" the rectangle is finally drawn using the latest mouse position for the bottom, right hand corner.

When compiling these routines one should see each function name printed in the Listener Window as the function is compiled. If the name does not appear and the "I" beam cursor reappears, there is a typo. Chances are it is a problem with the parentheses. If the names show up but the functions are not initiated, chances are a parenthesis was left out somewhere. The above should work fine. One of the biggest disadvantages in using ExperLisp at this time is the poor error messages given when the programmer has done something wrong. I find that most of my errors are in leaving out a parenthesis or putting too many in. Parentheses matching is a capability inherent in an editor which gives some indication to the programmer as to which parenthesis goes with another. Some Lisp machines actually put the parenthesis in for the programmer automatically. In version 1.04 of ExperLisp we will be given the luxury of parenthesis matching. Version 1.04 should be released by the time this column is in print. This new version of ExperLisp will handle parenthesis matching by highlighting the opening parenthesis of the matching closing parenthesis to the left of the entry point. By placing the entry point next to each closing parenthesis the programmer can check to see that all the lists are closed properly. Believe me, after just two minutes of use you will never want to be without parenthesis matching again! Another helpful feature of version 1.04 is a form of trace capability. In the beta version this capability was initiated within the ªlispINIT file. When certain kinds of errors are encountered the same kind of message is generated as was in the earlier versions, however with this form of trace on the message is followed by each list that was invoked and the order of occurrence. These are generated in the Listener window. There is a drawback to this feature though, the listing can get quite long for even a small program. The best way to debug at this time is still to break the code down into small functions.

ExperLisp Versions

There are currently four versions of ExperLisp. Version 1.01 was the first release. The first update was version 1.02, in which some of the routines were fixed (i.e. MAPCAR and nested CARs and CDRs, etc.) and some routines added (i.e. FREECONS). Version 1.03 is a version of ExperLisp which was included with ExperOps5. Registered owners of both ExperLisp and ExperOps5 should receive version 1.04. There are many differences between each of these versions. To see what routines and functions are available within a version of ExperLisp type the following in the Listener window:

(APROPOS "")

The function names will then be generated within the Listener window. Good luck, the list is long.

The Experts Complain

Recently a letter was received by Mactutor which criticized the accuracy and reliability of this column. I would like to say that I am NOT a Lisp programmer. That is probably obviously apparent to one who is. The goal of this article is to be more then just a tutorial, it is to demonstate the findings of one who is learning Lisp ON THE MAC with only minor consulting from the experts. If you feel something is incorrect, then by all means write to Mactutor with your comments. We welcome suggestions for topics of interest to our readership. Let us know how we can meet your needs.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Whitethorn Games combines two completely...
If you have ever gone fishing then you know that it is a lesson in patience, sitting around waiting for a bite that may never come. Well, that's because you have been doing it wrong, since as Whitehorn Games now demonstrates in new release Skate... | Read more »
Call of Duty Warzone is a Waiting Simula...
It's always fun when a splashy multiplayer game comes to mobile because they are few and far between, so I was excited to see the notification about Call of Duty: Warzone Mobile (finally) launching last week and wanted to try it out. As someone who... | Read more »
Albion Online introduces some massive ne...
Sandbox Interactive has announced an upcoming update to its flagship MMORPG Albion Online, containing massive updates to its existing guild Vs guild systems. Someone clearly rewatched the Helms Deep battle in Lord of the Rings and spent the next... | Read more »
Chucklefish announces launch date of the...
Chucklefish, the indie London-based team we probably all know from developing Terraria or their stint publishing Stardew Valley, has revealed the mobile release date for roguelike deck-builder Wildfrost. Developed by Gaziter and Deadpan Games, the... | Read more »
Netmarble opens pre-registration for act...
It has been close to three years since Netmarble announced they would be adapting the smash series Solo Leveling into a video game, and at last, they have announced the opening of pre-orders for Solo Leveling: Arise. [Read more] | Read more »
PUBG Mobile celebrates sixth anniversary...
For the past six years, PUBG Mobile has been one of the most popular shooters you can play in the palm of your hand, and Krafton is celebrating this milestone and many years of ups by teaming up with hit music man JVKE to create a special song for... | Read more »
ASTRA: Knights of Veda refuse to pump th...
In perhaps the most recent example of being incredibly eager, ASTRA: Knights of Veda has dropped its second collaboration with South Korean boyband Seventeen, named so as it consists of exactly thirteen members and a video collaboration with Lee... | Read more »
Collect all your cats and caterpillars a...
If you are growing tired of trying to build a town with your phone by using it as a tiny, ineffectual shover then fear no longer, as Independent Arts Software has announced the upcoming release of Construction Simulator 4, from the critically... | Read more »
Backbone complete its lineup of 2nd Gene...
With all the ports of big AAA games that have been coming to mobile, it is becoming more convenient than ever to own a good controller, and to help with this Backbone has announced the completion of their 2nd generation product lineup with their... | Read more »
Zenless Zone Zero opens entries for its...
miHoYo, aka HoYoverse, has become such a big name in mobile gaming that it's hard to believe that arguably their flagship title, Genshin Impact, is only three and a half years old. Now, they continue the road to the next title in their world, with... | Read more »

Price Scanner via MacPrices.net

Deal Alert! B&H Photo has Apple’s 14-inch...
B&H Photo has new Gray and Black 14″ M3, M3 Pro, and M3 Max MacBook Pros on sale for $200-$300 off MSRP, starting at only $1399. B&H offers free 1-2 day delivery to most US addresses: – 14″ 8... Read more
Department Of Justice Sets Sights On Apple In...
NEWS – The ball has finally dropped on the big Apple. The ball (metaphorically speaking) — an antitrust lawsuit filed in the U.S. on March 21 by the Department of Justice (DOJ) — came down following... Read more
New 13-inch M3 MacBook Air on sale for $999,...
Amazon has Apple’s new 13″ M3 MacBook Air on sale for $100 off MSRP for the first time, now just $999 shipped. Shipping is free: – 13″ MacBook Air (8GB RAM/256GB SSD/Space Gray): $999 $100 off MSRP... Read more
Amazon has Apple’s 9th-generation WiFi iPads...
Amazon has Apple’s 9th generation 10.2″ WiFi iPads on sale for $80-$100 off MSRP, starting only $249. Their prices are the lowest available for new iPads anywhere: – 10″ 64GB WiFi iPad (Space Gray or... Read more
Discounted 14-inch M3 MacBook Pros with 16GB...
Apple retailer Expercom has 14″ MacBook Pros with M3 CPUs and 16GB of standard memory discounted by up to $120 off Apple’s MSRP: – 14″ M3 MacBook Pro (16GB RAM/256GB SSD): $1691.06 $108 off MSRP – 14... Read more
Clearance 15-inch M2 MacBook Airs on sale for...
B&H Photo has Apple’s 15″ MacBook Airs with M2 CPUs (8GB RAM/256GB SSD) in stock today and on clearance sale for $999 in all four colors. Free 1-2 delivery is available to most US addresses.... Read more
Clearance 13-inch M1 MacBook Airs drop to onl...
B&H has Apple’s base 13″ M1 MacBook Air (Space Gray, Silver, & Gold) in stock and on clearance sale today for $300 off MSRP, only $699. Free 1-2 day shipping is available to most addresses in... Read more
New promo at Visible: Buy a new iPhone, get $...
Switch to Visible, and buy a new iPhone, and Visible will take $10 off their monthly Visible+ service for 24 months. Visible+ is normally $45 per month. With this promotion, the cost of Visible+ is... Read more
B&H has Apple’s 13-inch M2 MacBook Airs o...
B&H Photo has 13″ MacBook Airs with M2 CPUs and 256GB of storage in stock and on sale for $100 off Apple’s new MSRP, only $899. Free 1-2 day delivery is available to most US addresses. Their... Read more
Take advantage of Apple’s steep discounts on...
Apple has a full line of 16″ M3 Pro and M3 Max MacBook Pros available, Certified Refurbished, starting at $2119 and ranging up to $600 off MSRP. Each model features a new outer case, shipping is free... Read more

Jobs Board

Medical Assistant - Surgical Oncology- *Apple...
Medical Assistant - Surgical Oncology- Apple Hill Location: WellSpan Medical Group, York, PA Schedule: Full Time Sign-On Bonus Eligible Remote/Hybrid Regular Apply Read more
Omnichannel Associate - *Apple* Blossom Mal...
Omnichannel Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple 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
Operations Associate - *Apple* Blossom Mall...
Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Business Analyst | *Apple* Pay - Banco Popu...
Business Analyst | Apple PayApply now " Apply now + Apply Now + Start applying with LinkedIn Start + Please wait Date:Mar 19, 2024 Location: San Juan-Cupey, PR Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.