2017-09-17 19:55:16 +00:00
|
|
|
/*
|
|
|
|
* Modern effects for a modern Streamer
|
|
|
|
* Copyright (C) 2017 Michael Fabian Dirks
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2019-01-14 10:23:21 +00:00
|
|
|
#include "gs-vertex.hpp"
|
2019-09-04 00:59:04 +00:00
|
|
|
#include <stdexcept>
|
2020-01-14 00:11:08 +00:00
|
|
|
#include "utility.hpp"
|
2018-01-19 01:58:57 +00:00
|
|
|
|
2018-09-27 01:07:13 +00:00
|
|
|
gs::vertex::vertex()
|
2019-08-04 14:20:26 +00:00
|
|
|
: position(nullptr), normal(nullptr), tangent(nullptr), color(nullptr), _has_store(true), _store(nullptr)
|
2018-09-27 01:07:13 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
_store = util::malloc_aligned(16, sizeof(vec3) * 3 + sizeof(uint32_t) + sizeof(vec4) * MAXIMUM_UVW_LAYERS);
|
2018-09-27 01:07:13 +00:00
|
|
|
|
2020-04-08 21:38:42 +00:00
|
|
|
std::size_t offset = 0;
|
2018-09-27 01:07:13 +00:00
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
position = reinterpret_cast<vec3*>(reinterpret_cast<char*>(_store) + offset);
|
2018-09-27 01:07:13 +00:00
|
|
|
offset += sizeof(vec3);
|
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
normal = reinterpret_cast<vec3*>(reinterpret_cast<char*>(_store) + offset);
|
2018-09-27 01:07:13 +00:00
|
|
|
offset += sizeof(vec3);
|
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
tangent = reinterpret_cast<vec3*>(reinterpret_cast<char*>(_store) + offset);
|
2018-09-27 01:07:13 +00:00
|
|
|
offset += sizeof(vec3);
|
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
color = reinterpret_cast<uint32_t*>(reinterpret_cast<char*>(_store) + offset);
|
2018-09-27 01:07:13 +00:00
|
|
|
offset += sizeof(uint32_t);
|
|
|
|
|
2020-04-08 21:38:42 +00:00
|
|
|
for (std::size_t n = 0; n < MAXIMUM_UVW_LAYERS; n++) {
|
2019-08-04 14:20:26 +00:00
|
|
|
uv[n] = reinterpret_cast<vec4*>(reinterpret_cast<char*>(_store) + offset);
|
2018-09-27 01:07:13 +00:00
|
|
|
offset += sizeof(vec4);
|
2018-01-19 01:58:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-27 01:07:13 +00:00
|
|
|
gs::vertex::~vertex()
|
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
if (_has_store) {
|
|
|
|
util::free_aligned(_store);
|
2018-09-27 01:07:13 +00:00
|
|
|
}
|
2018-01-19 01:58:57 +00:00
|
|
|
}
|
|
|
|
|
2018-03-20 11:43:37 +00:00
|
|
|
gs::vertex::vertex(vec3* p, vec3* n, vec3* t, uint32_t* col, vec4* uvs[MAXIMUM_UVW_LAYERS])
|
2019-08-04 14:20:26 +00:00
|
|
|
: position(p), normal(n), tangent(t), color(col), _has_store(false)
|
2018-09-27 01:07:13 +00:00
|
|
|
{
|
2018-01-19 01:58:57 +00:00
|
|
|
if (uvs != nullptr) {
|
2020-04-08 21:38:42 +00:00
|
|
|
for (std::size_t idx = 0; idx < MAXIMUM_UVW_LAYERS; idx++) {
|
2018-01-19 01:58:57 +00:00
|
|
|
this->uv[idx] = uvs[idx];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|