2022-08-05 14:23:39 -05:00
|
|
|
#define NK_INCLUDE_FIXED_TYPES
|
|
|
|
#define NK_INCLUDE_STANDARD_IO
|
|
|
|
#define NK_INCLUDE_STANDARD_VARARGS
|
|
|
|
#define NK_INCLUDE_DEFAULT_ALLOCATOR
|
|
|
|
#define NK_INCLUDE_VERTEX_BUFFER_OUTPUT
|
|
|
|
#define NK_INCLUDE_FONT_BAKING
|
|
|
|
#define NK_INCLUDE_DEFAULT_FONT
|
2022-08-14 18:10:29 -05:00
|
|
|
#define NK_INCLUDE_STANDARD_BOOL
|
2022-08-05 14:23:39 -05:00
|
|
|
#define NK_IMPLEMENTATION
|
|
|
|
#define NK_GLFW_GL3_IMPLEMENTATION
|
|
|
|
#define NK_KEYSTATE_BASED_INPUT
|
|
|
|
|
|
|
|
#include "nuke.h"
|
2022-08-07 01:43:45 -05:00
|
|
|
#include "nuklear_glfw_gl3.h"
|
2022-08-05 14:23:39 -05:00
|
|
|
|
2022-12-23 13:48:29 -06:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2022-08-05 14:23:39 -05:00
|
|
|
#include "window.h"
|
2023-02-15 17:54:05 -06:00
|
|
|
#include "texture.h"
|
2023-03-01 14:42:44 -06:00
|
|
|
#include "log.h"
|
2022-08-05 14:23:39 -05:00
|
|
|
|
|
|
|
#define MAX_VERTEX_BUFFER 512 * 1024
|
|
|
|
#define MAX_ELEMENT_BUFFER 128 * 1024
|
|
|
|
|
|
|
|
struct nk_context *ctx;
|
|
|
|
static struct nk_glfw nkglfw = {0};
|
|
|
|
|
|
|
|
|
2022-11-03 16:58:03 -05:00
|
|
|
void nuke_init(struct window *win) {
|
2022-08-05 14:23:39 -05:00
|
|
|
window_makecurrent(win);
|
|
|
|
|
|
|
|
ctx = nk_glfw3_init(&nkglfw, win->window, NK_GLFW3_INSTALL_CALLBACKS);
|
|
|
|
|
|
|
|
struct nk_font_atlas *atlas;
|
|
|
|
nk_glfw3_font_stash_begin(&nkglfw, &atlas);
|
2023-01-19 13:06:32 -06:00
|
|
|
struct nk_font *noto = nk_font_atlas_add_from_file(atlas, "fonts/teenytinypixels.tff", 14, 0);
|
2022-08-05 14:23:39 -05:00
|
|
|
nk_glfw3_font_stash_end(&nkglfw);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nuke_start()
|
|
|
|
{
|
|
|
|
nk_glfw3_new_frame(&nkglfw);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nuke_end()
|
|
|
|
{
|
|
|
|
nk_glfw3_render(&nkglfw, NK_ANTI_ALIASING_ON, MAX_VERTEX_BUFFER, MAX_ELEMENT_BUFFER);
|
2022-08-12 14:03:56 -05:00
|
|
|
}
|
|
|
|
|
2022-12-23 13:48:29 -06:00
|
|
|
|
|
|
|
int nuke_begin(const char *lbl, struct nk_rect rect, int flags) {
|
|
|
|
return nk_begin(ctx, lbl, rect, flags);
|
|
|
|
}
|
2023-01-19 13:06:32 -06:00
|
|
|
|
|
|
|
int nuke_begin_win(const char *lbl)
|
|
|
|
{
|
|
|
|
return nk_begin(ctx, lbl, nk_rect(10, 10, 400, 600), NK_WINDOW_BORDER | NK_WINDOW_MOVABLE | NK_WINDOW_SCALABLE | NK_WINDOW_TITLE);
|
|
|
|
}
|
|
|
|
|
2022-12-23 13:48:29 -06:00
|
|
|
void nuke_stop() {
|
|
|
|
nk_end(ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct nk_rect nuke_win_get_bounds() {
|
|
|
|
return nk_window_get_bounds(ctx);
|
|
|
|
}
|
|
|
|
|
2023-03-10 13:13:48 -06:00
|
|
|
void nuke_row(int height)
|
|
|
|
{
|
|
|
|
nk_layout_row_dynamic(ctx, height, 1);
|
|
|
|
}
|
|
|
|
|
2022-12-23 13:48:29 -06:00
|
|
|
void nuke_property_float3(const char *label, float min, float *val, float max, float step, float dragstep) {
|
2022-08-12 14:03:56 -05:00
|
|
|
nk_layout_row_dynamic(ctx, 25, 1);
|
|
|
|
nk_label(ctx, label, NK_TEXT_LEFT);
|
|
|
|
nk_layout_row_dynamic(ctx, 25, 3);
|
2022-12-23 13:48:29 -06:00
|
|
|
nuke_property_float("#X", min, &val[0], max, step, dragstep);
|
|
|
|
nuke_property_float("#Y", min, &val[1], max, step, dragstep);
|
|
|
|
nuke_property_float("#Z", min, &val[2], max, step, dragstep);
|
2022-08-12 14:03:56 -05:00
|
|
|
}
|
|
|
|
|
2022-12-23 13:48:29 -06:00
|
|
|
void nuke_property_float2(const char *label, float min, float *val, float max, float step, float dragstep) {
|
2022-08-12 14:03:56 -05:00
|
|
|
nk_layout_row_dynamic(ctx, 25, 1);
|
|
|
|
nk_label(ctx, label, NK_TEXT_LEFT);
|
|
|
|
nk_layout_row_dynamic(ctx, 25, 2);
|
2022-12-23 13:48:29 -06:00
|
|
|
nuke_property_float("#X", min, &val[0], max, step, dragstep);
|
|
|
|
nuke_property_float("#Y", min, &val[1], max, step, dragstep);
|
2022-08-12 14:03:56 -05:00
|
|
|
}
|
|
|
|
|
2022-12-15 17:30:22 -06:00
|
|
|
void nuke_property_float(const char *lbl, float min, float *val, float max, float step, float dragstep) {
|
|
|
|
nk_property_float(ctx, lbl, min, val, max, step, dragstep);
|
|
|
|
}
|
|
|
|
|
2022-08-19 11:25:08 -05:00
|
|
|
int nuke_btn(const char *lbl) {
|
|
|
|
return nk_button_label(ctx, lbl);
|
|
|
|
}
|
|
|
|
|
2023-02-15 17:54:05 -06:00
|
|
|
void nuke_img(char *path) {
|
|
|
|
struct Texture *t = texture_pullfromfile(path);
|
|
|
|
nk_layout_row_static(ctx, t->height, t->width, 1);
|
|
|
|
nk_image(ctx, nk_image_id(t->id));
|
|
|
|
}
|
|
|
|
|
2022-08-19 11:25:08 -05:00
|
|
|
void nuke_property_int(const char *lbl, int min, int *val, int max, int step) {
|
|
|
|
nk_property_int(ctx, lbl, min, val, max, step, step);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nuke_radio_btn(const char *lbl, int *val, int cmp) {
|
2022-08-25 15:48:15 -05:00
|
|
|
if (nk_option_label(ctx, lbl, *val==cmp)) *val = cmp;
|
2022-08-19 11:25:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void nuke_checkbox(const char *lbl, int *val) {
|
|
|
|
nk_checkbox_label(ctx, lbl, val);
|
|
|
|
}
|
|
|
|
|
2023-03-17 10:25:35 -05:00
|
|
|
void nuke_scrolltext(char *str)
|
|
|
|
{
|
|
|
|
nk_edit_string_zero_terminated(ctx, NK_EDIT_MULTILINE|NK_EDIT_GOTO_END_ON_ACTIVATE, str, 1024*1024*5, NULL);
|
|
|
|
}
|
|
|
|
|
2022-08-17 00:01:51 -05:00
|
|
|
void nuke_nel(int cols) {
|
|
|
|
nk_layout_row_dynamic(ctx, 25, cols);
|
|
|
|
}
|
|
|
|
|
2023-03-17 10:25:35 -05:00
|
|
|
void nuke_nel_h(int cols, int h) {
|
|
|
|
nk_layout_row_dynamic(ctx, h, cols);
|
|
|
|
}
|
|
|
|
|
2022-08-17 00:01:51 -05:00
|
|
|
void nuke_label(const char *s) {
|
2022-12-12 10:48:21 -06:00
|
|
|
nk_label(ctx, s, NK_TEXT_LEFT);
|
2022-08-19 11:25:08 -05:00
|
|
|
}
|
2022-12-12 10:48:21 -06:00
|
|
|
|
|
|
|
void nuke_edit_str(char *str) {
|
|
|
|
nk_edit_string_zero_terminated(ctx, NK_EDIT_BOX|NK_EDIT_NO_HORIZONTAL_SCROLL, str, 130, nk_filter_ascii);
|
2022-12-23 13:48:29 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
int nuke_push_tree_id(const char *name, int id) {
|
|
|
|
return nk_tree_push_id(ctx, NK_TREE_NODE, name, NK_MINIMIZED, id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nuke_tree_pop() {
|
|
|
|
nk_tree_pop(ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nuke_labelf(const char *fmt, ...) {
|
2022-12-28 16:50:54 -06:00
|
|
|
char buf[512];
|
|
|
|
|
2022-12-23 13:48:29 -06:00
|
|
|
va_list args;
|
2022-12-28 16:50:54 -06:00
|
|
|
va_start(args, fmt);
|
|
|
|
vsnprintf(buf, 512, fmt, args);
|
|
|
|
nuke_label(buf);
|
|
|
|
va_end(args);
|
2023-02-15 17:54:05 -06:00
|
|
|
}
|