https://github.com/landakram/doodle
https://github.com/landakram/doodle
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/landakram/doodle
- Owner: landakram
- Created: 2019-04-29T05:55:05.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-04T18:36:32.000Z (almost 6 years ago)
- Last Synced: 2025-01-19T06:30:48.000Z (3 months ago)
- Language: Scheme
- Size: 53.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Welcome to doodle - A minimal 'framework' for your games, visualisations etc.
Doodle is written in CHICKEN scheme, which is available at
http://www.call-cc.org.It abstracts simple graphic rountines and window handling on top of
cairo / SDL which should make visualisation tasks and exporting these
drawings as well as writing games more fun and easy.doodle also provides a simple event loop model which has got its
inspiration from the LUA Löve framework, making it easy to do
animations and move sprites around.Doodle comes with an experimental (which means undocumented) sprite
collision detection mechanism.To install doodle you can use CHICKEN schemes chicken-install tool:
$ chicken-install doodle
Examples:
- The tennis game has been the first game written in doodle. You can
grab tennis from bitbucket: https://bitbucket.org/ckeen/tennis
- A graphical game of life has been published at:
https://bitbucket.org/ckeen/game-of-life
- A turtle graphic system drawing lindenmayer plants has been published at:
https://bitbucket.org/ckeen/game-of-life/overview
- Beesteroids, an Asteroids clone done for a talk at FrOSCon 2012:
https://bitbucket.org/ckeen/beesteroids (slides are at
http://pestilenz.org/~ckeen/little-gamer.pdf)If you know about other programs written with doodle, please let me
know, so I can add them to this list!Doodle is available under the BSD license.