/* Copyright (C) 2018-2019 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 "keycard.h" static void (*itemTouch)(Entity *other); static void touchWhiteKeycard(Entity *other); Entity *initRedKeycard(void) { Item *i; i = (Item*)createItem(); i->type = ET_KEY; STRNCPY(i->name, "Red Keycard", MAX_NAME_LENGTH); STRNCPY(i->spriteName, "RedKeycard", MAX_NAME_LENGTH); return (Entity*)i; } Entity *initBlueKeycard(void) { Item *i; i = (Item*)createItem(); i->type = ET_KEY; STRNCPY(i->name, "Blue Keycard", MAX_NAME_LENGTH); STRNCPY(i->spriteName, "BlueKeycard", MAX_NAME_LENGTH); return (Entity*)i; } Entity *initGreenKeycard(void) { Item *i; i = (Item*)createItem(); i->type = ET_KEY; STRNCPY(i->name, "Green Keycard", MAX_NAME_LENGTH); STRNCPY(i->spriteName, "GreenKeycard", MAX_NAME_LENGTH); return (Entity*)i; } Entity *initYellowKeycard(void) { Item *i; i = (Item*)createItem(); i->type = ET_KEY; STRNCPY(i->name, "Yellow Keycard", MAX_NAME_LENGTH); STRNCPY(i->spriteName, "YellowKeycard", MAX_NAME_LENGTH); return (Entity*)i; } Entity *initWhiteKeycard(void) { Item *i; i = (Item*)createItem(); i->type = ET_KEY; STRNCPY(i->name, "White Keycard", MAX_NAME_LENGTH); STRNCPY(i->spriteName, "WhiteKeycard", MAX_NAME_LENGTH); itemTouch = i->touch; i->touch = touchWhiteKeycard; return (Entity*)i; } static void touchWhiteKeycard(Entity *other) { itemTouch(other); if (other == (Entity*)world.bob) { updateObjective("White Keycard"); teekaExitMission(); awardTrophy("HEY_BUDDY"); } }