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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2015-12-05 09:15:58 +01:00
|
|
|
#include "../common.h"
|
2016-03-03 19:03:07 +01:00
|
|
|
#include "../json/cJSON.h"
|
2015-12-05 09:15:58 +01:00
|
|
|
|
2015-10-20 13:51:49 +02:00
|
|
|
#include "time.h"
|
|
|
|
|
|
|
|
extern long lookup(char *name);
|
|
|
|
extern char *readFile(char *filename);
|
|
|
|
extern SDL_Texture *getTexture(char *filename);
|
|
|
|
extern void startSectionTransition(void);
|
|
|
|
extern void endSectionTransition(void);
|
2016-05-29 12:48:11 +02:00
|
|
|
extern void playMusic(char *filename, int loop);
|
2015-10-20 13:51:49 +02:00
|
|
|
extern void stopMusic(void);
|
2015-10-23 08:08:18 +02:00
|
|
|
extern void initPlayer(void);
|
2015-12-12 19:24:23 +01:00
|
|
|
extern long flagsToLong(char *flags, int *add);
|
2015-10-26 18:27:43 +01:00
|
|
|
extern Entity *spawnWaypoint(void);
|
2015-11-02 20:18:26 +01:00
|
|
|
extern void selectWidget(const char *name, const char *group);
|
2016-04-09 14:21:19 +02:00
|
|
|
extern Entity *spawnJumpgate(int side, long flags);
|
2015-11-14 09:41:31 +01:00
|
|
|
extern void failIncompleteObjectives(void);
|
2015-11-29 17:50:06 +01:00
|
|
|
extern void completeConditions(void);
|
2015-11-21 18:32:39 +01:00
|
|
|
extern void retreatEnemies(void);
|
2015-11-28 11:11:20 +01:00
|
|
|
extern void initScript(cJSON *missionJSON);
|
2015-12-31 12:25:19 +01:00
|
|
|
extern void countNumEnemies(void);
|
2016-02-27 19:08:43 +01:00
|
|
|
extern void initMissionInfo(void);
|
2016-02-27 20:16:17 +01:00
|
|
|
extern char *getTranslatedString(char *string);
|
2016-02-29 11:47:10 +01:00
|
|
|
extern void updateStarSystemMissions(void);
|
|
|
|
extern void updateChallengeMissions(void);
|
2016-05-15 09:19:26 +02:00
|
|
|
extern char *getBackgroundTextureName(unsigned long n);
|
|
|
|
extern char *getPlanetTextureName(unsigned long n);
|
|
|
|
extern char *getMusicFilename(unsigned long n);
|
2016-03-04 15:14:04 +01:00
|
|
|
extern int getJSONValue(cJSON *node, char *name, int defValue);
|
|
|
|
extern char *getJSONValueStr(cJSON *node, char *name, char *defValue);
|
2016-04-09 19:13:59 +02:00
|
|
|
extern void addAllToQuadtree(void);
|
2016-03-17 09:11:52 +01:00
|
|
|
extern void loadObjectives(cJSON *node);
|
|
|
|
extern void loadPlayer(cJSON *node);
|
|
|
|
extern void loadCapitalShips(cJSON *node);
|
|
|
|
extern void loadFighters(cJSON *node);
|
|
|
|
extern void loadItems(cJSON *node);
|
|
|
|
extern void loadLocations(cJSON *node);
|
|
|
|
extern void loadSpawners(cJSON *node);
|
2016-04-13 12:04:28 +02:00
|
|
|
extern void loadChallenge(Mission *mission, cJSON *node);
|
2016-04-14 12:56:42 +02:00
|
|
|
extern Entity *spawnMine(int type);
|
2016-04-04 12:23:32 +02:00
|
|
|
extern void activateNextWaypoint(void);
|
2016-05-15 09:19:26 +02:00
|
|
|
extern void awardStatsTrophies(void);
|
|
|
|
extern void awardPostMissionTrophies(void);
|
2016-06-03 08:41:44 +02:00
|
|
|
extern void awardCraftTrophy(void);
|
2016-07-20 08:13:40 +02:00
|
|
|
extern void setInitialPlayerAngle(void);
|
2016-08-20 12:42:10 +02:00
|
|
|
extern void addEpicLivesObjective(void);
|
2016-08-28 19:48:55 +02:00
|
|
|
extern void addEpicKillsObjective(void);
|
2015-10-20 13:51:49 +02:00
|
|
|
|
|
|
|
extern Battle battle;
|
2016-03-27 12:08:44 +02:00
|
|
|
extern Dev dev;
|
2015-10-26 20:16:12 +01:00
|
|
|
extern Entity *player;
|
2015-10-25 01:01:46 +02:00
|
|
|
extern Game game;
|