Hash :
f0401f0c
Author :
Thomas de Grivel
Date :
2024-03-04T14:19:12
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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
/* c3
* Copyright 2022-2024 kmx.io <contact@kmx.io>
*
* Permission is hereby granted to use this software granted the above
* copyright notice and this permission paragraph are included in all
* copies and substantial portions of this software.
*
* THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
* PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
* AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
* THIS SOFTWARE.
*/
#include <math.h>
#include <libc3/c3.h>
#include "dmat4.h"
#include "dvec3.h"
sw dmat4_buf_inspect (s_buf *buf, const s_dmat4 *matrix)
{
u8 i;
u8 j;
sw r;
sw result = 0;
assert(buf);
assert(matrix);
const f64 *m;
if ((r = buf_write_1(buf, "(F64) {")) < 0)
return r;
result += r;
m = &matrix->xx;
i = 0;
while (i < 4) {
j = 0;
while (j < 4) {
if ((r = buf_inspect_f64(buf, m + j * 4 + i)) < 0)
return r;
result += r;
if (i < 3 || j < 3) {
if ((r = buf_write_1(buf, ",")) < 0)
return r;
result += r;
if (j < 3) {
if ((r = buf_write_1(buf, " ")) < 0)
return r;
result += r;
}
}
j++;
}
if (i < 3) {
if ((r = buf_write_1(buf, "\n ")) < 0)
return r;
result += r;
}
i++;
}
if ((r = buf_write_1(buf, "}\n")) < 0)
return r;
result += r;
return result;
}
s_dmat4 * dmat4_init_copy (s_dmat4 *m, const s_dmat4 *src)
{
assert(m);
assert(src);
*m = *src;
return m;
}
s_dmat4 * dmat4_init_product (s_dmat4 *m, const s_dmat4 *a,
const s_dmat4 *b)
{
assert(m);
assert(a);
assert(b);
m->xx = a->xx * b->xx + a->xy * b->yx + a->xz * b->zx + a->xt * b->tx;
m->xy = a->xx * b->xy + a->xy * b->yy + a->xz * b->zy + a->xt * b->ty;
m->xz = a->xx * b->xz + a->xy * b->yz + a->xz * b->zz + a->xt * b->tz;
m->xt = a->xx * b->xt + a->xy * b->yt + a->xz * b->zt + a->xt * b->tt;
m->yx = a->yx * b->xx + a->yy * b->yx + a->yz * b->zx + a->yt * b->tx;
m->yy = a->yx * b->xy + a->yy * b->yy + a->yz * b->zy + a->yt * b->ty;
m->yz = a->yx * b->xz + a->yy * b->yz + a->yz * b->zz + a->yt * b->tz;
m->yt = a->yx * b->xt + a->yy * b->yt + a->yz * b->zt + a->yt * b->tt;
m->zx = a->zx * b->xx + a->zy * b->yx + a->zz * b->zx + a->zt * b->tx;
m->zy = a->zx * b->xy + a->zy * b->yy + a->zz * b->zy + a->zt * b->ty;
m->zz = a->zx * b->xz + a->zy * b->yz + a->zz * b->zz + a->zt * b->tz;
m->zt = a->zx * b->xt + a->zy * b->yt + a->zz * b->zt + a->zt * b->tt;
m->tx = a->tx * b->xx + a->ty * b->yx + a->tz * b->zx + a->tt * b->tx;
m->ty = a->tx * b->xy + a->ty * b->yy + a->tz * b->zy + a->tt * b->ty;
m->tz = a->tx * b->xz + a->ty * b->yz + a->tz * b->zz + a->tt * b->tz;
m->tt = a->tx * b->xt + a->ty * b->yt + a->tz * b->zt + a->tt * b->tt;
return m;
}
s_dmat4 * dmat4_init_identity (s_dmat4 *m)
{
assert(m);
m->xx = 1.0; m->xy = 0.0; m->xz = 0.0; m->xt = 0.0;
m->yx = 0.0; m->yy = 1.0; m->yz = 0.0; m->yt = 0.0;
m->zx = 0.0; m->zy = 0.0; m->zz = 1.0; m->zt = 0.0;
m->tx = 0.0; m->ty = 0.0; m->tz = 0.0; m->tt = 1.0;
return m;
}
s_dmat4 * dmat4_init_scale (s_dmat4 *m, f64 x, f64 y, f64 z)
{
assert(m);
m->xx = x; m->xy = 0.0; m->xz = 0.0; m->xt = 0.0;
m->yx = 0.0; m->yy = y; m->yz = 0.0; m->yt = 0.0;
m->zx = 0.0; m->zy = 0.0; m->zz = z; m->zt = 0.0;
m->tx = 0.0; m->ty = 0.0; m->tz = 0.0; m->tt = 1.0;
return m;
}
s_dmat4 * dmat4_init_zero (s_dmat4 *m)
{
assert(m);
m->xx = 0.0; m->xy = 0.0; m->xz = 0.0; m->xt = 0.0;
m->yx = 0.0; m->yy = 0.0; m->yz = 0.0; m->yt = 0.0;
m->zx = 0.0; m->zy = 0.0; m->zz = 0.0; m->zt = 0.0;
m->tx = 0.0; m->ty = 0.0; m->tz = 0.0; m->tt = 0.0;
return m;
}
void dmat4_delete (s_dmat4 *m)
{
free(m);
}
s_dmat4 * dmat4_new_copy (const s_dmat4 *src)
{
s_dmat4 *m;
m = calloc(1, sizeof(s_dmat4));
if (! m) {
err_puts("dmat4_new: failed to allocate memory");
return NULL;
}
*m = *src;
return m;
}
s_dmat4 * dmat4_new_product (const s_dmat4 *a, const s_dmat4 *b)
{
s_dmat4 *m;
assert(a);
assert(b);
m = calloc(1, sizeof(s_dmat4));
if (! m) {
err_puts("dmat4_new: failed to allocate memory");
return NULL;
}
dmat4_init_product(m, a, b);
return m;
}
s_dmat4 * dmat4_new_zero (void)
{
s_dmat4 *m;
m = calloc(1, sizeof(s_dmat4));
if (! m) {
err_puts("dmat4_new: failed to allocate memory");
return NULL;
}
dmat4_init_zero(m);
return m;
}
s_dmat4 * dmat4_ortho (s_dmat4 *m, f64 x1, f64 x2, f64 y1, f64 y2,
f64 clip_z_near, f64 clip_z_far)
{
f64 dx;
f64 dy;
f64 dz;
s_dmat4 ortho;
assert(m);
dx = x2 - x1;
dy = y2 - y1;
dz = clip_z_far - clip_z_near;
dmat4_init_zero(&ortho);
ortho.xx = 2.0 / dx;
ortho.yy = 2.0 / dy;
ortho.zz = -2.0 / dz;
ortho.tx = - (x1 + x2) / dx;
ortho.ty = - (y1 + y2) / dy;
ortho.tz = - (clip_z_near + clip_z_far) / dz;
ortho.tt = 1.0;
dmat4_product(&ortho, m);
*m = ortho;
return m;
}
s_dmat4 * dmat4_perspective (s_dmat4 *m, f64 fov_y, f64 aspect_ratio,
f64 z_near, f64 z_far)
{
f64 dz;
s_dmat4 perspective;
f64 f;
f64 fov_y_2;
fov_y_2 = fov_y / 2.0;
f = cos(fov_y_2) / sin(fov_y_2);
dz = z_near - z_far;
dmat4_init_zero(&perspective);
perspective.xx = f / aspect_ratio;
perspective.yy = f;
perspective.zz = (z_near + z_far) / dz;
perspective.zt = -1.0;
perspective.tz = 2.0 * z_near * z_far / dz;
dmat4_product(&perspective, m);
*m = perspective;
return m;
}
s_dmat4 * dmat4_product (s_dmat4 *m, const s_dmat4 *a)
{
s_dmat4 tmp;
dmat4_init_product(&tmp, m, a);
*m = tmp;
return m;
}
s_dmat4 * dmat4_rotate_axis (s_dmat4 *m, f64 rad,
const s_dvec3 *axis)
{
s_dvec3 a;
f64 angle;
f64 one_minus_x;
f64 x;
f64 y;
dvec3_init_normalize(&a, axis);
angle = -rad;
x = cos(angle);
one_minus_x = 1.0 - x;
y = sin(angle);
s_dmat4 r = { x + a.x * a.x * one_minus_x,
a.x * a.y * one_minus_x - a.z * y,
a.x * a.z * one_minus_x + a.y * y,
0.0,
a.x * a.y * one_minus_x + a.z * y,
x + a.y * a.y * one_minus_x,
a.y * a.z * one_minus_x - a.x * y,
0.0,
a.x * a.z * one_minus_x - a.y * y,
a.y * a.z * one_minus_x + a.x * y,
x + a.z * a.z * one_minus_x,
0.0,
0.0, 0.0, 0.0, 1.0 };
dmat4_product(&r, m);
*m = r;
return m;
}
s_dmat4 * dmat4_scale (s_dmat4 *m, f64 x, f64 y, f64 z)
{
s_dmat4 s;
dmat4_init_zero(&s);
s.xx = x;
s.yy = y;
s.zz = z;
s.tt = 1.0;
dmat4_product(&s, m);
*m = s;
return m;
}
s_dmat4 * dmat4_translate (s_dmat4 *m, f64 x, f64 y, f64 z)
{
s_dmat4 s;
dmat4_init_identity(&s);
s.tx = x;
s.ty = y;
s.tz = z;
dmat4_product(&s, m);
*m = s;
return m;
}