mirror of
https://github.com/Relintai/voxelman.git
synced 2024-11-10 10:12:10 +01:00
87 lines
3.2 KiB
C++
87 lines
3.2 KiB
C++
//================================================================================
|
|
//
|
|
// The Transvoxel Algorithm look-up tables
|
|
//
|
|
// Copyright 2009 by Eric Lengyel
|
|
//
|
|
// The following data originates from Eric Lengyel's Transvoxel Algorithm.
|
|
// http://transvoxel.org/
|
|
//
|
|
// The data in this file may be freely used in implementations of the Transvoxel
|
|
// Algorithm. If you do use this data, or any transformation of it, in your own
|
|
// projects, commercial or otherwise, please give credit by indicating in your
|
|
// source code that the data is part of the author's implementation of the
|
|
// Transvoxel Algorithm and that it came from the web address given above.
|
|
// (Simply copying and pasting the two lines of the previous paragraph would be
|
|
// perfect.) If you distribute a commercial product with source code included,
|
|
// then the credit in the source code is required.
|
|
//
|
|
// If you distribute any kind of product that uses this data, a credit visible to
|
|
// the end-user would be appreciated, but it is not required. However, you may
|
|
// not claim that the entire implementation of the Transvoxel Algorithm is your
|
|
// own if you use the data in this file or any transformation of it.
|
|
//
|
|
// The format of the data in this file is described in the dissertation "Voxel-
|
|
// Based Terrain for Real-Time Virtual Simulations", available at the web page
|
|
// given above. References to sections and figures below pertain to that paper.
|
|
//
|
|
// The contents of this file are protected by copyright and may not be publicly
|
|
// reproduced without permission.
|
|
//
|
|
//================================================================================
|
|
|
|
#ifndef TRANSVOXEL_TABLES_H
|
|
#define TRANSVOXEL_TABLES_H
|
|
|
|
#include "core/math/vector3.h"
|
|
|
|
namespace Transvoxel {
|
|
|
|
// The RegularCellData structure holds information about the triangulation
|
|
// used for a single equivalence class in the modified Marching Cubes algorithm,
|
|
// described in Section 3.2.
|
|
|
|
struct RegularCellData {
|
|
unsigned char geometryCounts; // High nibble is vertex count, low nibble is triangle count.
|
|
unsigned char vertexIndex[15]; // Groups of 3 indexes giving the triangulation.
|
|
|
|
long GetVertexCount(void) const {
|
|
return (geometryCounts >> 4);
|
|
}
|
|
|
|
long GetTriangleCount(void) const {
|
|
return (geometryCounts & 0x0F);
|
|
}
|
|
};
|
|
|
|
// The TransitionCellData structure holds information about the triangulation
|
|
// used for a single equivalence class in the Transvoxel Algorithm transition cell,
|
|
// described in Section 4.3.
|
|
|
|
struct TransitionCellData {
|
|
long geometryCounts; // High nibble is vertex count, low nibble is triangle count.
|
|
unsigned char vertexIndex[36]; // Groups of 3 indexes giving the triangulation.
|
|
|
|
long GetVertexCount(void) const {
|
|
return (geometryCounts >> 4);
|
|
}
|
|
|
|
long GetTriangleCount(void) const {
|
|
return (geometryCounts & 0x0F);
|
|
}
|
|
};
|
|
|
|
extern const unsigned char regularCellClass[256];
|
|
extern const RegularCellData regularCellData[16];
|
|
extern const unsigned short regularVertexData[256][12];
|
|
extern const unsigned char transitionCellClass[512];
|
|
extern const TransitionCellData transitionCellData[56];
|
|
extern const unsigned char transitionCornerData[13];
|
|
extern const unsigned short transitionVertexData[512][12];
|
|
|
|
extern const Vector3 transvoxel_vertices[8];
|
|
|
|
} // namespace Transvoxel
|
|
|
|
#endif
|