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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "SDL2/SDL.h"
|
|
|
|
#include "time.h"
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include "structs.h"
|
|
|
|
|
|
|
|
extern void cleanup(void);
|
|
|
|
extern void initSDL(void);
|
|
|
|
extern void initGameSystem(void);
|
|
|
|
extern void initTitle(void);
|
2015-10-22 08:08:03 +02:00
|
|
|
extern void loadTestMission(char *filename);
|
2015-10-20 13:51:49 +02:00
|
|
|
extern void saveScreenshot(void);
|
2015-11-23 15:52:11 +01:00
|
|
|
extern void doMouseDown(SDL_MouseButtonEvent *event);
|
|
|
|
extern void doMouseUp(SDL_MouseButtonEvent *event);
|
2015-11-24 08:16:48 +01:00
|
|
|
extern void doMouseWheel(SDL_MouseWheelEvent *event);
|
2016-02-14 12:07:15 +01:00
|
|
|
extern void doMouseMotion(SDL_MouseMotionEvent *event);
|
2015-12-18 11:12:37 +01:00
|
|
|
extern void doDevKeys(void);
|
2015-12-20 17:13:35 +01:00
|
|
|
extern void expireTexts(int all);
|
2016-02-22 18:27:36 +01:00
|
|
|
extern void prepareScene(void);
|
|
|
|
extern void presentScene(void);
|
2016-02-23 08:19:31 +01:00
|
|
|
extern void doModalDialog(void);
|
|
|
|
extern void drawModalDialog(void);
|
2016-02-27 17:16:21 +01:00
|
|
|
extern void loadGame(void);
|
|
|
|
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[]);
|
2016-03-03 19:03:07 +01:00
|
|
|
extern void initLookups(void);
|
|
|
|
extern void initGame(void);
|
2016-03-05 13:35:19 +01:00
|
|
|
extern void doKeyDown(SDL_KeyboardEvent *event);
|
|
|
|
extern void doKeyUp(SDL_KeyboardEvent *event);
|
2016-03-06 10:48:09 +01:00
|
|
|
extern void createScreenshotFolder(void);
|
2016-04-23 18:46:47 +02:00
|
|
|
extern int isControl(int type);
|
|
|
|
extern void clearControl(int type);
|
2015-10-20 13:51:49 +02:00
|
|
|
|
|
|
|
App app;
|
|
|
|
Colors colors;
|
|
|
|
Battle battle;
|
2015-12-18 11:12:37 +01:00
|
|
|
Dev dev;
|
2015-10-26 20:16:12 +01:00
|
|
|
Entity *self;
|
|
|
|
Entity *player;
|
2015-10-20 13:51:49 +02:00
|
|
|
Game game;
|