2018-01-21 10:31:38 +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 "game.h"
|
|
|
|
|
2018-01-28 16:48:20 +01:00
|
|
|
static void loadMetaInfo(void);
|
2018-02-08 22:53:52 +01:00
|
|
|
static void addKeyToStash(Item *item);
|
2018-01-24 08:16:52 +01:00
|
|
|
|
|
|
|
void initGame(void)
|
|
|
|
{
|
|
|
|
memset(&game, 0, sizeof(Game));
|
|
|
|
|
2018-01-28 17:14:17 +01:00
|
|
|
game.missionStatusTail = &game.missionStatusHead;
|
|
|
|
|
2018-01-24 08:16:52 +01:00
|
|
|
game.cells = 5;
|
|
|
|
game.hearts = 10;
|
|
|
|
|
2018-02-13 22:36:42 +01:00
|
|
|
game.stats[STAT_TIME_PLAYED] = 0;
|
2018-01-28 16:48:20 +01:00
|
|
|
|
|
|
|
loadMetaInfo();
|
2018-01-24 08:16:52 +01:00
|
|
|
}
|
|
|
|
|
2018-02-06 23:27:02 +01:00
|
|
|
int getNumItemsCarried(void)
|
|
|
|
{
|
|
|
|
int rtn, i;
|
|
|
|
|
|
|
|
rtn = 0;
|
|
|
|
|
|
|
|
for (i = 0 ; i < MAX_ITEMS ; i++)
|
|
|
|
{
|
|
|
|
if (world.bob->items[i] != NULL)
|
|
|
|
{
|
|
|
|
rtn++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rtn;
|
|
|
|
}
|
|
|
|
|
2018-02-07 08:51:47 +01:00
|
|
|
int addItem(Item *item)
|
2018-01-24 08:16:52 +01:00
|
|
|
{
|
2018-02-04 09:11:42 +01:00
|
|
|
int i;
|
2018-02-07 08:51:47 +01:00
|
|
|
|
2018-02-06 23:27:02 +01:00
|
|
|
if (getNumItemsCarried() < MAX_ITEMS)
|
2018-02-04 09:11:42 +01:00
|
|
|
{
|
2018-02-07 08:51:47 +01:00
|
|
|
for (i = 0 ; i < MAX_ITEMS ; i++)
|
2018-02-04 09:11:42 +01:00
|
|
|
{
|
2018-02-07 08:51:47 +01:00
|
|
|
if (item->type == ET_KEY && world.bob->items[i] != NULL && world.bob->items[i]->type == ET_KEY && strcmp(item->name, world.bob->items[i]->name) == 0)
|
2018-02-06 23:27:02 +01:00
|
|
|
{
|
2018-02-07 08:51:47 +01:00
|
|
|
world.bob->items[i]->value++;
|
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_DEBUG, "Inc. %s value (%d)(+1) - Killing", item->name, world.bob->items[i]->value);
|
|
|
|
item->alive = ALIVE_DEAD;
|
|
|
|
return 1;
|
2018-02-06 23:27:02 +01:00
|
|
|
}
|
2018-02-07 08:51:47 +01:00
|
|
|
else if (world.bob->items[i] == NULL)
|
2018-02-06 23:27:02 +01:00
|
|
|
{
|
2018-02-07 08:51:47 +01:00
|
|
|
world.bob->items[i] = item;
|
|
|
|
item->canBePickedUp = 0;
|
|
|
|
item->flags |= EF_GONE;
|
|
|
|
if (item->type == ET_KEY)
|
2018-02-06 23:27:02 +01:00
|
|
|
{
|
2018-02-07 08:51:47 +01:00
|
|
|
item->value = 1;
|
2018-02-06 23:27:02 +01:00
|
|
|
}
|
2018-02-07 08:51:47 +01:00
|
|
|
|
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_DEBUG, "Added %s (value=%d)", item->name, world.bob->items[i]->value);
|
|
|
|
|
|
|
|
return 1;
|
2018-02-06 23:27:02 +01:00
|
|
|
}
|
2018-02-04 09:11:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2018-01-24 08:16:52 +01:00
|
|
|
}
|
|
|
|
|
2018-01-27 09:53:08 +01:00
|
|
|
int hasItem(char *name)
|
|
|
|
{
|
2018-02-04 09:11:42 +01:00
|
|
|
int i;
|
|
|
|
Item *item;
|
2018-02-06 23:27:02 +01:00
|
|
|
|
2018-02-04 09:11:42 +01:00
|
|
|
for (i = 0 ; i < MAX_ITEMS ; i++)
|
|
|
|
{
|
2018-02-07 08:51:47 +01:00
|
|
|
item = world.bob->items[i];
|
2018-02-04 09:11:42 +01:00
|
|
|
|
|
|
|
if (item != NULL && strcmp(item->name, name) == 0)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-27 09:53:08 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-07 08:51:47 +01:00
|
|
|
Item *getItem(char *name)
|
2018-01-27 11:47:53 +01:00
|
|
|
{
|
2018-02-04 09:11:42 +01:00
|
|
|
int i;
|
|
|
|
Item *item;
|
|
|
|
|
|
|
|
for (i = 0 ; i < MAX_ITEMS ; i++)
|
|
|
|
{
|
2018-02-07 08:51:47 +01:00
|
|
|
item = world.bob->items[i];
|
2018-02-04 09:11:42 +01:00
|
|
|
|
|
|
|
if (item != NULL && strcmp(item->name, name) == 0)
|
|
|
|
{
|
|
|
|
return world.bob->items[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-27 11:47:53 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void removeItem(char *name)
|
2018-01-27 09:53:08 +01:00
|
|
|
{
|
2018-02-04 09:11:42 +01:00
|
|
|
int i;
|
|
|
|
Item *item;
|
|
|
|
|
|
|
|
for (i = 0 ; i < MAX_ITEMS ; i++)
|
|
|
|
{
|
2018-02-07 08:51:47 +01:00
|
|
|
item = world.bob->items[i];
|
2018-02-04 09:11:42 +01:00
|
|
|
|
|
|
|
if (item != NULL && strcmp(item->name, name) == 0)
|
|
|
|
{
|
2018-02-07 08:51:47 +01:00
|
|
|
/* only null this, as whether to kill it is handled elsewhere */
|
|
|
|
if (item->type != ET_KEY)
|
|
|
|
{
|
|
|
|
world.bob->items[i] = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (--item->value == 0)
|
|
|
|
{
|
|
|
|
item->flags &= ~EF_GONE;
|
|
|
|
item->alive = ALIVE_DEAD;
|
|
|
|
|
|
|
|
world.bob->items[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
2018-02-04 09:11:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void dropCarriedItems(void)
|
|
|
|
{
|
|
|
|
int i;
|
2018-02-07 08:51:47 +01:00
|
|
|
Item *item;
|
2018-02-08 22:53:52 +01:00
|
|
|
|
|
|
|
memset(game.keys, 0, sizeof(Tuple) * MAX_KEY_TYPES);
|
2018-02-04 09:11:42 +01:00
|
|
|
|
|
|
|
for (i = 0 ; i < MAX_ITEMS ; i++)
|
|
|
|
{
|
2018-02-06 23:27:02 +01:00
|
|
|
item = world.bob->items[i];
|
|
|
|
|
2018-02-08 22:53:52 +01:00
|
|
|
if (item != NULL)
|
|
|
|
{
|
|
|
|
if (item->type == ET_KEY)
|
|
|
|
{
|
|
|
|
addKeyToStash(item);
|
|
|
|
|
|
|
|
item->alive = ALIVE_DEAD;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
item->flags &= ~EF_GONE;
|
|
|
|
item->x = world.bob->checkpoints[0].x;
|
|
|
|
item->y = world.bob->checkpoints[0].y;
|
|
|
|
/* items can only be collected if they have a thinktime of 0 */
|
|
|
|
item->thinkTime = FPS * 9999;
|
|
|
|
}
|
2018-02-10 20:03:55 +01:00
|
|
|
|
|
|
|
world.bob->items[i] = NULL;
|
2018-02-08 22:53:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void addKeyToStash(Item *item)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
Tuple *t;
|
|
|
|
|
|
|
|
for (i = 0 ; i < MAX_KEY_TYPES ; i++)
|
|
|
|
{
|
|
|
|
t = &game.keys[i];
|
|
|
|
|
|
|
|
if (t->value.i == 0)
|
|
|
|
{
|
|
|
|
STRNCPY(t->key, item->name, MAX_NAME_LENGTH);
|
|
|
|
t->value.i = item->value;
|
|
|
|
|
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_DEBUG, "Added %s (%d) to stash", t->key, t->value.i);
|
2018-02-08 23:26:00 +01:00
|
|
|
|
|
|
|
return;
|
2018-02-08 22:53:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void addKeysFromStash(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
Tuple *t;
|
|
|
|
Item *item;
|
|
|
|
|
|
|
|
for (i = 0 ; i < MAX_KEY_TYPES ; i++)
|
|
|
|
{
|
|
|
|
t = &game.keys[i];
|
|
|
|
|
|
|
|
if (t->value.i > 0)
|
2018-02-06 23:27:02 +01:00
|
|
|
{
|
2018-02-08 22:53:52 +01:00
|
|
|
item = (Item*)createEntity(t->key);
|
|
|
|
item->init();
|
|
|
|
item->value = t->value.i;
|
|
|
|
|
|
|
|
addItem(item);
|
|
|
|
|
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_DEBUG, "Added %s (%d) to inventory", item->name, item->value);
|
2018-02-06 23:27:02 +01:00
|
|
|
}
|
2018-02-04 09:11:42 +01:00
|
|
|
}
|
2018-01-27 09:53:08 +01:00
|
|
|
}
|
|
|
|
|
2018-01-28 16:48:20 +01:00
|
|
|
static void loadMetaInfo(void)
|
|
|
|
{
|
|
|
|
cJSON *root;
|
|
|
|
char *text;
|
|
|
|
|
|
|
|
text = readFile("data/meta/meta.json");
|
|
|
|
|
|
|
|
root = cJSON_Parse(text);
|
|
|
|
|
|
|
|
game.totalKeys = cJSON_GetObjectItem(root, "totalKeys")->valueint;
|
|
|
|
game.totalTargets = cJSON_GetObjectItem(root, "totalTargets")->valueint;
|
|
|
|
game.totalMIAs = cJSON_GetObjectItem(root, "totalMIAs")->valueint;
|
|
|
|
game.totalHearts = cJSON_GetObjectItem(root, "totalHearts")->valueint;
|
|
|
|
game.totalCells = cJSON_GetObjectItem(root, "totalCells")->valueint;
|
|
|
|
|
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_DEBUG, "Meta [keys=%d, targets=%d, mias=%d, hearts=%d, cells=%d]", game.totalKeys, game.totalTargets, game.totalMIAs, game.totalHearts, game.totalCells);
|
|
|
|
|
|
|
|
cJSON_Delete(root);
|
|
|
|
|
|
|
|
free(text);
|
|
|
|
}
|
|
|
|
|
2018-01-21 10:31:38 +01:00
|
|
|
void destroyGame(void)
|
|
|
|
{
|
|
|
|
}
|