summaryrefslogtreecommitdiffstats
path: root/libdimension
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2010-02-25 01:26:14 -0500
committerTavian Barnes <tavianator@gmail.com>2010-02-25 02:08:51 -0500
commit21794278ae305acd5dc13d0cd6a491f420b69880 (patch)
treef25daf8feacac6aa0c0645de8f8e33f3df2d9d93 /libdimension
parentac2890f762db13b35b1f8bd37b0c07855a21c9d8 (diff)
downloaddimension-21794278ae305acd5dc13d0cd6a491f420b69880.tar.xz
New dmnsn_interior* type.
Diffstat (limited to 'libdimension')
-rw-r--r--libdimension/Makefile.am2
-rw-r--r--libdimension/dimension.h1
-rw-r--r--libdimension/dimension/interior.h42
-rw-r--r--libdimension/dimension/object.h3
-rw-r--r--libdimension/interior.c46
-rw-r--r--libdimension/object.c7
-rw-r--r--libdimension/texture.c2
7 files changed, 99 insertions, 4 deletions
diff --git a/libdimension/Makefile.am b/libdimension/Makefile.am
index eca9bf1..deb60c3 100644
--- a/libdimension/Makefile.am
+++ b/libdimension/Makefile.am
@@ -30,6 +30,7 @@ nobase_include_HEADERS = dimension.h \
dimension/finishes.h \
dimension/geometry.h \
dimension/gl.h \
+ dimension/interior.h \
dimension/light.h \
dimension/lights.h \
dimension/object.h \
@@ -58,6 +59,7 @@ libdimension_la_SOURCES = $(nobase_include_HEADERS) \
geometry.c \
gl.c \
inlines.c \
+ interior.c \
light.c \
object.c \
perspective.c \
diff --git a/libdimension/dimension.h b/libdimension/dimension.h
index 77697da..be0e9bb 100644
--- a/libdimension/dimension.h
+++ b/libdimension/dimension.h
@@ -71,6 +71,7 @@ typedef void dmnsn_free_fn(void *ptr);
#include <dimension/texture.h>
#include <dimension/pigments.h>
#include <dimension/finishes.h>
+#include <dimension/interior.h>
#include <dimension/object.h>
#include <dimension/objects.h>
#include <dimension/light.h>
diff --git a/libdimension/dimension/interior.h b/libdimension/dimension/interior.h
new file mode 100644
index 0000000..0ab4a30
--- /dev/null
+++ b/libdimension/dimension/interior.h
@@ -0,0 +1,42 @@
+/*************************************************************************
+ * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
+ * *
+ * This file is part of The Dimension Library. *
+ * *
+ * The Dimension Library is free software; you can redistribute it and/ *
+ * or modify it under the terms of the GNU Lesser General Public License *
+ * as published by the Free Software Foundation; either version 3 of the *
+ * License, or (at your option) any later version. *
+ * *
+ * The Dimension Library is distributed in the hope that it will be *
+ * useful, but WITHOUT ANY WARRANTY; without even the implied warranty *
+ * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
+ * Lesser General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU Lesser General Public *
+ * License along with this program. If not, see *
+ * <http://www.gnu.org/licenses/>. *
+ *************************************************************************/
+
+/*
+ * Object interiors.
+ */
+
+#ifndef DIMENSION_INTERIOR_H
+#define DIMENSION_INTERIOR_H
+
+typedef struct dmnsn_interior {
+ /* Refractive index */
+ double ior;
+
+ /* Callbacks */
+ dmnsn_free_fn *free_fn;
+
+ /* Generic pointer */
+ void *ptr;
+} dmnsn_interior;
+
+dmnsn_interior *dmnsn_new_interior();
+void dmnsn_delete_interior(dmnsn_interior *interior);
+
+#endif /* DIMENSION_INTERIOR_H */
diff --git a/libdimension/dimension/object.h b/libdimension/dimension/object.h
index a415d39..4c1980d 100644
--- a/libdimension/dimension/object.h
+++ b/libdimension/dimension/object.h
@@ -58,6 +58,9 @@ struct dmnsn_object {
/* Surface properties */
dmnsn_texture *texture;
+ /* Interior properties */
+ dmnsn_interior *interior;
+
/* Transformation matrix */
dmnsn_matrix trans, trans_inv;
diff --git a/libdimension/interior.c b/libdimension/interior.c
new file mode 100644
index 0000000..a643f70
--- /dev/null
+++ b/libdimension/interior.c
@@ -0,0 +1,46 @@
+/*************************************************************************
+ * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
+ * *
+ * This file is part of The Dimension Library. *
+ * *
+ * The Dimension Library is free software; you can redistribute it and/ *
+ * or modify it under the terms of the GNU Lesser General Public License *
+ * as published by the Free Software Foundation; either version 3 of the *
+ * License, or (at your option) any later version. *
+ * *
+ * The Dimension Library is distributed in the hope that it will be *
+ * useful, but WITHOUT ANY WARRANTY; without even the implied warranty *
+ * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
+ * Lesser General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU Lesser General Public *
+ * License along with this program. If not, see *
+ * <http://www.gnu.org/licenses/>. *
+ *************************************************************************/
+
+#include "dimension.h"
+#include <stdlib.h> /* For malloc */
+
+/* Allocate an interior */
+dmnsn_interior *
+dmnsn_new_interior()
+{
+ dmnsn_interior *interior = malloc(sizeof(dmnsn_interior));
+ if (interior) {
+ interior->ior = 1.0;
+ interior->free_fn = NULL;
+ }
+ return interior;
+}
+
+/* Free a interior */
+void
+dmnsn_delete_interior(dmnsn_interior *interior)
+{
+ if (interior) {
+ if (interior->free_fn) {
+ (*interior->free_fn)(interior->ptr);
+ }
+ free(interior);
+ }
+}
diff --git a/libdimension/object.c b/libdimension/object.c
index ffb753f..a1b161e 100644
--- a/libdimension/object.c
+++ b/libdimension/object.c
@@ -45,9 +45,10 @@ dmnsn_new_object()
{
dmnsn_object *object = malloc(sizeof(dmnsn_object));
if (object) {
- object->texture = NULL;
- object->trans = dmnsn_identity_matrix();
- object->free_fn = NULL;
+ object->texture = NULL;
+ object->interior = NULL;
+ object->trans = dmnsn_identity_matrix();
+ object->free_fn = NULL;
}
return object;
}
diff --git a/libdimension/texture.c b/libdimension/texture.c
index 649d18e..24ff759 100644
--- a/libdimension/texture.c
+++ b/libdimension/texture.c
@@ -78,7 +78,7 @@ dmnsn_new_texture()
dmnsn_texture *texture = malloc(sizeof(dmnsn_texture));
if (texture) {
texture->pigment = NULL;
- texture->finish = NULL;
+ texture->finish = NULL;
}
return texture;
}