2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:29:41 +00:00
|
|
|
// Refer to the license.txt file included.
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/ChunkFile.h"
|
|
|
|
#include "VideoBackends/Software/Vec3.h"
|
2010-06-09 01:37:08 +00:00
|
|
|
|
|
|
|
struct Vec4
|
|
|
|
{
|
|
|
|
float x;
|
|
|
|
float y;
|
|
|
|
float z;
|
|
|
|
float w;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct InputVertexData
|
|
|
|
{
|
2013-04-14 03:54:02 +00:00
|
|
|
u8 posMtx;
|
|
|
|
u8 texMtx[8];
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2013-04-14 03:54:02 +00:00
|
|
|
Vec3 position;
|
|
|
|
Vec3 normal[3];
|
|
|
|
u8 color[2][4];
|
|
|
|
float texCoords[8][2];
|
2010-06-09 01:37:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct OutputVertexData
|
|
|
|
{
|
2010-12-31 06:45:18 +00:00
|
|
|
// components in color channels
|
2014-08-11 01:18:38 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
RED_C,
|
|
|
|
GRN_C,
|
|
|
|
BLU_C,
|
|
|
|
ALP_C
|
|
|
|
};
|
2010-12-31 06:45:18 +00:00
|
|
|
|
2015-12-01 21:00:38 +00:00
|
|
|
Vec3 mvPosition = {};
|
|
|
|
Vec4 projectedPosition = {};
|
|
|
|
Vec3 screenPosition = {};
|
|
|
|
Vec3 normal[3] = {};
|
|
|
|
u8 color[2][4] = {};
|
|
|
|
Vec3 texCoords[8] = {};
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2013-04-14 03:54:02 +00:00
|
|
|
void Lerp(float t, OutputVertexData *a, OutputVertexData *b)
|
|
|
|
{
|
|
|
|
#define LINTERP(T, OUT, IN) (OUT) + ((IN - OUT) * T)
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2013-04-14 03:54:02 +00:00
|
|
|
#define LINTERP_INT(T, OUT, IN) (OUT) + (((IN - OUT) * T) >> 8)
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2013-04-14 03:54:02 +00:00
|
|
|
mvPosition = LINTERP(t, a->mvPosition, b->mvPosition);
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2013-04-14 03:54:02 +00:00
|
|
|
projectedPosition.x = LINTERP(t, a->projectedPosition.x, b->projectedPosition.x);
|
2010-06-09 01:37:08 +00:00
|
|
|
projectedPosition.y = LINTERP(t, a->projectedPosition.y, b->projectedPosition.y);
|
|
|
|
projectedPosition.z = LINTERP(t, a->projectedPosition.z, b->projectedPosition.z);
|
|
|
|
projectedPosition.w = LINTERP(t, a->projectedPosition.w, b->projectedPosition.w);
|
|
|
|
|
2013-04-14 03:54:02 +00:00
|
|
|
for (int i = 0; i < 3; ++i)
|
|
|
|
{
|
|
|
|
normal[i] = LINTERP(t, a->normal[i], b->normal[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
u16 t_int = (u16)(t * 256);
|
|
|
|
for (int i = 0; i < 4; ++i)
|
|
|
|
{
|
|
|
|
color[0][i] = LINTERP_INT(t_int, a->color[0][i], b->color[0][i]);
|
|
|
|
color[1][i] = LINTERP_INT(t_int, a->color[1][i], b->color[1][i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < 8; ++i)
|
|
|
|
{
|
|
|
|
texCoords[i] = LINTERP(t, a->texCoords[i], b->texCoords[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef LINTERP
|
|
|
|
#undef LINTERP_INT
|
|
|
|
}
|
2013-02-26 04:49:24 +00:00
|
|
|
void DoState(PointerWrap &p)
|
|
|
|
{
|
|
|
|
mvPosition.DoState(p);
|
|
|
|
p.Do(projectedPosition);
|
|
|
|
screenPosition.DoState(p);
|
2013-10-29 05:09:01 +00:00
|
|
|
for (auto& vec : normal)
|
|
|
|
vec.DoState(p);
|
2013-02-26 04:49:24 +00:00
|
|
|
p.DoArray(color, sizeof color);
|
2013-10-29 05:09:01 +00:00
|
|
|
for (auto& vec : texCoords)
|
|
|
|
vec.DoState(p);
|
2013-02-26 04:49:24 +00:00
|
|
|
}
|
|
|
|
|
2010-06-09 01:37:08 +00:00
|
|
|
};
|