2017-01-15 23:04:51 +03:00
|
|
|
/* nuklear - 1.32.0 - public domain */
|
2016-04-11 02:34:59 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <assert.h>
|
2016-04-29 18:06:31 +03:00
|
|
|
#include <limits.h>
|
|
|
|
#include <time.h>
|
2016-04-11 02:34:59 +03:00
|
|
|
|
|
|
|
#include <GL/glew.h>
|
|
|
|
#include <GLFW/glfw3.h>
|
|
|
|
|
|
|
|
#define NK_INCLUDE_FIXED_TYPES
|
|
|
|
#define NK_INCLUDE_STANDARD_IO
|
2016-08-06 18:44:00 +03:00
|
|
|
#define NK_INCLUDE_STANDARD_VARARGS
|
2016-04-11 02:34:59 +03:00
|
|
|
#define NK_INCLUDE_DEFAULT_ALLOCATOR
|
|
|
|
#define NK_INCLUDE_VERTEX_BUFFER_OUTPUT
|
|
|
|
#define NK_INCLUDE_FONT_BAKING
|
|
|
|
#define NK_INCLUDE_DEFAULT_FONT
|
2016-04-30 18:09:01 +03:00
|
|
|
#define NK_IMPLEMENTATION
|
|
|
|
#define NK_GLFW_GL3_IMPLEMENTATION
|
2018-10-30 10:43:01 +03:00
|
|
|
#define NK_KEYSTATE_BASED_INPUT
|
2016-04-30 18:09:01 +03:00
|
|
|
#include "../../nuklear.h"
|
|
|
|
#include "nuklear_glfw_gl3.h"
|
2016-04-11 02:34:59 +03:00
|
|
|
|
2016-04-28 15:38:44 +03:00
|
|
|
#define WINDOW_WIDTH 1200
|
|
|
|
#define WINDOW_HEIGHT 800
|
2016-04-11 02:34:59 +03:00
|
|
|
|
|
|
|
#define MAX_VERTEX_BUFFER 512 * 1024
|
|
|
|
#define MAX_ELEMENT_BUFFER 128 * 1024
|
|
|
|
|
2016-04-28 15:38:44 +03:00
|
|
|
/* ===============================================================
|
|
|
|
*
|
|
|
|
* EXAMPLE
|
|
|
|
*
|
|
|
|
* ===============================================================*/
|
|
|
|
/* This are some code examples to provide a small overview of what can be
|
2018-01-01 19:20:55 +03:00
|
|
|
* done with this library. To try out an example uncomment the defines */
|
|
|
|
/*#define INCLUDE_ALL */
|
|
|
|
/*#define INCLUDE_STYLE */
|
|
|
|
/*#define INCLUDE_CALCULATOR */
|
2021-12-16 18:16:33 +03:00
|
|
|
/*#define INCLUDE_CANVAS */
|
2024-04-25 23:49:50 +03:00
|
|
|
/*#define INCLUDE_OVERVIEW */
|
2018-01-01 19:20:55 +03:00
|
|
|
/*#define INCLUDE_NODE_EDITOR */
|
|
|
|
|
|
|
|
#ifdef INCLUDE_ALL
|
|
|
|
#define INCLUDE_STYLE
|
|
|
|
#define INCLUDE_CALCULATOR
|
2021-12-16 18:16:33 +03:00
|
|
|
#define INCLUDE_CANVAS
|
2018-01-01 19:20:55 +03:00
|
|
|
#define INCLUDE_OVERVIEW
|
|
|
|
#define INCLUDE_NODE_EDITOR
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef INCLUDE_STYLE
|
2022-03-14 22:46:44 +03:00
|
|
|
#include "../../demo/common/style.c"
|
2018-01-01 19:20:55 +03:00
|
|
|
#endif
|
|
|
|
#ifdef INCLUDE_CALCULATOR
|
2022-03-14 22:46:44 +03:00
|
|
|
#include "../../demo/common/calculator.c"
|
2018-01-01 19:20:55 +03:00
|
|
|
#endif
|
2021-12-16 18:16:33 +03:00
|
|
|
#ifdef INCLUDE_CANVAS
|
2022-03-14 22:46:44 +03:00
|
|
|
#include "../../demo/common/canvas.c"
|
2021-12-16 18:16:33 +03:00
|
|
|
#endif
|
2018-01-01 19:20:55 +03:00
|
|
|
#ifdef INCLUDE_OVERVIEW
|
2022-03-14 22:46:44 +03:00
|
|
|
#include "../../demo/common/overview.c"
|
2018-01-01 19:20:55 +03:00
|
|
|
#endif
|
|
|
|
#ifdef INCLUDE_NODE_EDITOR
|
2022-03-14 22:46:44 +03:00
|
|
|
#include "../../demo/common/node_editor.c"
|
2018-01-01 19:20:55 +03:00
|
|
|
#endif
|
2016-04-28 15:38:44 +03:00
|
|
|
|
|
|
|
/* ===============================================================
|
|
|
|
*
|
|
|
|
* DEMO
|
|
|
|
*
|
|
|
|
* ===============================================================*/
|
|
|
|
static void error_callback(int e, const char *d)
|
|
|
|
{printf("Error %d: %s\n", e, d);}
|
2016-04-11 02:34:59 +03:00
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
/* Platform */
|
2020-04-30 16:17:24 +03:00
|
|
|
struct nk_glfw glfw = {0};
|
2016-04-11 02:34:59 +03:00
|
|
|
static GLFWwindow *win;
|
|
|
|
int width = 0, height = 0;
|
|
|
|
struct nk_context *ctx;
|
2018-01-05 15:09:27 +03:00
|
|
|
struct nk_colorf bg;
|
2016-04-11 02:34:59 +03:00
|
|
|
|
|
|
|
/* GLFW */
|
|
|
|
glfwSetErrorCallback(error_callback);
|
|
|
|
if (!glfwInit()) {
|
|
|
|
fprintf(stdout, "[GFLW] failed to init!\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
|
|
|
|
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
|
|
|
|
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
|
|
|
|
#ifdef __APPLE__
|
|
|
|
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
|
|
|
|
#endif
|
|
|
|
win = glfwCreateWindow(WINDOW_WIDTH, WINDOW_HEIGHT, "Demo", NULL, NULL);
|
|
|
|
glfwMakeContextCurrent(win);
|
2016-04-25 15:07:04 +03:00
|
|
|
glfwGetWindowSize(win, &width, &height);
|
2016-04-11 02:34:59 +03:00
|
|
|
|
|
|
|
/* OpenGL */
|
|
|
|
glViewport(0, 0, WINDOW_WIDTH, WINDOW_HEIGHT);
|
|
|
|
glewExperimental = 1;
|
|
|
|
if (glewInit() != GLEW_OK) {
|
|
|
|
fprintf(stderr, "Failed to setup GLEW\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2020-04-30 16:17:24 +03:00
|
|
|
ctx = nk_glfw3_init(&glfw, win, NK_GLFW3_INSTALL_CALLBACKS);
|
2016-04-11 02:34:59 +03:00
|
|
|
/* Load Fonts: if none of these are loaded a default font will be used */
|
2016-07-15 19:04:50 +03:00
|
|
|
/* Load Cursor: if you uncomment cursor loading please hide the cursor */
|
2016-04-11 02:34:59 +03:00
|
|
|
{struct nk_font_atlas *atlas;
|
2020-04-30 16:17:24 +03:00
|
|
|
nk_glfw3_font_stash_begin(&glfw, &atlas);
|
2016-04-11 02:34:59 +03:00
|
|
|
/*struct nk_font *droid = nk_font_atlas_add_from_file(atlas, "../../../extra_font/DroidSans.ttf", 14, 0);*/
|
2016-04-25 15:07:04 +03:00
|
|
|
/*struct nk_font *roboto = nk_font_atlas_add_from_file(atlas, "../../../extra_font/Roboto-Regular.ttf", 14, 0);*/
|
2016-04-11 02:34:59 +03:00
|
|
|
/*struct nk_font *future = nk_font_atlas_add_from_file(atlas, "../../../extra_font/kenvector_future_thin.ttf", 13, 0);*/
|
|
|
|
/*struct nk_font *clean = nk_font_atlas_add_from_file(atlas, "../../../extra_font/ProggyClean.ttf", 12, 0);*/
|
|
|
|
/*struct nk_font *tiny = nk_font_atlas_add_from_file(atlas, "../../../extra_font/ProggyTiny.ttf", 10, 0);*/
|
|
|
|
/*struct nk_font *cousine = nk_font_atlas_add_from_file(atlas, "../../../extra_font/Cousine-Regular.ttf", 13, 0);*/
|
2020-04-30 16:17:24 +03:00
|
|
|
nk_glfw3_font_stash_end(&glfw);
|
2016-07-15 19:04:50 +03:00
|
|
|
/*nk_style_load_all_cursors(ctx, atlas->cursors);*/
|
2016-04-25 15:07:04 +03:00
|
|
|
/*nk_style_set_font(ctx, &droid->handle);*/}
|
2016-04-11 02:34:59 +03:00
|
|
|
|
2018-01-05 15:09:27 +03:00
|
|
|
bg.r = 0.10f, bg.g = 0.18f, bg.b = 0.24f, bg.a = 1.0f;
|
2016-04-11 02:34:59 +03:00
|
|
|
while (!glfwWindowShouldClose(win))
|
|
|
|
{
|
|
|
|
/* Input */
|
|
|
|
glfwPollEvents();
|
2020-04-30 16:17:24 +03:00
|
|
|
nk_glfw3_new_frame(&glfw);
|
2016-04-11 02:34:59 +03:00
|
|
|
|
|
|
|
/* GUI */
|
2016-10-30 00:23:46 +03:00
|
|
|
if (nk_begin(ctx, "Demo", nk_rect(50, 50, 230, 250),
|
2016-04-11 02:34:59 +03:00
|
|
|
NK_WINDOW_BORDER|NK_WINDOW_MOVABLE|NK_WINDOW_SCALABLE|
|
|
|
|
NK_WINDOW_MINIMIZABLE|NK_WINDOW_TITLE))
|
|
|
|
{
|
|
|
|
enum {EASY, HARD};
|
|
|
|
static int op = EASY;
|
|
|
|
static int property = 20;
|
|
|
|
nk_layout_row_static(ctx, 30, 80, 1);
|
2016-07-15 19:04:50 +03:00
|
|
|
if (nk_button_label(ctx, "button"))
|
2016-04-11 02:34:59 +03:00
|
|
|
fprintf(stdout, "button pressed\n");
|
2016-04-28 15:38:44 +03:00
|
|
|
|
2016-04-11 02:34:59 +03:00
|
|
|
nk_layout_row_dynamic(ctx, 30, 2);
|
|
|
|
if (nk_option_label(ctx, "easy", op == EASY)) op = EASY;
|
|
|
|
if (nk_option_label(ctx, "hard", op == HARD)) op = HARD;
|
|
|
|
|
2016-04-21 11:54:01 +03:00
|
|
|
nk_layout_row_dynamic(ctx, 25, 1);
|
2016-04-11 02:34:59 +03:00
|
|
|
nk_property_int(ctx, "Compression:", 0, &property, 100, 10, 1);
|
|
|
|
|
|
|
|
nk_layout_row_dynamic(ctx, 20, 1);
|
|
|
|
nk_label(ctx, "background:", NK_TEXT_LEFT);
|
|
|
|
nk_layout_row_dynamic(ctx, 25, 1);
|
2018-01-05 15:09:27 +03:00
|
|
|
if (nk_combo_begin_color(ctx, nk_rgb_cf(bg), nk_vec2(nk_widget_width(ctx),400))) {
|
2016-04-11 02:34:59 +03:00
|
|
|
nk_layout_row_dynamic(ctx, 120, 1);
|
2018-01-05 15:09:27 +03:00
|
|
|
bg = nk_color_picker(ctx, bg, NK_RGBA);
|
2016-04-11 02:34:59 +03:00
|
|
|
nk_layout_row_dynamic(ctx, 25, 1);
|
2018-01-05 15:09:27 +03:00
|
|
|
bg.r = nk_propertyf(ctx, "#R:", 0, bg.r, 1.0f, 0.01f,0.005f);
|
|
|
|
bg.g = nk_propertyf(ctx, "#G:", 0, bg.g, 1.0f, 0.01f,0.005f);
|
|
|
|
bg.b = nk_propertyf(ctx, "#B:", 0, bg.b, 1.0f, 0.01f,0.005f);
|
|
|
|
bg.a = nk_propertyf(ctx, "#A:", 0, bg.a, 1.0f, 0.01f,0.005f);
|
2016-04-11 02:34:59 +03:00
|
|
|
nk_combo_end(ctx);
|
2016-10-30 00:23:46 +03:00
|
|
|
}
|
2016-04-11 02:34:59 +03:00
|
|
|
}
|
2016-10-30 00:23:46 +03:00
|
|
|
nk_end(ctx);
|
2016-04-11 02:34:59 +03:00
|
|
|
|
2016-04-28 15:38:44 +03:00
|
|
|
/* -------------- EXAMPLES ---------------- */
|
2018-01-01 19:20:55 +03:00
|
|
|
#ifdef INCLUDE_CALCULATOR
|
|
|
|
calculator(ctx);
|
|
|
|
#endif
|
2021-12-16 18:16:33 +03:00
|
|
|
#ifdef INCLUDE_CANVAS
|
|
|
|
canvas(ctx);
|
|
|
|
#endif
|
2018-01-01 19:20:55 +03:00
|
|
|
#ifdef INCLUDE_OVERVIEW
|
|
|
|
overview(ctx);
|
|
|
|
#endif
|
|
|
|
#ifdef INCLUDE_NODE_EDITOR
|
|
|
|
node_editor(ctx);
|
|
|
|
#endif
|
2016-04-28 15:38:44 +03:00
|
|
|
/* ----------------------------------------- */
|
|
|
|
|
2016-04-11 02:34:59 +03:00
|
|
|
/* Draw */
|
|
|
|
glfwGetWindowSize(win, &width, &height);
|
|
|
|
glViewport(0, 0, width, height);
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
2018-01-05 15:09:27 +03:00
|
|
|
glClearColor(bg.r, bg.g, bg.b, bg.a);
|
2016-04-30 15:49:28 +03:00
|
|
|
/* IMPORTANT: `nk_glfw_render` modifies some global OpenGL state
|
2016-04-29 15:07:08 +03:00
|
|
|
* with blending, scissor, face culling, depth test and viewport and
|
|
|
|
* defaults everything back into a default state.
|
|
|
|
* Make sure to either a.) save and restore or b.) reset your own state after
|
|
|
|
* rendering the UI. */
|
2020-04-30 16:17:24 +03:00
|
|
|
nk_glfw3_render(&glfw, NK_ANTI_ALIASING_ON, MAX_VERTEX_BUFFER, MAX_ELEMENT_BUFFER);
|
2018-01-05 15:09:27 +03:00
|
|
|
glfwSwapBuffers(win);
|
2016-04-11 02:34:59 +03:00
|
|
|
}
|
2020-04-30 16:17:24 +03:00
|
|
|
nk_glfw3_shutdown(&glfw);
|
2016-04-11 02:34:59 +03:00
|
|
|
glfwTerminate();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|