mirror of
https://github.com/Relintai/voxelman.git
synced 2024-11-14 10:17:20 +01:00
81 lines
2.8 KiB
C++
81 lines
2.8 KiB
C++
/*
|
|
Copyright (c) 2019-2020 Péter Magyar
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
*/
|
|
|
|
#include "marching_cubes_cell_data.h"
|
|
|
|
int MarchingCubesCellData::get_vertex_index(int index) const {
|
|
return static_cast<int>(vertexIndex[index]);
|
|
}
|
|
void MarchingCubesCellData::set_vertex_index(int index, int value) {
|
|
ERR_FAIL_INDEX(index, 15);
|
|
|
|
vertexIndex[index] = static_cast<unsigned char>(value);
|
|
}
|
|
|
|
int MarchingCubesCellData::get_vertex_count() const {
|
|
return (geometryCounts >> 4);
|
|
}
|
|
void MarchingCubesCellData::set_vertex_count(int value) {
|
|
geometryCounts &= 0xFF0F;
|
|
|
|
geometryCounts |= value << 4;
|
|
}
|
|
|
|
int MarchingCubesCellData::get_triangle_count() const {
|
|
return (geometryCounts & 0x0F);
|
|
}
|
|
void MarchingCubesCellData::set_triangle_count(int value) {
|
|
geometryCounts &= 0xFFF0;
|
|
|
|
geometryCounts |= value;
|
|
}
|
|
|
|
MarchingCubesCellData::MarchingCubesCellData() {
|
|
geometryCounts = 0;
|
|
|
|
for (int i = 0; i < 15; ++i) {
|
|
vertexIndex[i] = 0;
|
|
}
|
|
}
|
|
|
|
MarchingCubesCellData::MarchingCubesCellData(const RegularCellData &cell_data) {
|
|
geometryCounts = cell_data.geometryCounts;
|
|
|
|
for (int i = 0; i < 15; ++i) {
|
|
vertexIndex[i] = cell_data.vertexIndex[i];
|
|
}
|
|
}
|
|
|
|
MarchingCubesCellData::~MarchingCubesCellData() {
|
|
}
|
|
|
|
void MarchingCubesCellData::_bind_methods() {
|
|
ClassDB::bind_method(D_METHOD("get_vertex_index", "index"), &MarchingCubesCellData::get_vertex_index);
|
|
ClassDB::bind_method(D_METHOD("set_vertex_index", "index", "value"), &MarchingCubesCellData::set_vertex_index);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_vertex_count"), &MarchingCubesCellData::get_vertex_count);
|
|
ClassDB::bind_method(D_METHOD("set_vertex_count", "value"), &MarchingCubesCellData::set_vertex_count);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_triangle_count"), &MarchingCubesCellData::get_triangle_count);
|
|
ClassDB::bind_method(D_METHOD("set_triangle_count", "value"), &MarchingCubesCellData::set_triangle_count);
|
|
}
|