Misc updates.
This commit is contained in:
parent
73d7f059ba
commit
238c2688d3
|
@ -29,8 +29,8 @@ CC BY-NC-SA 3.0, with the following attribution: Copyright 2015-2016, Stephen J
|
|||
### SOUND
|
||||
|
||||
* 000000_large_explosion.ogg - created by combining
|
||||
** EXPLODE.WAV, by dkmedic (CC-0) - https://freesound.org/people/dkmedic/sounds/104447/
|
||||
** Huge rocket launcher.wav, by CGEffex (CC-BY) https://freesound.org/people/CGEffex/sounds/100772/
|
||||
* EXPLODE.WAV, by dkmedic (CC-0) - https://freesound.org/people/dkmedic/sounds/104447/
|
||||
* Huge rocket launcher.wav, by CGEffex (CC-BY) https://freesound.org/people/CGEffex/sounds/100772/
|
||||
* 18380__inferno__hvrl.ogg - hvrl, by inferno (CC-Sampling+) - https://freesound.org/people/inferno/sounds/18380/
|
||||
* 18382__inferno__hvylas.ogg - hvylas, by inferno (CC-Sampling+) - https://freesound.org/people/inferno/sounds/18382/
|
||||
* 42106__marcuslee__laser-wrath-4.ogg - Laser Wrath 4, by marcusless (CC-Sampling+) - https://freesound.org/people/marcuslee/sounds/42106/
|
||||
|
@ -80,3 +80,7 @@ CC BY-NC-SA 3.0, with the following attribution: Copyright 2015-2016, Stephen J
|
|||
* DST-RailJet-LongSeamlessLoop.ogg, by Deceased Superior Technician (CC-BY) - http://opengameart.org/content/railjet-long-seamless-loop
|
||||
* covert_operations.mp3, by artisticdude (CC-0) - http://opengameart.org/content/covert-operations
|
||||
* Tactical Pursuit.mp3, by Matthew Pablo (CC-BY) - http://opengameart.org/content/tactical-pursuit
|
||||
|
||||
## ABOUT
|
||||
|
||||
This is a work of fiction. Names, characters, businesses, places, events and incidents are either the products of the author's imagination or used in a fictitious manner. Any resemblance to actual persons, living or dead, or actual events is purely coincidental. The Battle for the Solar System : The Pandoran War is © 2015-2016, Stephen J Sweeney, All Rights Reserved. The Battle for the Solar System and all related materials (including, but not limited to, characters, setting, and story elements) are © 2009-2016, Stephen J Sweeney, All Rights Reserved.
|
||||
|
|
|
@ -22,6 +22,8 @@ NUM_GUNS=`find data/turrets/* | wc -l`
|
|||
NUM_CAPS=`find data/capitalShips/* | wc -l`
|
||||
TOTAL_CRAFT=$(($NUM_CRAFT + $NUM_FIGHTERS + $NUM_GUNS + $NUM_CAPS))
|
||||
|
||||
REVISIONS=`git rev-list --all --count`
|
||||
|
||||
LOCALE=`cat locale/tbftss.pot | grep msgid | wc -l`
|
||||
|
||||
echo "# Statistics" > $STATS_FILE
|
||||
|
@ -42,3 +44,6 @@ echo "* Number of trophies: $NUM_TROPHIES" >> $STATS_FILE
|
|||
echo "" >> $STATS_FILE
|
||||
|
||||
echo "* Translatable strings: $LOCALE" >> $STATS_FILE
|
||||
echo "" >> $STATS_FILE
|
||||
|
||||
echo "* Number of GIT revisions: $REVISIONS" >> $STATS_FILE
|
||||
|
|
|
@ -155,7 +155,7 @@ void initGameSystem(void)
|
|||
|
||||
for (i = 0 ; i < numInitFuns ; i++)
|
||||
{
|
||||
showLoadingStep(i, numInitFuns);
|
||||
showLoadingStep(i + 1, numInitFuns);
|
||||
|
||||
initFuncs[i]();
|
||||
}
|
||||
|
|
18
stats.md
18
stats.md
|
@ -1,15 +1,17 @@
|
|||
# Statistics
|
||||
|
||||
* Lines of code: 16847
|
||||
* Size of source: 523K
|
||||
* Size of data: 478K
|
||||
* Size of graphics: 3.2M
|
||||
* Lines of code: 17351
|
||||
* Size of source: 535K
|
||||
* Size of data: 489K
|
||||
* Size of graphics: 3.4M
|
||||
* Size of sound: 638K
|
||||
* Size of music: 53M
|
||||
|
||||
* Number of missions: 56
|
||||
* Number of missions: 59
|
||||
* Number of challenges: 42
|
||||
* Number of spacecraft: 46
|
||||
* Number of trophies: 41
|
||||
* Number of spacecraft: 47
|
||||
* Number of trophies: 49
|
||||
|
||||
* Translatable strings: 620
|
||||
* Translatable strings: 643
|
||||
|
||||
* Number of GIT revisions: 981
|
||||
|
|
Loading…
Reference in New Issue