2011-08-24 14:14:44 +02:00
|
|
|
/*
|
|
|
|
Project: Starfighter
|
|
|
|
Copyright (C) 2003 Parallel Realities
|
2015-03-01 21:37:32 +01:00
|
|
|
Copyright (C) 2011, 2012 Guus Sliepen
|
2020-03-05 21:01:46 +01:00
|
|
|
Copyright (C) 2015-2019 Layla Marchant <diligentcircle@riseup.net>
|
2011-08-24 14:14:44 +02:00
|
|
|
|
|
|
|
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
|
2011-08-24 14:14:44 +02:00
|
|
|
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.
|
2011-08-24 14:14:44 +02:00
|
|
|
|
|
|
|
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/>.
|
2011-08-24 14:14:44 +02:00
|
|
|
*/
|
|
|
|
|
2019-06-06 04:13:48 +02:00
|
|
|
#include <libintl.h>
|
|
|
|
#include <locale.h>
|
2017-01-25 16:48:29 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
2016-11-26 00:21:31 +01:00
|
|
|
|
2016-08-04 21:58:38 +02:00
|
|
|
#ifdef __APPLE__
|
|
|
|
#include "CoreFoundation/CoreFoundation.h"
|
|
|
|
#endif
|
|
|
|
|
2017-01-25 16:48:29 +01:00
|
|
|
#include "SDL.h"
|
|
|
|
|
|
|
|
#ifndef NOSOUND
|
|
|
|
#include "SDL_mixer.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "colors.h"
|
|
|
|
#include "defs.h"
|
|
|
|
#include "structs.h"
|
|
|
|
|
|
|
|
#include "alien.h"
|
|
|
|
#include "audio.h"
|
|
|
|
#include "cutscene.h"
|
|
|
|
#include "engine.h"
|
|
|
|
#include "game.h"
|
|
|
|
#include "gfx.h"
|
|
|
|
#include "intermission.h"
|
|
|
|
#include "renderer.h"
|
|
|
|
#include "screen.h"
|
|
|
|
#include "title.h"
|
|
|
|
#include "weapons.h"
|
|
|
|
|
2015-03-05 03:30:23 +01:00
|
|
|
int main(int argc, char **argv)
|
2011-08-24 14:14:44 +02:00
|
|
|
{
|
2016-11-19 17:43:50 +01:00
|
|
|
int cheatAttempt;
|
2015-03-05 03:30:23 +01:00
|
|
|
int cheatCount;
|
|
|
|
int section;
|
2019-06-06 04:13:48 +02:00
|
|
|
|
2016-08-04 17:51:46 +02:00
|
|
|
#ifdef __APPLE__
|
2019-05-27 06:56:51 +02:00
|
|
|
// This makes relative paths work in Xcode by changing directory to the Resources folder inside the .app bundle
|
|
|
|
CFBundleRef mainBundle = CFBundleGetMainBundle();
|
|
|
|
CFURLRef resourcesURL = CFBundleCopyResourcesDirectoryURL(mainBundle);
|
|
|
|
char path[PATH_MAX];
|
|
|
|
if (CFURLGetFileSystemRepresentation(resourcesURL, TRUE, (UInt8 *)path, PATH_MAX))
|
|
|
|
{
|
|
|
|
chdir(path);
|
|
|
|
printf("Current directory \"%s\"\n", path);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (chdir(DATADIR) == -1)
|
|
|
|
printf("Warning: failed to change directory to \"%s\"\n", DATADIR);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
if (chdir(DATADIR) == -1)
|
|
|
|
printf("Warning: failed to change directory to \"%s\"\n", DATADIR);
|
2016-08-04 17:51:46 +02:00
|
|
|
#endif
|
2012-02-27 15:33:58 +01:00
|
|
|
|
2019-06-06 04:13:48 +02:00
|
|
|
setlocale(LC_ALL, "");
|
|
|
|
bindtextdomain("pr-starfighter", "./locale/");
|
|
|
|
textdomain("pr-starfighter");
|
|
|
|
|
2015-05-21 01:49:37 +02:00
|
|
|
engine_init(); // Must do this first!
|
2011-08-24 14:14:44 +02:00
|
|
|
|
2016-11-19 17:43:50 +01:00
|
|
|
cheatAttempt = 0;
|
2015-03-05 03:30:23 +01:00
|
|
|
cheatCount = 0;
|
2011-08-24 14:14:44 +02:00
|
|
|
|
|
|
|
if (argc > 1)
|
|
|
|
{
|
|
|
|
if (strcmp("--help", argv[1]) == 0)
|
|
|
|
{
|
|
|
|
printf("\nProject: Starfighter %s\n", VERSION);
|
2012-02-26 22:25:57 +01:00
|
|
|
printf("Copyright Parallel Realities 2003\n");
|
|
|
|
printf("Copyright Guus Sliepen, Astrid S. de Wijn and others 2012\n");
|
2011-08-24 14:14:44 +02:00
|
|
|
printf("Additional Commands\n");
|
|
|
|
printf("\t-noaudio Disables sound and music\n");
|
|
|
|
printf("\t-mono Mono sound output (best for headphones)\n\n");
|
2015-03-27 03:25:12 +01:00
|
|
|
printf("http://starfighter.nongnu.org\n");
|
2011-08-24 14:14:44 +02:00
|
|
|
printf("\n");
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 1 ; i < argc ; i++)
|
|
|
|
{
|
|
|
|
if (strcmp(argv[i], "-cheat") == 0)
|
2016-11-19 17:43:50 +01:00
|
|
|
cheatAttempt = 1;
|
2011-08-24 14:14:44 +02:00
|
|
|
if (strcmp(argv[i], "-noaudio") == 0)
|
2015-03-05 03:30:23 +01:00
|
|
|
{
|
|
|
|
printf("No Audio\n");
|
2016-11-19 17:43:50 +01:00
|
|
|
engine.useAudio = 0;
|
2015-03-05 03:30:23 +01:00
|
|
|
}
|
2015-02-27 04:16:45 +01:00
|
|
|
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;
|
2015-02-27 19:35:47 +01:00
|
|
|
if (((strcmp(argv[i], "better") == 0) && (cheatCount == 3)) ||
|
2015-03-05 03:30:23 +01:00
|
|
|
(strcmp(argv[i], "humansdoitbetter") == 0))
|
|
|
|
{
|
|
|
|
printf("Humans do it better! Cheats enabled.\n");
|
2016-11-19 17:43:50 +01:00
|
|
|
engine.cheat = 1;
|
2015-03-05 03:30:23 +01:00
|
|
|
}
|
2011-08-24 14:14:44 +02:00
|
|
|
}
|
|
|
|
|
2016-01-02 22:59:48 +01:00
|
|
|
atexit(engine_cleanup);
|
2011-08-24 14:14:44 +02:00
|
|
|
|
2015-09-26 14:49:21 +02:00
|
|
|
gfx_init();
|
2016-01-02 22:59:48 +01:00
|
|
|
engine_setMode();
|
2016-11-25 18:50:32 +01:00
|
|
|
gfx_loadFont();
|
2011-08-24 14:14:44 +02:00
|
|
|
|
2015-02-27 19:35:47 +01:00
|
|
|
if (cheatAttempt && !engine.cheat)
|
2011-08-24 14:14:44 +02:00
|
|
|
{
|
2015-11-07 03:35:07 +01:00
|
|
|
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();
|
2011-08-24 14:14:44 +02:00
|
|
|
SDL_Delay(2000);
|
2015-11-07 03:35:07 +01:00
|
|
|
screen_clear(black);
|
2015-10-27 01:07:31 +01:00
|
|
|
renderer_update();
|
2011-08-24 14:14:44 +02:00
|
|
|
SDL_Delay(500);
|
|
|
|
}
|
|
|
|
|
2016-01-02 22:59:48 +01:00
|
|
|
gfx_free();
|
2015-03-08 15:38:58 +01:00
|
|
|
audio_loadSounds();
|
2011-08-24 14:14:44 +02:00
|
|
|
|
2016-11-25 23:10:08 +01:00
|
|
|
weapons_init();
|
2016-01-02 22:59:48 +01:00
|
|
|
|
|
|
|
srand(time(NULL));
|
|
|
|
|
2017-01-22 06:11:13 +01:00
|
|
|
#ifndef NOSOUND
|
2016-01-02 22:59:48 +01:00
|
|
|
if (engine.useAudio)
|
|
|
|
{
|
|
|
|
Mix_Volume(-1, 100);
|
|
|
|
Mix_VolumeMusic(engine.musicVolume);
|
|
|
|
}
|
2017-01-22 06:11:13 +01:00
|
|
|
#endif
|
2016-01-02 22:59:48 +01:00
|
|
|
|
2015-03-09 01:59:33 +01:00
|
|
|
alien_defs_init();
|
2011-08-24 14:14:44 +02:00
|
|
|
|
2015-06-20 17:31:41 +02:00
|
|
|
colors_init();
|
2011-08-24 14:14:44 +02:00
|
|
|
|
|
|
|
// Determine which part of the game we will go to...
|
2015-03-05 03:30:23 +01:00
|
|
|
section = 0;
|
2011-08-24 14:14:44 +02:00
|
|
|
|
2015-05-21 01:41:43 +02:00
|
|
|
game.difficulty = DIFFICULTY_NORMAL;
|
|
|
|
game_init();
|
2011-08-24 14:14:44 +02:00
|
|
|
|
2016-11-19 17:43:50 +01:00
|
|
|
while (1)
|
2011-08-24 14:14:44 +02:00
|
|
|
{
|
2015-03-05 03:30:23 +01:00
|
|
|
switch (section)
|
2011-08-24 14:14:44 +02:00
|
|
|
{
|
|
|
|
case 0:
|
2016-11-25 23:10:08 +01:00
|
|
|
section = title_show();
|
2011-08-24 14:14:44 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
2015-05-28 12:51:45 +02:00
|
|
|
section = intermission();
|
2011-08-24 14:14:44 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
2015-05-21 01:41:43 +02:00
|
|
|
if (game.stationedPlanet == -1)
|
2016-01-05 02:17:06 +01:00
|
|
|
cutscene_init(0);
|
2015-05-21 01:41:43 +02:00
|
|
|
section = game_mainLoop();
|
2011-08-24 14:14:44 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|