home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / languages / logo / NXLogo.README < prev   
Encoding:
Text File  |  1992-07-09  |  10.8 KB  |  274 lines

  1. -----------------------------------------------------------------------
  2.                 *    *  *    *  *
  3.                 **   *   * *    *
  4.                 * *  *    *     *        **    **    **
  5.                 *  * *   * *    *       *  *  *  *  *  *
  6.                 *    *  *   *   ******   **    ***   **
  7. -------------------------------------------------*----------------------
  8.    NeXT Logo interface Created by:              *
  9.    Gary F. Desrochers and Sean Kerstiens       *
  10.    for:  Professor Aaron Gordon
  11. ------------------------------------------------------------------------
  12.  
  13. Background:
  14.  
  15.      Logo is a computer programming language that was initially intended to encourage children to learn about computers by creating shapes that are drawn by moving a turtle around a computer screen.  Although the logo environment focuses on graphics and the graphical interface, it is also a powerful programming language.
  16.      NXLogo was designed at Colorado School of Mines during a six week summer field session for undergraduate students.  We, Gary Desrochers and Sean Kerstiens, undertook the task of creating a working logo interface for the Next by the end of the course.  The original logo interface had to be modified and a NeXT interface had to be added.  The result of these efforts is NXLogo.  Currently, the version is 1.0, as seen in the info panel of the application.
  17.  
  18. -------------------------------------------------------------------------
  19.  
  20. Differences and Modifications:
  21.  
  22.      In general, most of the regular logo commands work for NXLogo.  A few exceptions and changes are listed below.  At the end of this file, a complete list of commands is given.
  23.  
  24.      There are some parsing differences between logo and NXLogo.  To begin with, a left bracket ([) must be closed on the same line as it is opened.  This can be seen using a print statement.  Here is a correct statement:
  25.            
  26.      print [Hello. How are you?]       
  27.      
  28. Also, there are no multi-line commands.  This feature could not be added in the time period that was provided.  It a useful feature that could be added in the future.  There are also a couple new ways to enter a <to> procedure.  To define a procedure from within the NXLogo application type:
  29.  
  30.     to <procedurename> <:variable(s)> | <procedure must be on one line>
  31.     
  32. Another way to make a procedure is to create a file using a text editor.  (Once you have defined a procedure from within Logo, this is the only way to make changes to that procedure. Unless you want to erase it and then redefine it.): 
  33.  
  34. to <procedurename> <:variable(s)>
  35. <procedure in as many lines as you want
  36. end
  37.  
  38. In version 1.0 of NXLogo the procedure has to start on the first line of the file for NXLogo to recognize it properly.  Once you have made the file in the editor, the file must be saved as <procedurename>.lg in your working logo directory.
  39.  
  40.      The working logo directory is another important point.  There is a system library (included in the package as NXLogoLibrary) that can hold any of the global (everyone can use) logo procedures. NXLogo will search your home directory first before it goes and does the main library search.  If it doesn't find the procedure in there, then it will tell you it doesn't know how to do that procedure name.  This means that you can redefine a system defined procedure by making your own.  You can change your personal working directory to anything you like with a NeXT unix command called dread.  To do this simply perform a dread NXLogo NXLogoLib <pathname terminated with a />.  Here is and example: 
  41.  
  42.     dwrite NXLogo NXLogoLib <Net/Users/tsmith/logo.library/>
  43.    
  44. It is very important to include the slash (/) after the last directory name, otherwise NXLogo will not recognize the directory.  The system library can also be changed with this command.  There is a help directory (included in the package as NXLogoLibrary/help) and this can be changed with the dread also.  These two can be changed with:
  45.  
  46.     dwrite NXLogo NXLogoSysLib <Net/user/lib/logo.library/>
  47.     dwrite NXLogo NXLogoHelp <Net/user/help/logo.help/>
  48.  
  49.      In the future this will also be made into a preferences menu for the system administrator so that he will not have to relink the whole program to change the directory. This would not be too hard but was not done due to time limitations.
  50.  
  51.      Another way to personalize your environment is to drag the NXLogo 
  52. program's icon to the right side of the screen under the Next Cube and then every .logo file will show up as a turtle.  In the future, when a .logo file is double clicked NXLogo will load that one file and display it in the NXLogoprogram.  Currently it only loads up logo.  (Sorry folks, maybe in another version!)
  53.  
  54. ------------------------------------------------------------------------
  55.  
  56.      The following are new features built into the graphical interface 
  57. of NXLogo.  
  58. (Version 1.0)
  59.      Menu options:
  60. Main menu:
  61.           Info...:
  62.                  It gives you the authors of the graphical interface.
  63.              (who also had to do the modifications to the non-
  64.              graphical interface.
  65.           File:
  66.               New:
  67.                     This does the same as a clearscreen command within
  68.                 NXLogo.  It will clear the line buffer, center the 
  69.                 Turtle and start with a clean state.  New does not
  70.                 change the location or direction of the turtle.
  71.               Open:
  72.                     This will give you a promt for what file you want to
  73.                 load and starts you from where that file had left off.
  74.                 This command does a new before it loads up the file.
  75.               Add:
  76.                     This will prompt you for a what file you want to
  77.                 add and starts you from where that file had left off.
  78.                 This command does not do a new before it loads up 
  79.                 the file.  It just puts this file on top of what you
  80.                 already have.
  81.              Save:
  82.                      This menu option saves the file to the last file
  83.                 you accessed.  If you have not accessed a file then it
  84.                 will bring up a open dialog box that will allow you to
  85.                 enter the name you wanted to use.
  86.        Save As...:
  87.                      The Save As is the same as the Save except for it
  88.                 always asks you for the file to access.
  89.        Save To...:
  90.                      The Save To is the same as the Save except for it
  91.                 always asks you for the file to access.  Later it will
  92.                 allow for multiple formats to save the file in.
  93.         Format:
  94.                   This contains only Page layout as a menu off of it and
  95.                 it does everything that a normal Page layout does.
  96.           Edit:
  97.                   This contains all the normal editing features that 
  98.              can be done within the text object.
  99.           Print:
  100.                   This menu command allows for you to print out the
  101.               graphics screen (minus the turtle).  It brings up
  102.               the print dialog box and asks you the normal stuff.
  103.            Hide:
  104.                   This hides the NXLogo program.
  105.            Quit:
  106.                   This menu option quits NXLogo.  The same can be done
  107.               typing out the logo command bye or using a <command key><q>.
  108.                              
  109. ------------------------------------------------------------------------
  110.  
  111.  
  112.      The Following are the commands that are available within NXLogo.
  113. If there are any changes to the documented call (or online help) then 
  114. these will be listed after each command.  Some commands have another 
  115. small alias that can be used instead of the full commands and these 
  116. are listed after each command.  The format is:
  117.  
  118. <Full Command Name>,<Abbreviated Command Name>:<Differences>
  119.  
  120.      **** WARNING ****  Most of these commands have been used in the
  121.                         NeXT environment.  Some of the commands, and all
  122.                         the different methods of use have not been tried.
  123.                         This warning only applies to the more obscure
  124.                         procedures.  If you have any problems then
  125.                         please contact the NXLogo interface authors.
  126.  
  127. sum,add
  128. difference,diff
  129. product
  130. quotient
  131. remainder,mod
  132. both,and
  133. either,or
  134. greaterp
  135. lessp
  136. maximum,max
  137. minimum,min
  138. is
  139. word
  140. sentence,se
  141. equalp
  142. emptyp
  143. not
  144. numberp
  145. sentencep
  146. wordp
  147. count
  148. zerop
  149. first
  150. butfirst,bf
  151. last
  152. butlast,bl
  153. thing
  154. namep
  155. random,rnd
  156. sqrt
  157. pow
  158. sin
  159. cos
  160. arctan,atan
  161. time
  162. print,pr
  163. type
  164. output,op
  165. wait,
  166. local
  167. make
  168. if
  169. to : see the above documentation about how to use this command.
  170. end
  171. stop
  172. break
  173. go
  174. show,po
  175. erase,er : remember erase only erases yours not the system.
  176. help
  177. describe
  178. trace
  179. untrace
  180. goodbye,bye: This also quits from the whole program.
  181. turtle,tur
  182. forward,fd
  183. back,bk
  184. left,lt
  185. right,rt
  186. penup,pu
  187. pendown,pd
  188. clearscreen,cs: This command will clear the line buffer.
  189.                 Maybe later on there can be added also a
  190.                 remove $ of line(s) command
  191. showturtle,st
  192. hideturtle,ht
  193. penerase,pe
  194. pencolor,penc
  195. setcolor,setc
  196. setxy
  197. setheading,seth
  198. wipeclean,clean
  199. penmode
  200. penreverse,px,
  201. shownp
  202. towardsxy
  203. xcor
  204. ycor
  205. heading
  206. getpen
  207. scrunch
  208. setscrunch,setscrun
  209. toplevel
  210. fprint,fp
  211. ftype,fty
  212. pots: Maybe later a new command can be added to print out the system library.
  213. fput
  214. lput
  215. list
  216. openread,openr
  217. openwrite,openw
  218. close
  219. fileread,fird
  220. fileword,fiwd
  221. fileprint,fip
  222. filefprint,fifp
  223. filetype,fity
  224. fileftype,fifty
  225. unix: Does not allow for interactive unix commands(like vi).  Only allows
  226.       for non-interactive commands.(ls, cat, fgrep, ect.)
  227. run
  228. repeat
  229. repcount
  230. cbreak
  231. int
  232. round
  233. ascii
  234. char
  235. oflush
  236. gprop
  237. plist
  238. pprop
  239. pps
  240. remprop
  241. test
  242. iftrue,ift
  243. iffalse,iff
  244. memberp
  245. item,nth
  246.  
  247.      We hope you enjoy this program.  Any comments (Yes we do take
  248. comments, good, bad, or otherwise) then send them to:
  249.  
  250. gdesroch@slate.mines.colorado.edu
  251. skerstie@slate.mines.colorado.edu
  252. agordon@mines.colorado.edu
  253. or
  254. Contact the Department of Mathematical and Computer Sciences
  255. Colorado School of Mines
  256. Golden, CO 80401
  257. 303-273-3860
  258.                                   NXLogo
  259.        Copyright  1992, CSM Software, Inc.  All Rights Reserved.
  260.     You may freely copy, distribute and reuse the code in this program. CSM
  261. Software disclaims any warranty of any kind, expressed or implied as to its
  262. fitness for any particular use. (Code last moditied Date June 25, 1992)
  263. -----------------------------------------------------------------------
  264.                 *    *  *    *  *
  265.                 **   *   * *    *
  266.                 * *  *    *     *        **    **    **
  267.                 *  * *   * *    *       *  *  *  *  *  *
  268.                 *    *  *   *   ******   **    ***   **
  269. -------------------------------------------------*----------------------
  270.    NeXT Logo interface Created by:              *
  271.    Gary F. Desrochers and Sean Kerstiens       *
  272.    for:  Professor Aaron Gordon
  273. ------------------------------------------------------------------------
  274.