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"
|
2016-03-27 12:21:23 +02:00
|
|
|
#include "../json/cJSON.h"
|
2015-10-20 13:51:49 +02:00
|
|
|
|
2015-10-31 11:00:46 +01:00
|
|
|
#define MAX_SELECTABLE_PLAYERS 8
|
2015-11-23 11:14:28 +01:00
|
|
|
#define MAX_SELECTABLE_TARGETS 8
|
2015-10-31 11:00:46 +01:00
|
|
|
|
2015-10-26 20:16:12 +01:00
|
|
|
extern void fireGuns(Entity *owner);
|
|
|
|
extern void fireMissile(Entity *owner);
|
2015-12-23 17:25:25 +01:00
|
|
|
extern void fireRocket(Entity *owner);
|
2015-10-20 13:51:49 +02:00
|
|
|
extern void applyFighterThrust(void);
|
2015-11-26 10:53:49 +01:00
|
|
|
extern void applyFighterBrakes(void);
|
2015-10-20 13:51:49 +02:00
|
|
|
extern int getDistance(int x1, int y1, int x2, int y2);
|
2015-10-31 00:31:20 +01:00
|
|
|
extern void addHudMessage(SDL_Color c, char *format, ...);
|
2015-12-10 11:05:00 +01:00
|
|
|
extern float mod(float n, float x);
|
2015-11-15 18:12:04 +01:00
|
|
|
extern void playSound(int id);
|
2015-11-14 09:41:31 +01:00
|
|
|
extern void failMission(void);
|
2015-11-23 15:52:11 +01:00
|
|
|
extern float getAngle(int x1, int y1, int x2, int y2);
|
2015-11-23 11:14:28 +01:00
|
|
|
extern int collision(int x1, int y1, int w1, int h1, int x2, int y2, int w2, int h2);
|
2016-02-28 14:45:17 +01:00
|
|
|
extern char *getTranslatedString(char *string);
|
2015-11-29 09:34:25 +01:00
|
|
|
extern void addECMEffect(Entity *ent);
|
2016-03-05 14:21:17 +01:00
|
|
|
extern int isControl(int type);
|
2016-03-03 19:03:07 +01:00
|
|
|
extern void clearControl(int type);
|
2016-03-27 12:21:23 +02:00
|
|
|
extern long lookup(char *name);
|
|
|
|
extern Entity *spawnFighter(char *name, int x, int y, int side);
|
|
|
|
extern int isAcceptControl(void);
|
|
|
|
extern void resetAcceptControls(void);
|
2016-04-04 12:40:13 +02:00
|
|
|
extern void awardTrophy(char *id);
|
2016-05-15 09:19:26 +02:00
|
|
|
extern long flagsToLong(char *flags, int *add);
|
2015-10-20 13:51:49 +02:00
|
|
|
|
|
|
|
extern App app;
|
|
|
|
extern Battle battle;
|
2015-10-31 00:31:20 +01:00
|
|
|
extern Colors colors;
|
2015-12-18 11:12:37 +01:00
|
|
|
extern Dev dev;
|
2015-10-26 20:16:12 +01:00
|
|
|
extern Entity *player;
|
|
|
|
extern Entity *self;
|
2015-11-17 08:23:50 +01:00
|
|
|
extern Game game;
|