tbftss/src/battle/player.h

57 lines
1.9 KiB
C
Raw Normal View History

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