2023-09-04 09:48:44 -05:00
|
|
|
#include "render.h"
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
#include "config.h"
|
|
|
|
#include "datastream.h"
|
|
|
|
#include "font.h"
|
|
|
|
#include "gameobject.h"
|
2021-11-30 21:29:18 -06:00
|
|
|
#include "log.h"
|
2023-05-12 13:22:05 -05:00
|
|
|
#include "window.h"
|
|
|
|
#include "model.h"
|
|
|
|
#include "stb_ds.h"
|
2023-09-04 09:48:44 -05:00
|
|
|
#include "resources.h"
|
2023-09-12 00:02:57 -05:00
|
|
|
#include "yugine.h"
|
2023-09-18 07:36:07 -05:00
|
|
|
#include "sokol/sokol_app.h"
|
2024-03-03 16:49:34 -06:00
|
|
|
#define SOKOL_GLUE_IMPL
|
|
|
|
#include "sokol/sokol_glue.h"
|
2023-11-22 03:51:43 -06:00
|
|
|
#include "stb_image_write.h"
|
2023-05-12 13:22:05 -05:00
|
|
|
|
2023-09-11 15:07:36 -05:00
|
|
|
#include "sokol/sokol_gfx.h"
|
2024-09-29 06:10:42 -05:00
|
|
|
#include "sokol/util/sokol_gl.h"
|
2024-06-05 16:07:44 -05:00
|
|
|
#include "gui.h"
|
|
|
|
|
2024-05-08 11:07:19 -05:00
|
|
|
static HMM_Vec2 lastuse = {0};
|
2023-09-11 15:07:36 -05:00
|
|
|
|
2024-03-20 16:48:03 -05:00
|
|
|
HMM_Vec2 campos = {0,0};
|
|
|
|
float camzoom = 1;
|
|
|
|
|
2024-05-12 18:36:14 -05:00
|
|
|
viewstate globalview = {0};
|
|
|
|
|
2024-04-23 15:58:08 -05:00
|
|
|
sg_sampler std_sampler;
|
2024-05-08 11:07:19 -05:00
|
|
|
sg_sampler nofilter_sampler;
|
2024-04-28 13:33:37 -05:00
|
|
|
sg_sampler tex_sampler;
|
2024-04-23 15:58:08 -05:00
|
|
|
|
2024-05-16 14:50:18 -05:00
|
|
|
int TOPLEFT = 0;
|
|
|
|
|
2024-05-08 11:07:19 -05:00
|
|
|
sg_pass offscreen;
|
2023-11-22 03:51:43 -06:00
|
|
|
|
2023-08-31 17:23:24 -05:00
|
|
|
#include "sokol/sokol_app.h"
|
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
#include "HandmadeMath.h"
|
2022-12-22 16:58:06 -06:00
|
|
|
|
2023-05-04 17:07:00 -05:00
|
|
|
sg_pass_action pass_action = {0};
|
2024-05-08 11:07:19 -05:00
|
|
|
sg_pass_action off_action = {0};
|
|
|
|
sg_image screencolor = {0};
|
|
|
|
sg_image screendepth = {0};
|
2023-05-04 17:07:00 -05:00
|
|
|
|
2024-09-25 12:46:59 -05:00
|
|
|
struct rfd {
|
|
|
|
int num_passes;
|
|
|
|
int num_apply_viewport;
|
|
|
|
int num_apply_scissor_rect;
|
|
|
|
int num_apply_pipeline;
|
|
|
|
int num_apply_uniforms;
|
|
|
|
int size_uniforms;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct rfd rfd = {0};
|
|
|
|
|
|
|
|
void trace_apply_uniforms(sg_shader_stage stage, int ub_index, const sg_range *data, void *user_data)
|
|
|
|
{
|
|
|
|
rfd.num_apply_uniforms++;
|
|
|
|
rfd.size_uniforms += data->size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void trace_draw(int base_e, int num_e, int num_inst, void *data)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-09-25 12:29:04 -05:00
|
|
|
void trace_apply_pipeline(sg_pipeline pip, void *data)
|
|
|
|
{
|
2024-03-14 14:10:06 -05:00
|
|
|
// YughSpam("Applying pipeline %u %s.", pip, sg_query_pipeline_desc(pip).label);
|
2023-09-25 12:29:04 -05:00
|
|
|
}
|
|
|
|
|
2024-04-09 16:48:15 -05:00
|
|
|
void trace_begin_pass(sg_pass pass, const sg_pass_action *action, void *data)
|
2023-09-25 12:29:04 -05:00
|
|
|
{
|
2024-04-09 16:48:15 -05:00
|
|
|
// YughSpam("Begin pass %s", pass.label);
|
2023-09-25 12:29:04 -05:00
|
|
|
}
|
|
|
|
|
2024-04-09 16:48:15 -05:00
|
|
|
#define SG_TRACE_SET(NAME) \
|
|
|
|
void trace_alloc_##NAME (sg_##NAME id, void *data) \
|
|
|
|
{ \
|
|
|
|
sg_##NAME##_desc desc = sg_query_##NAME##_desc(id); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
void trace_dealloc_##NAME(sg_##NAME id, void *data) \
|
|
|
|
{ \
|
|
|
|
sg_##NAME##_desc desc = sg_query_##NAME##_desc(id); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
void trace_make_##NAME(sg_##NAME##_desc *desc, void *data) \
|
|
|
|
{ \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
void trace_destroy_##NAME(sg_##NAME id, void *data) \
|
|
|
|
{ \
|
|
|
|
sg_##NAME##_desc desc = sg_query_##NAME##_desc(id); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
void trace_init_##NAME(sg_##NAME id, sg_##NAME##_desc *desc, void *data) \
|
|
|
|
{ \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
void trace_uninit_##NAME(sg_##NAME id, void *data) \
|
|
|
|
{ \
|
|
|
|
sg_##NAME##_desc desc = sg_query_##NAME##_desc(id); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
void trace_fail_##NAME(sg_##NAME id, void *data) \
|
|
|
|
{ \
|
|
|
|
sg_##NAME##_desc desc = sg_query_##NAME##_desc(id); \
|
|
|
|
YughError("Failed " #NAME " %d: %s", id, desc.label); \
|
|
|
|
} \
|
|
|
|
|
|
|
|
SG_TRACE_SET(buffer)
|
|
|
|
SG_TRACE_SET(image)
|
|
|
|
SG_TRACE_SET(sampler)
|
|
|
|
SG_TRACE_SET(shader)
|
|
|
|
SG_TRACE_SET(pipeline)
|
|
|
|
SG_TRACE_SET(attachments)
|
|
|
|
|
|
|
|
#define SG_HOOK_SET(NAME) \
|
|
|
|
.alloc_##NAME = trace_alloc_##NAME, \
|
|
|
|
.dealloc_##NAME = trace_dealloc_##NAME, \
|
|
|
|
.init_##NAME = trace_init_##NAME, \
|
|
|
|
.uninit_##NAME = trace_uninit_##NAME, \
|
|
|
|
.fail_##NAME = trace_fail_##NAME, \
|
|
|
|
.destroy_##NAME = trace_destroy_##NAME, \
|
|
|
|
.make_##NAME = trace_make_##NAME \
|
|
|
|
|
|
|
|
void trace_append_buffer(sg_buffer id, sg_range *data, void *user)
|
2023-09-25 12:29:04 -05:00
|
|
|
{
|
2024-04-09 16:48:15 -05:00
|
|
|
sg_buffer_desc desc = sg_query_buffer_desc(id);
|
2024-04-11 17:17:49 -05:00
|
|
|
// YughSpam("Appending buffer %d [%s]", id, desc.label);
|
2023-09-25 08:21:02 -05:00
|
|
|
}
|
|
|
|
|
2023-05-24 20:45:50 -05:00
|
|
|
static sg_trace_hooks hooks = {
|
2023-09-25 12:29:04 -05:00
|
|
|
.apply_pipeline = trace_apply_pipeline,
|
|
|
|
.begin_pass = trace_begin_pass,
|
2024-04-09 16:48:15 -05:00
|
|
|
SG_HOOK_SET(buffer),
|
|
|
|
SG_HOOK_SET(image),
|
|
|
|
SG_HOOK_SET(shader),
|
|
|
|
SG_HOOK_SET(sampler),
|
|
|
|
SG_HOOK_SET(pipeline),
|
|
|
|
SG_HOOK_SET(attachments),
|
|
|
|
.append_buffer = trace_append_buffer
|
2023-05-24 20:45:50 -05:00
|
|
|
};
|
|
|
|
|
2023-09-04 09:48:44 -05:00
|
|
|
void render_init() {
|
2023-08-31 13:00:33 -05:00
|
|
|
sg_setup(&(sg_desc){
|
2024-03-03 16:49:34 -06:00
|
|
|
.environment = sglue_environment(),
|
|
|
|
.logger = { .func = sg_logging },
|
2024-08-20 02:17:56 -05:00
|
|
|
.buffer_pool_size = 1024,
|
|
|
|
.image_pool_size = 1024,
|
2023-08-31 13:00:33 -05:00
|
|
|
});
|
2024-04-23 15:58:08 -05:00
|
|
|
|
2024-10-02 11:56:33 -05:00
|
|
|
#ifndef NDEBUG
|
|
|
|
sg_trace_hooks hh = sg_install_trace_hooks(&hooks);
|
|
|
|
#endif
|
|
|
|
|
2024-04-23 15:58:08 -05:00
|
|
|
std_sampler = sg_make_sampler(&(sg_sampler_desc){});
|
2024-04-28 13:33:37 -05:00
|
|
|
tex_sampler = sg_make_sampler(&(sg_sampler_desc){
|
|
|
|
.min_filter = SG_FILTER_LINEAR,
|
|
|
|
.mag_filter = SG_FILTER_LINEAR,
|
|
|
|
.mipmap_filter = SG_FILTER_LINEAR,
|
|
|
|
.wrap_u = SG_WRAP_REPEAT,
|
|
|
|
.wrap_v = SG_WRAP_REPEAT
|
|
|
|
});
|
2023-08-31 13:00:33 -05:00
|
|
|
|
2024-05-14 15:22:24 -05:00
|
|
|
sg_features feat = sg_query_features();
|
2024-05-16 14:50:18 -05:00
|
|
|
TOPLEFT = feat.origin_top_left;
|
2023-05-12 13:22:05 -05:00
|
|
|
|
2024-04-17 08:57:45 -05:00
|
|
|
sg_color c = (sg_color){0,0,0,1};
|
2023-05-12 13:22:05 -05:00
|
|
|
pass_action = (sg_pass_action){
|
2024-03-03 16:49:34 -06:00
|
|
|
.colors[0] = {.load_action = SG_LOADACTION_CLEAR, .clear_value = c},
|
2023-05-12 13:22:05 -05:00
|
|
|
};
|
2024-05-08 11:07:19 -05:00
|
|
|
|
|
|
|
sg_color oc = (sg_color){35.0/255,60.0/255,92.0/255,1};
|
|
|
|
off_action = (sg_pass_action){
|
2024-05-14 15:22:24 -05:00
|
|
|
.colors[0] = {.load_action = SG_LOADACTION_CLEAR, .clear_value = oc},
|
|
|
|
.depth = {
|
|
|
|
.load_action = SG_LOADACTION_CLEAR,
|
|
|
|
.clear_value = 1
|
|
|
|
}
|
2024-05-08 11:07:19 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
screencolor = sg_make_image(&(sg_image_desc){
|
|
|
|
.render_target = true,
|
|
|
|
.width = 500,
|
|
|
|
.height = 500,
|
|
|
|
.pixel_format = sapp_color_format(),
|
|
|
|
.sample_count = 1,
|
|
|
|
});
|
|
|
|
screendepth = sg_make_image(&(sg_image_desc){
|
|
|
|
.render_target = true,
|
|
|
|
.width =500,
|
|
|
|
.height=500,
|
|
|
|
.pixel_format = sapp_depth_format(),
|
|
|
|
.sample_count = 1
|
|
|
|
});
|
|
|
|
|
|
|
|
offscreen = (sg_pass){
|
|
|
|
.attachments = sg_make_attachments(&(sg_attachments_desc){
|
|
|
|
.colors[0].image = screencolor,
|
2024-05-14 15:22:24 -05:00
|
|
|
.depth_stencil.image = screendepth,
|
2024-05-08 11:07:19 -05:00
|
|
|
}),
|
|
|
|
.action = off_action,
|
|
|
|
};
|
2023-05-24 20:45:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
HMM_Mat4 projection = {0.f};
|
|
|
|
HMM_Mat4 hudproj = {0.f};
|
2024-03-27 15:00:59 -05:00
|
|
|
HMM_Mat4 useproj = {0};
|
2023-05-04 17:07:00 -05:00
|
|
|
|
2024-05-16 14:50:18 -05:00
|
|
|
void openglRender(HMM_Vec2 usesize) {
|
2024-05-08 11:07:19 -05:00
|
|
|
if (usesize.x != lastuse.x || usesize.y != lastuse.y) {
|
|
|
|
sg_destroy_image(screencolor);
|
|
|
|
sg_destroy_image(screendepth);
|
|
|
|
sg_destroy_attachments(offscreen.attachments);
|
|
|
|
screencolor = sg_make_image(&(sg_image_desc){
|
|
|
|
.render_target = true,
|
|
|
|
.width = usesize.x,
|
|
|
|
.height = usesize.y,
|
|
|
|
.pixel_format = sapp_color_format(),
|
|
|
|
.sample_count = 1,
|
2024-03-18 14:27:52 -05:00
|
|
|
});
|
2024-05-08 11:07:19 -05:00
|
|
|
screendepth = sg_make_image(&(sg_image_desc){
|
|
|
|
.render_target = true,
|
|
|
|
.width =usesize.x,
|
|
|
|
.height=usesize.y,
|
|
|
|
.pixel_format = sapp_depth_format(),
|
|
|
|
.sample_count = 1
|
|
|
|
});
|
|
|
|
offscreen = (sg_pass){
|
|
|
|
.attachments = sg_make_attachments(&(sg_attachments_desc){
|
|
|
|
.colors[0].image = screencolor,
|
|
|
|
.depth_stencil.image = screendepth
|
|
|
|
}),
|
|
|
|
.action = off_action,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
lastuse = usesize;
|
2024-05-14 15:22:24 -05:00
|
|
|
|
2024-05-08 11:07:19 -05:00
|
|
|
sg_begin_pass(&offscreen);
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
2023-05-24 20:45:50 -05:00
|
|
|
|
2023-12-22 11:50:03 -06:00
|
|
|
struct boundingbox cwh2bb(HMM_Vec2 c, HMM_Vec2 wh) {
|
|
|
|
struct boundingbox bb = {
|
|
|
|
.t = c.Y + wh.Y/2,
|
|
|
|
.b = c.Y - wh.Y/2,
|
|
|
|
.r = c.X + wh.X/2,
|
|
|
|
.l = c.X - wh.X/2
|
|
|
|
};
|
|
|
|
|
|
|
|
return bb;
|
|
|
|
}
|
|
|
|
|
|
|
|
float *rgba2floats(float *r, struct rgba c)
|
|
|
|
{
|
|
|
|
r[0] = (float)c.r / RGBA_MAX;
|
|
|
|
r[1] = (float)c.g / RGBA_MAX;
|
|
|
|
r[2] = (float)c.b / RGBA_MAX;
|
|
|
|
r[3] = (float)c.a / RGBA_MAX;
|
|
|
|
return r;
|
|
|
|
}
|