Skip to content

Instantly share code, notes, and snippets.

@wldomiciano
Last active September 12, 2018 19:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wldomiciano/d16bea2d66365cf0113c7abaa0b84de7 to your computer and use it in GitHub Desktop.
Save wldomiciano/d16bea2d66365cf0113c7abaa0b84de7 to your computer and use it in GitHub Desktop.
Exemplo usando SDL 2 com SDL_ttf usando window surface
// Testado com MinGW64:
// gcc -Wall -Wextra -Wpedantic -Wno-unused-parameter test1.c `sdl2-config --cflags --libs` -lSDL2_ttf
#include <SDL.h>
#include <SDL_ttf.h>
SDL_Window *window;
SDL_Surface *surface;
TTF_Font *font;
#define MAX_LENGTH 1024
void drawText(const char* fmt, ...) {
char buffer[MAX_LENGTH] = {0};
va_list ap;
va_start (ap, fmt);
SDL_vsnprintf(buffer, MAX_LENGTH, fmt, ap);
va_end (ap);
SDL_Surface* text = TTF_RenderText_Solid(font, buffer,
(SDL_Color) { 255, 255, 255, 255 });
SDL_BlitSurface(text, NULL, surface, NULL);
SDL_FreeSurface(text);
}
int main(int argc, char *argv[]) {
SDL_Init(SDL_INIT_VIDEO);
TTF_Init();
// https://fonts.google.com/specimen/VT323
font = TTF_OpenFont("VT323.ttf", 24);
window = SDL_CreateWindow("Window Title", SDL_WINDOWPOS_CENTERED,
SDL_WINDOWPOS_CENTERED, 360, 240, 0);
surface = SDL_GetWindowSurface(window);
int counter = 0;
while (!SDL_QuitRequested()) {
SDL_FillRect(surface, NULL, 0);
drawText("Your Score: %d", counter++);
SDL_UpdateWindowSurface(window);
}
TTF_CloseFont(font);
SDL_DestroyWindow(window);
SDL_Quit();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment