2025-01-04 04:45:44 -05:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2025-01-04 05:28:46 -05:00
|
|
|
#include <stdarg.h>
|
2025-01-03 21:07:44 -05:00
|
|
|
#include "game.h"
|
2025-01-07 20:31:03 -05:00
|
|
|
#include "transition.h"
|
2025-01-04 05:01:06 -05:00
|
|
|
#include "input.h"
|
|
|
|
#include "log.h"
|
2025-01-11 08:30:48 -05:00
|
|
|
#include "util.h"
|
2025-01-03 21:07:44 -05:00
|
|
|
|
2025-01-04 04:45:44 -05:00
|
|
|
Game *game_create(void) {
|
|
|
|
Game *g = malloc(sizeof(Game));
|
|
|
|
g->should_close = false;
|
2025-01-05 17:18:51 -05:00
|
|
|
|
|
|
|
g->rooms = malloc(sizeof(Rooms));
|
|
|
|
g->rooms->count = 0;
|
|
|
|
|
|
|
|
g->transitions = malloc(sizeof(Transitions));
|
|
|
|
g->transitions->count = 0;
|
2025-01-04 05:01:06 -05:00
|
|
|
|
|
|
|
Log *log = create_log();
|
|
|
|
g->log = log;
|
|
|
|
|
2025-01-07 20:47:31 -05:00
|
|
|
Vector2 input_position = { 20, 400 };
|
2025-01-04 05:01:06 -05:00
|
|
|
Input *input = create_input(input_position);
|
|
|
|
input->log = log;
|
2025-01-07 20:47:31 -05:00
|
|
|
log->input = input;
|
2025-01-04 05:01:06 -05:00
|
|
|
input->g = g;
|
|
|
|
input->command = '>'; // Don't change this
|
|
|
|
|
|
|
|
g->input = input;
|
|
|
|
|
|
|
|
return g;
|
|
|
|
}
|
|
|
|
|
|
|
|
void free_game(Game *g) {
|
2025-01-05 17:18:51 -05:00
|
|
|
free_rooms(*g->rooms);
|
2025-01-04 05:01:06 -05:00
|
|
|
free_input(g->input);
|
|
|
|
free_log(g->log);
|
|
|
|
free(g);
|
2025-01-04 04:45:44 -05:00
|
|
|
}
|
|
|
|
|
2025-01-04 05:28:46 -05:00
|
|
|
bool string_in(const char *input, ...) {
|
|
|
|
va_list argp;
|
|
|
|
va_start(argp, input);
|
|
|
|
char *candidate;
|
|
|
|
while ((candidate = va_arg(argp, char*))) {
|
|
|
|
if (strcmp(input, candidate) == 0) {
|
|
|
|
va_end(argp);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Command command_from_string(const char *string) {
|
|
|
|
if (string_in(string, "QUIT", "Q", "EXIT", "CLOSE", NULL)) {
|
|
|
|
return COMMAND_QUIT;
|
2025-01-05 17:18:51 -05:00
|
|
|
}
|
|
|
|
if (string_in(string, "LOOK", "L", NULL)) {
|
2025-01-04 05:28:46 -05:00
|
|
|
return COMMAND_LOOK;
|
|
|
|
}
|
2025-01-05 17:18:51 -05:00
|
|
|
if (string_in(string, "NORTH", "N", NULL)) {
|
|
|
|
return COMMAND_NORTH;
|
|
|
|
}
|
|
|
|
if (string_in(string, "SOUTH", "S", NULL)) {
|
|
|
|
return COMMAND_SOUTH;
|
|
|
|
}
|
|
|
|
if (string_in(string, "EAST", "E", NULL)) {
|
|
|
|
return COMMAND_EAST;
|
|
|
|
}
|
|
|
|
if (string_in(string, "WEST", "W", NULL)) {
|
|
|
|
return COMMAND_WEST;
|
|
|
|
}
|
2025-01-04 05:28:46 -05:00
|
|
|
|
|
|
|
return COMMAND_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
2025-01-07 20:31:03 -05:00
|
|
|
#define INVALID_DIRECTIONAL_COMMAND "I can't go %s from here"
|
|
|
|
void game_handle_directional_command(Game *g, const char *c) {
|
|
|
|
Room *r = g->current_room;
|
|
|
|
Transition *transition = find_transition(g->transitions, r, command_from_string(c));
|
|
|
|
|
|
|
|
if (transition) {
|
|
|
|
push_line_to_log(g->input->log, transition->description);
|
|
|
|
g->current_room = transition->to;
|
|
|
|
} else {
|
|
|
|
char *response = malloc(strlen(INVALID_DIRECTIONAL_COMMAND) + strlen(c) + 1);
|
|
|
|
sprintf(response, INVALID_DIRECTIONAL_COMMAND, c);
|
|
|
|
push_line_to_log(g->input->log, response);
|
|
|
|
free(response);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-01-07 20:47:31 -05:00
|
|
|
#define INVALID_COMMAND "I don't know how to %s"
|
2025-01-04 04:45:44 -05:00
|
|
|
void game_handle_command(Game *g, const char *command) {
|
|
|
|
Input *input = g->input;
|
2025-01-04 05:28:46 -05:00
|
|
|
|
|
|
|
switch (command_from_string(command)) {
|
|
|
|
case COMMAND_QUIT:
|
2025-01-04 04:45:44 -05:00
|
|
|
g->should_close = true;
|
2025-01-04 05:28:46 -05:00
|
|
|
break;
|
|
|
|
case COMMAND_LOOK:
|
2025-01-04 04:45:44 -05:00
|
|
|
push_line_to_log(input->log, g->current_room->description);
|
2025-01-04 05:28:46 -05:00
|
|
|
break;
|
2025-01-07 20:31:03 -05:00
|
|
|
case COMMAND_NORTH:
|
|
|
|
case COMMAND_SOUTH:
|
|
|
|
case COMMAND_EAST:
|
|
|
|
case COMMAND_WEST:
|
|
|
|
game_handle_directional_command(g, command);
|
|
|
|
break;
|
2025-01-04 05:28:46 -05:00
|
|
|
default:
|
2025-01-05 17:18:51 -05:00
|
|
|
char *response = malloc(strlen(INVALID_COMMAND) + strlen(command) + 1);
|
2025-01-07 20:47:31 -05:00
|
|
|
sprintf(response, INVALID_COMMAND, command);
|
2025-01-05 17:18:51 -05:00
|
|
|
push_line_to_log(input->log, response);
|
|
|
|
free(response);
|
2025-01-04 05:28:46 -05:00
|
|
|
break;
|
2025-01-04 04:45:44 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-01-04 05:01:06 -05:00
|
|
|
void game_handle_input(Game *g) {
|
|
|
|
handle_pressed_keys(g->input);
|
|
|
|
}
|
|
|
|
|
|
|
|
void game_draw(Game *g) {
|
|
|
|
BeginDrawing();
|
|
|
|
ClearBackground(BLACK);
|
|
|
|
draw_log(g->log);
|
|
|
|
draw_text(g->input);
|
|
|
|
EndDrawing();
|
|
|
|
}
|
|
|
|
|
|
|
|
void game_run_until_close(Game *g) {
|
|
|
|
while (!WindowShouldClose() && !g->should_close)
|
|
|
|
{
|
|
|
|
game_handle_input(g);
|
|
|
|
game_draw(g);
|
|
|
|
}
|
2025-01-03 21:07:44 -05:00
|
|
|
}
|