]> git.draconx.ca Git - upkg.git/blobdiff - src/engine/texture.c
uobject: Rename U_OBJECT_TYPE to U_TYPE_OBJECT.
[upkg.git] / src / engine / texture.c
index 9cd6571bbae872ed89bfe333f9ca7fd4229831de..499a397216c4c811090807301d531e463683818e 100644 (file)
@@ -1,10 +1,10 @@
 /*
  *  upkg: tool for manipulating Unreal Tournament packages.
- *  Copyright (C) 2009 Nick Bowler
+ *  Copyright © 2009-2011 Nick Bowler
  *
- *  This program is free software; you can redistribute it and/or modify
+ *  This program is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 2 of the License, or
+ *  the Free Software Foundation, either version 3 of the License, or
  *  (at your option) any later version.
  *
  *  This program is distributed in the hope that it will be useful,
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <stdio.h>
@@ -24,6 +23,7 @@
 #include <uobject/uobject.h>
 #include <uobject/exportable.h>
 #include "texture.h"
+#include "palette.h"
 #include "upkg.h"
 
 #define TEXTURE_GET_PRIV(o) \
@@ -33,6 +33,11 @@ enum {
        PROP_0,
        PROP_USIZE,
        PROP_VSIZE,
+       PROP_UCLAMP,
+       PROP_VCLAMP,
+       PROP_UBITS,
+       PROP_VBITS,
+       PROP_PALETTE,
 };
 
 struct texture_priv {
@@ -49,16 +54,14 @@ void exportable_init(UObjectExportable *e)
 {
 }
 
-G_DEFINE_DYNAMIC_TYPE(EngineTexture, engine_texture, U_OBJECT_TYPE);
+G_DEFINE_DYNAMIC_TYPE(EngineTexture, engine_texture, U_TYPE_OBJECT);
 
-static int deserialize(UObject *o, struct upkg_file *f)
+static int deserialize(UObject *uo)
 {
-       struct texture_priv *priv = TEXTURE_GET_PRIV(o);
-       EngineTexture *t = ENGINE_TEXTURE(o);
-
-       U_OBJECT_CLASS(engine_texture_parent_class)->deserialize(o, f);
+       struct texture_priv *priv = TEXTURE_GET_PRIV(uo);
+       EngineTexture *t = ENGINE_TEXTURE(uo);
 
-       printf("Texture size: %ux%u\n", t->usize, t->vsize);
+       U_OBJECT_CLASS(engine_texture_parent_class)->deserialize(uo);
 
        return 0;
 }
@@ -80,6 +83,21 @@ set_property(GObject *o, guint id, const GValue *val, GParamSpec *spec)
        case PROP_VSIZE:
                t->vsize = g_value_get_uint(val);
                break;
+       case PROP_UCLAMP:
+               t->uclamp = g_value_get_uint(val);
+               break;
+       case PROP_VCLAMP:
+               t->vclamp = g_value_get_uint(val);
+               break;
+       case PROP_UBITS:
+               t->ubits = g_value_get_uint(val);
+               break;
+       case PROP_VBITS:
+               t->vbits = g_value_get_uint(val);
+               break;
+       case PROP_PALETTE:
+               t->palette = g_value_get_object(val);
+               break;
        default:
                G_OBJECT_WARN_INVALID_PROPERTY_ID(o, id, spec);
        }
@@ -92,10 +110,25 @@ get_property(GObject *o, guint id, GValue *val, GParamSpec *spec)
 
        switch (id) {
        case PROP_USIZE:
-               g_value_set_boolean(val, t->usize);
+               g_value_set_uint(val, t->usize);
                break;
        case PROP_VSIZE:
-               g_value_set_boolean(val, t->vsize);
+               g_value_set_uint(val, t->vsize);
+               break;
+       case PROP_UCLAMP:
+               g_value_set_uint(val, t->uclamp);
+               break;
+       case PROP_VCLAMP:
+               g_value_set_uint(val, t->vclamp);
+               break;
+       case PROP_UBITS:
+               g_value_set_uint(val, t->ubits);
+               break;
+       case PROP_VBITS:
+               g_value_set_uint(val, t->vbits);
+               break;
+       case PROP_PALETTE:
+               g_value_set_object(val, t->palette);
                break;
        default:
                G_OBJECT_WARN_INVALID_PROPERTY_ID(o, id, spec);
@@ -130,6 +163,36 @@ static void engine_texture_class_init(EngineTextureClass *class)
                        "Height of the texture.",
                        0, 2048, 0,
                        G_PARAM_READWRITE));
+       g_object_class_install_property(go, PROP_UCLAMP,
+               g_param_spec_uint("UClamp",
+                       "UClamp",
+                       "???",
+                       0, 2048, 0,
+                       G_PARAM_READWRITE));
+       g_object_class_install_property(go, PROP_VCLAMP,
+               g_param_spec_uint("VClamp",
+                       "VClamp",
+                       "???",
+                       0, 2048, 0,
+                       G_PARAM_READWRITE));
+       g_object_class_install_property(go, PROP_UBITS,
+               g_param_spec_uint("UBits",
+                       "UBits",
+                       "???",
+                       0, 64, 0,
+                       G_PARAM_READWRITE));
+       g_object_class_install_property(go, PROP_VBITS,
+               g_param_spec_uint("VBits",
+                       "VBits",
+                       "???",
+                       0, 64, 0,
+                       G_PARAM_READWRITE));
+       g_object_class_install_property(go, PROP_PALETTE,
+               g_param_spec_object("Palette",
+                       "Palette",
+                       "Palette reference for the texture.",
+                       ENGINE_PALETTE_TYPE,
+                       G_PARAM_READWRITE));
 }
 
 static void engine_texture_class_finalize(EngineTextureClass *class)