about summary refs log tree commit diff
path: root/src/engine
diff options
context:
space:
mode:
authorJakob Fries <jakob.fries@gmail.com>2007-10-29 18:40:04 +0000
committerJakob Fries <jakob.fries@gmail.com>2007-10-29 18:40:04 +0000
commit5ae7db0c54ebadcfdaa040ff97e62f260e95436a (patch)
treed93e531b6a2b7a4d033b94873413c6e2052e8d9c /src/engine
parenta33870845628fea75c96e4b3acebca0a2cd10f7a (diff)
downloadzcatch-5ae7db0c54ebadcfdaa040ff97e62f260e95436a.tar.gz
zcatch-5ae7db0c54ebadcfdaa040ff97e62f260e95436a.zip
more new gui
Diffstat (limited to 'src/engine')
-rw-r--r--src/engine/client/gfx.c193
-rw-r--r--src/engine/client/ui.c167
-rw-r--r--src/engine/interface.h14
3 files changed, 173 insertions, 201 deletions
diff --git a/src/engine/client/gfx.c b/src/engine/client/gfx.c
index fe72f4c7..3bf8cfe4 100644
--- a/src/engine/client/gfx.c
+++ b/src/engine/client/gfx.c
@@ -68,7 +68,6 @@ enum
 static TEXTURE textures[MAX_TEXTURES];
 static int first_free_texture;
 static int memory_usage = 0;
-static float scale = 1.0f;
 
 static const unsigned char null_texture_data[] = {
 	0xff,0x00,0x00,0xff, 0xff,0x00,0x00,0xff, 0x00,0xff,0x00,0xff, 0x00,0xff,0x00,0xff, 
@@ -121,198 +120,6 @@ static void draw_quad()
 		flush();
 }
 
-struct node
-{
-    struct node *left_child, *right_child;
-    struct rect *rect;
-};
-
-#define TREE_SIZE 128
-static struct node memory[TREE_SIZE];
-static int memory_used;
-static struct rect screen = { 0.0f, 0.0f, 800.0f, 600.0f };
-static struct node root;
-
-static struct node *allocate_node()
-{
-    if (memory_used >= TREE_SIZE)
-    {
-        dbg_msg("GUI tree error",  "all tree nodes are taken. =(");
-        return 0x0;
-    }
-    else
-        return &memory[memory_used++];
-}
-
-static void clear_node(struct node *n)
-{
-    n->left_child = 0x0;
-    n->right_child = 0x0;
-    n->rect = 0x0;
-}
-
-static struct node *find(struct node *n, struct rect *r)
-{
-    if (!n)
-        return 0x0;
-    else if (n->rect == r)
-        return n;
-    else
-    {
-        struct node *result = find(n->left_child, r);
-
-        if (result)
-            return result;
-        else
-            return find(n->right_child, r);
-    }
-}
-
-static struct node *find_node(struct rect *rect)
-{
-    return find(&root, rect);
-}
-
-static void set_children(struct rect *parent, struct rect *child1, struct rect *child2)
-{
-    struct node *n = find_node(parent);
-    struct node *c1 = allocate_node();
-    struct node *c2 = allocate_node();
-
-    if (!n)
-        dbg_msg("GUI tree error", "could not find parent in tree.");
-
-    if (n->left_child || n->right_child)
-        dbg_msg("GUI tree error", "node already has children.");
-
-    clear_node(c1);
-    clear_node(c2);
-
-    c1->rect = child1;
-    c2->rect = child2;
-
-    n->left_child = c1;
-    n->right_child = c2;
-}
-
-static void foreach_leaf(struct node *n, rect_fun fun)
-{
-    if (n->left_child && n->right_child)
-    {
-        foreach_leaf(n->left_child, fun);
-        foreach_leaf(n->right_child, fun);
-    }
-    else
-        fun(n->rect);
-}
-
-void ui_foreach_rect(rect_fun fun)
-{
-    foreach_leaf(&root, fun);
-}
-
-struct rect *ui_screen()
-{
-    if (config.debug)
-    {
-        memory_used = 0;
-        clear_node(&root);
-        root.rect = &screen;
-    }
-
-    return &screen;
-}
-
-void ui_scale(float s)
-{
-    scale = s;
-}
-
-void ui_hsplit_t(struct rect *original, int pixels, struct rect *top, struct rect *bottom)
-{
-    struct rect r = *original;
-    pixels *= scale;
-
-    top->x = r.x;
-    top->y = r.y;
-    top->w = r.w;
-    top->h = pixels;
-
-    bottom->x = r.x;
-    bottom->y = r.y + pixels;
-    bottom->w = r.w;
-    bottom->h = r.h - pixels;
-
-    set_children(original, top, bottom);
-}
-
-void ui_hsplit_b(struct rect *original, int pixels, struct rect *top, struct rect *bottom)
-{
-    struct rect r = *original;
-    pixels *= scale;
-
-    top->x = r.x;
-    top->y = r.y;
-    top->w = r.w;
-    top->h = r.h - pixels;
-
-    bottom->x = r.x;
-    bottom->y = r.y + r.h - pixels;
-    bottom->w = r.w;
-    bottom->h = pixels;
-
-    if (config.debug)
-        set_children(original, top, bottom);
-}
-
-void ui_vsplit_l(struct rect *original, int pixels, struct rect *left, struct rect *right)
-{
-    struct rect r = *original;
-    pixels *= scale;
-
-    left->x = r.x;
-    left->y = r.y;
-    left->w = pixels;
-    left->h = r.h;
-
-    right->x = r.x + pixels;
-    right->y = r.y;
-    right->w = r.w - pixels;
-    right->h = r.h;
-
-    if (config.debug)
-        set_children(original, left, right);
-}
-
-void ui_vsplit_r(struct rect *original, int pixels, struct rect *left, struct rect *right)
-{
-    struct rect r = *original;
-    pixels *= scale;
-
-    left->x = r.x;
-    left->y = r.y;
-    left->w = r.w - pixels;
-    left->h = r.h;
-
-    right->x = r.x + r.w - pixels;
-    right->y = r.y;
-    right->w = pixels;
-    right->h = r.h;
-
-    if (config.debug)
-        set_children(original, left, right);
-}
-
-void ui_margin(struct rect *original, int pixels, struct rect *other_rect)
-{
-    struct rect r = *original;
-    pixels *= scale;
-
-    other_rect->x = r.x + pixels;
-    other_rect->y = r.y + pixels;
-    other_rect->w = r.w - 2*pixels;
-    other_rect->h = r.h - 2*pixels;
-}
 
 int gfx_init()
 {
diff --git a/src/engine/client/ui.c b/src/engine/client/ui.c
index 434f776f..c2c79afa 100644
--- a/src/engine/client/ui.c
+++ b/src/engine/client/ui.c
@@ -1,5 +1,6 @@
 #include <engine/system.h>
 #include <engine/interface.h>
+#include <engine/config.h>
 #include "ui.h"
 
 /********************************************************
@@ -107,3 +108,169 @@ int ui_do_button(void *id, const char *text, int checked, float x, float y, floa
     return r;
 }
 
+static float scale = 1.0f;
+#define MEMORY_SIZE 10*1024
+static struct rect memory[MEMORY_SIZE];
+static int memory_used = 0;
+static struct rect screen = { 0.0f, 0.0f, 800.0f, 600.0f };
+
+void ui_foreach_rect(rect_fun fun)
+{
+    int hrm;
+    for (hrm = 0; hrm < memory_used; hrm++)
+        fun(&memory[hrm]);
+}
+
+static void add_rect(struct rect *r)
+{
+    if (memory_used < MEMORY_SIZE)
+        memory[memory_used++] = *r;
+    else
+        dbg_msg("ui", "rect memory full.");
+}
+
+struct rect *ui_screen()
+{
+    if (config.debug)
+    {
+        memory_used = 0;
+    }
+
+    return &screen;
+}
+
+void ui_scale(float s)
+{
+    scale = s;
+}
+
+void ui_hsplit_t(const struct rect *original, int pixels, struct rect *top, struct rect *bottom)
+{
+    struct rect r = *original;
+    pixels *= scale;
+
+    if (top)
+    {
+        top->x = r.x;
+        top->y = r.y;
+        top->w = r.w;
+        top->h = pixels;
+    }
+
+    if (bottom)
+    {
+        bottom->x = r.x;
+        bottom->y = r.y + pixels;
+        bottom->w = r.w;
+        bottom->h = r.h - pixels;
+    }
+
+    if (config.debug)
+    {
+        if (top)
+            add_rect(top);
+        if (bottom)
+            add_rect(bottom);
+    }
+}
+
+void ui_hsplit_b(const struct rect *original, int pixels, struct rect *top, struct rect *bottom)
+{
+    struct rect r = *original;
+    pixels *= scale;
+
+    if (top)
+    {
+        top->x = r.x;
+        top->y = r.y;
+        top->w = r.w;
+        top->h = r.h - pixels;
+    }
+
+    if (bottom)
+    {
+        bottom->x = r.x;
+        bottom->y = r.y + r.h - pixels;
+        bottom->w = r.w;
+        bottom->h = pixels;
+    }
+
+    if (config.debug)
+    {
+        if (top)
+            add_rect(top);
+        if (bottom)
+            add_rect(bottom);
+    }
+}
+
+void ui_vsplit_l(const struct rect *original, int pixels, struct rect *left, struct rect *right)
+{
+    struct rect r = *original;
+    pixels *= scale;
+
+    if (left)
+    {
+        left->x = r.x;
+        left->y = r.y;
+        left->w = pixels;
+        left->h = r.h;
+    }
+
+    if (right)
+    {
+        right->x = r.x + pixels;
+        right->y = r.y;
+        right->w = r.w - pixels;
+        right->h = r.h;
+    }
+
+    if (config.debug)
+    {
+        if (left)
+            add_rect(left);
+        if (right)
+            add_rect(right);
+    }
+}
+
+void ui_vsplit_r(const struct rect *original, int pixels, struct rect *left, struct rect *right)
+{
+    struct rect r = *original;
+    pixels *= scale;
+
+    if (left)
+    {
+        left->x = r.x;
+        left->y = r.y;
+        left->w = r.w - pixels;
+        left->h = r.h;
+    }
+
+    if (right)
+    {
+        right->x = r.x + r.w - pixels;
+        right->y = r.y;
+        right->w = pixels;
+        right->h = r.h;
+    }
+
+    if (config.debug)
+    {
+        if (left)
+            add_rect(left);
+        if (right)
+            add_rect(right);
+    }
+}
+
+void ui_margin(const struct rect *original, int pixels, struct rect *other_rect)
+{
+    struct rect r = *original;
+    pixels *= scale;
+
+    other_rect->x = r.x + pixels;
+    other_rect->y = r.y + pixels;
+    other_rect->w = r.w - 2*pixels;
+    other_rect->h = r.h - 2*pixels;
+}
diff --git a/src/engine/interface.h b/src/engine/interface.h
index cf667cc3..c57c170d 100644
--- a/src/engine/interface.h
+++ b/src/engine/interface.h
@@ -89,23 +89,21 @@ typedef struct
 struct rect
 {
     float x, y, w, h;
-
 };
 
 struct rect *ui_screen();
-typedef void (*rect_fun)(struct rect *r);
+typedef void (*rect_fun)(const struct rect *r);
 void ui_foreach_rect(rect_fun fun);
 void ui_scale(float scale);
-void ui_hsplit_t(struct rect *original, int pixels, struct rect *top, struct rect *bottom);
-void ui_hsplit_b(struct rect *original, int pixels, struct rect *top, struct rect *bottom);
-void ui_vsplit_l(struct rect *original, int pixels, struct rect *left, struct rect *right);
-void ui_vsplit_r(struct rect *original, int pixels, struct rect *left, struct rect *right);
-void ui_margin(struct rect *original, int pixels, struct rect *new_rect);
+void ui_hsplit_t(const struct rect *original, int pixels, struct rect *top, struct rect *bottom);
+void ui_hsplit_b(const struct rect *original, int pixels, struct rect *top, struct rect *bottom);
+void ui_vsplit_l(const struct rect *original, int pixels, struct rect *left, struct rect *right);
+void ui_vsplit_r(const struct rect *original, int pixels, struct rect *left, struct rect *right);
+void ui_margin(const struct rect *original, int pixels, struct rect *new_rect);
 
 /* image loaders */
 int gfx_load_png(IMAGE_INFO *img, const char *filename);
 
-
 /*
 	Group: Graphics
 */