breakhack/src/sprite.c

89 lines
1.8 KiB
C

#include "sprite.h"
#include "util.h"
static
Sprite* sprite_create_default(void)
{
Position pos = { 0, 0 };
Sprite *s = ec_malloc(sizeof(Sprite));
*s = (Sprite) {
{ NULL, NULL },
(SDL_Rect) { 0, 0, 16, 16 },
false, pos,
NULL,
0
};
s->renderTimer = timer_create();
return s;
}
Sprite* sprite_create()
{
return sprite_create_default();
}
void
sprite_load_texture(Sprite *sprite,
char *path,
int index,
SDL_Renderer *renderer)
{
if (index > 1)
fatal("in sprite_load_texture() index out of bounds");
if (sprite->destroyTextures && sprite->textures[index] != NULL) {
texture_destroy(sprite->textures[index]);
sprite->textures[index] = NULL;
}
sprite->textures[index] = texture_create();
texture_load_from_file(sprite->textures[index], path, renderer);
sprite->destroyTextures = true;
}
void
sprite_set_texture(Sprite *s, Texture *t, int index)
{
if (index > 1)
fatal("in sprite_set_texture() index out of bounds");
if (s->destroyTextures)
fatal("in sprite_set_texture() sprite contains loaded textures");
s->textures[index] = t;
}
void sprite_render(Sprite *s, Camera *cam)
{
if (s->textures[1]) {
if (!timer_started(s->renderTimer))
timer_start(s->renderTimer);
if (timer_get_ticks(s->renderTimer) > 300) {
timer_stop(s->renderTimer);
timer_start(s->renderTimer);
s->texture_index = s->texture_index == 0 ? 1 : 0;
}
}
Position cameraPos = camera_to_camera_position(cam, &s->pos);
texture_render_clip(s->textures[s->texture_index],
&cameraPos,
&s->clip,
cam);
}
void sprite_destroy(Sprite *sprite)
{
if (sprite->destroyTextures) {
if (sprite->textures[0])
texture_destroy(sprite->textures[0]);
if (sprite->textures[1])
texture_destroy(sprite->textures[1]);
}
timer_destroy(sprite->renderTimer);
free(sprite);
}