2024-07-08 00:44:20 +00:00
|
|
|
#include "ingame.h"
|
|
|
|
#include "title.h"
|
|
|
|
#include "scene.h"
|
|
|
|
|
2024-07-08 06:46:12 +00:00
|
|
|
#include "../../audio.h"
|
|
|
|
|
2024-07-08 00:44:20 +00:00
|
|
|
|
|
|
|
static void ingame_tick(struct state *state) {
|
|
|
|
struct scene_ingame *scn = (struct scene_ingame *)state->scene;
|
|
|
|
|
|
|
|
world_drawdef(scn->world);
|
|
|
|
player_calc(scn->player);
|
2024-07-08 15:13:33 +00:00
|
|
|
|
2024-07-28 20:59:23 +00:00
|
|
|
push_sprite_ex((t_frect){ .x = 32, .y = 64, .w = 64, .h = 64 }, (t_push_sprite_args){
|
|
|
|
.path = "/assets/light.png",
|
|
|
|
.color = (t_color){255, 0, 0, 255}, });
|
2024-07-27 14:55:57 +00:00
|
|
|
|
|
|
|
push_sprite_ex((t_frect){ .x = 48, .y = 64, .w = 64, .h = 64 }, (t_push_sprite_args){
|
|
|
|
.path = "/assets/light.png",
|
2024-07-28 20:59:23 +00:00
|
|
|
.color = (t_color){0, 255, 0, 255}, });
|
2024-07-27 14:55:57 +00:00
|
|
|
|
|
|
|
push_sprite_ex((t_frect){ .x = 64, .y = 64, .w = 64, .h = 64 }, (t_push_sprite_args){
|
|
|
|
.path = "/assets/light.png",
|
2024-07-28 20:59:23 +00:00
|
|
|
.color = (t_color){0, 0, 255, 255}, });
|
2024-07-27 14:55:57 +00:00
|
|
|
|
2024-07-27 13:55:38 +00:00
|
|
|
push_sprite_ex((t_frect){ .x = 32, .y = 32, .w = 64, .h = 64 }, (t_push_sprite_args){
|
|
|
|
.path = "/assets/player/baron-walk.png",
|
|
|
|
.color = (t_color){255, 255, 255, 255},
|
2024-07-28 20:59:23 +00:00
|
|
|
.rotation = (float)M_PI * 2 * (float)(ctx.tick_count % 64) / 64, });
|
2024-07-27 13:55:38 +00:00
|
|
|
|
|
|
|
push_sprite_ex((t_frect){ .x = 64, .y = 32, .w = 64, .h = 64 }, (t_push_sprite_args){
|
|
|
|
.path = "/assets/player/baron-walk.png",
|
|
|
|
.color = (t_color){255, 255, 255, 255},
|
2024-07-28 20:59:23 +00:00
|
|
|
.rotation = (float)M_PI / 64, });
|
2024-07-27 13:55:38 +00:00
|
|
|
|
|
|
|
push_sprite_ex((t_frect){ .x = 96, .y = 32, .w = 64, .h = 64 }, (t_push_sprite_args){
|
|
|
|
.path = "/assets/player/baron-walk.png",
|
2024-07-28 20:59:23 +00:00
|
|
|
.color = (t_color){255, 255, 255, 255}, });
|
2024-07-27 13:55:38 +00:00
|
|
|
|
2024-07-14 15:36:48 +00:00
|
|
|
unfurl_triangle("/assets/big-violet.png",
|
2024-07-12 18:10:25 +00:00
|
|
|
(t_fvec3){ -1, -1, 0 },
|
|
|
|
(t_fvec3){ 1, -1, 0 },
|
|
|
|
(t_fvec3){ 1, 1, 0 },
|
2024-07-19 21:48:30 +00:00
|
|
|
(t_shvec2){ 0, 2048 },
|
|
|
|
(t_shvec2){ 2048, 2048 },
|
|
|
|
(t_shvec2){ 2048, 0 });
|
2024-07-12 18:10:25 +00:00
|
|
|
|
2024-07-14 15:36:48 +00:00
|
|
|
unfurl_triangle("/assets/big-violet.png",
|
2024-07-12 18:10:25 +00:00
|
|
|
(t_fvec3){ 1, 1, 0 },
|
|
|
|
(t_fvec3){ -1, 1, 0 },
|
|
|
|
(t_fvec3){ -1, -1, 0 },
|
2024-07-19 21:48:30 +00:00
|
|
|
(t_shvec2){ 2048, 0 },
|
|
|
|
(t_shvec2){ 0, 0 },
|
|
|
|
(t_shvec2){ 0, 2048 });
|
2024-07-08 00:44:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void ingame_end(struct state *state) {
|
|
|
|
struct scene_ingame *scn = (struct scene_ingame *)state->scene;
|
|
|
|
player_destroy(scn->player);
|
|
|
|
world_destroy(scn->world);
|
2024-07-27 22:44:39 +00:00
|
|
|
free(state->scene);
|
2024-07-08 00:44:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct scene *ingame_scene(struct state *state) {
|
|
|
|
(void)state;
|
|
|
|
|
|
|
|
struct scene_ingame *new_scene = ccalloc(1, sizeof *new_scene);
|
|
|
|
new_scene->base.tick = ingame_tick;
|
|
|
|
new_scene->base.end = ingame_end;
|
|
|
|
|
|
|
|
new_scene->world = world_create();
|
|
|
|
new_scene->player = player_create(new_scene->world);
|
|
|
|
|
2024-07-08 15:00:38 +00:00
|
|
|
play_audio_ex("music/repeat-test.xm", "soundtrack", (t_play_audio_args){
|
2024-07-08 06:46:12 +00:00
|
|
|
.volume = 0.8f,
|
2024-07-08 15:00:38 +00:00
|
|
|
.panning = -0.5f,
|
|
|
|
.repeat = true,
|
2024-07-08 06:46:12 +00:00
|
|
|
});
|
|
|
|
|
2024-07-08 00:44:20 +00:00
|
|
|
return (struct scene *)new_scene;
|
|
|
|
}
|