Sun, 24 May 2026 18:27:13 +0200
atlas-editor: first attempt to attach a document
|
280
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
1 | /* |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
3 | * Copyright 2025 Mike Becker. All rights reserved. |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
4 | * |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
5 | * Redistribution and use in source and binary forms, with or without |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
6 | * modification, are permitted provided that the following conditions are met: |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
7 | * |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
8 | * 1. Redistributions of source code must retain the above copyright |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
9 | * notice, this list of conditions and the following disclaimer. |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
10 | * |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
11 | * 2. Redistributions in binary form must reproduce the above copyright |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
12 | * notice, this list of conditions and the following disclaimer in the |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
13 | * documentation and/or other materials provided with the distribution. |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
14 | * |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
16 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
17 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
18 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
19 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
20 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
21 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
22 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
23 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
24 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
25 | * POSSIBILITY OF SUCH DAMAGE. |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
26 | */ |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
27 | |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
28 | #include <ui/ui.h> |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
29 | |
|
312
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
30 | #define VAR_TILE_WIDTH "tile_width" |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
31 | #define VAR_TILE_HEIGHT "tile_height" |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
32 | #define VAR_SPACING "spacing" |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
33 | |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
34 | static void *create_document(void) { |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
35 | void *doc = ui_document_new(1); // TODO: actually we have zero additional data, but that probably does not work |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
36 | UiContext *ctx = ui_document_context(doc); |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
37 | ui_set(ui_int_new(ctx, VAR_TILE_WIDTH), 32); |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
38 | ui_set(ui_int_new(ctx, VAR_TILE_HEIGHT), 32); |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
39 | ui_set(ui_int_new(ctx, VAR_SPACING), 0); |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
40 | return doc; |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
41 | } |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
42 | |
|
308
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
43 | static void draw_atlas(UiEvent* evt, UiGraphics* g, void* data) { |
|
312
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
44 | UiContext *doc_ctx = ui_document_context(evt->document); |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
45 | int spacing = (int) ui_var_get_int(doc_ctx, VAR_SPACING); |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
46 | int tile_width = (int) ui_var_get_int(doc_ctx, VAR_TILE_WIDTH); |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
47 | int tile_height = (int) ui_var_get_int(doc_ctx, VAR_TILE_HEIGHT); |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
48 | |
|
308
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
49 | ui_graphics_color(g, 255, 128, 0); |
|
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
50 | ui_draw_rect(g, 0, 0, g->width, g->height, true); |
|
312
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
51 | ui_graphics_color(g, 128, 128, 128); |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
52 | for (int x = spacing ; x < g->width ; x += tile_width + spacing) { |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
53 | for (int y = spacing ; y < g->height ; y += tile_height + spacing) { |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
54 | ui_draw_rect(g, x, y, tile_width, tile_height, false); |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
55 | } |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
56 | } |
|
308
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
57 | } |
|
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
58 | |
|
312
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
59 | static void application_startup([[maybe_unused]] UiEvent *event, void *data) { |
|
301
10f7d14405b6
update to recent toolkit version
Mike Becker <universe@uap-core.de>
parents:
280
diff
changeset
|
60 | UiObject *window = ui_window("Ascension - Texture Atlas Editor"); |
|
308
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
61 | |
|
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
62 | ui_grid(window, .columnspacing = 10, .margin = 10, .fill = true) { |
|
309
8124d12deb04
atlas-editor: fix expansion of drawing area
Mike Becker <universe@uap-core.de>
parents:
308
diff
changeset
|
63 | ui_frame(window, .hexpand = true, .hfill = true, .vexpand = true, .vfill = true, |
|
8124d12deb04
atlas-editor: fix expansion of drawing area
Mike Becker <universe@uap-core.de>
parents:
308
diff
changeset
|
64 | .subcontainer = UI_CONTAINER_NO_SUB) { |
|
308
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
65 | ui_drawingarea(window, .draw = draw_atlas); |
|
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
66 | } |
|
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
67 | ui_vbox(window, .spacing = 5) { |
|
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
68 | ui_grid(window, .columnspacing = 10, .def_hexpand = true, .def_hfill = true) { |
|
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
69 | ui_button(window, .label = "Load Atlas"); |
|
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
70 | ui_button(window, .label = "Save Atlas"); |
|
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
71 | } |
|
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
72 | ui_button(window, .label = "Load Texture"); |
|
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
73 | ui_separator(window); |
|
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
74 | ui_grid(window, .columnspacing = 10, .rowspacing = 2, .def_vfill = true) { |
|
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
75 | ui_label(window, .label = "Tile Width:"); |
|
312
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
76 | ui_spinbox(window, .varname = VAR_TILE_WIDTH, .min = 8, .step = 8); |
|
308
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
77 | ui_label(window, .label = "Tile Height:"); |
|
312
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
78 | ui_spinbox(window, .varname = VAR_TILE_HEIGHT, .min = 8, .step = 8); |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
79 | ui_newline(window); |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
80 | ui_label(window, .varname = VAR_SPACING, .label = "Spacing:"); |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
81 | ui_spinbox(window); |
|
308
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
82 | } |
|
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
83 | } |
|
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
84 | } |
|
ef85db003415
first attempt to create a UI for the atlas editor
Mike Becker <universe@uap-core.de>
parents:
301
diff
changeset
|
85 | |
|
312
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
86 | ui_attach_document(window->ctx, create_document()); |
|
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
87 | |
|
280
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
88 | ui_show(window); |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
89 | } |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
90 | |
|
312
330fc71ad3c2
atlas-editor: first attempt to attach a document
Mike Becker <universe@uap-core.de>
parents:
309
diff
changeset
|
91 | int main(int argc, char** argv) { |
|
280
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
92 | ui_init("asc_atlas_editor", argc, argv); |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
93 | ui_onstartup(application_startup, NULL); |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
94 | ui_main(); |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
95 | return 0; |
|
7845f5872bed
start a sub-project to implement a texture atlas editor
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
96 | } |