starfighter/src/Starfighter.cpp

165 lines
3.8 KiB
C++
Raw Normal View History

/*
Project: Starfighter
Copyright (C) 2003 Parallel Realities
Copyright (C) 2011, 2012 Guus Sliepen
2016-11-17 01:43:03 +01:00
Copyright (C) 2015, 2016 Julie Marchant <onpon4@riseup.net>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
2015-02-26 17:20:36 +01:00
as published by the Free Software Foundation; either version 3
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
2015-02-26 17:20:36 +01:00
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
2015-02-26 17:20:36 +01:00
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "Starfighter.h"
#ifdef __APPLE__
#include "CoreFoundation/CoreFoundation.h"
#endif
int main(int argc, char **argv)
{
bool cheatAttempt;
int cheatCount;
int section;
2015-02-27 20:53:23 +01:00
if (chdir(DATADIR) == -1)
printf("Warning: failed to change directory to \"%s\"\n", DATADIR);
// This makes relative paths work in C++ in Xcode by changing directory to the Resources folder inside the .app bundle
#ifdef __APPLE__
CFBundleRef mainBundle = CFBundleGetMainBundle();
CFURLRef resourcesURL = CFBundleCopyResourcesDirectoryURL(mainBundle);
char path[PATH_MAX];
if (!CFURLGetFileSystemRepresentation(resourcesURL, TRUE, (UInt8 *)path, PATH_MAX))
{
// error!
}
CFRelease(resourcesURL);
chdir(path);
printf("Current directory \"%s\"\n", path);
#endif
// ----------------------------------------------------------------------------
2015-05-21 01:49:37 +02:00
engine_init(); // Must do this first!
cheatAttempt = false;
cheatCount = 0;
if (argc > 1)
{
if (strcmp("--help", argv[1]) == 0)
{
printf("\nProject: Starfighter %s\n", VERSION);
printf("Copyright Parallel Realities 2003\n");
printf("Copyright Guus Sliepen, Astrid S. de Wijn and others 2012\n");
printf("Additional Commands\n");
printf("\t-noaudio Disables sound and music\n");
printf("\t-mono Mono sound output (best for headphones)\n\n");
printf("http://starfighter.nongnu.org\n");
printf("\n");
exit(0);
}
}
for (int i = 1 ; i < argc ; i++)
{
if (strcmp(argv[i], "-cheat") == 0)
cheatAttempt = true;
if (strcmp(argv[i], "-noaudio") == 0)
{
printf("No Audio\n");
engine.useAudio = false;
}
if (strcmp(argv[i], "-mono") == 0)
{
printf("Mono sound output\n");
engine.useAudio = true;
}
if ((strcmp(argv[i], "humans") == 0) && (cheatCount == 0))
cheatCount = 1;
if ((strcmp(argv[i], "do") == 0) && (cheatCount == 1))
cheatCount = 2;
if ((strcmp(argv[i], "it") == 0) && (cheatCount == 2))
cheatCount = 3;
if (((strcmp(argv[i], "better") == 0) && (cheatCount == 3)) ||
(strcmp(argv[i], "humansdoitbetter") == 0))
{
printf("Humans do it better! Cheats enabled.\n");
engine.cheat = true;
}
}
2016-01-02 22:59:48 +01:00
atexit(engine_cleanup);
2015-09-26 14:49:21 +02:00
gfx_init();
2016-01-02 22:59:48 +01:00
engine_setMode();
loadFont();
if (cheatAttempt && !engine.cheat)
{
screen_clear(black);
2015-11-07 01:36:20 +01:00
screen_renderString("That doesn't work anymore", -1, 285, FONT_WHITE);
screen_renderString("Try harder...", -1, 315, FONT_WHITE);
2015-10-27 01:07:31 +01:00
renderer_update();
SDL_Delay(2000);
screen_clear(black);
2015-10-27 01:07:31 +01:00
renderer_update();
SDL_Delay(500);
}
2016-01-02 22:59:48 +01:00
gfx_free();
2015-03-08 15:38:58 +01:00
audio_loadSounds();
initWeapons();
2016-01-02 22:59:48 +01:00
srand(time(NULL));
if (engine.useAudio)
{
Mix_Volume(-1, 100);
Mix_VolumeMusic(engine.musicVolume);
}
alien_defs_init();
colors_init();
// Determine which part of the game we will go to...
section = 0;
game.difficulty = DIFFICULTY_NORMAL;
game_init();
while (true)
{
switch (section)
{
case 0:
section = doTitle();
break;
case 1:
2015-05-28 12:51:45 +02:00
section = intermission();
break;
case 2:
if (game.stationedPlanet == -1)
2016-01-05 02:17:06 +01:00
cutscene_init(0);
section = game_mainLoop();
break;
}
}
return(0);
}