2024-09-16 06:07:01 +00:00
|
|
|
#ifndef TWN_RENDERING_H
|
|
|
|
#define TWN_RENDERING_H
|
2024-07-08 00:44:20 +00:00
|
|
|
|
2024-09-16 13:17:00 +00:00
|
|
|
#include "twn_util.h"
|
|
|
|
#include "twn_option.h"
|
|
|
|
#include "twn_camera.h"
|
2024-08-26 21:33:37 +00:00
|
|
|
#include "twn_engine_api.h"
|
2024-07-08 00:44:20 +00:00
|
|
|
|
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
typedef struct push_sprite_args {
|
|
|
|
char *path;
|
2024-07-30 12:30:35 +00:00
|
|
|
t_frect rect;
|
|
|
|
|
|
|
|
m_option_list(
|
2024-07-31 21:52:15 +00:00
|
|
|
t_fvec2, texture_origin,
|
2024-07-30 12:30:35 +00:00
|
|
|
t_color, color,
|
|
|
|
float, rotation,
|
|
|
|
bool, flip_x,
|
2024-07-31 21:23:32 +00:00
|
|
|
bool, flip_y,
|
2024-07-31 22:25:23 +00:00
|
|
|
bool, stretch )
|
2024-07-08 00:44:20 +00:00
|
|
|
} t_push_sprite_args;
|
|
|
|
|
|
|
|
/* pushes a sprite onto the sprite render queue */
|
|
|
|
/* this is a simplified version of push_sprite_ex for the most common case. */
|
2024-07-30 12:30:35 +00:00
|
|
|
/* it assumes you want no color modulation, no rotation, no flip */
|
2024-08-26 21:33:37 +00:00
|
|
|
TWN_API void push_sprite(t_push_sprite_args args);
|
2024-07-30 12:30:35 +00:00
|
|
|
#define m_sprite(...) (push_sprite((t_push_sprite_args){__VA_ARGS__}))
|
2024-07-08 00:44:20 +00:00
|
|
|
|
|
|
|
/* pushes a filled rectangle onto the rectangle render queue */
|
2024-08-26 21:33:37 +00:00
|
|
|
TWN_API void push_rectangle(t_frect rect, t_color color);
|
2024-07-08 00:44:20 +00:00
|
|
|
|
|
|
|
/* pushes a filled circle onto the circle render queue */
|
2024-08-26 21:33:37 +00:00
|
|
|
TWN_API void push_circle(t_fvec2 position, float radius, t_color color);
|
2024-07-08 00:44:20 +00:00
|
|
|
|
2024-08-26 21:33:37 +00:00
|
|
|
TWN_API void push_text(char *string, t_fvec2 position, int height_px, t_color color, const char *font_path);
|
|
|
|
TWN_API int get_text_width(char *string, int height_px, const char *font_path);
|
2024-08-23 02:41:52 +00:00
|
|
|
|
2024-07-10 16:15:28 +00:00
|
|
|
/* pushes a textured 3d triangle onto the render queue */
|
|
|
|
/* vertices are in absolute coordinates, relative to world origin */
|
|
|
|
/* texture coordinates are in pixels */
|
2024-08-26 21:33:37 +00:00
|
|
|
TWN_API void unfurl_triangle(const char *path,
|
2024-09-16 06:07:01 +00:00
|
|
|
t_fvec3 v0,
|
|
|
|
t_fvec3 v1,
|
|
|
|
t_fvec3 v2,
|
|
|
|
t_shvec2 uv0,
|
|
|
|
t_shvec2 uv1,
|
|
|
|
t_shvec2 uv2);
|
2024-07-10 16:15:28 +00:00
|
|
|
|
2024-09-16 06:07:01 +00:00
|
|
|
// TODO: decide whether it's needed to begin with?
|
|
|
|
// intended usage for it is baked lighting, i would think.
|
2024-07-10 16:15:28 +00:00
|
|
|
/* pushes a colored textured 3d triangle onto the render queue */
|
|
|
|
// void unfurl_colored_triangle(const char *path,
|
|
|
|
// t_fvec3 v0,
|
|
|
|
// t_fvec3 v1,
|
|
|
|
// t_fvec3 v2,
|
|
|
|
// t_shvec2 uv0,
|
|
|
|
// t_shvec2 uv1,
|
|
|
|
// t_shvec2 uv2,
|
|
|
|
// t_color c0,
|
|
|
|
// t_color c1,
|
|
|
|
// t_color c2);
|
|
|
|
|
2024-07-14 16:18:10 +00:00
|
|
|
// TODO:
|
2024-07-10 16:15:28 +00:00
|
|
|
// http://www.lighthouse3d.com/opengl/billboarding/index.php?billCheat2
|
2024-07-14 16:18:10 +00:00
|
|
|
// void unfurl_billboard(const char *path,
|
2024-09-16 06:07:01 +00:00
|
|
|
// t_fvec3 position,
|
|
|
|
// t_fvec2 scaling,
|
|
|
|
// t_frect uvs);
|
2024-07-10 16:15:28 +00:00
|
|
|
|
2024-07-29 12:21:39 +00:00
|
|
|
/* pushes a camera state to be used for all future unfurl_* commands */
|
2024-08-26 21:33:37 +00:00
|
|
|
TWN_API void set_camera(const t_camera *camera);
|
2024-07-29 12:21:39 +00:00
|
|
|
|
2024-07-08 00:44:20 +00:00
|
|
|
#endif
|