reorganization of twn_util.h, reletion of some seldom used procedures
This commit is contained in:
@ -216,7 +216,7 @@ void render_sprite_batch(const Primitive2D primitives[],
|
||||
|
||||
#pragma GCC diagnostic pop
|
||||
|
||||
const Vec2 c = rect_center(sprite.rect);
|
||||
const Vec2 c = { sprite.rect.x + sprite.rect.w / 2, sprite.rect.y + sprite.rect.h / 2 };
|
||||
const Vec2 t = fast_cossine(sprite.rotation + (float)M_PI_4);
|
||||
const Vec2 d = {
|
||||
.x = t.x * sprite.rect.w * (float)M_SQRT1_2,
|
||||
@ -231,7 +231,7 @@ void render_sprite_batch(const Primitive2D primitives[],
|
||||
} else {
|
||||
/* rotated non-square case*/
|
||||
|
||||
const Vec2 c = rect_center(sprite.rect);
|
||||
const Vec2 c = { sprite.rect.x + sprite.rect.w / 2, sprite.rect.y + sprite.rect.h / 2 };
|
||||
const Vec2 t = fast_cossine(sprite.rotation);
|
||||
|
||||
const Vec2 h = { sprite.rect.w / 2, sprite.rect.h / 2 };
|
||||
|
@ -109,24 +109,12 @@ void *ccalloc(size_t num, size_t size) {
|
||||
}
|
||||
|
||||
|
||||
double clamp(double d, double min, double max) {
|
||||
const double t = d < min ? min : d;
|
||||
return t > max ? max : t;
|
||||
}
|
||||
|
||||
|
||||
float clampf(float f, float min, float max) {
|
||||
const float t = f < min ? min : f;
|
||||
return t > max ? max : t;
|
||||
}
|
||||
|
||||
|
||||
int clampi(int i, int min, int max) {
|
||||
const int t = i < min ? min : i;
|
||||
return t > max ? max : t;
|
||||
}
|
||||
|
||||
|
||||
int64_t file_to_bytes(const char *path, unsigned char **buf_out) {
|
||||
SDL_RWops *handle = PHYSFSRWOPS_openRead(path);
|
||||
|
||||
@ -198,17 +186,6 @@ void textures_dump_atlases(void) {
|
||||
}
|
||||
|
||||
|
||||
bool strends(const char *str, const char *suffix) {
|
||||
size_t str_length = SDL_strlen(str);
|
||||
size_t suffix_length = SDL_strlen(suffix);
|
||||
|
||||
if (suffix_length > str_length)
|
||||
return false;
|
||||
|
||||
return SDL_memcmp((str + str_length) - suffix_length, suffix, suffix_length) == 0;
|
||||
}
|
||||
|
||||
|
||||
/* TODO: have our own */
|
||||
Rect rect_overlap(const Rect a, const Rect b) {
|
||||
SDL_FRect a_sdl = { a.x, a.y, a.w, a.h };
|
||||
@ -229,43 +206,12 @@ bool rect_intersects(const Rect a, const Rect b) {
|
||||
}
|
||||
|
||||
|
||||
Vec2 rect_center(Rect rect) {
|
||||
return (Vec2){
|
||||
.x = rect.x + rect.w / 2,
|
||||
.y = rect.y + rect.h / 2,
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
int32_t timer_tick_frames(int32_t frames_left) {
|
||||
SDL_assert(frames_left >= 0);
|
||||
return MAX(frames_left - 1, 0);
|
||||
}
|
||||
|
||||
|
||||
float timer_tick_seconds(float seconds_left) {
|
||||
SDL_assert(seconds_left >= 0);
|
||||
return MAX(seconds_left - ((float)ctx.delta_time / (float)ctx.clocks_per_second), 0.0f);
|
||||
}
|
||||
|
||||
|
||||
TimerElapseFramesResult timer_elapse_frames(int32_t frames_left, int32_t interval) {
|
||||
SDL_assert(frames_left >= 0);
|
||||
SDL_assert(interval > 0);
|
||||
|
||||
frames_left -= 1;
|
||||
bool elapsed = false;
|
||||
if (frames_left <= 0) {
|
||||
elapsed = true;
|
||||
frames_left += interval;
|
||||
}
|
||||
return (TimerElapseFramesResult) {
|
||||
.elapsed = elapsed,
|
||||
.frames_left = frames_left
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
TimerElapseSecondsResult timer_elapse_seconds(float seconds_left, float interval) {
|
||||
SDL_assert(seconds_left >= 0);
|
||||
SDL_assert(interval > 0);
|
||||
|
@ -27,6 +27,8 @@ _Noreturn void die_abruptly(void);
|
||||
/* note: you must free the returned string */
|
||||
char *expand_asterisk(const char *mask, const char *to);
|
||||
|
||||
void profile_list_stats(void);
|
||||
|
||||
/* http://www.azillionmonkeys.com/qed/sqroot.html */
|
||||
static inline float fast_sqrt(float x)
|
||||
{
|
||||
|
Reference in New Issue
Block a user