breakhack/src/item_builder.c

209 lines
4.5 KiB
C

/*
* BreakHack - A dungeone crawler RPG
* Copyright (C) 2018 Linus Probert <linus.probert@gmail.com>
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
#include <SDL2/SDL.h>
#include <stdlib.h>
#include "item_builder.h"
#include "texture.h"
#include "util.h"
#include "gui.h"
#include "mixer.h"
#include "random.h"
static ItemBuilder *builder = NULL;
void
item_builder_init(SDL_Renderer *renderer)
{
builder = ec_malloc(sizeof(ItemBuilder));
builder->textures = ht_create(20);
builder->renderer = renderer;
}
static void
check_builder(void)
{
if (!builder)
fatal("item_builder_init() not run");
}
static Texture *
load_texture(const char *path)
{
Texture *t = ht_get(builder->textures, path);
if (!t) {
t = texture_create();
texture_load_from_file(t, path, builder->renderer);
t->dim = (Dimension) { 32, 32 };
ht_set(builder->textures, path, t);
}
return t;
}
static void
eat_flesh(Item *item, Player *player)
{
int original_hp = player->stats.hp;
player->stats.hp += (int) item->value * player->stats.lvl;
if (player->stats.hp > player->stats.maxhp)
player->stats.hp = player->stats.maxhp;
mixer_play_effect(EAT);
gui_log("You eat some foul meat and gain %d health",
player->stats.hp - original_hp);
}
static void
drink_health(Item *item, Player *player)
{
player->potion_sips += (int) item->value;
mixer_play_effect(BOTTLE);
gui_log("You collect %u sips of health", (unsigned int) item->value);
}
static Item *
create_item(const char *path, SDL_Rect clip, void (*cb)(Item*, Player*))
{
Texture *t;
Item *item;
item = item_create();
t = load_texture(path);
item->sprite = sprite_create();
sprite_set_texture(item->sprite, t, 0);
item->sprite->clip = clip;
item->effect = cb;
return item;
}
static void
pickup_gold(Item *item, Player *player)
{
player->gold += item->value;
mixer_play_effect(COIN);
gui_log("You pick up %s", &item->label);
}
static Item *
create_treasure(int current_level)
{
double amt;
char label[50];
unsigned int highest_treasure;
unsigned int value;
amt = (unsigned int) get_random(5*current_level) % 40;
if (current_level > 9) {
highest_treasure = TREASURE_COUNT;
} else if (current_level > 3) {
highest_treasure = PLATINUM;
} else {
highest_treasure = GOLD;
}
value = get_random(highest_treasure);
SDL_Rect clip = { 0, 0, 16, 16 };
switch (value) {
case COPPER:
m_sprintf(&label[0], 50, "%.0f copper", amt);
amt /= 100;
break;
case SILVER:
m_sprintf(&label[0], 50, "%.0f silver", amt);
clip.x = 48;
amt /= 10;
break;
case GOLD:
m_sprintf(&label[0], 50, "%.0f gold", amt);
clip.y = 16;
break;
case PLATINUM:
m_sprintf(&label[0], 50, "%.0f platinum", amt);
clip.x = 48;
clip.y = 16;
amt *= 10;
break;
default:
break;
}
if (amt > 15 && amt < 30)
clip.x += 16;
else if (amt <= 15)
clip.x += 32;
Item *item = create_item("assets/Items/Money.png", clip, &pickup_gold);
m_strcpy(item->label, 50, label);
item->value = amt;
return item;
}
Item *
item_builder_build_item(ItemKey key, int level)
{
static const char *path_flesh = "assets/Items/Flesh.png";
static const char *path_potion = "assets/Items/Potion.png";
check_builder();
Item *item = NULL;
switch (key) {
case TREASURE:
item = create_treasure(level);
break;
case FLESH:
item = create_item(path_flesh,
(SDL_Rect) { 0, 0, 16, 16 },
&eat_flesh);
item->value = get_random(level);
break;
case HEALTH:
item = create_item(path_potion,
(SDL_Rect) { 0, 0, 16, 16 },
&drink_health);
item->value = 1 + get_random(level*2);
break;
default:
fatal("in item_builder_build() : Unhandled item key %d", key);
break;
}
return item;
}
Item *
item_builder_build_sack(void)
{
return create_item("assets/Items/Chest0.png",
(SDL_Rect) { 0, 32, 16, 16 },
NULL);
}
void
item_builder_close(void)
{
ht_destroy_custom(builder->textures, (void (*)(void*)) texture_destroy);
free(builder);
}