townengine/apps/scenery/game.c

74 lines
2.2 KiB
C
Raw Normal View History

2024-07-08 00:44:20 +00:00
#include "state.h"
#include "scenes/scene.h"
#include "scenes/title.h"
#include "twn_game_api.h"
2024-08-21 13:55:34 +00:00
2024-07-30 21:05:28 +00:00
#include <SDL_scancode.h>
2024-07-08 00:44:20 +00:00
#include <stdio.h>
#include <malloc.h>
#include <stdint.h>
void game_tick(void) {
2024-08-21 13:55:34 +00:00
if (ctx.initialization_needed) {
if (!ctx.udata) {
ctx.udata = ccalloc(1, sizeof (State));
2024-08-21 13:55:34 +00:00
State *state = ctx.udata;
2024-08-21 13:55:34 +00:00
state->ctx = &ctx;
state->scene = title_scene(state);
}
2024-07-08 00:44:20 +00:00
input_add_action(&ctx.input, "debug_toggle");
input_bind_action_scancode(&ctx.input, "debug_toggle", SDL_SCANCODE_BACKSPACE);
input_add_action(&ctx.input, "player_left");
2024-07-30 21:05:28 +00:00
input_bind_action_scancode(&ctx.input, "player_left", SDL_SCANCODE_A);
2024-07-08 00:44:20 +00:00
input_add_action(&ctx.input, "player_right");
2024-07-30 21:05:28 +00:00
input_bind_action_scancode(&ctx.input, "player_right", SDL_SCANCODE_D);
input_add_action(&ctx.input, "player_forward");
input_bind_action_scancode(&ctx.input, "player_forward", SDL_SCANCODE_W);
input_add_action(&ctx.input, "player_backward");
input_bind_action_scancode(&ctx.input, "player_backward", SDL_SCANCODE_S);
2024-07-08 00:44:20 +00:00
input_add_action(&ctx.input, "player_jump");
2024-07-30 21:05:28 +00:00
input_bind_action_scancode(&ctx.input, "player_jump", SDL_SCANCODE_SPACE);
input_add_action(&ctx.input, "player_run");
input_bind_action_scancode(&ctx.input, "player_run", SDL_SCANCODE_LSHIFT);
2024-07-08 00:44:20 +00:00
input_add_action(&ctx.input, "ui_accept");
input_bind_action_scancode(&ctx.input, "ui_accept", SDL_SCANCODE_RETURN);
2024-07-30 21:05:28 +00:00
input_add_action(&ctx.input, "mouse_capture_toggle");
2024-08-19 16:19:22 +00:00
input_bind_action_scancode(&ctx.input, "mouse_capture_toggle", SDL_SCANCODE_ESCAPE);
2024-07-08 00:44:20 +00:00
}
State *state = ctx.udata;
2024-07-08 00:44:20 +00:00
if (input_is_action_just_pressed(&ctx.input, "debug_toggle")) {
ctx.debug = !ctx.debug;
}
state->scene->tick(state);
/* there's a scene switch pending, we can do it now that the tick is done */
if (state->next_scene != NULL) {
state->scene->end(state);
state->scene = state->next_scene;
state->is_scene_switching = false;
state->next_scene = NULL;
}
}
void game_end(void) {
State *state = ctx.udata;
2024-07-08 00:44:20 +00:00
state->scene->end(state);
free(state);
}