123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- /* nuklear - 1.32.0 - public domain */
- #include <stdio.h>
- #include <stdlib.h>
- #include <stdint.h>
- #include <stdarg.h>
- #include <string.h>
- #include <math.h>
- #include <assert.h>
- #include <limits.h>
- #include <time.h>
- #include <allegro5/allegro.h>
- #define WINDOW_WIDTH 1200
- #define WINDOW_HEIGHT 800
- #define NK_INCLUDE_FIXED_TYPES
- #define NK_INCLUDE_STANDARD_IO
- #define NK_INCLUDE_STANDARD_VARARGS
- #define NK_INCLUDE_DEFAULT_ALLOCATOR
- #define NK_IMPLEMENTATION
- #define NK_ALLEGRO5_IMPLEMENTATION
- #include "../../nuklear.h"
- #include "nuklear_allegro5.h"
- #define UNUSED(a) (void)a
- #define MIN(a,b) ((a) < (b) ? (a) : (b))
- #define MAX(a,b) ((a) < (b) ? (b) : (a))
- #define LEN(a) (sizeof(a)/sizeof(a)[0])
- /* ===============================================================
- *
- * EXAMPLE
- *
- * ===============================================================*/
- /* This are some code examples to provide a small overview of what can be
- * done with this library. To try out an example uncomment the defines */
- /*#define INCLUDE_ALL */
- /*#define INCLUDE_STYLE */
- /*#define INCLUDE_CALCULATOR */
- /*#define INCLUDE_CANVAS */
- #define INCLUDE_OVERVIEW
- /*#define INCLUDE_CONFIGURATOR */
- /*#define INCLUDE_NODE_EDITOR */
- #ifdef INCLUDE_ALL
- #define INCLUDE_STYLE
- #define INCLUDE_CALCULATOR
- #define INCLUDE_CANVAS
- #define INCLUDE_OVERVIEW
- #define INCLUDE_CONFIGURATOR
- #define INCLUDE_NODE_EDITOR
- #endif
- #ifdef INCLUDE_STYLE
- #include "../../demo/common/style.c"
- #endif
- #ifdef INCLUDE_CALCULATOR
- #include "../../demo/common/calculator.c"
- #endif
- #ifdef INCLUDE_CANVAS
- #include "../../demo/common/canvas.c"
- #endif
- #ifdef INCLUDE_OVERVIEW
- #include "../../demo/common/overview.c"
- #endif
- #ifdef INCLUDE_CONFIGURATOR
- #include "../../demo/common/style_configurator.c"
- #endif
- #ifdef INCLUDE_NODE_EDITOR
- #include "../../demo/common/node_editor.c"
- #endif
- /* ===============================================================
- *
- * DEMO
- *
- * ===============================================================*/
- int main(void)
- {
- /* Platform */
- ALLEGRO_DISPLAY *display = NULL;
- ALLEGRO_EVENT_QUEUE *event_queue = NULL;
- NkAllegro5Font *font;
- struct nk_context *ctx;
- #ifdef INCLUDE_CONFIGURATOR
- static struct nk_color color_table[NK_COLOR_COUNT];
- memcpy(color_table, nk_default_color_style, sizeof(color_table));
- #endif
- if (!al_init()) {
- fprintf(stdout, "failed to initialize allegro5!\n");
- exit(1);
- }
- al_install_mouse();
- al_set_mouse_wheel_precision(150);
- al_install_keyboard();
- al_set_new_display_flags(ALLEGRO_WINDOWED|ALLEGRO_RESIZABLE|ALLEGRO_OPENGL);
- al_set_new_display_option(ALLEGRO_SAMPLE_BUFFERS, 1, ALLEGRO_SUGGEST);
- al_set_new_display_option(ALLEGRO_SAMPLES, 8, ALLEGRO_SUGGEST);
- display = al_create_display(WINDOW_WIDTH, WINDOW_HEIGHT);
- if (!display) {
- fprintf(stdout, "failed to create display!\n");
- exit(1);
- }
- event_queue = al_create_event_queue();
- if (!event_queue) {
- fprintf(stdout, "failed to create event_queue!\n");
- al_destroy_display(display);
- exit(1);
- }
- al_register_event_source(event_queue, al_get_display_event_source(display));
- al_register_event_source(event_queue, al_get_mouse_event_source());
- al_register_event_source(event_queue, al_get_keyboard_event_source());
- font = nk_allegro5_font_create_from_file("../../extra_font/Roboto-Regular.ttf", 12, 0);
- ctx = nk_allegro5_init(font, display, WINDOW_WIDTH, WINDOW_HEIGHT);
- while(1)
- {
- bool get_event;
- ALLEGRO_EVENT ev;
- ALLEGRO_TIMEOUT timeout;
- al_init_timeout(&timeout, 0.06);
- get_event = al_wait_for_event_until(event_queue, &ev, &timeout);
- if (get_event && ev.type == ALLEGRO_EVENT_DISPLAY_CLOSE) {
- break;
- }
- /* Very Important: Always do nk_input_begin / nk_input_end even if
- there are no events, otherwise internal nuklear state gets messed up */
- nk_input_begin(ctx);
- if (get_event) {
- while (get_event) {
- nk_allegro5_handle_event(&ev);
- get_event = al_get_next_event(event_queue, &ev);
- }
- }
- nk_input_end(ctx);
- /* GUI */
- if (nk_begin(ctx, "Demo", nk_rect(50, 50, 200, 200),
- NK_WINDOW_BORDER|NK_WINDOW_MOVABLE|NK_WINDOW_SCALABLE|
- NK_WINDOW_CLOSABLE|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);
- if (nk_button_label(ctx, "button"))
- fprintf(stdout, "button pressed\n");
- 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;
- nk_layout_row_dynamic(ctx, 22, 1);
- nk_property_int(ctx, "Compression:", 0, &property, 100, 10, 1);
- }
- nk_end(ctx);
- /* -------------- EXAMPLES ---------------- */
- #ifdef INCLUDE_CALCULATOR
- calculator(ctx);
- #endif
- #ifdef INCLUDE_CANVAS
- canvas(ctx);
- #endif
- #ifdef INCLUDE_OVERVIEW
- overview(ctx);
- #endif
- #ifdef INCLUDE_CONFIGURATOR
- style_configurator(ctx, color_table);
- #endif
- #ifdef INCLUDE_NODE_EDITOR
- node_editor(ctx);
- #endif
- /* ----------------------------------------- */
- /* Draw */
- al_clear_to_color(al_map_rgb(19, 43, 81));
- /* IMPORTANT: `nk_allegro5_render` changes the target backbuffer
- to the display set at initialization and does not restore it.
- Change it if you want to draw somewhere else. */
- nk_allegro5_render();
- al_flip_display();
- }
- nk_allegro5_font_del(font);
- nk_allegro5_shutdown();
- al_destroy_display(display);
- al_destroy_event_queue(event_queue);
- return 0;
- }
|