diff --git a/01_text_adventure/img/made_by_bgb.aseprite b/01_text_adventure/img/made_by_bgb.aseprite new file mode 100644 index 0000000..db6f059 Binary files /dev/null and b/01_text_adventure/img/made_by_bgb.aseprite differ diff --git a/01_text_adventure/img/made_by_bgb.png b/01_text_adventure/img/made_by_bgb.png new file mode 100644 index 0000000..c39ef82 Binary files /dev/null and b/01_text_adventure/img/made_by_bgb.png differ diff --git a/01_text_adventure/img/made_w_raylib.aseprite b/01_text_adventure/img/made_w_raylib.aseprite new file mode 100644 index 0000000..1a16efb Binary files /dev/null and b/01_text_adventure/img/made_w_raylib.aseprite differ diff --git a/01_text_adventure/img/made_w_raylib.png b/01_text_adventure/img/made_w_raylib.png new file mode 100644 index 0000000..eb57d69 Binary files /dev/null and b/01_text_adventure/img/made_w_raylib.png differ diff --git a/01_text_adventure/intro.c b/01_text_adventure/intro.c new file mode 100644 index 0000000..82f6bbb --- /dev/null +++ b/01_text_adventure/intro.c @@ -0,0 +1,40 @@ +#include +#include "intro.h" + +#define FONT_SIZE 36 + +void display_loading(void) { + int window_width = GetRenderWidth(); + int window_height = GetRenderHeight(); + int loading_width = MeasureText("Loading...", FONT_SIZE); + BeginDrawing(); + DrawText("Loading...", window_width - loading_width, window_height - FONT_SIZE, FONT_SIZE, RAYWHITE); + EndDrawing(); +} + +Intro *load_intro(void) { + Intro *i = malloc(sizeof(Intro)); + i->textures = malloc(sizeof(Texture) * 2); + + Image bgb = LoadImage("img/made_by_bgb.png"); + i->textures[0] = LoadTextureFromImage(bgb); + UnloadImage(bgb); + + Image ray = LoadImage("img/made_w_raylib.png"); + i->textures[1] = LoadTextureFromImage(ray); + UnloadImage(ray); + + i->texture_count = 2; + i->timer = 0.; + return i; +} + +void intro_display(Intro *intro) { + for (int i = 0; i < intro->texture_count; i++) { + intro->timer = GetTime() + 2.0; + BeginDrawing(); + DrawTexture(intro->textures[i], 0, 0, WHITE); + EndDrawing(); + while(GetTime() < intro->timer) {} + } +} diff --git a/01_text_adventure/intro.h b/01_text_adventure/intro.h new file mode 100644 index 0000000..f1889c8 --- /dev/null +++ b/01_text_adventure/intro.h @@ -0,0 +1,18 @@ +#ifndef _FD_INTRO_ +#define _FD_INTRO_ + +typedef struct Intro Intro; + +#include + +struct Intro { + Texture *textures; + int texture_count; + double timer; +}; + +void display_loading(void); +Intro *load_intro(void); +void intro_display(Intro *i); + +#endif diff --git a/01_text_adventure/main.c b/01_text_adventure/main.c index fd79c16..cd0aaee 100644 --- a/01_text_adventure/main.c +++ b/01_text_adventure/main.c @@ -4,12 +4,17 @@ #include +#include "intro.h" #include "game.h" -int main(void) { +int main(int argc, char** argv) { InitWindow(800, 450, "Text Adventure"); SetTargetFPS(60); + display_loading(); + Intro *i = load_intro(); + intro_display(i); + Game *g = game_create(); game_run_until_close(g);