2015-10-20 13:51:49 +02:00
|
|
|
/*
|
2018-04-29 11:01:09 +02:00
|
|
|
Copyright (C) 2015-2018 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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "SDL2/SDL.h"
|
|
|
|
#include "time.h"
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include "structs.h"
|
|
|
|
|
|
|
|
extern void cleanup(void);
|
2018-12-06 18:07:16 +01:00
|
|
|
extern void clearControl(int type);
|
|
|
|
extern void createScreenshotFolder(void);
|
2015-12-18 11:12:37 +01:00
|
|
|
extern void doDevKeys(void);
|
2018-12-06 18:07:16 +01:00
|
|
|
extern void doInput(void);
|
2016-02-23 08:19:31 +01:00
|
|
|
extern void doModalDialog(void);
|
2018-12-06 18:07:16 +01:00
|
|
|
extern void doTrophyAlerts(void);
|
2016-02-23 08:19:31 +01:00
|
|
|
extern void drawModalDialog(void);
|
2018-12-06 18:07:16 +01:00
|
|
|
extern void drawTrophyAlert(void);
|
2016-02-27 17:16:21 +01:00
|
|
|
extern int fileExists(char *filename);
|
|
|
|
extern char *getSaveFilePath(char *filename);
|
2016-02-27 20:16:17 +01:00
|
|
|
extern void init18N(int argc, char *argv[]);
|
2018-12-06 18:07:16 +01:00
|
|
|
extern void initCredits(void);
|
|
|
|
extern void initGameSystem(void);
|
2016-03-03 19:03:07 +01:00
|
|
|
extern void initLookups(void);
|
2018-12-10 14:44:33 +01:00
|
|
|
extern void initSDL(int argc, char *argv[]);
|
2018-12-06 18:07:16 +01:00
|
|
|
extern void initTitle(void);
|
2016-04-23 18:46:47 +02:00
|
|
|
extern int isControl(int type);
|
2018-12-06 18:07:16 +01:00
|
|
|
extern void loadGame(void);
|
|
|
|
extern void loadTestMission(char *filename);
|
|
|
|
extern void prepareScene(void);
|
|
|
|
extern void presentScene(void);
|
2016-05-15 09:19:26 +02:00
|
|
|
extern void saveGame(void);
|
2018-12-06 18:07:16 +01:00
|
|
|
extern void saveScreenshot(void);
|
2015-10-20 13:51:49 +02:00
|
|
|
|
|
|
|
App app;
|
|
|
|
Battle battle;
|
2018-12-06 18:07:16 +01:00
|
|
|
Colors colors;
|
2015-12-18 11:12:37 +01:00
|
|
|
Dev dev;
|
2015-10-26 20:16:12 +01:00
|
|
|
Entity *player;
|
2018-12-06 18:07:16 +01:00
|
|
|
Entity *self;
|
2015-10-20 13:51:49 +02:00
|
|
|
Game game;
|