Name | Last modified | Size | Description | |
---|---|---|---|---|
Parent Directory | - | |||
COPYRIGHT | 2009-01-05 07:14 | 1.3K | ||
Makefile | 2009-07-07 05:59 | 7.5K | ||
README.arc | 2009-05-04 06:46 | 13K | ||
README.html | 2009-05-04 06:46 | 8.2K | ||
_darcs/ | 2009-10-04 08:08 | - | ||
atdoc.lisp | 2009-02-08 00:18 | 2.9K | ||
blackthorn.asd | 2009-06-07 03:08 | 3.8K | ||
bunnyslayer.asd | 2009-06-07 03:08 | 2.8K | ||
cldoc.lisp | 2009-01-05 07:14 | 2.1K | ||
disp/ | 2009-05-04 06:46 | - | ||
dist.lisp | 2009-05-24 02:02 | 5.3K | ||
load.lisp | 2009-05-24 02:02 | 2.0K | ||
macos/ | 2009-05-30 23:29 | - | ||
profile.lisp | 2009-05-24 02:02 | 2.5K | ||
property.lisp | 2009-05-24 02:02 | 2.1K | ||
sprofile.lisp | 2009-05-24 02:02 | 2.2K | ||
src/ | 2009-05-04 06:46 | - | ||
unix/ | 2009-05-31 06:46 | - | ||
w32/ | 2009-05-25 06:46 | - | ||
Blackthorn is a framework for writing 2D games in Common Lisp. Blackthorn is attempt to write an efficient, dynamic, persistent 2D game engine in an expressive language which makes it easy to write games.
Games are hard to write. The effort needed to write a usable game engine from scratch, especially when dealing with the low-level details of languages like C, make the cost of writing games prohibitive. Libraries like SDL get many of the driver-level graphics details out of the way, but still leave the user writing in C. Libraries like PyGame and LISPBUILDER-SDL wrap more of these low-level details, but still don't provide a full game engine needed for writing substantial games.
There are, of course, game engines which provide this functionality to the user. Game Maker, for example, is an engine which provides everything needed to make a basic game, and an extention language for writing more complex behavior. Using Game Maker, an experienced user can write a basic game in five minutes. However, Game Maker (and similar programs the authors have tried) have some substantial flaws. Problems with Game Maker, specifically, include:
Blackthorn attempts to fix many of the problems above. Blackthorn provides:
Blackthorn uses LISPBUILDER-SDL for graphics support (which internally uses SDL, SDL_image, and SDL_gfx), and either AllegroCache, Elephant, or CL-STORE as an internal database for object persistence.
Blackthorn currently runs on Windows, Linux, and Mac OSX, under Allegro CL, SBCL, CLISP, and ECL. Blackthorn is tested semi-regularly with the following configurations:
The following are required for developing with Blackthorn with the CL-STORE backend.
A compatible Lisp compiler:
Among the compatible compilers, SBCL is suggested because it is (a) free and open source, (b) compatible with Windows, Linux and Mac, and (c) has the best performance of the compilers listed. Allegro CL is also a good choice, but is commercial software (although a free version is available).Direct dependencies:
Windows only (optional):
Download the source using darcs
darcs get http://common-lisp.net/~eslaughter/darcs/blackthorn
To start Blackthorn from the shell, merely call make
make
Optionally, use parameters to specify the build environment, e.g.
make cl=sbcl db=nodb driver=load.lisp system=bunnyslayer
If instead you prefer to start Blackthorn interactively, start your Lisp and
(load "load")
Binary distributions are made semi-frequently and are available for download at http://elliottslaughter.net/bunnyslayer/download.
Blackthorn is free and open source software, see the COPYRIGHT file for details.