Stat making video/model1.cpp use glm as necessary, nw

This commit is contained in:
therealmogminer@gmail.com 2016-05-05 22:53:11 +02:00
parent 9c4bbdbe1a
commit cbfff96f1c
2 changed files with 40 additions and 81 deletions

View File

@ -2,6 +2,8 @@
// copyright-holders:Olivier Galibert // copyright-holders:Olivier Galibert
#include <functional> #include <functional>
#include <glm/glm/vec3.hpp>
#include "audio/dsbz80.h" #include "audio/dsbz80.h"
#include "audio/segam1audio.h" #include "audio/segam1audio.h"
#include "cpu/v60/v60.h" #include "cpu/v60/v60.h"
@ -125,36 +127,6 @@ public:
int col; int col;
}; };
// TOOD: Replace with glm::vec3
class vector_t
{
public:
vector_t()
{
memset(v, 0, sizeof(float) * 3);
}
vector_t(float x, float y, float z)
{
set_x(x);
set_y(y);
set_z(z);
}
void normalize();
static float dot(const vector_t& a, const vector_t& b);
float x() { return v[0]; }
float y() { return v[1]; }
float z() { return v[2]; }
void set_x(float x) { v[0] = x; }
void set_y(float y) { v[1] = y; }
void set_z(float z) { v[2] = z; }
private:
float v[3];
};
struct lightparam_t struct lightparam_t
{ {
float a; float a;
@ -180,7 +152,7 @@ public:
void project_point(point_t *p) const; void project_point(point_t *p) const;
void project_point_direct(point_t *p) const; void project_point_direct(point_t *p) const;
void transform_vector(vector_t *p) const; void transform_vector(glm::vec3& p) const;
void transform_point(point_t *p) const; void transform_point(point_t *p) const;
void recompute_frustum(); void recompute_frustum();
@ -190,7 +162,7 @@ public:
float a_bottom, a_top, a_left, a_right; float a_bottom, a_top, a_left, a_right;
float vxx, vyy, vzz, ayy, ayyc, ayys; float vxx, vyy, vzz, ayy, ayyc, ayys;
float translation[12]; float translation[12];
vector_t light; glm::vec3 light;
lightparam_t lightparams[32]; lightparam_t lightparams[32];
}; };
@ -467,7 +439,7 @@ private:
static float min4f(float a, float b, float c, float d); static float min4f(float a, float b, float c, float d);
static float max4f(float a, float b, float c, float d); static float max4f(float a, float b, float c, float d);
static float compute_specular(vector_t *normal, vector_t *light, float diffuse,int lmode); static float compute_specular(glm::vec3& normal, glm::vec3& light, float diffuse,int lmode);
void push_object(UINT32 tex_adr, UINT32 poly_adr, UINT32 size); void push_object(UINT32 tex_adr, UINT32 poly_adr, UINT32 size);
UINT16* push_direct(UINT16 *list); UINT16* push_direct(UINT16 *list);

View File

@ -1,5 +1,8 @@
// license:BSD-3-Clause // license:BSD-3-Clause
// copyright-holders:Olivier Galibert // copyright-holders:Olivier Galibert
#include <glm/glm/geometric.hpp>
#include "emu.h" #include "emu.h"
#include "cpu/mb86233/mb86233.h" #include "cpu/mb86233/mb86233.h"
#include "includes/model1.h" #include "includes/model1.h"
@ -32,36 +35,23 @@ float model1_state::readf(const UINT16 *adr) const
void model1_state::view_t::transform_point(point_t *p) const void model1_state::view_t::transform_point(point_t *p) const
{ {
point_t q = *p; point_t q = *p;
float xx, zz; float xx = translation[0] * q.x + translation[3] * q.y + translation[6] * q.z + translation[ 9] + vxx;
xx = translation[0] * q.x + translation[3] * q.y + translation[6] * q.z + translation[ 9] + vxx;
p->y = translation[1] * q.x + translation[4] * q.y + translation[7] * q.z + translation[10] + vyy; p->y = translation[1] * q.x + translation[4] * q.y + translation[7] * q.z + translation[10] + vyy;
zz = translation[2] * q.x + translation[5] * q.y + translation[8] * q.z + translation[11] + vzz; float zz = translation[2] * q.x + translation[5] * q.y + translation[8] * q.z + translation[11] + vzz;
p->x = ayyc * xx - ayys * zz; p->x = ayyc * xx - ayys * zz;
p->z = ayys * xx + ayyc * zz; p->z = ayys * xx + ayyc * zz;
} }
void model1_state::view_t::transform_vector(vector_t *p) const void model1_state::view_t::transform_vector(glm::vec3& p) const
{ {
vector_t q = *p; glm::vec3 q(p);
p->set_x(translation[0] * q.x() + translation[3] * q.y() + translation[6] * q.z()); glm::vec3 row1(translation[0], translation[3], translation[6]);
p->set_x(translation[1] * q.x() + translation[4] * q.y() + translation[7] * q.z()); glm::vec3 row2(translation[1], translation[4], translation[7]);
p->set_x(translation[2] * q.x() + translation[5] * q.y() + translation[8] * q.z()); glm::vec3 row3(translation[2], translation[5], translation[8]);
} p = glm::vec3(glm::dot(q, row1), glm::dot(q, row2), glm::dot(q, row3));
//p->set_x(translation[0] * q.x() + translation[3] * q.y() + translation[6] * q.z());
void model1_state::vector_t::normalize() //p->set_y(translation[1] * q.x() + translation[4] * q.y() + translation[7] * q.z());
{ //p->set_z(translation[2] * q.x() + translation[5] * q.y() + translation[8] * q.z());
float norm = sqrt(dot(*this, *this));
if (norm)
{
v[0] /= norm;
v[1] /= norm;
v[2] /= norm;
}
}
float model1_state::vector_t::dot(const vector_t& a, const vector_t& b)
{
return a.v[0] * b.v[0] + a.v[1] * b.v[1] + a.v[2] * b.v[2];
} }
void model1_state::cross_product(point_t* o, const point_t* p, const point_t* q) const void model1_state::cross_product(point_t* o, const point_t* p, const point_t* q) const
@ -735,14 +725,14 @@ float model1_state::max4f(float a, float b, float c, float d)
#ifdef UNUSED_DEFINITION #ifdef UNUSED_DEFINITION
static const UINT8 num_of_times[]={1,1,1,1,2,2,2,3}; static const UINT8 num_of_times[]={1,1,1,1,2,2,2,3};
#endif #endif
float model1_state::compute_specular(vector_t *normal, vector_t *light, float diffuse,int lmode) float model1_state::compute_specular(glm::vec3& normal, glm::vec3& light, float diffuse, int lmode)
{ {
#if 0 #if 0
int p = view->lightparams[lmode].p & 7; int p = m_view->lightparams[lmode].p & 7;
float sv = view->lightparams[lmode].s; float sv = m_view->lightparams[lmode].s;
//This is how it should be according to model2 geo program, but doesn't work fine //This is how it should be according to model2 geo program, but doesn't work fine
float s = 2 * (diffuse * normal->z - light->z); float s = 2 * (diffuse * normal.z - light.z);
for (int i = 0; i < num_of_times[p]; i++) for (int i = 0; i < num_of_times[p]; i++)
{ {
s *= s; s *= s;
@ -859,7 +849,7 @@ void model1_state::push_object(UINT32 tex_adr, UINT32 poly_adr, UINT32 size) {
point_t *p0 = m_pointpt++; point_t *p0 = m_pointpt++;
point_t *p1 = m_pointpt++; point_t *p1 = m_pointpt++;
vector_t vn(poly_data[poly_adr + 1], poly_data[poly_adr + 2], poly_data[poly_adr + 3]); glm::vec3 vn(poly_data[poly_adr + 1], poly_data[poly_adr + 2], poly_data[poly_adr + 3]);
p0->x = poly_data[poly_adr + 4]; p0->x = poly_data[poly_adr + 4];
p0->y = poly_data[poly_adr + 5]; p0->y = poly_data[poly_adr + 5];
p0->z = poly_data[poly_adr + 6]; p0->z = poly_data[poly_adr + 6];
@ -869,7 +859,7 @@ void model1_state::push_object(UINT32 tex_adr, UINT32 poly_adr, UINT32 size) {
int link = (flags >> 8) & 3; int link = (flags >> 8) & 3;
m_view->transform_vector(&vn); m_view->transform_vector(vn);
m_view->transform_point(p0); m_view->transform_point(p0);
m_view->transform_point(p1); m_view->transform_point(p1);
@ -919,7 +909,7 @@ void model1_state::push_object(UINT32 tex_adr, UINT32 poly_adr, UINT32 size) {
if (!(flags & 0x00004000) && view_determinant(old_p1, old_p0, p0) > 0) if (!(flags & 0x00004000) && view_determinant(old_p1, old_p0, p0) > 0)
goto next; goto next;
vn.normalize(); vn = glm::normalize(vn);
cquad.p[0] = old_p1; cquad.p[0] = old_p1;
cquad.p[1] = old_p0; cquad.p[1] = old_p0;
@ -951,8 +941,8 @@ void model1_state::push_object(UINT32 tex_adr, UINT32 poly_adr, UINT32 size) {
cquad.col = scale_color(machine().pens[0x1000 | (m_tgp_ram[tex_adr - 0x40000] & 0x3ff)], MIN(1.0, ln)); cquad.col = scale_color(machine().pens[0x1000 | (m_tgp_ram[tex_adr - 0x40000] & 0x3ff)], MIN(1.0, ln));
#endif #endif
float dif = vector_t::dot(vn, m_view->light); float dif = glm::dot(vn, m_view->light);
float spec = compute_specular(&vn, &m_view->light, dif, lightmode); float spec = compute_specular(vn, m_view->light, dif, lightmode);
float ln = m_view->lightparams[lightmode].a + m_view->lightparams[lightmode].d * MAX(0.0f, dif) + spec; float ln = m_view->lightparams[lightmode].a + m_view->lightparams[lightmode].d * MAX(0.0f, dif) + spec;
int lumval = 255.0f * MIN(1.0f, ln); int lumval = 255.0f * MIN(1.0f, ln);
int color = m_paletteram16[0x1000 | (m_tgp_ram[tex_adr - 0x40000] & 0x3ff)]; int color = m_paletteram16[0x1000 | (m_tgp_ram[tex_adr - 0x40000] & 0x3ff)];
@ -1280,10 +1270,7 @@ void model1_state::view_t::set_zoom(float x, float y)
void model1_state::view_t::set_light_direction(float x, float y, float z) void model1_state::view_t::set_light_direction(float x, float y, float z)
{ {
light.set_x(x); light = glm::normalize(glm::vec3(x, y, z));
light.set_y(y);
light.set_z(z);
light.normalize();
} }
void model1_state::view_t::set_translation_matrix(float* mat) void model1_state::view_t::set_translation_matrix(float* mat)