TunnelJumper v1.0 by kiwibonga
-------------------------

This is a reworked version of my original entry for the Gamedev.net Community Challenge (May 13-16 2011).

We were given 72 hours to create a game, using the theme "U Can't Touch This!"

To see all entries, please visit: http://www.gamedev.net/topic/601519-gamedevnet-community-challenge/page__st__180

This version fixes some (but not all) bugs people found in the original, such as the player going off screen when going too fast and a couple of "infinitely dying forever" issues.

This game is going to be reworked into a commercial release under another name, hopefully featuring pretty art by real artists and a level format that makes sense.

If you're interested in funding this development effort, please contact: kiwibonga@gmail.com

To get the original compo submission for Tunnel Jumper: http://www.kiwibonga.com/kiwibonga_TunnelJumper.zip

Changes in v1.0

- Added "kiwibonga presents" screen
- Fixed (some) collision detection bugs
- Updated jump bar graphics, including a marker showing the power used last jump
- Blue platforms no longer double your speed
- Updated all existing levels
- Added level 4 by my lovely wife Abi :)
- Added config.ini file to set resolution (see below)
- Created this document


---------------
Configuration
---------------

NOTE: If you get an error regarding a missing msvcp100.dll, you need to install the following package:

http://www.microsoft.com/downloads/en/details.aspx?FamilyID=a7b7a05e-6de6-4d3a-a423-37bf0912db84

The config.ini file can be modified to set the resolution. It should contain only a single line in the following format:
[horizontal resolution] [vertical resolution] [0=windowed, 1=fullscreen]

For example, the default config is:
1024 768 0

Meaning 1024 x 768 (windowed)

To make it full screen, you can write:
1024 768 1

The game accepts any arbitrary resolution if your hardware supports it.

A few standard resolutions:

Windowed:
640 480 0
800 600 0
1024 768 0
1280 1024 0
1600 1200 0

Full screen:
640 480 1
800 600 1
1024 768 1
1280 1024 1
1600 1200 1

Widescreen resolutions:

Windowed:
1024 600 0
1280 960 0
1440 900 0
1920 1080 0

Full screen:
1024 600 1
1280 960 1
1440 900 1
1920 1080 1

---------------
Licensing info
---------------

TunnelJumper makes use of the following libraries:

- SDL (see license/SDL.txt)
- GLEW (see license/GLEW.txt)
- CEGUI (see license/CEGUI.txt)
	
TunnelJumper may be freely redistributed provided the original .zip file is not altered. All rights to the content used in TunnelJumper are reserved, with one exception. The amazing music (hammertime.mod) is hereby released into the public domain. Reusing it in your projects will surely bring you great luck. It may be credited as "kiwibonga - Time of the hammer."

