2015-10-20 13:51:49 +02:00
|
|
|
/*
|
|
|
|
Copyright (C) 2015 Parallel Realities
|
|
|
|
|
|
|
|
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"
|
|
|
|
|
2015-10-20 13:51:49 +02:00
|
|
|
#include "SDL2/SDL_image.h"
|
|
|
|
#include "SDL2/SDL_mixer.h"
|
|
|
|
#include "SDL2/SDL_ttf.h"
|
|
|
|
|
|
|
|
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 initLookups(void);
|
|
|
|
extern void initBattle(void);
|
|
|
|
extern void initGame(void);
|
|
|
|
extern void initStarSystems(void);
|
|
|
|
extern void initWidgets(void);
|
|
|
|
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);
|
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);
|
2015-11-24 23:46:52 +01:00
|
|
|
extern void createSaveFolder(void);
|
2015-12-03 00:20:19 +01:00
|
|
|
extern char *getFileLocation(char *filename);
|
2015-10-20 13:51:49 +02:00
|
|
|
|
|
|
|
extern App app;
|
|
|
|
extern Colors colors;
|