Microworlds
Encyclopedia
MicroWorlds is a program that uses the Logo programming language
Logo (programming language)
Logo is a multi-paradigm computer programming language used in education. It is an adaptation and dialect of the Lisp language; some have called it Lisp without the parentheses. It was originally conceived and written as functional programming language, and drove a mechanical turtle as an output...

, a dialect of Lisp programming language
Lisp programming language
Lisp is a family of computer programming languages with a long history and a distinctive, fully parenthesized syntax. Originally specified in 1958, Lisp is the second-oldest high-level programming language in widespread use today; only Fortran is older...

. It uses a turtle object which can be moved around, given commands, and eventually make shapes or even an animation
Animation
Animation is the rapid display of a sequence of images of 2-D or 3-D artwork or model positions in order to create an illusion of movement. The effect is an optical illusion of motion due to the phenomenon of persistence of vision, and can be created and demonstrated in several ways...

.

It is part of a large set of dialects and implementations of Logo originating from the invention of Seymour Papert
Seymour Papert
Seymour Papert is an MIT mathematician, computer scientist, and educator. He is one of the pioneers of artificial intelligence, as well as an inventor of the Logo programming language....

 and aimed at triggering the development of abstract ideas by children through experimentation. As a tool for learning, Logo is flexible and provides immediate feedback; it is both accessible to young users and robust enough to create sophisticated projects. In original versions of Logo, Papert created a large 'turtle' that was programmed to move around the room by providing commands via the computer.

MicroWorlds is made by LCSI, and can be used with Windows
Microsoft Windows
Microsoft Windows is a series of operating systems produced by Microsoft.Microsoft introduced an operating environment named Windows on November 20, 1985 as an add-on to MS-DOS in response to the growing interest in graphical user interfaces . Microsoft Windows came to dominate the world's personal...

 and Mac
Mac OS
Mac OS is a series of graphical user interface-based operating systems developed by Apple Inc. for their Macintosh line of computer systems. The Macintosh user experience is credited with popularizing the graphical user interface...

.

Syntax

The following is an example of something written in Logo:


to go.crazy
fd 90
lt 90
rt 180
fd 4999
end


In the example above, the user has gone into a part of the program called the procedure page, which allows for longer series of commands, and therefore more complex programs can be written. In this program, the cursor moves forward 90 units, turns left 90 degrees, right 180 degrees and then moves forward 4999 units.

Another example is:


to say.hi
announce [Hi!]
end


In this example, the user makes a box appear, which has words written which are in the brackets. So the box would have 'Hi!', printed on it.

Commands can be written in one of two ways: using the procedures page, or the command module. The command module allows for instructions to be executed immediately.

Vocabulary

Logo is based on real words in its 'language' so that they are easy to remember. An example of this is the 'forward' command. 'Forward' can be used in a program such as this:

forward 50

This simple line indicates that the turtle referred to before will move 50 units of computer screen in the direction it is pointed. The unit of measurement for 'forward' is one pixel on the screen. 'Forward' can also be abbreviated as the command 'fd', so therefore can be used like this:

fd 50

Other important navigation commands include:

lt :x ---> turns the turtle left :x amount of degrees

rt :x ---> turns the turtle right :x amount of degrees

setpos [x y] ---> sets the position of the turtle in the coordinates of the screen, x being on the x axis, y on the y axis.

pd ---> sets the turtle's "pen" down, so that wherever it moves afterwards, it draws a line on the screen from where it started to where it ended up.

pu ---> sets the turtle's "pen" up, so that it does not draw a line anymore.

setsh :x ---> changes the picture the turtle appears as to be a picture that is either drawn in Micro Worlds itself or imported into the program. :x refers to the shape's number

This is only a brief example of the hundreds of commands in Micro Worlds.

Use

There are many uses for Micro Worlds. It can be used from beginners to advanced users. Such things are:

-Drawing geometrical shapes.
-Animating simple pictures.
-Algrebreic math with the use of variables.
-Creating simple or advanced games, such as pac man, or a shooting game.
-Plotting algebreic functions on an x-y axis, such as sine waves or polynomial expressions.
-Creating encryption programs that import text from the computer and encrypt them into a coded message.
-Simulate physics, such as gravity, inertia, Newton's 3rd law, etc.
-Create a logic cube so that the computer can perform logically in things such as autonomous Tic-Tac-Toe.
-Use the Lego Mindstorms NXT to create robots that do as programmed, or to use sensors on the NXT to use in the Micro Worlds programs themselves.
-Any other thing you can possibly think of that you can also fit into the logical terms of the computer's programming.

Versions

MicroWorlds is a basic piece of software that can give a good first start into programming and move on to more robust activities such as programming robotic devices or sensors. MicroWorlds EX Robotics can control a LEGO RCX and the Handy Cricket. MicroWorlds has the ability to execute multiple tasks independently, also called parallel processing. Several processes can be launched independently which is very helpful when creating multiple character animations and simulations. Extra features in MicroWorlds, for example a text editor, shape centre, melody centre and the ability to import pictures all work with the Logo aspects to create multimedia projects, video games and simulations.

LCSI also provides MicroWorlds JR
MicroWorlds JR
MicroWorlds JR is a version of Logo that teaches non-readers or early readers to program in Logo. Logo was created by Seymour Papert to provide children with a robust computer language with which to explore mathematical concepts...

, an iconic version of Logo that allows younger children who are non-readers begin to learn to program the turtle.

Microworlds has been translated in many languages such as Greek.

MicroWorlds is used as the main component of the curriculum used by OpenWorld Learning a non-profit based in Denver, Colorado in the United States, that as to 2007 operated 11 sites in the Denver area.

Microworlds programming can be used to make a variety of apps and games, a benefit utilized by MicroTech

MicroWorlds Related

List of Logo Commands

Logo Philosophy

  • Gary Stager A teacher and teacher educator specializing in laptop education, Logo, and Robotics.
  • Seymour Papert An excellent collection of the articles and works of Seymour Papert.
  • MaMaMedia Idit Harel's excellent site for children. The "For Grown-Ups" section has thought provoking articles about 21st- CENTURY LEARNING, including the use of Logo
  • World Wide Workshop Foundation A foundation that focuses on teaching children 21st century skills through the constructionist philosophy, and a game and simulation production curriculum
  • The Logo Foundation A foundation that provides support for Logo users and educators

Related Topics-MicroWorlds Robotics


Further reading

  • Children Designers, Idit Harel Caperton, Ablex Publishing Corporation ISBN 0-89391-8788-5. Available online
The source of this article is wikipedia, the free encyclopedia.  The text of this article is licensed under the GFDL.
 
x
OK