summaryrefslogtreecommitdiffstats
path: root/libdimension/dimension/object.h
blob: 0f7c94066d5d00e3d815e23a97b6f7db40f16550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/*************************************************************************
 * Copyright (C) 2009-2014 Tavian Barnes <tavianator@tavianator.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/>.                                       *
 *************************************************************************/

/**
 * @file
 * Objects.
 */

#include <stdbool.h>

/* Forward-declare dmnsn_object */
typedef struct dmnsn_object dmnsn_object;

/** A type to represent a ray-object intersection. */
typedef struct dmnsn_intersection {
  dmnsn_line ray; /**< The ray that intersected. */
  double t;       /**< The line index that intersected. */

  /** The surface normal at the intersection point. */
  dmnsn_vector normal;

  /** The object of intersection. */
  const dmnsn_object *object;
} dmnsn_intersection;

/**
 * Object initialization callback.
 * @param[in,out] object  The object to initialize.
 */
typedef void dmnsn_object_initialize_fn(dmnsn_object *object);

/**
 * Ray-object intersection callback.
 * @param[in]  object        The object to test.
 * @param[in]  line          The line to test.
 * @param[out] intersection  Where to store the intersection details of the
 *                           closest (if any) intersection.
 * @return Whether \p line intersected \p object.
 */
typedef bool dmnsn_object_intersection_fn(const dmnsn_object *object,
                                          dmnsn_line line,
                                          dmnsn_intersection *intersection);

/**
 * Object inside callback.
 * @param[in] object  The object to test.
 * @param[in] point   The point to test.
 * @return Whether \p point is inside \p object.
 */
typedef bool dmnsn_object_inside_fn(const dmnsn_object *object,
                                    dmnsn_vector point);

/** Object callbacks. */
typedef struct dmnsn_object_vtable {
  dmnsn_object_intersection_fn *intersection_fn; /**< Intersection callback. */
  dmnsn_object_inside_fn *inside_fn; /**< Inside callback. */
  dmnsn_object_initialize_fn *initialize_fn; /**< Initialization callback. */
} dmnsn_object_vtable;

/** An object. */
struct dmnsn_object {
  const dmnsn_object_vtable *vtable; /**< Callbacks. */

  dmnsn_texture *texture;  /**< Surface properties. */
  dmnsn_interior *interior; /**< Interior properties. */

  dmnsn_matrix trans; /**< Transformation matrix. */
  dmnsn_matrix trans_inv; /**< Inverse of the transformation matrix. */
  dmnsn_matrix intrinsic_trans; /**< Transformations intrinsic to the object. */
  dmnsn_matrix pigment_trans; /**< Inverse transformation for the texture. */

  dmnsn_bounding_box bounding_box; /**< Object bounding box. */

  dmnsn_array *children; /**< Child objects. */
  bool split_children;   /**< Whether the child objects can be split. */

  bool initialized; /**< @internal Whether the object is initialized yet. */
};

/**
 * Allocate a dummy object.
 * @param[in] pool  The memory pool to allocate from.
 * @return The allocated object.
 */
dmnsn_object *dmnsn_new_object(dmnsn_pool *pool);

/**
 * Initialize a dmnsn_object field.
 * @param[out] object  The object to initialize.
 */
void dmnsn_init_object(dmnsn_object *object);

/**
 * Initialize an object and potentially its children.
 * @param[in,out] object  The object to initialize.
 */
void dmnsn_object_initialize(dmnsn_object *object);

/**
 * Appropriately transform a ray, then test for an intersection.
 * @param[in]  object        The object to test.
 * @param[in]  line          The ray to test.
 * @param[out] intersection  Where to store the intersection details.
 * @return Whether there was an intersection.
 */
DMNSN_INLINE bool
dmnsn_object_intersection(const dmnsn_object *object, dmnsn_line line,
                          dmnsn_intersection *intersection)
{
  dmnsn_line line_trans = dmnsn_transform_line(object->trans_inv, line);
  intersection->object = NULL;
  if (object->vtable->intersection_fn(object, line_trans, intersection)) {
    /* Get us back into world coordinates */
    intersection->ray = line;
    intersection->normal = dmnsn_vector_normalized(
      dmnsn_transform_normal(object->trans_inv, intersection->normal)
    );
    if (!intersection->object) {
      intersection->object = object;
    }

    dmnsn_assert(!isnan(intersection->t), "Intersection point is NaN.");
    dmnsn_assert(!dmnsn_vector_isnan(intersection->normal),
                 "Intersection normal is NaN.");

    return true;
  } else {
    return false;
  }
}

/**
 * Appropriately transform a point, then test for containment.
 * @param[in] object  The object to test.
 * @param[in] point   The point to test.
 * @return Whether \p point was inside \p object.
 */
DMNSN_INLINE bool
dmnsn_object_inside(const dmnsn_object *object, dmnsn_vector point)
{
  point = dmnsn_transform_point(object->trans_inv, point);
  return object->vtable->inside_fn(object, point);
}