blobwarsAttrition/src/entities/blobs/mia.c

174 lines
3.1 KiB
C
Raw Normal View History

2018-01-25 08:41:10 +01:00
/*
2019-06-02 17:13:34 +02:00
Copyright (C) 2018-2019 Parallel Realities
2018-01-25 08:41:10 +01: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 "mia.h"
2018-02-01 08:50:37 +01:00
static void init(void);
2018-01-25 08:41:10 +01:00
static void reset(void);
static void tick(void);
static void touch(Entity *other);
static void preTeleport(void);
static void teleport(void);
2018-01-30 23:47:40 +01:00
static void load(cJSON *root);
static void save(cJSON *root);
2018-01-25 08:41:10 +01:00
2018-01-30 09:29:09 +01:00
Entity *initMIA(void)
2018-01-25 08:41:10 +01:00
{
MIA *m;
2019-06-02 17:13:34 +02:00
2018-01-29 23:12:18 +01:00
m = malloc(sizeof(MIA));
memset(m, 0, sizeof(MIA));
2019-06-02 17:13:34 +02:00
2018-01-30 09:29:09 +01:00
initEntity((Entity*)m);
2019-06-02 17:13:34 +02:00
2018-01-28 10:34:14 +01:00
m->type = ET_MIA;
2019-06-02 17:13:34 +02:00
m->tx = m->ty = -1;
2018-01-25 08:41:10 +01:00
2018-01-30 00:00:14 +01:00
m->sprite[FACING_LEFT] = getSprite("MIA");
m->sprite[FACING_RIGHT] = getSprite("MIA");
m->sprite[FACING_DIE] = getSprite("MIA");
2018-01-25 08:41:10 +01:00
m->flags |= EF_IGNORE_BULLETS;
2018-01-25 08:41:10 +01:00
/* blink at random intervals */
m->spriteFrame = 0;
m->spriteTime = rand() % 180;
2018-01-25 08:41:10 +01:00
2018-02-01 08:50:37 +01:00
m->init = init;
m->reset = reset;
m->tick = tick;
m->touch = touch;
2018-01-30 23:47:40 +01:00
m->load = load;
m->save = save;
2018-01-25 08:41:10 +01:00
m->isMissionTarget = 1;
2019-06-02 17:13:34 +02:00
2018-01-30 09:29:09 +01:00
return (Entity*)m;
2018-01-25 08:41:10 +01:00
}
2018-02-01 08:50:37 +01:00
static void init(void)
2018-01-25 08:41:10 +01:00
{
2018-02-01 08:50:37 +01:00
if (self->tx == -1 && self->ty == -1)
2018-01-25 08:41:10 +01:00
{
2018-02-01 08:50:37 +01:00
self->tx = self->x;
self->ty = self->y;
2018-01-25 08:41:10 +01:00
}
}
static void reset(void)
{
self->tx = self->ty = -1;
}
static void tick(void)
{
MIA *m;
2019-06-02 17:13:34 +02:00
m = (MIA*)self;
2019-06-02 17:13:34 +02:00
if (--m->shudderTimer <= 0)
2018-01-25 08:41:10 +01:00
{
m->x = (m->tx + rand() % 4);
m->shudderTimer = 2;
2018-01-25 08:41:10 +01:00
}
2018-02-04 09:11:42 +01:00
if (!m->isMissionTarget)
2018-01-25 08:41:10 +01:00
{
if (--m->starTimer <= 0)
2018-01-25 08:41:10 +01:00
{
addMIATeleportStars(m->x + rand() % m->w, m->y + rand() % m->h);
m->starTimer = 1;
2018-01-25 08:41:10 +01:00
}
2019-06-02 17:13:34 +02:00
world.saveDelay = FPS;
2018-01-25 08:41:10 +01:00
}
}
static void touch(Entity *other)
{
MIA *m;
2019-06-02 17:13:34 +02:00
m = (MIA*)self;
2019-06-02 17:13:34 +02:00
2018-02-04 09:11:42 +01:00
if (m->isMissionTarget && other == (Entity*)world.bob)
2018-01-25 08:41:10 +01:00
{
m->action = preTeleport;
m->teleportTimer = FPS * 3;
2018-04-01 18:41:45 +02:00
setGameplayMessage(MSG_OBJECTIVE, app.strings[ST_RESCUED], m->name);
m->isMissionTarget = 0;
m->flags |= EF_ALWAYS_PROCESS;
m->plane = PLANE_FOREGROUND;
2018-02-25 18:29:44 +01:00
playSound(SND_MIA, m->uniqueId % MAX_SND_CHANNELS);
2018-03-18 13:48:52 +01:00
game.stats[STAT_MIAS_RESCUED]++;
updateObjective("MIA");
2018-01-25 08:41:10 +01:00
}
}
static void preTeleport(void)
{
MIA *m;
2019-06-02 17:13:34 +02:00
m = (MIA*)self;
2019-06-02 17:13:34 +02:00
2018-02-13 22:36:42 +01:00
if (--m->teleportTimer <= FPS)
2018-01-25 08:41:10 +01:00
{
m->action = teleport;
m->flags |= (EF_NO_CLIP | EF_WEIGHTLESS);
m->dy = -5;
2018-01-25 08:41:10 +01:00
}
2019-06-02 17:13:34 +02:00
world.saveDelay = FPS;
2018-01-25 08:41:10 +01:00
}
static void teleport(void)
{
MIA *m;
2019-06-02 17:13:34 +02:00
m = (MIA*)self;
2019-06-02 17:13:34 +02:00
2018-02-13 22:36:42 +01:00
if (--m->teleportTimer <= 0)
2018-01-25 08:41:10 +01:00
{
addTeleportStars(self);
m->alive = ALIVE_DEAD;
2018-01-25 08:41:10 +01:00
}
2019-06-02 17:13:34 +02:00
world.saveDelay = FPS;
2018-01-25 08:41:10 +01:00
}
2018-01-30 23:47:40 +01:00
static void load(cJSON *root)
{
MIA *m;
2019-06-02 17:13:34 +02:00
2018-01-30 23:47:40 +01:00
m = (MIA*)self;
2019-06-02 17:13:34 +02:00
2018-01-30 23:47:40 +01:00
m->active = cJSON_GetObjectItem(root, "isMissionTarget")->valueint;
}
static void save(cJSON *root)
{
MIA *m;
2019-06-02 17:13:34 +02:00
2018-01-30 23:47:40 +01:00
m = (MIA*)self;
2019-06-02 17:13:34 +02:00
2018-01-30 23:47:40 +01:00
cJSON_AddStringToObject(root, "type", "MIA");
cJSON_AddNumberToObject(root, "isMissionTarget", m->isMissionTarget);
}