starfish is a simple 2D graphics and user input library for Go built on SDL.
While it is built on SDL, unlike many SDL wrappers, starfish is not meant to replicate the SDL API, only leverage it. Don't expect knowledge of SDL to be beneficial when using this library.
This is done for two reasons:
- If a better foundation comes along or SDL is no longer sufficient, it will be a simple matter to reimplement starfish with it.
- SDL has more options than most programmers care about for simple applications. A greater number of options leads to greater complexity and a higher learning curve.
Install GCC, SDL, SDL_gfx, SDL_image, and SDL_ttf:
-
RHEL-like systems the following should work:
yum install gcc SDL-devel SDL_gfx-devel SDL_image-devel SDL_ttf-devel
-
Arch Linux the following should work:
pacman -S gcc sdl2 sdl2_gfx sdl2_image sdl2_ttf
-
Anyone feel free to add instructions for other systems here.
To install starfish, the following should pull and install all four starfish packages:
go get github.com/gtalent/starfish/gfx
go get github.com/gtalent/starfish/input
cd $GOPATH/src
mkdir -p gtalent
cd gtalent
rm -rf starfish
git clone https://github.com/gtalent/starfish.git
cd starfish
git checkout origin/<release or tag you want here>
make install