prosperon/source/engine/render.c

256 lines
6.2 KiB
C
Raw Normal View History

#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"
#include "resources.h"
2023-09-12 00:02:57 -05:00
#include "yugine.h"
#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"
2023-09-12 00:02:57 -05:00
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
#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
void trace_apply_pipeline(sg_pipeline pip, void *data)
{
// YughSpam("Applying pipeline %u %s.", pip, sg_query_pipeline_desc(pip).label);
}
2024-04-09 16:48:15 -05:00
void trace_begin_pass(sg_pass pass, const sg_pass_action *action, void *data)
{
2024-04-09 16:48:15 -05:00
// YughSpam("Begin pass %s", pass.label);
}
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); \
YughSpam("Alloc " #NAME " %d [%s]", id, desc.label); \
} \
\
void trace_dealloc_##NAME(sg_##NAME id, void *data) \
{ \
sg_##NAME##_desc desc = sg_query_##NAME##_desc(id); \
YughSpam("Dealloc " #NAME " %d [%s]", id, desc.label); \
} \
\
void trace_make_##NAME(sg_##NAME##_desc *desc, void *data) \
{ \
YughSpam("Make " #NAME " [%s]", desc->label); \
} \
\
void trace_destroy_##NAME(sg_##NAME id, void *data) \
{ \
sg_##NAME##_desc desc = sg_query_##NAME##_desc(id); \
YughSpam("Destroy " #NAME " %d [%s]", id, desc.label); \
} \
\
void trace_init_##NAME(sg_##NAME id, sg_##NAME##_desc *desc, void *data) \
{ \
YughSpam("Init " #NAME " %d [%s]", id, desc->label); \
} \
\
void trace_uninit_##NAME(sg_##NAME id, void *data) \
{ \
sg_##NAME##_desc desc = sg_query_##NAME##_desc(id); \
YughSpam("Init " #NAME " %d [%s]", id, desc.label); \
} \
\
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)
{
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 = {
.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
};
void render_init() {
sg_setup(&(sg_desc){
2024-03-03 16:49:34 -06:00
.environment = sglue_environment(),
.logger = { .func = sg_logging },
.buffer_pool_size = 1024
});
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
});
2024-04-16 07:51:22 -05:00
#ifndef NDEBUG
2023-05-24 20:45:50 -05:00
sg_trace_hooks hh = sg_install_trace_hooks(&hooks);
2024-04-16 07:51:22 -05:00
#endif
2023-05-24 20:45:50 -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
//.store_action = SG_STOREACTION_STORE
}
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
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;
}
sg_blend_state blend_trans = {
.enabled = true,
.src_factor_rgb = SG_BLENDFACTOR_SRC_ALPHA,
.dst_factor_rgb = SG_BLENDFACTOR_ONE_MINUS_SRC_ALPHA,
.src_factor_alpha = SG_BLENDFACTOR_SRC_ALPHA,
.dst_factor_alpha = SG_BLENDFACTOR_ONE_MINUS_SRC_ALPHA
};