This repository has been archived on 2023-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
api8/src/credits.c

112 lines
2.7 KiB
C
Raw Normal View History

#include "../includes/animations.h"
2023-05-03 17:24:54 +02:00
static GLuint _pId = 0;
static GLuint _textTexId = 0;
static GLuint _quadId = 0;
static void init(void);
2023-05-03 16:08:33 +02:00
2023-05-03 17:24:54 +02:00
static void draw(void);
2023-05-03 16:08:08 +02:00
void credits(int state) {
switch (state) {
case GL4DH_INIT:
2023-05-03 16:08:08 +02:00
init();
break;
case GL4DH_DRAW:
2023-05-03 16:08:08 +02:00
draw();
break;
default:
break;
}
}
2023-05-03 16:08:08 +02:00
2023-05-03 17:24:54 +02:00
static void init(void) {
_pId = gl4duCreateProgram("<vs>shaders/credits.vs", "<fs>shaders/credits.fs",
NULL);
gl4duGenMatrix(GL_FLOAT, "modview");
gl4duGenMatrix(GL_FLOAT, "proj");
_quadId = gl4dgGenQuadf();
// Font
char *text = " CRÉDITS\n\n"
2023-05-03 17:52:34 +02:00
"Concours API8 — 7e édition\n"
2023-05-03 17:24:54 +02:00
"Font: fontesk et fontsquirrel\n"
2023-05-03 18:14:54 +02:00
"Audio: beepbox\n"
2023-05-03 17:24:54 +02:00
"Librairies: GL4D, SDL2 et extensions";
char *fontName = "fonts/Instrument.ttf";
SDL_Color c = {255, 255, 255, 255};
SDL_Surface *d, *s;
TTF_Font *font = NULL;
if (TTF_Init() == -1) {
fprintf(stderr, "Erreur TTF : %s\n", TTF_GetError());
2023-05-03 18:21:00 +02:00
exit(3);
2023-05-03 17:24:54 +02:00
}
glGenTextures(1, &_textTexId);
glBindTexture(GL_TEXTURE_2D, _textTexId);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
if (!(font = TTF_OpenFont(fontName, 100))) {
fprintf(stderr, "Erreur TTF : %s\n", TTF_GetError());
2023-05-03 18:21:00 +02:00
exit(3);
2023-05-03 17:24:54 +02:00
}
if ((d = TTF_RenderUTF8_Blended_Wrapped(font, text, c, 0)) == NULL) {
TTF_CloseFont(font);
2023-05-03 18:21:00 +02:00
fprintf(stderr, "Erreur TTF : TTF_RenderUTF8_Blended_Wrapped\n");
exit(3);
2023-05-03 17:24:54 +02:00
}
assert((s = SDL_CreateRGBSurface(0, d->w, d->h, 32, R_MASK, G_MASK, B_MASK,
A_MASK)));
SDL_BlitSurface(d, NULL, s, NULL);
SDL_FreeSurface(d);
glBindTexture(GL_TEXTURE_2D, _textTexId);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, s->w, s->h, 0, GL_RGBA,
GL_UNSIGNED_BYTE, s->pixels);
SDL_FreeSurface(s);
TTF_CloseFont(font);
glBindTexture(GL_TEXTURE_2D, 0);
}
static void draw(void) {
glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
static Uint32 t0 = -1;
GLfloat t, d;
if (t0 < 0.0f)
t0 = SDL_GetTicks();
t = (GLfloat)(SDL_GetTicks() - t0) / 1000.f;
d = -1.1f + .25f * t;
GLfloat ratio = (GLfloat)_dims[0] / (GLfloat)_dims[1];
gl4duBindMatrix("proj");
gl4duLoadIdentityf();
gl4duFrustumf(-ratio, ratio, -1, 1, 2, 100);
2023-05-03 16:08:33 +02:00
2023-05-03 17:24:54 +02:00
gl4duBindMatrix("modview");
gl4duLoadIdentityf();
2023-05-03 17:52:34 +02:00
gl4duTranslatef(0.f, d - 1.5f, -2.f);
2023-05-03 17:24:54 +02:00
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, _textTexId);
2023-05-03 17:52:34 +02:00
gl4duScalef(1.f, .3f, 1.f);
2023-05-03 17:24:54 +02:00
glUseProgram(_pId);
gl4duSendMatrices();
glUniform1i(glGetUniformLocation(_pId, "inv"), 1);
glUniform1i(glGetUniformLocation(_pId, "tex"), 0);
gl4dgDraw(_quadId);
glUseProgram(0);
}