| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Load81 is an attempt at creating a Codea-inspired environment to teach children how to write Lua programs. It features a graphical programming environment and a Commodore-64 style integrated editor so that the programmer is confined into a friendly environment with a simple editor:
The following is a screenshot of the running program (examples/asteroids.lua). The programmer can currently switch between edit and play mode pressing the ESC key.
Load81 is written in ANSI C and uses SDL and SDL_gfx and SDL_image, so should compile on Mac OS X and Linux without issues. It should not be hard to port it to Windows.
The coordinate system and the basic drawing functions are compatible with Codea (check http://twolivesleft.com/Codea/ for more information), but there is no support for stroke.
There is no aim at Codea compatibility, but who is familiar with Codea should feel at home with Load81 in terms of API and structure of the program.
I wrote it mainly because I and my children have fun with Codea but we don't have an iPad at home, and using a real keyboard sometimes can be less frustrating.
The name Load81 originates from the fact that in popular Commodore home computers the command LOAD "*",8,1 would load the first program on the disk starting from the file-specified memory location.
Start Load81 with:
./load81 example.lua
To switch between program and editor mode press the ESC key.
Check the "examples" folder for small examples.
Drawing functions:
Control functions:
To check if a key 'a' is pressed use:
if keyboard.pressed['a'] then ...
SDL Key symbol names are used. You can easily find how a given key is called using the following Lua program:
function draw()
for k,v in pairs(keyboard.pressed) do
print(k)
end
end
(You can find this program under the examples folder).
It is also possible to trap low level SDL events accessing keyboard.state and keyboard.key fields of the keyboard table.
keyboard.state is one of:
"down" -> KEYDOWN event "up" -> KEYUP event "none" -> No event
keyboard.key is set to the key pressed or released when state is different than "none".
mouse.x and mouse.y gives you the current mouse coordinates. To check if a button is pressed use:
if mouse.pressed['1'] then ...
Mouse buttons are called '1', '2', '3', ... and so forth.
Load81 was written by Salvatore Sanfilippo and is released under the BSD two-clause license, see the COPYING file for more information.
The load81 project is dedicated to Jack Tramiel, founder of Commodore.
| Back | FazBrowse Home | New Git URL |