PyoLogo

From OLPC
Jump to: navigation, search
  english | 한국어 HowTo [ID# 194781]  +/-  

PyoLogo [pie-o-logo] or PYthon Open Logo is an implementation of the Logo programing language created on top of Python. It grew out of Arnan (Roger) Sipitakiat's thesis project at the MIT Media Laboratory. PyoLogo consists of a casual Logo interpreter and a simple IDE.

Screenshot01.jpg
Screenshot02.jpg
Screenshot03.jpg

Current Status

Since PyoLogo is currently thesis software, it is far from being a complete product. Here is a list of things it can and cannot do.

Available features

  • Logo Primitives. Supports a subset of Logo primitives. See the command list below. More commands will be added as development progresses.
    • Most of the Turtle Geometry (drawing) primitives are available.
    • List and list manipulation commands
    • Common control flow. If, ifelse, repeat, etc
    • Variables. Using the 'make' command and some other alternatives
    • Mathematical operations. sin, cos, tan, sqrt, etc
  • Supports multiple procedures with parameter passing and procedure output
  • Multi-threaded. I.e. the 'launch' and 'forever' commands creates a new background process
  • Support turtle shapes

Thesis Features

There are some non-traditional features built into PyoLogo for the thesis work form which it was created. Here are some that could perhaps be useful.

  • Robotics. PyoLogo can receive sensor input and control actuators via the GoGo Board. Since OLPC will have a sensor input through its microphone jack, this feature can be adapted to make use of this possibility.
  • Line objects. These are slider-like objects that can be used to track a turtle's position or visualize a sensor value.
  • Variable history. Every variable keeps a record of its previous values. It can be used to calculate the rate of a variable (i.e. position -> speed) or for debugging purposes.

Issues and missing items

  • Performance. PyoLogo currently runs very slowly on OLPC machines. This is based on the A test boards
  • Still some UI issues under Linux
  • Bugs are plentiful. It still needs extensive testing.
  • Error reporting. Errors in the Logo programs are not well reported. This makes it difficult for the user to debug their Logo program
  • No multimedia support. No sound, no video, no text box, no drawing tools
  • No UI widgets for the user program. No buttons, checkboxes
  • No multiple page support

Download

The author is currently preparing the source code to be uploaded into OLPC's code repository. Once this is done, a public release of the software will become available.

Technical Info

Please take a look at the technical info page for information about how PyoLogo was built

The Logo Interpreter

Although PyoLogo tries to conform with other Logo implementations, it contains some rather unconventional properties.

  • Not space delimited. 'Show 1 1' works in PyoLogo whereas most other Logo interpreters do not accept this. Logo normally requires spaces between every token. So, only 'Show 1 1' would work. Although the uniformity of the Logo language is broken when space becomes optional, the author believes it is a worthwhile trade off. Kids too often becomes frustrated or annoyed by the strict requirement for space.
    • This, of course, comes at a cost. There are some cases where the interpreter will not be able to decide what to do. For example, if we have a procedure called sum that takes two integers as an input. So, sum 2 3 returns 5. A problem occurs when we try to call sum 2 -3. The interpreter has no way of knowing if the user wants to do a sum of 2 and -3 or a sum of (2-3) and another value which is missing (and thus should complain to the user.) The user will have to tell the compiler what to do. I.e. in this case the user can call sum 2 (-3).
  • Multiple ways to manipulate variables. The author finds Logo's 'make' primitive unnecessarily complicated for children. The 'set' method is perhaps a better way to go. PyoLogo supports both. For example:
make "counter 0
make "counter :counter   1
show :counter

The following alternative is also available

global [counter]

setcounter 0
setcounter counter   1
show counter
  • Object oriented properties as a shortcut for 'ask.' For example, a typical logo command to vertically align one turtle to another would be:
t1, setx ask "t2 "xcor

PyoLogo allows a dot format for accessing a turtle's property.

t1, setx t2.xcor

Both the traditional and shortened approaches are supported in PyoLogo.

LOGO words supported

LOGO keyword list Letter Implemented Partially Missing
A abs, and, announce, answer, arccos, arcsin, arctan, ascii ask
B bf (butfirst), bk (back), bl (butlast) bg, bottom
C cc, cg, char, chdir, clean, color, cos, count, currentdir cancel, carefully, clearname, clearnames, clickoff, clickon, colorunder, creatprojectvar
D distance difference, directories, dolist, done?, dotimes
E empty?, exp equal?, erfile, errormessage, everyone, exporttext
F fd (forward), first, forever files, fill, fontsize, fput, freeze, freezebg
G getproject get getpage, glide, greater?
H heading, ht home
I if, ifelse, int, item identical?, importtext, infront
K key?
L last, launch, list, list?, ln, log, lt (left) less?, let, listen, loadpict, loadshape, loadtext, local, lput
M make, mousepos member?, minus
N name?, newturtle, not, number? name, names, newbutton, newpage, note, np (namepage)
O op (output), or opaque
P parse, pd, pensize, pi, pos, pu pagelist, pick, power, pr (print), presentationmode, product, projectlist, projectvars
Q question quotient
R random, readchar, remove, repeat, resett, round, rt (right), run remainder, rerandom, rest, restore
S setc (setcolor), seth (setheading), se (sentence),setpensize, setpos, setsh (setshape), setsize, setx, sety, shape, show, sin, size, sqrt, st, stamp, stop, stopall savepict, saveproject, saveshape, savetext, set, setbg, setinstruction, setinstrument, startup, stopme, sum
T tan, thing, timer, touching?, towards tto (talkto), turtlesown
U unfreeze, unfreezebg
W wait, waituntil, who, word, word? when
X xcor
Y ycor