2024-10-12 17:24:47 +00:00
|
|
|
#ifndef TWN_UTIL_H
|
|
|
|
#define TWN_UTIL_H
|
2024-07-08 00:44:20 +00:00
|
|
|
|
2024-10-07 15:05:53 +00:00
|
|
|
#include "twn_types.h"
|
2024-08-26 21:33:37 +00:00
|
|
|
#include "twn_engine_api.h"
|
2024-07-08 00:44:20 +00:00
|
|
|
|
|
|
|
#include <stdint.h>
|
2024-10-12 18:16:25 +00:00
|
|
|
#include <stddef.h>
|
2024-07-08 00:44:20 +00:00
|
|
|
#include <stdbool.h>
|
2024-10-07 15:37:44 +00:00
|
|
|
#include <math.h>
|
2024-07-08 00:44:20 +00:00
|
|
|
|
|
|
|
|
2024-10-07 07:44:18 +00:00
|
|
|
#ifndef M_PI
|
|
|
|
#define M_PI 3.14159265358979323846264338327950288 /**< pi */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* multiply by these to convert degrees <---> radians */
|
|
|
|
#define DEG2RAD (M_PI / 180)
|
|
|
|
#define RAD2DEG (180 / M_PI)
|
|
|
|
|
2024-10-12 18:16:25 +00:00
|
|
|
#ifndef TWN_NOT_C
|
2024-10-07 07:44:18 +00:00
|
|
|
|
2024-10-12 18:16:25 +00:00
|
|
|
TWN_API void *cmalloc(size_t size);
|
|
|
|
TWN_API void *crealloc(void *ptr, size_t size);
|
|
|
|
TWN_API void *ccalloc(size_t num, size_t size);
|
2024-07-08 00:44:20 +00:00
|
|
|
|
2024-10-22 11:45:30 +00:00
|
|
|
TWN_API void log_info(const char *restrict format, ...);
|
|
|
|
TWN_API void log_critical(const char *restrict format, ...);
|
|
|
|
TWN_API void log_warn(const char *restrict format, ...);
|
2024-10-07 07:44:18 +00:00
|
|
|
|
2024-10-22 11:45:30 +00:00
|
|
|
/* saves all texture atlases as BMP files in the write directory */
|
|
|
|
TWN_API void textures_dump_atlases(void);
|
2024-07-08 00:44:20 +00:00
|
|
|
|
2024-10-22 11:45:30 +00:00
|
|
|
/* returns true if str ends with suffix */
|
|
|
|
TWN_API bool strends(const char *str, const char *suffix);
|
2024-07-08 00:44:20 +00:00
|
|
|
|
2024-10-22 11:45:30 +00:00
|
|
|
/* TODO: this is why generics were invented. sorry, i'm tired today */
|
|
|
|
TWN_API double clamp(double d, double min, double max);
|
|
|
|
TWN_API float clampf(float f, float min, float max);
|
|
|
|
TWN_API int clampi(int i, int min, int max);
|
2024-07-08 00:44:20 +00:00
|
|
|
|
2024-10-22 11:45:30 +00:00
|
|
|
/* sets buf_out to a pointer to a byte buffer which must be freed. */
|
|
|
|
/* returns the size of this buffer. */
|
|
|
|
TWN_API int64_t file_to_bytes(const char *path, unsigned char **buf_out);
|
2024-10-07 07:44:18 +00:00
|
|
|
|
2024-10-22 11:45:30 +00:00
|
|
|
/* returns a pointer to a string which must be freed */
|
|
|
|
TWN_API char *file_to_str(const char *path);
|
2024-09-27 00:32:08 +00:00
|
|
|
|
2024-10-22 11:45:30 +00:00
|
|
|
/* returns true if the file exists in the filesystem */
|
|
|
|
TWN_API bool file_exists(const char *path);
|
2024-09-27 00:32:08 +00:00
|
|
|
|
2024-10-22 11:45:30 +00:00
|
|
|
#endif /* TWN_NOT_C */
|
2024-07-08 00:44:20 +00:00
|
|
|
|
2024-10-22 11:45:30 +00:00
|
|
|
/* calculates the overlap of two rectangles */
|
|
|
|
TWN_API Recti overlap_recti(const Recti a, const Recti b);
|
|
|
|
TWN_API Rect overlap_rect(const Rect a, const Rect b);
|
2024-09-20 16:39:37 +00:00
|
|
|
|
2024-09-20 16:41:55 +00:00
|
|
|
/* returns true if two rectangles are intersecting */
|
2024-10-22 11:45:30 +00:00
|
|
|
TWN_API bool intersect_recti(const Recti a, const Recti b);
|
|
|
|
TWN_API bool intersect_rect(const Rect a, const Rect b);
|
2024-07-27 13:55:38 +00:00
|
|
|
|
2024-09-23 17:43:16 +00:00
|
|
|
/* TODO: generics and specials (see m_vec2_from() for an example)*/
|
2024-10-22 11:45:30 +00:00
|
|
|
TWN_API Recti to_recti(Rect rect);
|
|
|
|
TWN_API Rect to_rect(Recti rect);
|
2024-07-27 13:55:38 +00:00
|
|
|
|
2024-10-22 11:45:30 +00:00
|
|
|
TWN_API Vec2i center_recti(Recti rect);
|
|
|
|
TWN_API Vec2 center_rect(Rect rect);
|
2024-07-27 13:55:38 +00:00
|
|
|
|
2024-10-22 11:45:30 +00:00
|
|
|
/* decrements an integer value, stopping at 0 */
|
2024-07-08 00:44:20 +00:00
|
|
|
/* meant for tick-based timers in game logic */
|
|
|
|
/*
|
|
|
|
* example:
|
|
|
|
* tick_timer(&player->jump_air_timer);
|
|
|
|
*/
|
2024-10-22 11:45:30 +00:00
|
|
|
TWN_API int32_t timer_tick_frames(int32_t frames_left);
|
2024-07-08 00:44:20 +00:00
|
|
|
|
2024-10-22 11:45:30 +00:00
|
|
|
/* decrements a floating point second-based timer, stopping at 0.0f */
|
2024-07-08 20:47:22 +00:00
|
|
|
/* meant for poll based real time logic in game logic */
|
|
|
|
/* note that it should be decremented only on the next tick after its creation */
|
2024-10-22 11:45:30 +00:00
|
|
|
TWN_API float timer_tick_seconds(float seconds_left);
|
|
|
|
|
2024-10-28 09:39:42 +00:00
|
|
|
typedef struct TimerElapseFramesResult {
|
2024-10-22 11:45:30 +00:00
|
|
|
bool elapsed; int32_t frames_left;
|
2024-10-28 09:39:42 +00:00
|
|
|
} TimerElapseFramesResult;
|
|
|
|
TWN_API TimerElapseFramesResult timer_elapse_frames(int32_t frames_left, int32_t interval);
|
2024-07-08 20:47:22 +00:00
|
|
|
|
2024-10-28 09:39:42 +00:00
|
|
|
typedef struct TimerElapseSecondsResult {
|
2024-10-22 11:45:30 +00:00
|
|
|
bool elapsed; float seconds_left;
|
2024-10-28 09:39:42 +00:00
|
|
|
} TimerElapseSecondsResult;
|
|
|
|
TWN_API TimerElapseSecondsResult timer_elapse_seconds(float seconds_left, float interval);
|
2024-07-08 20:47:22 +00:00
|
|
|
|
2024-07-08 00:44:20 +00:00
|
|
|
#endif
|