prosperon/source/engine/sprite.h

45 lines
1.1 KiB
C
Raw Normal View History

2021-11-30 21:29:18 -06:00
#ifndef SPRITE_H
#define SPRITE_H
2022-08-28 22:34:33 -05:00
#include <stdio.h>
2022-02-06 10:14:57 -06:00
#include "timer.h"
2021-11-30 21:29:18 -06:00
#include "mathc.h"
2023-01-02 07:55:26 -06:00
#include "texture.h"
2021-11-30 21:29:18 -06:00
struct datastream;
2022-11-19 17:13:57 -06:00
struct gameobject;
2021-11-30 21:29:18 -06:00
struct sprite {
2021-11-30 21:29:18 -06:00
mfloat_t pos[2];
mfloat_t size[2];
float rotation;
mfloat_t color[3];
2023-01-12 17:41:54 -06:00
int go;
int id;
2022-08-28 22:34:33 -05:00
struct Texture *tex;
2023-01-18 14:43:07 -06:00
struct glrect *frame;
int next;
2023-01-17 13:04:08 -06:00
int enabled;
2021-11-30 21:29:18 -06:00
};
2023-01-12 17:41:54 -06:00
int make_sprite(int go);
struct sprite *id2sprite(int id);
void sprite_delete(int id);
2023-01-17 13:04:08 -06:00
void sprite_enabled(int id, int e);
void sprite_io(struct sprite *sprite, FILE *f, int read);
void sprite_loadtex(struct sprite *sprite, const char *path);
void sprite_settex(struct sprite *sprite, struct Texture *tex);
2023-01-18 17:15:36 -06:00
void sprite_setanim(struct sprite *sprite, struct TexAnim *anim, int frame);
2023-01-18 14:43:07 -06:00
void sprite_setframe(struct sprite *sprite, struct glrect *frame);
2022-02-06 10:14:57 -06:00
void sprite_initialize();
void sprite_draw(struct sprite *sprite);
2022-06-30 10:31:23 -05:00
void video_draw(struct datastream *ds, mfloat_t pos[2], mfloat_t size[2], float rotate, mfloat_t color[3]);
2022-07-01 11:14:43 -05:00
void sprite_draw_all();
unsigned int incrementAnimFrame(unsigned int interval, struct sprite *sprite);
2021-11-30 21:29:18 -06:00
2022-08-12 14:03:56 -05:00
2022-12-24 13:18:06 -06:00
void gui_draw_img(const char *img, float x, float y);
2021-11-30 21:29:18 -06:00
#endif