1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
# Raincat
Game Creation Society - Fall 08
https://www.gamecreation.org/
### Screenshot

### Installation (Snap Store)
Raincat is available in the Snap Store at: [](https://snapcraft.io/raincat)
It can be installed with:
```
sudo snap install raincat
```
After installation, Raincat can be launched from the Raincat desktop launcher, or with:
```
snap run raincat
```
### Compilation
You can compile locally with `runhaskell`:
```
runhaskell Setup.lhs --user configure
runhaskell Setup.lhs build
runhaskell Setup.lhs install
```
Compiling from Hackage with `cabal`:
```
cabal install Raincat
```
### Starting the game (compiled)
```
./raincat
```
### Changelog
```
Version 1.2:
- Ported to SDL2
Version 1.1:
- Changed initial item placement from click to select, click to place
to drag n' drop.
- Replaced eraser tool with right click to erase an item
- Now properly detecting mouse clicks after window resize
Version 1.0:
- Initial version
```
### Notes
The Raincat executable was compiled with GHC 6.12.1 on Arch Linux i686
and on Ubuntu 9.10. If you are having problems running the game, the
win32 build runs under wine.
Runtimes for the following libraries are assumed to be installed:
* GLUT
* OpenGL
* SDL2
* SDL2_image
* SDL2_mixer
### Troubleshooting
If you receive the error:
```
user error (Mix_LoadMUS SDL message: Module format not recognized)
```
when trying to run Raincat, this is because your SDL-mixer library
was not compiled with mp3 support. You will need to recompile that
with mp3 support or otherwise obtain a copy with mp3 support in order
to run the game.
### Project Team
```
Garrick Chin - Project Leader/Programmer/Level Designer
Susan Lin - Artist
SooHyun Jang - Artist
Anthony Maurice - Programmer
William Wang - Programmer
Andrew Zheng - Programmer
Rachel Berkowitz - Music Composer
Spencer Ying - Artist/Level Designer
Tal Stramer - Level Editor Programmer
```
### Other Contributors
```
Mikhail Pobolovets - Programmer
Sergei Trofimovich - Programmer
Raahul Kumar - Programmer
Alvaro F. GarcĂa - Programmer
Alex Haydock - Packaging (Snapcraft)
```
|