tbftss/src/battle/player.h

46 lines
1.5 KiB
C
Raw Normal View History

2015-10-20 13:51:49 +02:00
/*
Copyright (C) 2015 Parallel Realities
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"
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
extern void fireGuns(Entity *owner);
extern void fireMissile(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);
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);
2015-11-26 10:53:49 +01:00
extern void setMouse(int x, int y);
2015-11-29 09:34:25 +01:00
extern void addECMEffect(Entity *ent);
2015-10-20 13:51:49 +02:00
extern App app;
extern Battle battle;
extern Colors colors;
extern Entity *player;
extern Entity *self;
2015-11-17 08:23:50 +01:00
extern Game game;