jaspervdj / JVGS

JVGS is a free, minimalistic platform game that is not like the others.

Home Page:http://jvgs.sf.net/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

1. Contents

  1. Contents
  2. Notes
  3. Dependencies
  4. Compiling
  5. Running
  6. License

2. Notes

The sounds are not included on github. Get them from the sourceforge mirrors. Actually, get the whole package from sourceforge unless you want an unstable release.

3. Dependencies

  • A sane compiler.
  • CMake (>= 2.6)
  • SDL (>= 1.2)
  • SDL_mixer (>= 1.2)
  • FreeType (recent version)
  • Swig (recent version)
  • Lua (>= 5.1)

On Ubuntu, these dependencies can be installed using the command

sudo apt-get install build-essential cmake swig libfreetype6-dev zlib1g-dev liblua5.1-0-dev libsdl-mixer1.2-dev libsdl1.2-dev

4. Compiling

cd into the jvgs folder, and then:

cmake .
make

5. Running

To execute run the game, use

./src/jvgs

By default, it runs the game in fullscreen mode. If you do not want this, you can run it like this in windowed mode:

./src/jvgs main.lua --width 800 --height 600

JVGS will remember the most recent video mode. To put it in fullscreen mode again, use:

./src/jvgs main.lua --fullscreen yes

6. License

JVGS is released under the WTFPL.

About

JVGS is a free, minimalistic platform game that is not like the others.

http://jvgs.sf.net/

License:Do What The F*ck You Want To Public License


Languages

Language:C++ 95.5%Language:Lua 4.1%Language:C 0.2%Language:Shell 0.1%