blobwarsAttrition/src/entities/structures/pushBlock.c

108 lines
2.4 KiB
C
Raw Normal View History

2018-01-27 12:26:14 +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 "pushBlock.h"
2018-02-01 08:50:37 +01:00
static void init(void);
2018-01-27 12:26:14 +01:00
static void activate(int active);
2018-01-30 23:47:40 +01:00
static void load(cJSON *root);
static void save(cJSON *root);
2018-01-27 12:26:14 +01:00
2018-01-30 09:29:09 +01:00
Entity *initPushBlock(void)
2018-01-27 12:26:14 +01:00
{
Structure *s;
2018-01-30 09:29:09 +01:00
s = createStructure();
2018-01-28 10:34:14 +01:00
s->type = ET_PUSHBLOCK;
s->isSolid = 1;
2018-01-27 12:26:14 +01:00
s->startX = s->startY = -1;
2018-01-31 22:50:49 +01:00
s->sprite[0] = s->sprite[1] = s->sprite[2] = getSprite("Crate1");
2018-01-27 12:26:14 +01:00
s->flags |= EF_EXPLODES | EF_ALWAYS_PROCESS;
2018-01-27 12:26:14 +01:00
2018-02-01 08:50:37 +01:00
s->init = init;
s->activate = activate;
2018-01-30 23:47:40 +01:00
s->load = load;
s->save = save;
2018-01-30 09:29:09 +01:00
return (Entity*)s;
2018-01-27 12:26:14 +01:00
}
2018-02-01 08:50:37 +01:00
static void init(void)
{
Structure *s;
s = (Structure*)self;
sprintf(s->spriteName, "Crate%d", rrnd(1, 4));
s->sprite[FACING_LEFT] = s->sprite[FACING_RIGHT] = s->sprite[FACING_DIE] = getSprite(s->spriteName);
if (s->startX == -1 && s->startY == -1)
{
s->startX = s->x;
s->startY = s->y;
}
}
2018-01-27 12:26:14 +01:00
static void activate(int active)
{
Structure *s;
s = (Structure*)self;
2018-02-03 19:19:26 +01:00
if (active)
2018-01-27 12:26:14 +01:00
{
addTeleportStars(self);
s->x = s->startX;
s->y = s->startY;
s->dx = s->dy = 0;
2018-01-27 12:26:14 +01:00
addTeleportStars(self);
2018-02-26 19:56:13 +01:00
playBattleSound(SND_APPEAR, s->uniqueId % MAX_SND_CHANNELS, s->x, s->y);
2018-01-27 12:26:14 +01:00
}
}
2018-01-30 23:47:40 +01:00
static void load(cJSON *root)
{
Structure *s;
s = (Structure*)self;
STRNCPY(s->spriteName, cJSON_GetObjectItem(root, "spriteName")->valuestring, MAX_NAME_LENGTH);
s->startX = cJSON_GetObjectItem(root, "startX")->valueint;
s->startY = cJSON_GetObjectItem(root, "startY")->valueint;
}
static void save(cJSON *root)
{
Structure *s;
s = (Structure*)self;
2018-02-10 19:35:56 +01:00
cJSON_AddStringToObject(root, "type", "PushBlock");
2018-01-30 23:47:40 +01:00
cJSON_AddStringToObject(root, "spriteName", s->spriteName);
cJSON_AddNumberToObject(root, "startX", s->startX);
cJSON_AddNumberToObject(root, "startY", s->startY);
}