Updated version info.
This commit is contained in:
parent
daf69096b4
commit
10c72dc5fd
|
@ -0,0 +1,5 @@
|
|||
Changelog
|
||||
|
||||
0.1
|
||||
|
||||
* Added initial missions, galactic map, and title screen. Game is playable in a most basic fashion, and a handful of missions are available. Loading and saving is supported (with -DUNIX, these will go to ~/.local/share/tbftss).
|
|
@ -1,5 +1,5 @@
|
|||
# tbftss
|
||||
2D mission-based space shooter, based on the Battle for the Solar System space opera trilogy.
|
||||
2D mission-based space shooter, based on the Battle for the Solar System space opera novel trilogy.
|
||||
|
||||
Website: www.battleforthesolarsystem.com
|
||||
Email: stephenjsweeney@battleforthesolarsystem.com
|
||||
|
@ -12,6 +12,10 @@ gfx/planets/earth.png - modified from the the Blue Marble NASA photograph: http:
|
|||
|
||||
All other graphics are CC BY-NC-SA 3.0, with the following attribution: Copyright 2015, Stephen J Sweeney | www.battleforthesolarsystem.com
|
||||
|
||||
DATA FILES (with the exception of Roboto font)
|
||||
|
||||
CC BY-NC-SA 3.0, with the following attribution: Copyright 2015, Stephen J Sweeney | www.battleforthesolarsystem.com
|
||||
|
||||
SOUND
|
||||
|
||||
35677__jobro__laser1.ogg - Laser 1, by jobro - https://freesound.org/people/jobro/sounds/35677/
|
||||
|
|
3
makefile
3
makefile
|
@ -1,9 +1,8 @@
|
|||
PROG = tbftss
|
||||
|
||||
VERSION = 0.1
|
||||
RELEASE = 1
|
||||
|
||||
CXXFLAGS += `sdl2-config --cflags` -DVERSION=$(VERSION) -DRELEASE=$(RELEASE) -DUNIX=1
|
||||
CXXFLAGS += `sdl2-config --cflags` -DVERSION=$(VERSION) -DUNIX=1
|
||||
CXXFLAGS += -DUNIX
|
||||
CXXFLAGS += $(CFLAGS) -Wall -ansi -pedantic -Werror -Wstrict-prototypes
|
||||
CXXFLAGS += -g -lefence
|
||||
|
|
|
@ -36,7 +36,7 @@ The Star System view shows a list of missions available for that star system. Mi
|
|||
|
||||
<h3>Missions</h3>
|
||||
<p>
|
||||
Each mission has various objectives that the player must finish in order to complete the mission successfully. The mission ends when the player either successfully completes all the objectives, or is killed.
|
||||
Each mission has various objectives that the player must finish in order to complete the mission successfully. The mission ends when the player either successfully completes all the objectives, or is killed. Note: there is no friendly fire between those on the same side (in other words, you need not worry about firing upon your team mates, or them hitting you - no damage will be taken).
|
||||
</p>
|
||||
|
||||
<p>Controls</p>
|
||||
|
|
|
@ -172,7 +172,7 @@ static void draw(void)
|
|||
blit(pandoranWar, SCREEN_WIDTH / 2, 110, 1);
|
||||
|
||||
drawText(10, SCREEN_HEIGHT - 25, 14, TA_LEFT, colors.white, "Copyright Parallel Realities, 2015");
|
||||
drawText(SCREEN_WIDTH - 10, SCREEN_HEIGHT - 25, 14, TA_RIGHT, colors.white, "Version %.2f-%d", VERSION, RELEASE);
|
||||
drawText(SCREEN_WIDTH - 10, SCREEN_HEIGHT - 25, 14, TA_RIGHT, colors.white, "Version %.2f", VERSION);
|
||||
|
||||
if (!showingOptions)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue