2016-03-30 08:22:58 +02:00
|
|
|
/*
|
|
|
|
Copyright (C) 2015-2016 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 "mine.h"
|
|
|
|
|
|
|
|
static void think(void);
|
2016-03-30 23:41:34 +02:00
|
|
|
static void die(void);
|
2016-03-30 08:22:58 +02:00
|
|
|
static void lookForFighters(void);
|
2016-04-14 12:56:42 +02:00
|
|
|
static void lookForPlayer(void);
|
2016-04-01 11:49:41 +02:00
|
|
|
static void doSplashDamage(void);
|
|
|
|
|
2016-04-01 15:19:55 +02:00
|
|
|
static SDL_Texture *mineWarning = NULL;
|
|
|
|
static SDL_Texture *mineNormal = NULL;
|
2016-04-14 12:56:42 +02:00
|
|
|
static SDL_Texture *shadowMine = NULL;
|
2016-03-30 08:22:58 +02:00
|
|
|
|
2016-04-14 12:56:42 +02:00
|
|
|
Entity *spawnMine(int type)
|
2016-03-30 08:22:58 +02:00
|
|
|
{
|
|
|
|
Entity *mine = spawnEntity();
|
2016-04-01 15:19:55 +02:00
|
|
|
|
2016-04-14 12:56:42 +02:00
|
|
|
if (!mineWarning)
|
2016-04-01 15:19:55 +02:00
|
|
|
{
|
2016-04-14 12:56:42 +02:00
|
|
|
shadowMine = getTexture("gfx/entities/shadowMine.png");
|
2016-04-01 15:19:55 +02:00
|
|
|
mineNormal = getTexture("gfx/entities/mine.png");
|
|
|
|
mineWarning = getTexture("gfx/entities/mineWarning.png");
|
|
|
|
}
|
2016-03-30 08:22:58 +02:00
|
|
|
|
2016-04-14 12:56:42 +02:00
|
|
|
STRNCPY(mine->name, "Mine", MAX_NAME_LENGTH);
|
|
|
|
mine->type = type;
|
2016-03-30 08:22:58 +02:00
|
|
|
mine->health = mine->maxHealth = 1;
|
2016-04-01 18:02:36 +02:00
|
|
|
mine->speed = 1;
|
2016-04-01 11:49:41 +02:00
|
|
|
mine->systemPower = SYSTEM_POWER;
|
2016-04-14 12:56:42 +02:00
|
|
|
mine->texture = (type == ET_MINE) ? mineNormal : shadowMine;
|
2016-03-30 08:22:58 +02:00
|
|
|
mine->action = think;
|
2016-03-30 23:41:34 +02:00
|
|
|
mine->die = die;
|
2016-04-20 10:38:54 +02:00
|
|
|
mine->flags = EF_TAKES_DAMAGE+EF_NO_PLAYER_TARGET+EF_SHORT_RADAR_RANGE+EF_NON_SOLID;
|
2016-04-14 12:56:42 +02:00
|
|
|
|
|
|
|
if (type == ET_SHADOW_MINE)
|
|
|
|
{
|
|
|
|
mine->flags &= ~EF_NO_PLAYER_TARGET;
|
|
|
|
mine->speed = 100 + rand() % 100;
|
|
|
|
mine->speed *= 0.01;
|
|
|
|
}
|
2016-04-01 11:49:41 +02:00
|
|
|
|
2016-04-01 15:19:55 +02:00
|
|
|
SDL_QueryTexture(mine->texture, NULL, NULL, &mine->w, &mine->h);
|
2016-03-30 08:22:58 +02:00
|
|
|
|
|
|
|
return mine;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void think(void)
|
|
|
|
{
|
2016-04-14 12:56:42 +02:00
|
|
|
self->texture = (self->type == ET_MINE) ? mineNormal : shadowMine;
|
2016-04-01 11:49:41 +02:00
|
|
|
|
2016-03-30 08:22:58 +02:00
|
|
|
self->angle += 0.1;
|
|
|
|
|
|
|
|
if (self->angle >= 360)
|
|
|
|
{
|
|
|
|
self->angle -= 360;
|
|
|
|
}
|
|
|
|
|
2016-04-01 18:02:36 +02:00
|
|
|
self->dx *= 0.99;
|
|
|
|
self->dy *= 0.99;
|
|
|
|
|
2016-04-14 12:56:42 +02:00
|
|
|
if (self->type == ET_MINE)
|
|
|
|
{
|
|
|
|
lookForFighters();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lookForPlayer();
|
|
|
|
}
|
2016-04-01 11:49:41 +02:00
|
|
|
|
2016-04-01 15:19:55 +02:00
|
|
|
if (self->systemPower < SYSTEM_POWER && battle.stats[STAT_TIME] % 8 < 4)
|
2016-04-01 11:49:41 +02:00
|
|
|
{
|
|
|
|
playBattleSound(SND_MINE_WARNING, self->x, self->y);
|
|
|
|
|
|
|
|
self->texture = mineWarning;
|
|
|
|
}
|
2016-03-30 08:22:58 +02:00
|
|
|
}
|
|
|
|
|
2016-04-01 11:49:41 +02:00
|
|
|
static void lookForFighters(void)
|
|
|
|
{
|
|
|
|
Entity *e, **candidates;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
candidates = getAllEntsWithin(self->x - (self->w / 2) - DAMAGE_RANGE, self->y - (self->h / 2) - DAMAGE_RANGE, self->w + DAMAGE_RANGE, self->h + DAMAGE_RANGE, self);
|
|
|
|
|
|
|
|
for (i = 0, e = candidates[i] ; e != NULL ; e = candidates[++i])
|
|
|
|
{
|
2016-04-01 15:19:55 +02:00
|
|
|
if (e->side != self->side && e->health > 0 && e->type == ET_FIGHTER && getDistance(self->x, self->y, e->x, e->y) <= TRIGGER_RANGE)
|
2016-04-01 11:49:41 +02:00
|
|
|
{
|
|
|
|
self->systemPower--;
|
|
|
|
|
|
|
|
if (self->systemPower <= 0)
|
|
|
|
{
|
|
|
|
self->health = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self->systemPower = SYSTEM_POWER;
|
|
|
|
}
|
|
|
|
|
2016-04-14 12:56:42 +02:00
|
|
|
static void lookForPlayer(void)
|
|
|
|
{
|
|
|
|
float dx, dy, norm;
|
|
|
|
int distance;
|
|
|
|
|
|
|
|
if (player != NULL)
|
|
|
|
{
|
|
|
|
distance = getDistance(self->x, self->y, player->x, player->y);
|
|
|
|
|
2016-04-14 17:10:21 +02:00
|
|
|
if (distance < SCREEN_WIDTH * 2)
|
2016-04-14 12:56:42 +02:00
|
|
|
{
|
|
|
|
dx = player->x - self->x;
|
|
|
|
dy = player->y - self->y;
|
2016-04-14 17:10:21 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (--self->aiActionTime > 0)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2016-04-14 12:56:42 +02:00
|
|
|
|
2016-04-14 17:10:21 +02:00
|
|
|
dx = rand() % 1000;
|
|
|
|
dx -= rand() % 1000;
|
2016-04-14 12:56:42 +02:00
|
|
|
|
2016-04-14 17:10:21 +02:00
|
|
|
dy = rand() % 1000;
|
|
|
|
dy -= rand() % 1000;
|
2016-04-14 12:56:42 +02:00
|
|
|
|
2016-04-14 17:10:21 +02:00
|
|
|
self->aiActionTime = FPS * (5 + (rand() % 15));
|
|
|
|
}
|
|
|
|
|
|
|
|
norm = sqrt(dx * dx + dy * dy);
|
2016-04-14 12:56:42 +02:00
|
|
|
|
2016-04-14 17:10:21 +02:00
|
|
|
dx /= norm;
|
|
|
|
dy /= norm;
|
|
|
|
|
|
|
|
self->dx = dx * self->speed;
|
|
|
|
self->dy = dy * self->speed;
|
|
|
|
|
|
|
|
if (distance <= TRIGGER_RANGE)
|
|
|
|
{
|
|
|
|
self->systemPower--;
|
|
|
|
|
|
|
|
if (self->systemPower <= 0)
|
2016-04-14 12:56:42 +02:00
|
|
|
{
|
2016-04-14 17:10:21 +02:00
|
|
|
self->health = 0;
|
2016-04-14 12:56:42 +02:00
|
|
|
}
|
2016-04-14 17:10:21 +02:00
|
|
|
|
|
|
|
return;
|
2016-04-14 12:56:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self->systemPower = SYSTEM_POWER;
|
|
|
|
}
|
2016-04-01 11:49:41 +02:00
|
|
|
|
2016-03-30 23:41:34 +02:00
|
|
|
static void die(void)
|
|
|
|
{
|
2016-04-03 09:37:31 +02:00
|
|
|
if (self->killedBy == player)
|
|
|
|
{
|
|
|
|
battle.stats[STAT_MINES_DESTROYED]++;
|
|
|
|
}
|
|
|
|
|
2016-03-30 23:41:34 +02:00
|
|
|
addMineExplosion();
|
|
|
|
|
2016-04-01 11:49:41 +02:00
|
|
|
doSplashDamage();
|
|
|
|
|
|
|
|
playBattleSound(SND_EXPLOSION_5, self->x, self->y);
|
|
|
|
|
2016-03-30 23:41:34 +02:00
|
|
|
self->alive = ALIVE_DEAD;
|
2016-04-14 12:56:42 +02:00
|
|
|
|
|
|
|
updateObjective(self->name, TT_DESTROY);
|
2016-04-14 17:10:21 +02:00
|
|
|
|
|
|
|
runScriptFunction("MINES_DESTROYED %d", battle.stats[STAT_MINES_DESTROYED]);
|
2016-03-30 23:41:34 +02:00
|
|
|
}
|
|
|
|
|
2016-04-01 11:49:41 +02:00
|
|
|
static void doSplashDamage(void)
|
2016-03-30 08:22:58 +02:00
|
|
|
{
|
|
|
|
Entity *e, **candidates;
|
2016-04-01 11:49:41 +02:00
|
|
|
int i, dist;
|
|
|
|
float damage, percent;
|
2016-03-30 08:22:58 +02:00
|
|
|
|
|
|
|
candidates = getAllEntsWithin(self->x - (self->w / 2), self->y - (self->h / 2), self->w, self->h, self);
|
|
|
|
|
|
|
|
for (i = 0, e = candidates[i] ; e != NULL ; e = candidates[++i])
|
|
|
|
{
|
2016-04-01 18:02:36 +02:00
|
|
|
if (e->health > 0 && (e->type == ET_FIGHTER || e->type == ET_MINE) && !(e->flags & EF_IMMORTAL))
|
2016-03-30 08:22:58 +02:00
|
|
|
{
|
2016-04-01 11:49:41 +02:00
|
|
|
dist = getDistance(self->x, self->y, e->x, e->y);
|
|
|
|
|
|
|
|
if (dist <= DAMAGE_RANGE)
|
|
|
|
{
|
|
|
|
percent = dist;
|
|
|
|
percent /= DAMAGE_RANGE;
|
|
|
|
percent = 1 - percent;
|
|
|
|
|
2016-04-20 10:38:54 +02:00
|
|
|
damage = 255;
|
2016-04-01 11:49:41 +02:00
|
|
|
damage *= percent;
|
|
|
|
|
2016-04-01 18:02:36 +02:00
|
|
|
if (e->type == ET_FIGHTER)
|
|
|
|
{
|
|
|
|
damageFighter(e, damage, 0);
|
|
|
|
}
|
|
|
|
else if (e->type == ET_MINE)
|
|
|
|
{
|
|
|
|
e->dx = e->x - self->x;
|
|
|
|
e->dy = e->y - self->y;
|
|
|
|
|
|
|
|
e->dx *= 0.01;
|
|
|
|
e->dy *= 0.01;
|
|
|
|
}
|
2016-04-01 11:49:41 +02:00
|
|
|
}
|
2016-03-30 08:22:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|