2019-09-01 21:40:08 +00:00
|
|
|
#include "common.h"
|
2019-08-29 02:40:26 +00:00
|
|
|
#include "SDL_helper.h"
|
|
|
|
|
2019-09-01 21:40:08 +00:00
|
|
|
void SDL_ClearScreen(SDL_Renderer *renderer, SDL_Color colour) {
|
2019-08-29 02:40:26 +00:00
|
|
|
SDL_SetRenderDrawColor(renderer, colour.r, colour.g, colour.b, colour.a);
|
|
|
|
SDL_RenderClear(renderer);
|
|
|
|
}
|
|
|
|
|
2019-09-01 21:40:08 +00:00
|
|
|
void SDL_DrawRect(SDL_Renderer *renderer, int x, int y, int w, int h, SDL_Color colour) {
|
2019-08-29 02:40:26 +00:00
|
|
|
SDL_Rect rect;
|
|
|
|
rect.x = x; rect.y = y; rect.w = w; rect.h = h;
|
2019-09-01 21:40:08 +00:00
|
|
|
SDL_SetRenderDrawColor(RENDERER, colour.r, colour.g, colour.b, colour.a);
|
|
|
|
SDL_RenderFillRect(RENDERER, &rect);
|
2019-08-29 02:40:26 +00:00
|
|
|
}
|
|
|
|
|
2019-09-01 21:40:08 +00:00
|
|
|
void SDL_DrawCircle(SDL_Renderer *renderer, int x, int y, int r, SDL_Color colour) {
|
2019-08-29 02:40:26 +00:00
|
|
|
filledCircleRGBA(renderer, x, y, r, colour.r, colour.g, colour.b, colour.a);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-01 21:40:08 +00:00
|
|
|
void SDL_DrawText(SDL_Renderer *renderer, TTF_Font *font, int x, int y, SDL_Color colour, const char *text) {
|
2019-08-29 02:40:26 +00:00
|
|
|
SDL_Surface *surface = TTF_RenderText_Blended_Wrapped(font, text, colour, 1280);
|
|
|
|
SDL_SetSurfaceAlphaMod(surface, colour.a);
|
2019-09-01 21:40:08 +00:00
|
|
|
SDL_Texture *texture = SDL_CreateTextureFromSurface(renderer, surface);
|
2019-08-29 02:40:26 +00:00
|
|
|
SDL_FreeSurface(surface);
|
2019-09-01 21:40:08 +00:00
|
|
|
|
|
|
|
SDL_Rect position;
|
|
|
|
position.x = x; position.y = y;
|
|
|
|
SDL_QueryTexture(texture, NULL, NULL, &position.w, &position.h);
|
|
|
|
SDL_RenderCopy(renderer, texture, NULL, &position);
|
|
|
|
SDL_DestroyTexture(texture);
|
2019-08-29 02:40:26 +00:00
|
|
|
}
|
|
|
|
|
2019-09-01 21:40:08 +00:00
|
|
|
void SDL_DrawTextf(SDL_Renderer *renderer, TTF_Font *font, int x, int y, SDL_Color colour, const char* text, ...) {
|
2019-08-29 02:40:26 +00:00
|
|
|
char buffer[256];
|
|
|
|
va_list args;
|
|
|
|
va_start(args, text);
|
|
|
|
vsnprintf(buffer, 256, text, args);
|
2019-09-01 21:40:08 +00:00
|
|
|
SDL_DrawText(renderer, font, x, y, colour, buffer);
|
2019-08-29 02:40:26 +00:00
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
|
2019-09-01 21:40:08 +00:00
|
|
|
void SDL_LoadImage(SDL_Renderer *renderer, SDL_Texture **texture, char *path) {
|
2019-08-29 02:40:26 +00:00
|
|
|
SDL_Surface *loaded_surface = NULL;
|
|
|
|
loaded_surface = IMG_Load(path);
|
|
|
|
|
|
|
|
if (loaded_surface)
|
|
|
|
{
|
|
|
|
Uint32 colorkey = SDL_MapRGB(loaded_surface->format, 0, 0, 0);
|
|
|
|
SDL_SetColorKey(loaded_surface, SDL_TRUE, colorkey);
|
|
|
|
*texture = SDL_CreateTextureFromSurface(renderer, loaded_surface);
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_FreeSurface(loaded_surface);
|
|
|
|
}
|
|
|
|
|
2019-09-01 21:40:08 +00:00
|
|
|
void SDL_DrawImage(SDL_Renderer *renderer, SDL_Texture *texture, int x, int y) {
|
|
|
|
SDL_Rect position;
|
|
|
|
position.x = x; position.y = y;
|
|
|
|
SDL_QueryTexture(texture, NULL, NULL, &position.w, &position.h);
|
|
|
|
SDL_RenderCopy(renderer, texture, NULL, &position);
|
2019-08-29 02:40:26 +00:00
|
|
|
}
|
|
|
|
|
2019-09-01 21:40:08 +00:00
|
|
|
void SDL_DrawImageScale(SDL_Renderer *renderer, SDL_Texture *texture, int x, int y, int w, int h) {
|
2019-08-29 02:40:26 +00:00
|
|
|
SDL_Rect position;
|
|
|
|
position.x = x; position.y = y; position.w = w; position.h = h;
|
|
|
|
SDL_RenderCopy(renderer, texture, NULL, &position);
|
2019-09-01 21:40:08 +00:00
|
|
|
}
|