2018-11-18 15:59:58 +01:00
|
|
|
/*
|
2018-11-18 18:46:10 +01:00
|
|
|
WIP
|
|
|
|
|
|
|
|
Simple realtime 3D software rasterization library. It is fast, focused on
|
|
|
|
resource-limited computers, located in a single C header file, with no
|
|
|
|
dependencies, using only integer arithmetic.
|
2018-11-18 15:59:58 +01:00
|
|
|
|
|
|
|
author: Miloslav Ciz
|
|
|
|
license: CC0 1.0
|
2018-11-20 09:35:05 +01:00
|
|
|
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
COORDINATE SYSTEMS:
|
|
|
|
|
|
|
|
In 3D space, a left-handed coord. system is used. One spatial unit is split
|
|
|
|
into S3L_FRACTIONS_PER_UNIT fractions.
|
|
|
|
|
|
|
|
y ^
|
|
|
|
| _
|
|
|
|
| /| z
|
|
|
|
| /
|
|
|
|
| /
|
|
|
|
[0,0,0]-------> x
|
|
|
|
|
|
|
|
Untransformed camera is placed at [0,0,0], looking forward along +z axis. The
|
|
|
|
projection plane is centered at [0,0,0], stretrinch from
|
|
|
|
-S3L_FRACTIONS_PER_UNIT to S3L_FRACTIONS_PER_UNIT horizontally (x),
|
|
|
|
vertical size (y) depends on the camera aspect ratio. Camera FOV is defined
|
|
|
|
by focal length.
|
|
|
|
|
|
|
|
y ^
|
|
|
|
| _
|
|
|
|
| /| z
|
|
|
|
____|_/__
|
|
|
|
| |/ |
|
|
|
|
-----[0,0,0]-|-----> x
|
|
|
|
|____|____|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Coordinates of pixels on screen start typically at the top left.
|
2018-11-18 15:59:58 +01:00
|
|
|
*/
|
|
|
|
|
2018-11-17 13:34:15 +01:00
|
|
|
#ifndef S3L_H
|
|
|
|
#define S3L_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2018-11-18 18:46:10 +01:00
|
|
|
typedef int16_t S3L_Unit; /**< Units of measurement in 3D space. There is
|
|
|
|
S3L_FRACTIONS_PER_UNIT in one spatial unit.
|
|
|
|
By dividing the unit into fractions we
|
|
|
|
effectively achieve fixed point arithmetic.
|
|
|
|
The number of fractions is a constant that
|
|
|
|
serves as 1.0 in floating point arithmetic
|
|
|
|
(normalization etc.). */
|
|
|
|
|
2018-11-17 19:02:47 +01:00
|
|
|
#define S3L_FRACTIONS_PER_UNIT 1024
|
2018-11-18 18:46:10 +01:00
|
|
|
|
2018-11-18 18:00:02 +01:00
|
|
|
typedef int16_t S3L_ScreenCoord;
|
2018-11-20 09:35:05 +01:00
|
|
|
typedef uint16_t S3L_Index;
|
2018-11-17 13:34:15 +01:00
|
|
|
|
2018-11-20 12:45:40 +01:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
S3L_Unit x;
|
|
|
|
S3L_Unit y;
|
|
|
|
S3L_Unit z;
|
|
|
|
} S3L_Vec3;
|
|
|
|
|
|
|
|
static inline void S3L_initVec3(S3L_Vec3 *v)
|
|
|
|
{
|
|
|
|
v->x = 0; v->y = 0; v->z = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
S3L_Vec3 offset;
|
|
|
|
S3L_Vec3 rotation;
|
|
|
|
S3L_Vec3 scale;
|
|
|
|
} S3L_Transform3D;
|
|
|
|
|
|
|
|
static inline void S3L_initTransoform3D(S3L_Transform3D *t)
|
|
|
|
{
|
|
|
|
S3L_initVec3(&(t->offset));
|
|
|
|
S3L_initVec3(&(t->rotation));
|
|
|
|
t->scale.x = S3L_FRACTIONS_PER_UNIT;
|
|
|
|
t->scale.y = S3L_FRACTIONS_PER_UNIT;
|
|
|
|
t->scale.z = S3L_FRACTIONS_PER_UNIT;
|
|
|
|
}
|
|
|
|
|
2018-11-17 13:34:15 +01:00
|
|
|
typedef struct
|
|
|
|
{
|
2018-11-20 09:35:05 +01:00
|
|
|
uint16_t resolutionX;
|
|
|
|
uint16_t resolutionY;
|
|
|
|
S3L_Unit focalLength; ///< Defines the field of view (FOV).
|
2018-11-20 12:45:40 +01:00
|
|
|
S3L_Transform3D transform;
|
2018-11-20 09:35:05 +01:00
|
|
|
} S3L_Camera;
|
2018-11-18 18:00:02 +01:00
|
|
|
|
2018-11-20 12:45:40 +01:00
|
|
|
static inline void S3L_initCamera(S3L_Camera *c)
|
|
|
|
{
|
|
|
|
c->resolutionX = 128;
|
|
|
|
c->resolutionY = 64;
|
|
|
|
c->focalLength = S3L_FRACTIONS_PER_UNIT;
|
|
|
|
S3L_initTransoform3D(&(c->transform));
|
|
|
|
}
|
|
|
|
|
2018-11-18 18:00:02 +01:00
|
|
|
typedef struct
|
|
|
|
{
|
2018-11-20 09:35:05 +01:00
|
|
|
S3L_ScreenCoord x; ///< Screen X coordinate.
|
|
|
|
S3L_ScreenCoord y; ///< Screen Y coordinate.
|
2018-11-17 19:02:47 +01:00
|
|
|
|
2018-11-18 18:46:10 +01:00
|
|
|
S3L_Unit barycentric0; /**< Barycentric coord 0 (corresponds to 1st vertex).
|
|
|
|
Together with 1 and 2 coords these serve to
|
2018-11-18 10:22:31 +01:00
|
|
|
locate the pixel on a triangle and interpolate
|
|
|
|
values between it's three points. The sum of the
|
|
|
|
three coordinates will always be exactly
|
|
|
|
S3L_FRACTIONS_PER_UNIT. */
|
2018-11-18 18:46:10 +01:00
|
|
|
S3L_Unit barycentric1; ///< Baryc. coord 1 (corresponds to 2nd vertex).
|
|
|
|
S3L_Unit barycentric2; ///< Baryc. coord 2 (corresponds to 3rd vertex).
|
2018-11-20 09:35:05 +01:00
|
|
|
S3L_Index triangleID;
|
2018-11-17 13:34:15 +01:00
|
|
|
} S3L_PixelInfo;
|
|
|
|
|
2018-11-20 12:45:40 +01:00
|
|
|
static inline void S3L_initPixelInfo(S3L_PixelInfo *p)
|
|
|
|
{
|
|
|
|
p->x = 0;
|
|
|
|
p->y = 0;
|
|
|
|
p->barycentric0 = S3L_FRACTIONS_PER_UNIT;
|
|
|
|
p->barycentric1 = 0;
|
|
|
|
p->barycentric2 = 0;
|
|
|
|
p->triangleID = 0;
|
|
|
|
}
|
|
|
|
|
2018-11-18 13:40:51 +01:00
|
|
|
#define S3L_BACKFACE_CULLING_NONE 0
|
|
|
|
#define S3L_BACKFACE_CULLING_CW 1
|
|
|
|
#define S3L_BACKFACE_CULLING_CCW 2
|
|
|
|
|
2018-11-18 18:25:55 +01:00
|
|
|
#define S3L_MODE_TRIANGLES 0
|
|
|
|
#define S3L_MODE_LINES 1
|
|
|
|
#define S3L_MODE_POINTS 2
|
|
|
|
|
2018-11-18 13:40:51 +01:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int backfaceCulling;
|
2018-11-18 18:25:55 +01:00
|
|
|
int mode;
|
2018-11-18 13:40:51 +01:00
|
|
|
} S3L_DrawConfig;
|
|
|
|
|
|
|
|
void S3L_PIXEL_FUNCTION(S3L_PixelInfo *pixel); // forward decl
|
|
|
|
|
2018-11-17 13:34:15 +01:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int16_t steps;
|
|
|
|
int16_t err;
|
2018-11-18 18:25:55 +01:00
|
|
|
S3L_ScreenCoord x;
|
|
|
|
S3L_ScreenCoord y;
|
2018-11-17 13:34:15 +01:00
|
|
|
|
|
|
|
int16_t *majorCoord;
|
|
|
|
int16_t *minorCoord;
|
|
|
|
int16_t majorIncrement;
|
|
|
|
int16_t minorIncrement;
|
|
|
|
int16_t majorDiff;
|
|
|
|
int16_t minorDiff;
|
2018-11-18 18:30:39 +01:00
|
|
|
} S3L_BresenhamState; ///< State of drawing a line with Bresenham algorithm.
|
2018-11-17 13:34:15 +01:00
|
|
|
|
2018-11-18 14:00:21 +01:00
|
|
|
/**
|
|
|
|
Returns a value interpolated between the three triangle vertices based on
|
|
|
|
barycentric coordinates.
|
|
|
|
*/
|
|
|
|
static inline S3L_Unit S3L_interpolateBarycentric(
|
|
|
|
S3L_Unit value0, S3L_Unit value1, S3L_Unit value2,
|
|
|
|
S3L_Unit barycentric0, S3L_Unit barycentric1, S3L_Unit barycentric2)
|
|
|
|
{
|
|
|
|
return
|
|
|
|
(
|
|
|
|
(value0 * barycentric0) +
|
|
|
|
(value1 * barycentric1) +
|
|
|
|
(value2 * barycentric2)
|
|
|
|
) / S3L_FRACTIONS_PER_UNIT;
|
|
|
|
}
|
|
|
|
|
2018-11-18 18:30:39 +01:00
|
|
|
// general helper functions
|
2018-11-18 14:00:21 +01:00
|
|
|
|
2018-11-17 13:34:15 +01:00
|
|
|
static inline int16_t S3L_abs(int16_t value)
|
|
|
|
{
|
|
|
|
return value >= 0 ? value : -1 * value;
|
|
|
|
}
|
|
|
|
|
2018-11-17 16:15:16 +01:00
|
|
|
static inline int16_t S3L_min(int16_t v1, int16_t v2)
|
|
|
|
{
|
|
|
|
return v1 >= v2 ? v2 : v1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int16_t S3L_max(int16_t v1, int16_t v2)
|
|
|
|
{
|
|
|
|
return v1 >= v2 ? v1 : v2;
|
|
|
|
}
|
|
|
|
|
2018-11-18 13:40:51 +01:00
|
|
|
static inline S3L_Unit S3L_wrap(S3L_Unit value, S3L_Unit mod)
|
|
|
|
{
|
|
|
|
return value >= 0 ? (value % mod) : (mod + (value % mod) - 1);
|
|
|
|
}
|
|
|
|
|
2018-11-18 14:00:21 +01:00
|
|
|
static inline S3L_Unit S3L_nonZero(S3L_Unit value)
|
2018-11-18 13:40:51 +01:00
|
|
|
{
|
|
|
|
return value != 0 ? value : 1;
|
|
|
|
}
|
|
|
|
|
2018-11-17 19:57:30 +01:00
|
|
|
/**
|
|
|
|
Interpolated between two values, v1 and v2, in the same ratio as t is to
|
|
|
|
tMax. Does NOT prevent zero division.
|
|
|
|
*/
|
|
|
|
static inline int16_t S3L_interpolate(int16_t v1, int16_t v2, int16_t t,
|
|
|
|
int16_t tMax)
|
|
|
|
{
|
|
|
|
return v1 + ((v2 - v1) * t) / tMax;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Same as S3L_interpolate but with v1 = 0. Should be faster.
|
|
|
|
*/
|
|
|
|
static inline int16_t S3L_interpolateFrom0(int16_t v2, int16_t t, int16_t tMax)
|
|
|
|
{
|
|
|
|
return (v2 * t) / tMax;
|
|
|
|
}
|
|
|
|
|
2018-11-18 15:59:58 +01:00
|
|
|
void S3L_bresenhamInit(S3L_BresenhamState *state, int16_t x0, int16_t y0,
|
|
|
|
int16_t x1, int16_t y1)
|
2018-11-17 13:34:15 +01:00
|
|
|
{
|
|
|
|
int16_t dx = x1 - x0;
|
|
|
|
int16_t dy = y1 - y0;
|
|
|
|
|
|
|
|
int16_t absDx = S3L_abs(dx);
|
|
|
|
int16_t absDy = S3L_abs(dy);
|
|
|
|
|
|
|
|
if (absDx >= absDy)
|
|
|
|
{
|
|
|
|
state->majorCoord = &(state->x);
|
|
|
|
state->minorCoord = &(state->y);
|
|
|
|
|
|
|
|
state->minorDiff = 2 * absDy;
|
|
|
|
state->majorDiff = 2 * absDx;
|
|
|
|
state->err = 2 * dy - dx;
|
|
|
|
|
|
|
|
state->majorIncrement = dx >= 0 ? 1 : -1;
|
|
|
|
state->minorIncrement = dy >= 0 ? 1 : -1;
|
|
|
|
|
|
|
|
state->steps = absDx;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
state->majorCoord = &(state->y);
|
|
|
|
state->minorCoord = &(state->x);
|
|
|
|
|
|
|
|
state->minorDiff = 2 * absDx;
|
|
|
|
state->majorDiff = 2 * absDy;
|
|
|
|
state->err = 2 * dx - dy;
|
|
|
|
|
|
|
|
state->majorIncrement = dy >= 0 ? 1 : -1;
|
|
|
|
state->minorIncrement = dx >= 0 ? 1 : -1;
|
|
|
|
|
|
|
|
state->steps = absDy;
|
|
|
|
}
|
|
|
|
|
|
|
|
state->x = x0;
|
|
|
|
state->y = y0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int S3L_bresenhamStep(S3L_BresenhamState *state)
|
|
|
|
{
|
|
|
|
state->steps--;
|
|
|
|
|
|
|
|
(*state->majorCoord) += state->majorIncrement;
|
|
|
|
|
|
|
|
if (state->err > 0)
|
|
|
|
{
|
|
|
|
(*state->minorCoord) += state->minorIncrement;
|
|
|
|
state->err -= state->majorDiff;
|
|
|
|
}
|
|
|
|
|
|
|
|
state->err += state->minorDiff;
|
|
|
|
|
|
|
|
return state->steps >= 0;
|
|
|
|
}
|
|
|
|
|
2018-11-18 18:30:39 +01:00
|
|
|
void S3L_drawTriangle(
|
|
|
|
S3L_ScreenCoord x0, S3L_ScreenCoord y0,
|
|
|
|
S3L_ScreenCoord x1, S3L_ScreenCoord y1,
|
|
|
|
S3L_ScreenCoord x2, S3L_ScreenCoord y2,
|
2018-11-20 13:08:23 +01:00
|
|
|
S3L_DrawConfig config,
|
|
|
|
S3L_Index triangleID)
|
2018-11-17 13:34:15 +01:00
|
|
|
{
|
2018-11-18 15:59:58 +01:00
|
|
|
if (config.backfaceCulling != S3L_BACKFACE_CULLING_NONE)
|
|
|
|
{
|
|
|
|
int cw = // matrix determinant
|
|
|
|
x0 * y1 + y0 * x2 + x1 * y2 - y1 * x2 - y0 * x1 - x0 * y2 > 0;
|
|
|
|
|
|
|
|
if ((config.backfaceCulling == S3L_BACKFACE_CULLING_CW && !cw) ||
|
|
|
|
(config.backfaceCulling == S3L_BACKFACE_CULLING_CCW && cw))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-11-18 10:22:31 +01:00
|
|
|
S3L_PixelInfo p;
|
2018-11-20 12:45:40 +01:00
|
|
|
S3L_initPixelInfo(&p);
|
2018-11-20 13:08:23 +01:00
|
|
|
p.triangleID = triangleID;
|
2018-11-18 10:22:31 +01:00
|
|
|
|
2018-11-18 18:25:55 +01:00
|
|
|
// point mode
|
|
|
|
|
|
|
|
if (config.mode == S3L_MODE_POINTS)
|
|
|
|
{
|
|
|
|
p.x = x0; p.y = y0; p.barycentric0 = S3L_FRACTIONS_PER_UNIT;
|
|
|
|
p.barycentric1 = 0; p.barycentric2 = 0;
|
|
|
|
S3L_PIXEL_FUNCTION(&p);
|
|
|
|
|
|
|
|
p.x = x1; p.y = y1; p.barycentric0 = 0;
|
|
|
|
p.barycentric1 = S3L_FRACTIONS_PER_UNIT; p.barycentric2 = 0;
|
|
|
|
S3L_PIXEL_FUNCTION(&p);
|
|
|
|
|
|
|
|
p.x = x2; p.y = y2; p.barycentric0 = 0;
|
|
|
|
p.barycentric1 = 0; p.barycentric2 = S3L_FRACTIONS_PER_UNIT;
|
|
|
|
S3L_PIXEL_FUNCTION(&p);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// line mode
|
|
|
|
|
|
|
|
if (config.mode == S3L_MODE_LINES)
|
|
|
|
{
|
|
|
|
S3L_BresenhamState line;
|
|
|
|
S3L_Unit lineLen;
|
|
|
|
|
|
|
|
#define drawLine(p1,p2)\
|
|
|
|
S3L_bresenhamInit(&line,x##p1,y##p1,x##p2,y##p2);\
|
|
|
|
p.barycentric0 = 0;\
|
|
|
|
p.barycentric1 = 0;\
|
|
|
|
p.barycentric2 = 0;\
|
|
|
|
lineLen = S3L_nonZero(line.steps);\
|
|
|
|
do\
|
|
|
|
{\
|
|
|
|
p.x = line.x; p.y = line.y;\
|
|
|
|
p.barycentric##p1 = S3L_interpolateFrom0(\
|
|
|
|
S3L_FRACTIONS_PER_UNIT,line.steps,lineLen); \
|
|
|
|
p.barycentric##p2 = S3L_FRACTIONS_PER_UNIT - p.barycentric##p1;\
|
|
|
|
S3L_PIXEL_FUNCTION(&p);\
|
|
|
|
} while (S3L_bresenhamStep(&line));
|
|
|
|
|
|
|
|
drawLine(0,1)
|
|
|
|
drawLine(2,0)
|
|
|
|
drawLine(1,2)
|
|
|
|
|
|
|
|
#undef drawLine
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// triangle mode
|
|
|
|
|
|
|
|
S3L_ScreenCoord
|
|
|
|
tPointX, tPointY, // top triangle point coords
|
|
|
|
lPointX, lPointY, // left triangle point coords
|
|
|
|
rPointX, rPointY; // right triangle point coords
|
|
|
|
|
2018-11-18 13:40:51 +01:00
|
|
|
S3L_Unit *barycentric0; // bar. coord that gets higher from L to R
|
|
|
|
S3L_Unit *barycentric1; // bar. coord that gets higher from R to L
|
|
|
|
S3L_Unit *barycentric2; // bar. coord that gets higher from bottom up
|
2018-11-18 10:22:31 +01:00
|
|
|
|
2018-11-17 13:34:15 +01:00
|
|
|
// Sort the points.
|
|
|
|
|
2018-11-18 13:40:51 +01:00
|
|
|
#define handleLR(t,a,b)\
|
|
|
|
int16_t aDx = x##a - x##t;\
|
|
|
|
int16_t bDx = x##b - x##t;\
|
|
|
|
int16_t aDy = S3L_nonZero(y##a - y##t);\
|
|
|
|
int16_t bDy = S3L_nonZero(y##b - y##t);\
|
|
|
|
if ((aDx << 4) / aDy < (bDx << 4) / bDy)\
|
|
|
|
/*if (x##a <= x##b)*/\
|
2018-11-17 13:34:15 +01:00
|
|
|
{\
|
|
|
|
lPointX = x##a; lPointY = y##a;\
|
|
|
|
rPointX = x##b; rPointY = y##b;\
|
2018-11-18 10:28:20 +01:00
|
|
|
barycentric0 = &p.barycentric##b;\
|
|
|
|
barycentric1 = &p.barycentric##a;\
|
2018-11-17 13:34:15 +01:00
|
|
|
}\
|
|
|
|
else\
|
|
|
|
{\
|
|
|
|
lPointX = x##b; lPointY = y##b;\
|
|
|
|
rPointX = x##a; rPointY = y##a;\
|
2018-11-18 10:28:20 +01:00
|
|
|
barycentric0 = &p.barycentric##a;\
|
|
|
|
barycentric1 = &p.barycentric##b;\
|
2018-11-17 13:34:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (y0 <= y1)
|
|
|
|
{
|
|
|
|
if (y0 <= y2)
|
|
|
|
{
|
|
|
|
tPointX = x0;
|
|
|
|
tPointY = y0;
|
2018-11-18 10:28:20 +01:00
|
|
|
barycentric2 = &p.barycentric0;
|
2018-11-18 13:40:51 +01:00
|
|
|
handleLR(0,1,2)
|
2018-11-17 13:34:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tPointX = x2;
|
|
|
|
tPointY = y2;
|
2018-11-18 10:28:20 +01:00
|
|
|
barycentric2 = &p.barycentric2;
|
2018-11-18 13:40:51 +01:00
|
|
|
handleLR(2,0,1)
|
2018-11-17 13:34:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (y1 <= y2)
|
|
|
|
{
|
|
|
|
tPointX = x1;
|
|
|
|
tPointY = y1;
|
2018-11-18 10:28:20 +01:00
|
|
|
barycentric2 = &p.barycentric1;
|
2018-11-18 13:40:51 +01:00
|
|
|
handleLR(1,0,2)
|
2018-11-17 13:34:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tPointX = x2;
|
|
|
|
tPointY = y2;
|
2018-11-18 10:28:20 +01:00
|
|
|
barycentric2 = &p.barycentric2;
|
2018-11-18 13:40:51 +01:00
|
|
|
handleLR(2,0,1)
|
2018-11-17 13:34:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-18 15:59:58 +01:00
|
|
|
// Now draw the triangle line by line.
|
2018-11-17 13:34:15 +01:00
|
|
|
|
|
|
|
#undef handleLR
|
|
|
|
|
2018-11-18 18:00:02 +01:00
|
|
|
S3L_ScreenCoord splitY; // Y at which one side (L or R) changes
|
|
|
|
S3L_ScreenCoord endY; // bottom Y of the whole triangle
|
2018-11-18 18:30:39 +01:00
|
|
|
int splitOnLeft; // whether split happens on L or R
|
2018-11-17 16:15:16 +01:00
|
|
|
|
|
|
|
if (rPointY <= lPointY)
|
|
|
|
{
|
|
|
|
splitY = rPointY;
|
|
|
|
splitOnLeft = 0;
|
|
|
|
endY = lPointY;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
splitY = lPointY;
|
|
|
|
splitOnLeft = 1;
|
|
|
|
endY = rPointY;
|
|
|
|
}
|
|
|
|
|
2018-11-18 18:00:02 +01:00
|
|
|
S3L_ScreenCoord currentY = tPointY;
|
2018-11-17 13:34:15 +01:00
|
|
|
|
|
|
|
/* We'll be using a slight modification of Bresenham line algorithm (a one
|
|
|
|
that draws a _non-continous_ line). */
|
|
|
|
|
2018-11-17 16:15:16 +01:00
|
|
|
int16_t
|
|
|
|
/* triangle side:
|
|
|
|
left right */
|
|
|
|
lX, rX, // current x position
|
|
|
|
lDx, rDx, // dx (end point - start point)
|
|
|
|
lDy, rDy, // dy (end point - start point)
|
|
|
|
lInc, rInc, // direction in which to increment (1 or -1)
|
|
|
|
lErr, rErr, // current error (Bresenham)
|
|
|
|
lErrAdd, rErrAdd, // error value to add in each Bresenham cycle
|
|
|
|
lErrSub, rErrSub; // error value to substract when moving in x direction
|
|
|
|
|
2018-11-18 13:40:51 +01:00
|
|
|
S3L_Unit
|
2018-11-17 19:57:30 +01:00
|
|
|
lSideUnitStep, rSideUnitStep,
|
|
|
|
lSideUnitPos, rSideUnitPos;
|
|
|
|
|
2018-11-17 19:02:47 +01:00
|
|
|
int16_t helperDxAbs;
|
2018-11-17 17:18:55 +01:00
|
|
|
|
2018-11-17 19:57:30 +01:00
|
|
|
#define initSide(v,p1,p2, down)\
|
2018-11-17 16:15:16 +01:00
|
|
|
v##X = p1##PointX;\
|
|
|
|
v##Dx = p2##PointX - p1##PointX;\
|
|
|
|
v##Dy = p2##PointY - p1##PointY;\
|
2018-11-17 19:57:30 +01:00
|
|
|
v##SideUnitStep = S3L_FRACTIONS_PER_UNIT / (v##Dy != 0 ? v##Dy : 1);\
|
|
|
|
v##SideUnitPos = 0;\
|
|
|
|
if (!down)\
|
|
|
|
{\
|
|
|
|
v##SideUnitPos = S3L_FRACTIONS_PER_UNIT;\
|
|
|
|
v##SideUnitStep *= -1;\
|
|
|
|
}\
|
2018-11-17 17:18:55 +01:00
|
|
|
helperDxAbs = S3L_abs(v##Dx);\
|
2018-11-17 16:15:16 +01:00
|
|
|
v##Inc = v##Dx >= 0 ? 1 : -1;\
|
2018-11-17 19:02:47 +01:00
|
|
|
v##Err = 2 * helperDxAbs - v##Dy;\
|
2018-11-17 17:18:55 +01:00
|
|
|
v##ErrAdd = 2 * helperDxAbs;\
|
2018-11-17 19:02:47 +01:00
|
|
|
v##ErrSub = 2 * v##Dy;\
|
2018-11-17 17:33:09 +01:00
|
|
|
v##ErrSub = v##ErrSub != 0 ? v##ErrSub : 1; /* don't allow 0, could lead
|
|
|
|
to an infinite substracting
|
|
|
|
loop */
|
2018-11-17 13:34:15 +01:00
|
|
|
#define stepSide(s)\
|
|
|
|
while (s##Err > 0)\
|
|
|
|
{\
|
|
|
|
s##X += s##Inc;\
|
|
|
|
s##Err -= s##ErrSub;\
|
|
|
|
}\
|
|
|
|
s##Err += s##ErrAdd;
|
|
|
|
|
2018-11-17 19:57:30 +01:00
|
|
|
initSide(r,t,r,1)
|
|
|
|
initSide(l,t,l,1)
|
2018-11-17 13:34:15 +01:00
|
|
|
|
2018-11-17 16:15:16 +01:00
|
|
|
while (currentY <= endY)
|
2018-11-17 13:34:15 +01:00
|
|
|
{
|
2018-11-17 17:33:09 +01:00
|
|
|
if (currentY == splitY)
|
|
|
|
{
|
|
|
|
if (splitOnLeft)
|
|
|
|
{
|
2018-11-17 19:57:30 +01:00
|
|
|
initSide(l,l,r,0);
|
|
|
|
|
2018-11-18 13:40:51 +01:00
|
|
|
S3L_Unit *tmp = barycentric0;
|
2018-11-18 10:22:31 +01:00
|
|
|
barycentric0 = barycentric2;
|
|
|
|
barycentric2 = tmp;
|
2018-11-17 19:57:30 +01:00
|
|
|
|
|
|
|
rSideUnitPos = S3L_FRACTIONS_PER_UNIT - rSideUnitPos;
|
|
|
|
rSideUnitStep *= -1;
|
2018-11-17 17:33:09 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-11-17 19:57:30 +01:00
|
|
|
initSide(r,r,l,0);
|
|
|
|
|
2018-11-18 13:40:51 +01:00
|
|
|
S3L_Unit *tmp = barycentric1;
|
2018-11-18 10:22:31 +01:00
|
|
|
barycentric1 = barycentric2;
|
|
|
|
barycentric2 = tmp;
|
2018-11-18 09:33:15 +01:00
|
|
|
|
|
|
|
lSideUnitPos = S3L_FRACTIONS_PER_UNIT - lSideUnitPos;
|
|
|
|
lSideUnitStep *= -1;
|
2018-11-17 17:33:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-17 13:34:15 +01:00
|
|
|
p.y = currentY;
|
|
|
|
|
2018-11-17 16:40:44 +01:00
|
|
|
// draw the line
|
|
|
|
|
2018-11-18 13:40:51 +01:00
|
|
|
S3L_Unit tMax = rX - lX;
|
2018-11-17 19:57:30 +01:00
|
|
|
tMax = tMax != 0 ? tMax : 1; // prevent division by zero
|
|
|
|
|
2018-11-18 13:40:51 +01:00
|
|
|
S3L_Unit t1 = 0;
|
|
|
|
S3L_Unit t2 = tMax;
|
2018-11-17 19:57:30 +01:00
|
|
|
|
2018-11-18 18:00:02 +01:00
|
|
|
for (S3L_ScreenCoord x = lX; x <= rX; ++x)
|
2018-11-17 13:34:15 +01:00
|
|
|
{
|
2018-11-18 10:22:31 +01:00
|
|
|
*barycentric0 = S3L_interpolateFrom0(rSideUnitPos,t1,tMax);
|
|
|
|
*barycentric1 = S3L_interpolateFrom0(lSideUnitPos,t2,tMax);
|
|
|
|
*barycentric2 = S3L_FRACTIONS_PER_UNIT - *barycentric0 - *barycentric1;
|
2018-11-17 19:57:30 +01:00
|
|
|
|
2018-11-17 13:34:15 +01:00
|
|
|
p.x = x;
|
|
|
|
S3L_PIXEL_FUNCTION(&p);
|
2018-11-17 19:57:30 +01:00
|
|
|
|
|
|
|
++t1;
|
|
|
|
--t2;
|
2018-11-17 13:34:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
stepSide(r)
|
|
|
|
stepSide(l)
|
|
|
|
|
2018-11-17 19:57:30 +01:00
|
|
|
lSideUnitPos += lSideUnitStep;
|
|
|
|
rSideUnitPos += rSideUnitStep;
|
|
|
|
|
2018-11-17 13:34:15 +01:00
|
|
|
++currentY;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef initSide
|
2018-11-17 19:57:30 +01:00
|
|
|
#undef stepSide
|
2018-11-17 13:34:15 +01:00
|
|
|
}
|
|
|
|
|
2018-11-20 13:08:23 +01:00
|
|
|
static inline void S3L_mapModelToWorld(S3L_Vec3 point,
|
|
|
|
S3L_Transform3D *modelTransform, S3L_Vec3 *newPoint)
|
|
|
|
{
|
|
|
|
newPoint->x = point.x + modelTransform->offset.x;
|
|
|
|
newPoint->y = point.y + modelTransform->offset.y;
|
|
|
|
newPoint->z = point.z + modelTransform->offset.z;
|
|
|
|
}
|
|
|
|
|
2018-11-20 12:45:40 +01:00
|
|
|
static inline void S3L_mapWorldToCamera(S3L_Vec3 point,
|
|
|
|
S3L_Transform3D *cameraTransform, S3L_Vec3 *newPoint)
|
|
|
|
{
|
|
|
|
newPoint->x = point.x - cameraTransform->offset.x;
|
|
|
|
newPoint->y = point.y - cameraTransform->offset.y;
|
|
|
|
newPoint->z = point.z - cameraTransform->offset.z;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void S3L_mapCameraToScreen(S3L_Vec3 point, S3L_Camera *camera,
|
|
|
|
S3L_ScreenCoord *screenX, S3L_ScreenCoord *screenY)
|
2018-11-20 09:35:05 +01:00
|
|
|
{
|
2018-11-20 12:45:40 +01:00
|
|
|
uint16_t halfW = camera->resolutionX >> 1; // TODO: precompute earlier?
|
|
|
|
uint16_t halfH = camera->resolutionY >> 1;
|
2018-11-20 09:35:05 +01:00
|
|
|
|
2018-11-20 12:45:40 +01:00
|
|
|
*screenX = halfW + (point.x * halfW) / point.z;
|
|
|
|
*screenY = halfH - (point.y * halfW) / point.z;
|
|
|
|
// ^ S3L_FRACTIONS_PER_UNIT cancel out
|
2018-11-20 09:35:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void S3L_drawModel(
|
|
|
|
const S3L_Unit coords[],
|
|
|
|
const S3L_Index triangleVertexIndices[],
|
|
|
|
uint16_t triangleCount,
|
2018-11-20 13:08:23 +01:00
|
|
|
S3L_Transform3D modelTransform,
|
2018-11-20 09:35:05 +01:00
|
|
|
S3L_Camera camera,
|
|
|
|
S3L_DrawConfig config)
|
|
|
|
{
|
|
|
|
S3L_Index triangleIndex = 0;
|
|
|
|
S3L_Index coordIndex = 0;
|
|
|
|
|
2018-11-20 13:08:23 +01:00
|
|
|
S3L_ScreenCoord sX0, sY0, sX1, sY1, sX2, sY2;
|
|
|
|
S3L_Vec3 pointModel, pointWorld, pointCamera;
|
|
|
|
S3L_Unit indexIndex;
|
|
|
|
|
2018-11-20 09:35:05 +01:00
|
|
|
while (triangleIndex < triangleCount)
|
|
|
|
{
|
|
|
|
#define mapCoords(n)\
|
|
|
|
indexIndex = triangleVertexIndices[coordIndex] * 3;\
|
2018-11-20 13:08:23 +01:00
|
|
|
pointModel.x = coords[indexIndex];\
|
2018-11-20 09:35:05 +01:00
|
|
|
++indexIndex; /* TODO: put into square brackets? */\
|
2018-11-20 13:08:23 +01:00
|
|
|
pointModel.y = coords[indexIndex];\
|
2018-11-20 09:35:05 +01:00
|
|
|
++indexIndex;\
|
2018-11-20 13:08:23 +01:00
|
|
|
pointModel.z = coords[indexIndex];\
|
2018-11-20 09:35:05 +01:00
|
|
|
++coordIndex;\
|
2018-11-20 13:08:23 +01:00
|
|
|
S3L_mapModelToWorld(pointModel,&modelTransform,&pointWorld);\
|
|
|
|
S3L_mapWorldToCamera(pointWorld,&camera.transform,&pointCamera);\
|
|
|
|
S3L_mapCameraToScreen(pointCamera,&camera,&sX##n,&sY##n);
|
2018-11-20 09:35:05 +01:00
|
|
|
|
|
|
|
mapCoords(0)
|
|
|
|
mapCoords(1)
|
|
|
|
mapCoords(2)
|
|
|
|
|
2018-11-20 13:08:23 +01:00
|
|
|
S3L_drawTriangle(sX0,sY0,sX1,sY1,sX2,sY2,config,triangleIndex);
|
2018-11-20 09:35:05 +01:00
|
|
|
|
|
|
|
++triangleIndex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-17 13:34:15 +01:00
|
|
|
#endif
|