X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=src%2Fmap_object_actions.c;h=9d1721e936fab21bd8e6c3634812f409e9adb6e9;hb=42f6cd9789e06f0257a078a33fa13aaea0714fce;hp=1b1433949599d5792cf7f1540bc56347d3b87663;hpb=ec5c4edd169be8fe8c778cabdfc7ada665629ffd;p=plomrogue diff --git a/src/map_object_actions.c b/src/map_object_actions.c index 1b14339..9d1721e 100644 --- a/src/map_object_actions.c +++ b/src/map_object_actions.c @@ -1,239 +1,252 @@ /* map_object_actions.c */ #include "map_object_actions.h" -#include /* for free() */ #include /* for strlen() */ -#include "yx_uint16.h" /* for yx_uint16 struct, mv_yx_in_dir(), yx_uint16_cmp */ -#include "misc.h" /* for update_log(), turn_over(), try_malloc() */ +#include "yx_uint16.h" /* for yx_uint16 struct, mv_yx_in_dir(), + * yx_uint16_cmp() + */ +#include "map_objects.h" /* for MapObj, MapObjDef structs, get_player(), + * set_object_position(), own_map_object() + */ +#include "misc.h" /* for update_log(), turn_over() */ #include "map.h" /* for Map struct */ -#include "main.h" /* for World struct */ -#include "map_objects.h" /* for map object (definition) structs */ -#include "rrand.h" /* for rrand() */ +#include "main.h" /* for world global */ #include "command_db.h" /* for get_command_id() */ -/* Log monster (described by "dsc_monster1") bumping into "monster2". */ -static void monster_bumps_monster(struct World * world, char * dsc_monster1, - struct Monster * monster2); - -/* Decrement player HPs due to attack of monster described by "dsc_monster", - * kill player if his HP hit zero; log the whole action. - */ -static void monster_hits_player(struct World * world, char * dsc_monster); - -/* Decrement HP of "monster" hit by player, kill it if its HP hit zero, create a - * corpse and increment player's score by the amount of hitpoints the monster - * started with; log the whole action. - */ -static void player_hits_monster(struct World * world, struct Monster * monster); - -/* Try moving the player in direction "d" towards coordinate "target"; log - * success or failure of the whole action. +/* One actor "wounds" another actor, decrementing his lifepoints and, if they + * reach zero in the process, killing it. Generates appropriate log message. */ -static void try_player_move(struct World * world, - enum dir d, struct yx_uint16 target); - - - -static void monster_bumps_monster(struct World * world, char * dsc_monster1, - struct Monster * monster2) -{ - char * bump_dsc = " bumps into "; - struct MapObjDef * mod = get_map_obj_def(world, monster2->map_obj.type); - char msg[strlen(dsc_monster1) + strlen(bump_dsc) + strlen(mod->desc) + 3]; - sprintf(msg, "\n%s%s%s.", dsc_monster1, bump_dsc, mod->desc); - update_log(world, msg); -} +static void actor_hits_actor(struct MapObj * hitter, struct MapObj * hitted); -static void monster_hits_player(struct World * world, char * dsc_monster) +static void actor_hits_actor(struct MapObj * hitter, struct MapObj * hitted) { - char * hit_dsc = " hits you"; - char msg[strlen(dsc_monster) + strlen(hit_dsc) + 3]; - sprintf(msg, "\n%s%s.", dsc_monster, hit_dsc); - update_log(world, msg); - world->player->hitpoints--; - if (0 == world->player->hitpoints) - { - update_log(world, "\nYou are dead."); + struct MapObjDef * mod_hitter = get_map_object_def(hitter->type); + struct MapObjDef * mod_hitted = get_map_object_def(hitted->type); + struct MapObj * player = get_player(); + char * msg1 = "You"; + char * msg2 = "wound"; + char * msg3 = "you"; + if (player != hitter) + { + msg1 = mod_hitter->name; + msg2 = "wounds"; + } + if (player != hitted) + { + msg3 = mod_hitted->name; + } + uint8_t len = 1 + strlen(msg1) + 1 + strlen(msg2) + 1 + strlen(msg3) + 2; + char msg[len]; + sprintf(msg, "\n%s %s %s.", msg1, msg2, msg3); + update_log(msg); + hitted->lifepoints--; + if (0 == hitted->lifepoints) + { + hitted->type = mod_hitted->corpse_id; + if (player == hitted) + { + update_log(" You die."); + } + else + { + update_log(" It dies."); + if (player == hitter) + { + world.score = world.score + mod_hitted->lifepoints; + } + } } } -static void player_hits_monster(struct World * world, struct Monster * monster) +extern uint8_t move_actor(struct MapObj * actor, char d) { - char * f_name = "player_hits_monster()"; - struct MapObjDef * mod = get_map_obj_def(world, monster->map_obj.type); - char * hit_dsc = "You hit the "; - char * monster_dsc = mod->desc; - char hitmsg[strlen(hit_dsc) + strlen(monster_dsc) + 3]; - sprintf(hitmsg, "\n%s%s.", hit_dsc, monster_dsc); - update_log(world, hitmsg); - monster->hitpoints--; - if (0 == monster->hitpoints) - { - hit_dsc = "You kill the "; - char kill_msg[strlen(hit_dsc) + strlen(monster_dsc) + 3]; - sprintf(kill_msg, "\n%s%s.", hit_dsc, monster_dsc); - update_log(world, kill_msg); - struct MonsterDef * md = (struct MonsterDef * ) mod; - struct Item * corpse = try_malloc(sizeof(struct Item), world, f_name); - corpse->map_obj.type = md->corpse_id; - corpse->map_obj.pos = monster->map_obj.pos; - corpse->map_obj.next = world->item; - world->item = corpse; - if (world->monster == monster) + struct yx_uint16 target = mv_yx_in_dir(d, actor->pos); + struct MapObj * other_actor; + for (other_actor = world.map_objs; + other_actor != 0; + other_actor = other_actor->next) + { + if (0 == other_actor->lifepoints || other_actor == actor) { - world->monster = world->monster->map_obj.next; + continue; } - else + if (yx_uint16_cmp(&target, &other_actor->pos)) { - struct Monster * m_prev; - for (m_prev = world->monster; - m_prev->map_obj.next != monster; - m_prev = m_prev->map_obj.next); - { - m_prev->map_obj.next = monster->map_obj.next; - } + actor_hits_actor(actor, other_actor); + return 2; } - uint8_t score = md->hitpoints_start; - world->score = world->score + score; - free(monster); } + if (is_passable(world.map, target)) + { + set_object_position(actor, target); + return 0; + } + return 1; } -static void try_player_move(struct World * world, - enum dir d, struct yx_uint16 target) +extern void move_player(char d) { char * dsc_dir; - if (NORTH == d) + char * action_dsc_prototype = "player_"; + uint8_t len_action_dsc_prototype = strlen(action_dsc_prototype); + char action_dsc[len_action_dsc_prototype + 2]; + memcpy(action_dsc, action_dsc_prototype, len_action_dsc_prototype); + if ('N' == d) { dsc_dir = "north"; + action_dsc[len_action_dsc_prototype] = 'u'; } - else if (EAST == d) + else if ('E' == d) { dsc_dir = "east" ; + action_dsc[len_action_dsc_prototype] = 'r'; } - else if (SOUTH == d) + else if ('S' == d) { dsc_dir = "south"; + action_dsc[len_action_dsc_prototype] = 'd'; } - else if (WEST == d) + else if ('W' == d) { dsc_dir = "west" ; + action_dsc[len_action_dsc_prototype] = 'l'; } - char * dsc_move = "You fail to move "; - if (is_passable(world->map, target)) + action_dsc[len_action_dsc_prototype + 1] = '\0'; + uint8_t res = move_actor(get_player(), d); + if (1 >= res) { - dsc_move = "You move "; - world->player->pos = target; + char * dsc_move = "You fail to move "; + if (0 == res) + { + dsc_move = "You move "; + } + char msg[strlen(dsc_move) + strlen (dsc_dir) + 3]; + sprintf(msg, "\n%s%s.", dsc_move, dsc_dir); + update_log(msg); } - char msg[strlen(dsc_move) + strlen (dsc_dir) + 3]; - sprintf(msg, "\n%s%s.", dsc_move, dsc_dir); - update_log(world, msg); + turn_over(get_command_id(action_dsc)); } -extern void move_monster(struct World * world, struct Monster * monster) +extern void player_wait() { - char d = rrand() % 5; - struct yx_uint16 t = mv_yx_in_dir(d, monster->map_obj.pos); - struct MapObjDef * mod = get_map_obj_def(world, monster->map_obj.type); - char * dsc = mod->desc; - if (yx_uint16_cmp(&t, &world->player->pos)) - { - monster_hits_player(world, dsc); - return; - } - struct Monster * other_monster; - for (other_monster = world->monster; - other_monster != 0; - other_monster = other_monster->map_obj.next) - { - if (other_monster == monster) - { - continue; - } - if (yx_uint16_cmp(&t, &other_monster->map_obj.pos)) - { - monster_bumps_monster(world, dsc, other_monster); - return; - } - } - if (is_passable(world->map, t)) - { - monster->map_obj.pos = t; - } + update_log("\nYou wait."); + turn_over(get_command_id("wait")); } -extern void move_player(struct World * world, enum dir d) +extern char is_passable(struct Map * map, struct yx_uint16 pos) { - char * action_dsc_prototype = "player_"; - uint8_t len = strlen(action_dsc_prototype); - char action_dsc[len + 2]; - memcpy(action_dsc, action_dsc_prototype, len); - if (NORTH == d) - { - action_dsc[len] = 'u'; - } - else if (SOUTH == d) - { - action_dsc[len] = 'd'; - } - else if (WEST == d) + uint8_t passable = 0; + if (0 <= pos.x && pos.x < map->size.x && 0 <= pos.y && pos.y < map->size.y) { - action_dsc[len] = 'l'; + passable = (('.' == map->cells[pos.y * map->size.x + pos.x])); } - else if (EAST == d) + return passable; +} + + + +extern void player_drop() +{ + struct MapObj * player = get_player(); + if (NULL == player->owns) { - action_dsc[len] = 'r'; + update_log("\nYou try to drop an object, but you own none."); + world.old_inventory_select = 0; } - action_dsc[len + 1] = '\0'; - uint8_t action_id = get_command_id(world, action_dsc); - struct yx_uint16 t = mv_yx_in_dir(d, world->player->pos); - struct Monster * monster; - for (monster = world->monster; - monster != 0; - monster = monster->map_obj.next) + else { - if (yx_uint16_cmp(&t, &monster->map_obj.pos)) + world.old_inventory_select = world.inventory_select; + struct MapObj * owned = player->owns; + uint8_t i = 0; + for (; i != world.inventory_select; i++, owned = owned->next); + if (0 < world.inventory_select) { - player_hits_monster(world, monster); - turn_over(world, action_id); - return; - } + world.inventory_select--; + } + own_map_object(&world.map_objs, &player->owns, owned->id); + update_log("\nYou drop an object."); } - try_player_move(world, d, t); - turn_over(world, action_id); + turn_over(get_command_id("drop")); } -extern void player_wait (struct World * world) +extern void player_pick() { - update_log(world, "\nYou wait."); - turn_over(world, get_command_id(world, "wait")); + struct MapObj * player = get_player(); + struct MapObj * picked; + for (picked = world.map_objs; NULL != picked; picked = picked->next) + { + if (picked != player && yx_uint16_cmp(&picked->pos, &player->pos)) + { + break; + } + } + if (NULL == picked) + { + update_log("\nYou try to pick up an object, but there is none."); + } + else + { + own_map_object(&player->owns, &world.map_objs, picked->id); + set_object_position(picked, player->pos); + update_log("\nYou pick up an object."); + } + turn_over(get_command_id("pick")); } -extern char is_passable (struct Map * map, struct yx_uint16 pos) +extern void player_use() { - char passable = 0; - if (0 <= pos.x && pos.x < map->size.x && 0 <= pos.y && pos.y < map->size.y) + struct MapObj * player = get_player(); + if (NULL == player->owns) + { + update_log("\nYou try to use an object, but you own none."); + world.old_inventory_select = 0; + } + else { - if ('.' == map->cells[pos.y * map->size.x + pos.x]) + uint8_t i = 0; + struct MapObj * selected = player->owns; + for (; i != world.inventory_select; i++, selected = selected->next); + struct MapObjDef * mod = get_map_object_def(selected->type); + if (!strcmp("MAGIC MEAT", mod->name)) { - passable = 1; + struct MapObj * next = selected->next; + free(selected); + if (0 < world.inventory_select) + { + world.old_inventory_select = world.inventory_select; + world.inventory_select--; + for (i = 0, selected = player->owns; + i != world.inventory_select; + i++, selected = selected->next); + selected->next = next; + } + else + { + player->owns = next; + } + player->lifepoints++; + update_log("\nYou consume MAGIC MEAT."); + } + else + { + update_log("\nYou try to use this object, but fail."); } } - return passable; + turn_over(get_command_id("use")); }