2018-01-29 23:12:18 +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 "entityFactory.h"
|
|
|
|
|
2018-01-30 09:29:09 +01:00
|
|
|
static void addEntityDef(char *name, Entity *(*initFunc)(void));
|
|
|
|
static Entity *initGenericEvilBlob(void);
|
|
|
|
static Entity *initGenericEyeDroid(void);
|
2018-01-29 23:12:18 +01:00
|
|
|
|
|
|
|
static EntityDef head;
|
|
|
|
static EntityDef *tail;
|
|
|
|
|
|
|
|
void initEntityFactory(void)
|
|
|
|
{
|
|
|
|
memset(&head, 0, sizeof(EntityDef));
|
|
|
|
tail = &head;
|
|
|
|
|
2018-01-30 09:29:09 +01:00
|
|
|
addEntityDef("AquaBlob", initAquaBlob);
|
|
|
|
addEntityDef("PistolBlob", initPistolBlob);
|
|
|
|
addEntityDef("PistolEyeDroid", initPistolDroid);
|
|
|
|
addEntityDef("GenericEvilBlob", initGenericEvilBlob);
|
|
|
|
addEntityDef("GenericEyeDroid", initGenericEyeDroid);
|
2018-02-08 09:35:09 +01:00
|
|
|
addEntityDef("MachineGunBlob", initMachineGunBlob);
|
2018-02-09 23:41:37 +01:00
|
|
|
addEntityDef("MachineGunEyeDroid", initMachineGunDroid);
|
2018-02-08 22:53:02 +01:00
|
|
|
addEntityDef("GrenadeBlob", initGrenadeBlob);
|
|
|
|
addEntityDef("GrenadeEyeDroid", initGrenadeDroid);
|
2018-02-09 20:10:19 +01:00
|
|
|
addEntityDef("ShotgunBlob", initShotgunBlob);
|
|
|
|
addEntityDef("ShotgunEyeDroid", initShotgunDroid);
|
2018-02-10 08:56:28 +01:00
|
|
|
addEntityDef("LaserBlob", initLaserBlob);
|
|
|
|
addEntityDef("LaserEyeDroid", initLaserDroid);
|
|
|
|
addEntityDef("SpreadGunBlob", initSpreadGunBlob);
|
|
|
|
addEntityDef("SpreadGunEyeDroid", initSpreadGunDroid);
|
|
|
|
addEntityDef("PlasmaEyeDroid", initPlasmaDroid);
|
|
|
|
addEntityDef("PlasmaBlob", initPlasmaBlob);
|
2018-02-14 23:31:21 +01:00
|
|
|
addEntityDef("Cannon", initCannon);
|
2018-02-24 16:58:14 +01:00
|
|
|
addEntityDef("Blaze", initBlaze);
|
|
|
|
addEntityDef("Frost", initFrost);
|
2018-02-24 17:53:03 +01:00
|
|
|
addEntityDef("EyeDroidCommander", initEyeDroidCommander);
|
2018-02-25 08:55:06 +01:00
|
|
|
addEntityDef("TankCommander", initTankCommander);
|
2018-01-29 23:12:18 +01:00
|
|
|
|
2018-01-30 09:29:09 +01:00
|
|
|
addEntityDef("Bob", initBob);
|
|
|
|
addEntityDef("MIA", initMIA);
|
2018-02-10 08:56:28 +01:00
|
|
|
addEntityDef("Teeka", initTeeka);
|
2018-01-30 00:00:14 +01:00
|
|
|
|
2018-01-30 09:29:09 +01:00
|
|
|
addEntityDef("Item", initItem);
|
|
|
|
addEntityDef("BronzeKey", initBronzeKey);
|
|
|
|
addEntityDef("SilverKey", initSilverKey);
|
|
|
|
addEntityDef("GoldKey", initGoldKey);
|
2018-02-08 09:35:09 +01:00
|
|
|
addEntityDef("GreenKeycard", initGreenKeycard);
|
2018-02-09 09:37:51 +01:00
|
|
|
addEntityDef("BlueKeycard", initBlueKeycard);
|
|
|
|
addEntityDef("RedKeycard", initRedKeycard);
|
|
|
|
addEntityDef("YellowKeycard", initYellowKeycard);
|
2018-02-10 08:56:28 +01:00
|
|
|
addEntityDef("WhiteKeycard", initWhiteKeycard);
|
2018-02-24 16:58:14 +01:00
|
|
|
addEntityDef("WeaponPickup", initWeaponPickup);
|
2018-02-08 09:35:09 +01:00
|
|
|
|
|
|
|
addEntityDef("Cell", initCell);
|
|
|
|
addEntityDef("Heart", initHeart);
|
2018-01-30 09:29:09 +01:00
|
|
|
|
|
|
|
addEntityDef("Exit", initExit);
|
|
|
|
addEntityDef("PowerPool", initPowerPool);
|
|
|
|
addEntityDef("Teleporter", initTeleporter);
|
|
|
|
addEntityDef("PressurePlate", initPressurePlate);
|
|
|
|
addEntityDef("InfoPoint", initInfoPoint);
|
|
|
|
addEntityDef("PowerPoint", initPowerPoint);
|
|
|
|
addEntityDef("PushBlock", initPushBlock);
|
|
|
|
addEntityDef("Lift", initLift);
|
|
|
|
addEntityDef("Door", initDoor);
|
|
|
|
addEntityDef("BronzeDoor", initBronzeDoor);
|
|
|
|
addEntityDef("SilverDoor", initSilverDoor);
|
|
|
|
addEntityDef("GoldDoor", initGoldDoor);
|
|
|
|
addEntityDef("HorizontalDoor", initHorizontalDoor);
|
2018-02-09 09:37:51 +01:00
|
|
|
addEntityDef("CardReader", initCardReader);
|
2018-02-09 20:10:19 +01:00
|
|
|
addEntityDef("LaserTrap", initLaserTrap);
|
|
|
|
addEntityDef("HorizontalLaserTrap", initHorizontalLaserTrap);
|
2018-02-14 23:31:21 +01:00
|
|
|
addEntityDef("Exit", initExit);
|
|
|
|
addEntityDef("Destructable", initDestructable);
|
2018-02-15 08:48:51 +01:00
|
|
|
addEntityDef("ItemPad", initItemPad);
|
2018-01-29 23:12:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Entity *createEntity(char *name)
|
|
|
|
{
|
|
|
|
EntityDef *def;
|
|
|
|
|
|
|
|
for (def = head.next ; def != NULL ; def = def->next)
|
|
|
|
{
|
|
|
|
if (strcmp(def->name, name) == 0)
|
|
|
|
{
|
2018-02-09 09:37:51 +01:00
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_DEBUG, "Creating '%s'", name);
|
2018-01-29 23:12:18 +01:00
|
|
|
return def->initFunc();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_ERROR, "No such entity definition '%s'", name);
|
|
|
|
exit(1);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-01-30 09:29:09 +01:00
|
|
|
static void addEntityDef(char *name, Entity *(*initFunc)(void))
|
2018-01-29 23:12:18 +01:00
|
|
|
{
|
|
|
|
EntityDef *def;
|
|
|
|
|
|
|
|
def = malloc(sizeof(EntityDef));
|
|
|
|
memset(def, 0, sizeof(EntityDef));
|
|
|
|
tail->next = def;
|
|
|
|
tail = def;
|
|
|
|
|
|
|
|
STRNCPY(def->name, name, MAX_NAME_LENGTH);
|
|
|
|
def->initFunc = initFunc;
|
|
|
|
}
|
2018-01-30 09:29:09 +01:00
|
|
|
|
|
|
|
static Entity *initGenericEvilBlob(void)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
char name[MAX_NAME_LENGTH];
|
|
|
|
strcpy(name, "");
|
|
|
|
|
|
|
|
r = rand() % world.numEnemyTypes;
|
|
|
|
|
|
|
|
sprintf(name, "%sBlob", world.enemyTypes[r]);
|
|
|
|
|
|
|
|
return createEntity(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Entity *initGenericEyeDroid(void)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
char name[MAX_NAME_LENGTH];
|
|
|
|
strcpy(name, "");
|
|
|
|
|
|
|
|
r = rand() % world.numEnemyTypes;
|
|
|
|
|
|
|
|
sprintf(name, "%sEyeDroid", world.enemyTypes[r]);
|
|
|
|
|
|
|
|
return createEntity(name);
|
|
|
|
}
|