Very crude intro

This commit is contained in:
Bill Rossi 2025-01-24 18:22:26 -05:00
parent 4a52d509c9
commit 7f039aa4f2
7 changed files with 64 additions and 1 deletions

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

40
01_text_adventure/intro.c Normal file
View File

@ -0,0 +1,40 @@
#include <stdlib.h>
#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) {}
}
}

18
01_text_adventure/intro.h Normal file
View File

@ -0,0 +1,18 @@
#ifndef _FD_INTRO_
#define _FD_INTRO_
typedef struct Intro Intro;
#include <raylib.h>
struct Intro {
Texture *textures;
int texture_count;
double timer;
};
void display_loading(void);
Intro *load_intro(void);
void intro_display(Intro *i);
#endif

View File

@ -4,12 +4,17 @@
#include <raylib.h>
#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);