2015-10-20 13:51:49 +02:00
|
|
|
/*
|
2016-02-21 16:50:27 +01:00
|
|
|
Copyright (C) 2015-2016 Parallel Realities
|
2015-10-20 13:51:49 +02:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
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
|
|
|
|
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
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2015-12-05 09:15:58 +01:00
|
|
|
#include "../common.h"
|
|
|
|
|
|
|
|
#include "../json/cJSON.h"
|
|
|
|
|
2016-02-27 20:16:17 +01:00
|
|
|
#include "locale.h"
|
|
|
|
|
2015-10-20 13:51:49 +02:00
|
|
|
#include "SDL2/SDL_image.h"
|
|
|
|
#include "SDL2/SDL_mixer.h"
|
|
|
|
#include "SDL2/SDL_ttf.h"
|
|
|
|
|
2016-02-22 18:28:23 +01:00
|
|
|
extern void prepareScene(void);
|
|
|
|
extern void presentScene(void);
|
2015-10-20 13:51:49 +02:00
|
|
|
extern int fileExists(char *filename);
|
|
|
|
extern char *readFile(char *filename);
|
|
|
|
extern int writeFile(char *filename, char *data);
|
|
|
|
extern char *getSaveFilePath(char *filename);
|
|
|
|
extern void initSounds(void);
|
|
|
|
extern void loadFighterDefs(void);
|
2015-12-07 20:19:14 +01:00
|
|
|
extern void loadCapitalShipDefs(void);
|
2015-11-16 12:27:03 +01:00
|
|
|
extern void loadItemDefs(void);
|
2015-10-20 13:51:49 +02:00
|
|
|
extern void initFonts(void);
|
|
|
|
extern void initBulletDefs(void);
|
|
|
|
extern void initGame(void);
|
2016-02-29 11:47:41 +01:00
|
|
|
extern void initStats(void);
|
2015-10-20 13:51:49 +02:00
|
|
|
extern void initStarSystems(void);
|
2016-02-27 13:14:29 +01:00
|
|
|
extern void initChallenges(void);
|
2015-10-20 13:51:49 +02:00
|
|
|
extern void initWidgets(void);
|
2016-02-29 15:42:46 +01:00
|
|
|
extern void initBackground(void);
|
2016-03-03 17:16:12 +01:00
|
|
|
extern void initResources(void);
|
2016-03-05 09:42:35 +01:00
|
|
|
extern void initControls(void);
|
2015-10-20 13:51:49 +02:00
|
|
|
extern void destroyLookups(void);
|
|
|
|
extern void destroyFonts(void);
|
|
|
|
extern void destroySounds(void);
|
|
|
|
extern void destroyGame(void);
|
|
|
|
extern void destroyFighterDefs(void);
|
2015-12-07 20:19:14 +01:00
|
|
|
extern void destroyCapitalShipDefs(void);
|
2015-10-20 13:51:49 +02:00
|
|
|
extern void destroyBulletDefs(void);
|
2015-11-16 12:27:03 +01:00
|
|
|
extern void destroyItemDefs(void);
|
2015-10-20 13:51:49 +02:00
|
|
|
extern void destroyStarSystems(void);
|
|
|
|
extern void destroyBattle(void);
|
|
|
|
extern void destroyTextures(void);
|
|
|
|
extern void destroyGalacticMap(void);
|
|
|
|
extern void destroyWidgets(void);
|
2016-03-03 17:16:12 +01:00
|
|
|
extern void destroyResources(void);
|
2015-12-20 17:13:35 +01:00
|
|
|
extern void expireTexts(int all);
|
2015-11-23 15:52:11 +01:00
|
|
|
extern void initInput(void);
|
2016-02-23 08:19:31 +01:00
|
|
|
extern void initModalDialog(void);
|
2015-11-24 23:46:52 +01:00
|
|
|
extern void createSaveFolder(void);
|
2016-02-27 20:16:17 +01:00
|
|
|
extern void setLanguage(char *applicationName, char *languageCode);
|
2016-03-03 19:03:07 +01:00
|
|
|
extern char *getLookupName(char *prefix, long num);
|
|
|
|
extern long lookup(char *name);
|
2016-03-12 19:22:48 +01:00
|
|
|
extern void initStars(void);
|
2016-03-27 12:32:38 +02:00
|
|
|
extern void initTrophies(void);
|
2016-05-29 10:38:05 +02:00
|
|
|
extern void destroyCredits(void);
|
2015-10-20 13:51:49 +02:00
|
|
|
|
|
|
|
extern App app;
|
|
|
|
extern Colors colors;
|