2018-01-25 08:41:10 +01:00
|
|
|
/*
|
|
|
|
Copyright (C) 2018 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 "entities.h"
|
|
|
|
|
2018-01-26 08:56:12 +01:00
|
|
|
void animateEntity(void);
|
|
|
|
static void applyDamage(int damage);
|
|
|
|
|
2018-01-25 08:41:10 +01:00
|
|
|
Entity *createEntity(void)
|
|
|
|
{
|
|
|
|
Entity *e;
|
|
|
|
|
|
|
|
e = malloc(sizeof(Entity));
|
|
|
|
memset(e, 0, sizeof(Entity));
|
|
|
|
world.entityTail->next = e;
|
|
|
|
world.entityTail = e;
|
|
|
|
|
|
|
|
e->uniqueId = game.entityCounter++;
|
|
|
|
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
void initEntity(Entity *e)
|
|
|
|
{
|
|
|
|
e->sprite[0] = e->sprite[1] = e->sprite[2] = -1;
|
|
|
|
|
|
|
|
e->environment = ENV_AIR;
|
|
|
|
e->alive = ALIVE_ALIVE;
|
|
|
|
|
|
|
|
e->isOnGround = 0;
|
|
|
|
e->isSolid = 0;
|
|
|
|
e->isStatic = 0;
|
|
|
|
e->isMissionTarget = 0;
|
|
|
|
|
|
|
|
e->health = e->healthMax = 1;
|
|
|
|
|
|
|
|
e->facing = FACING_LEFT;
|
|
|
|
|
|
|
|
e->spriteFrame = -1;
|
|
|
|
e->spriteTime = 0;
|
|
|
|
|
|
|
|
e->dx = e->dy = 0;
|
|
|
|
|
|
|
|
e->flags = 0;
|
|
|
|
|
|
|
|
e->owner = NULL;
|
|
|
|
|
|
|
|
e->thinkTime = 0;
|
|
|
|
|
|
|
|
e->plane = PLANE_BACKGROUND;
|
2018-01-26 08:56:12 +01:00
|
|
|
|
|
|
|
e->animate = animateEntity;
|
|
|
|
e->applyDamage = applyDamage;
|
2018-01-25 08:41:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SDL_Rect *getEntityBounds(Entity *e)
|
|
|
|
{
|
|
|
|
e->bounds.x = e->x;
|
|
|
|
e->bounds.y = e->y;
|
|
|
|
e->bounds.w = e->w;
|
|
|
|
e->bounds.h = e->h;
|
|
|
|
|
|
|
|
return &e->bounds;
|
|
|
|
}
|
|
|
|
|
|
|
|
int getCurrentEntitySprite(Entity *e)
|
|
|
|
{
|
|
|
|
if (e->alive == ALIVE_ALIVE)
|
|
|
|
{
|
|
|
|
return e->sprite[e->facing];
|
|
|
|
}
|
|
|
|
|
|
|
|
return e->sprite[FACING_DIE];
|
|
|
|
}
|
|
|
|
|
2018-01-26 08:56:12 +01:00
|
|
|
void animateEntity(void)
|
2018-01-25 08:41:10 +01:00
|
|
|
{
|
|
|
|
Sprite *spr;
|
|
|
|
|
2018-01-26 08:56:12 +01:00
|
|
|
if (self->spriteTime != -1)
|
2018-01-25 08:41:10 +01:00
|
|
|
{
|
2018-01-26 08:56:12 +01:00
|
|
|
self->spriteTime--;
|
2018-01-25 08:41:10 +01:00
|
|
|
|
2018-01-26 08:56:12 +01:00
|
|
|
if (self->spriteTime <= 0)
|
2018-01-25 08:41:10 +01:00
|
|
|
{
|
2018-01-26 08:56:12 +01:00
|
|
|
spr = getSpriteByIndex(getCurrentEntitySprite(self));
|
|
|
|
self->spriteFrame = wrap(self->spriteFrame + 1, 0, 1);
|
|
|
|
self->spriteTime = 0;
|
|
|
|
self->w = spr->w;
|
|
|
|
self->h = spr->h;
|
2018-01-25 08:41:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void setEntitySize(Entity *e)
|
|
|
|
{
|
|
|
|
Sprite *spr;
|
|
|
|
|
|
|
|
spr = getSpriteByIndex(getCurrentEntitySprite(e));
|
|
|
|
e->w = spr->w;
|
|
|
|
e->h = spr->h;
|
|
|
|
}
|
|
|
|
|
|
|
|
float bounce(Entity *e, float x)
|
|
|
|
{
|
|
|
|
if (!(e->flags & EF_BOUNCES))
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else if (e->flags & EF_FRICTIONLESS)
|
|
|
|
{
|
|
|
|
return -x;
|
|
|
|
}
|
|
|
|
|
|
|
|
x = -x * FRICTION;
|
|
|
|
|
|
|
|
if (x > -1 && x < 1)
|
|
|
|
{
|
|
|
|
e->flags &= ~EF_BOUNCES;
|
|
|
|
x = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
void teleport(Entity *e, float tx, float ty)
|
|
|
|
{
|
|
|
|
e->tx = tx;
|
|
|
|
e->ty = ty;
|
|
|
|
|
|
|
|
e->flags |= EF_TELEPORTING;
|
|
|
|
|
|
|
|
addTeleportStars(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
void activateEntities(char *names, int activate)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-01-27 12:55:15 +01:00
|
|
|
void teleportEntity(Entity *e, float tx, float ty)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-01-26 08:56:12 +01:00
|
|
|
static void applyDamage(int damage)
|
2018-01-25 08:41:10 +01:00
|
|
|
{
|
2018-01-26 08:56:12 +01:00
|
|
|
if (self->health < 0)
|
2018-01-25 08:41:10 +01:00
|
|
|
{
|
2018-01-26 08:56:12 +01:00
|
|
|
self->health = 0;
|
|
|
|
self->alive = ALIVE_ALIVE;
|
2018-01-25 08:41:10 +01:00
|
|
|
}
|
|
|
|
|
2018-01-26 08:56:12 +01:00
|
|
|
self->health -= damage;
|
2018-01-25 08:41:10 +01:00
|
|
|
|
2018-01-26 08:56:12 +01:00
|
|
|
if (self->health > 0)
|
2018-01-25 08:41:10 +01:00
|
|
|
{
|
2018-01-26 08:56:12 +01:00
|
|
|
self->thinkTime = 0;
|
2018-01-25 08:41:10 +01:00
|
|
|
|
2018-01-26 08:56:12 +01:00
|
|
|
self->facing = self->x < world.bob->x ? FACING_RIGHT : FACING_LEFT;
|
2018-01-25 08:41:10 +01:00
|
|
|
|
2018-01-26 08:56:12 +01:00
|
|
|
if (self->isMissionTarget && rand() % 10 == 0)
|
2018-01-25 08:41:10 +01:00
|
|
|
{
|
2018-01-26 08:56:12 +01:00
|
|
|
self->action = unitReappear;
|
|
|
|
self->flags |= EF_GONE;
|
|
|
|
self->thinkTime = rand() % FPS;
|
|
|
|
addTeleportStars(self);
|
2018-01-25 08:41:10 +01:00
|
|
|
playSound(SND_APPEAR, CH_ANY);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|