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"
|
2015-10-20 13:51:49 +02:00
|
|
|
|
2015-11-16 18:23:56 +01:00
|
|
|
#include "../json/cJSON.h"
|
2015-10-20 13:51:49 +02:00
|
|
|
|
|
|
|
extern SDL_Texture *getTexture(char *filename);
|
|
|
|
extern void doAI(void);
|
|
|
|
extern float getAngle(int x1, int y1, int x2, int y2);
|
|
|
|
extern int getDistance(int x1, int y1, int x2, int y2);
|
|
|
|
extern void addEngineEffect(void);
|
2015-12-07 20:19:41 +01:00
|
|
|
extern void addSmallExplosion(void);
|
2015-10-20 13:51:49 +02:00
|
|
|
extern void addSmallFighterExplosion(void);
|
|
|
|
extern void playBattleSound(int id, int x, int y);
|
2015-10-22 08:08:03 +02:00
|
|
|
extern void updateObjective(char *name, int type);
|
|
|
|
extern void updateCondition(char *name, int type);
|
2015-10-20 13:51:49 +02:00
|
|
|
extern void addHudMessage(SDL_Color c, char *format, ...);
|
2016-05-15 09:19:26 +02:00
|
|
|
extern Entity **getAllEntsInRadius(int x, int y, int radius, Entity *ignore);
|
2015-10-27 08:24:17 +01:00
|
|
|
extern Entity *spawnEntity(void);
|
2015-11-13 17:55:49 +01:00
|
|
|
extern void adjustObjectiveTargetValue(char *name, int type, int amount);
|
2015-11-15 12:31:30 +01:00
|
|
|
extern void attachRope(void);
|
2015-11-16 18:23:56 +01:00
|
|
|
extern char *readFile(char *filename);
|
|
|
|
extern long lookup(char *name);
|
2015-12-12 19:24:23 +01:00
|
|
|
extern long flagsToLong(char *flags, int *add);
|
2015-11-18 17:04:12 +01:00
|
|
|
extern void addShieldSplinterEffect(Entity *ent);
|
2015-11-20 23:52:35 +01:00
|
|
|
extern void completeMission(void);
|
2015-11-28 11:11:20 +01:00
|
|
|
extern void runScriptFunction(char *format, ...);
|
2015-12-13 15:50:54 +01:00
|
|
|
extern void addDebris(int x, int y, int amount);
|
2016-02-27 17:14:14 +01:00
|
|
|
extern char **getFileList(char *dir, int *count);
|
2016-02-28 14:45:17 +01:00
|
|
|
extern char *getTranslatedString(char *string);
|
2016-03-04 15:14:04 +01:00
|
|
|
extern int getJSONValue(cJSON *node, char *name, int defValue);
|
2016-03-12 19:22:48 +01:00
|
|
|
extern char **toTypeArray(char *types, int *numTypes);
|
2016-03-27 12:21:23 +02:00
|
|
|
extern char *getJSONValueStr(cJSON *node, char *name, char *defValue);
|
2016-04-10 10:35:30 +02:00
|
|
|
extern void awardTrophy(char *id);
|
2016-05-15 09:19:26 +02:00
|
|
|
extern void addRandomItem(int x, int y);
|
2016-05-16 11:54:46 +02:00
|
|
|
extern void checkSuspicionLevel(void);
|
2015-10-20 13:51:49 +02:00
|
|
|
|
|
|
|
extern Battle battle;
|
|
|
|
extern Colors colors;
|
2015-10-26 20:16:12 +01:00
|
|
|
extern Entity *player;
|
|
|
|
extern Entity *self;
|
2016-03-07 13:31:43 +01:00
|
|
|
extern Game game;
|