• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

build-aux/H19-Jan-2015-16,33612,197

data/H03-May-2022-594512

docs/H19-Jan-2015-1,4741,055

m4/H19-Jan-2015-9,1998,326

pkgs/w32/H19-Jan-2015-278233

resources/H03-May-2022-639560

src/H03-May-2022-28,71221,071

AUTHORSH A D19-Jan-2015165 54

COPYINGH A D19-Jan-201534.3 KiB675553

ChangeLogH A D19-Jan-20152.1 KiB4638

INSTALLH A D19-Jan-201515.4 KiB371289

Makefile.amH A D19-Jan-201553 42

Makefile.inH A D19-Jan-201524.9 KiB800707

NEWSH A D19-Jan-2015674 2419

READMEH A D19-Jan-20153.7 KiB5140

aclocal.m4H A D19-Jan-201541.1 KiB1,1561,050

configureH A D19-Jan-2015449.8 KiB15,22912,735

configure.acH A D19-Jan-20154.1 KiB144116

README

1Garden of coloured lights
2
3INTRODUCTION
4From the homepage (http://garden.sourceforge.net):
5Garden of coloured lights is an old school 2D vertical shoot-em-up with some innovative elements. Innovative graphics, soundtrack and game concept. The game itself is very challenging and as you progress, you will understand that you are dealing with a true piece of art... Simple and astonishing!
6
7It is free, open source software. It is released under GNU GPL license v3 which means that it is not only free of charge, but you may also download the source code and play with it.
8
9Garden of coloured lights depends only on Allegro game programming library, a multiplatform game programming library. Thanks to that, you can play Garden of coloured lights on Linux, Windows as well as on other systems that have allegro installed.
10
11It is not an easy game, so you will need some skill and patience... And maybe you will appreciate the possibility to use a joystick.
12And yes, it is actually possible to get to stage 4. But it is not easy to beat it even if you have max stats :-)
13
14INSTALLATION:
15unixes: Unpack the tarball and run ./configure && make && make install.
16You will probably want to change your prefix, so you can run something like
17./configure --prefix=/usr && make ...
18If you want to play without installation or if you want to use existing (installed) datafiles, run ./configure --with-datafiles=<path to your data root directory>
19(for those unfamiliar with ./configure && make && make install: ./configure --help tells you how can you modify your build and you can pass multiple options to the configure script at the same time)
20mingw unix: It is pretty much the same, except you have to pass --host=i486-mingw32 (this varies across mingw installations) or something like that to the configure script. The Windows version was compiled on a Linux box, so it works ;-)
21native Windows mingw: You have to install MSYS (http://www.mingw.org/), but if you don't know much about mingw and unix stuff, don't do it, it is not very easy even to find user-friendly installers :-)
22native Windows: Easy, use the provided installer.
23
24EXECUTION:
25Just launch garden (garden.exe) and make sure that allegro DLL (and/or mingw DLL) are "visible" (installed, in the same directory on Windows etc.)
26garden doesn't accept any command line arguments.
27
28CONFIGURATION
29Configuration is done via file init.txt That file is located either in the installation directories (Windows except Vista AFAIK), or in your home directory (~/.garden/init.txt). Scores are stored there and you can set whether you want windowed mode or fullscreen (Windowed = 1 X Windowed = 0 in the "[Misc]" section of the config file)
30A sample init.txt file:
31[Scores]
32Easy = 8843
33Normal = 3027
34Hard = 120
35[Misc]
36Windowed = 0
37
38GAMEPLAY
39Default controls are arrows + keys 'z', 'x', 'c' for shooting and 'v' for "slow".
40From version 1.0.5 on, you get an extra life each 2000 of score every time ;-)
41You learn weapon XP by killing enemies, the bosses don't count.
42If you manage to kill a lot of enemies, the level appearence will change and you will get a small score multiplier bonus
43There originally were three levels, now there is fourth. I have never managed to beat the fourth one, so I guess that you are good enough if you get past the third :-)
44Update: It is possible to beat even the fourth level (without cheating, of course). But I don't know whether I would manage without a joystick.
45
46FAQ
47Q: The rotating options confuse me, I don't know which is which when I want to hit something!
48A: This is a game that requires 108% concentration. You have to keep track on options position and appearence.
49
50Questions, comments, suggestions? I would love to hear from you at bubla@users.sourceforge.net
51