2014-09-30 00:57:14 -04:00
|
|
|
/*
|
2015-01-03 19:08:56 -05:00
|
|
|
Copyright (c) 2014-2015, Conor Stokes
|
2014-09-30 00:57:14 -04:00
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer in the documentation
|
|
|
|
and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
#ifndef INDEX_COMPRESSION_CONSTANTS_H__
|
|
|
|
#define INDEX_COMPRESSION_CONSTANTS_H__
|
|
|
|
#pragma once
|
|
|
|
|
2014-10-01 00:13:35 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2014-09-30 00:57:14 -04:00
|
|
|
// Constant fifo and code sizes.
|
2014-10-04 01:22:28 -04:00
|
|
|
const int VERTEX_FIFO_SIZE = 32;
|
|
|
|
const int VERTEX_FIFO_MASK = VERTEX_FIFO_SIZE - 1;
|
|
|
|
const int EDGE_FIFO_SIZE = 32;
|
|
|
|
const int EDGE_FIFO_MASK = EDGE_FIFO_SIZE - 1;
|
|
|
|
const int CACHED_EDGE_BITS = 5;
|
|
|
|
const int CACHED_VERTEX_BITS = 5;
|
|
|
|
|
|
|
|
const int IB_VERTEX_CODE_BITS = 2;
|
2014-09-30 00:57:14 -04:00
|
|
|
|
2014-10-01 00:13:35 -04:00
|
|
|
const int IB_TRIANGLE_CODE_BITS = 4;
|
|
|
|
|
2014-09-30 00:57:14 -04:00
|
|
|
// Edge in the edge fifo.
|
|
|
|
struct Edge
|
|
|
|
{
|
2015-01-01 15:09:57 -05:00
|
|
|
void set( uint32_t f, uint32_t s )
|
|
|
|
{
|
|
|
|
first = f;
|
|
|
|
second = s;
|
|
|
|
}
|
2014-09-30 00:58:29 -04:00
|
|
|
|
2015-01-01 15:09:57 -05:00
|
|
|
uint32_t first;
|
|
|
|
uint32_t second;
|
2014-09-30 00:57:14 -04:00
|
|
|
};
|
|
|
|
|
2014-10-01 00:13:35 -04:00
|
|
|
// These are the vertex/edge codes for CompressIndexBuffer
|
2014-09-30 00:57:14 -04:00
|
|
|
enum IndexBufferCodes
|
|
|
|
{
|
2015-01-01 15:09:57 -05:00
|
|
|
// Represents a yet un-seen vertex.
|
|
|
|
IB_NEW_VERTEX = 0,
|
2014-09-30 00:57:14 -04:00
|
|
|
|
2015-01-01 15:09:57 -05:00
|
|
|
// Represents 2 vertices on an edge in the edge fifo, which will be used as the first 2 vertices of the
|
|
|
|
// triangle.
|
|
|
|
IB_CACHED_EDGE = 1,
|
|
|
|
|
|
|
|
// Represents a vertex that has been seen recently and is still in the vertex fifo.
|
|
|
|
IB_CACHED_VERTEX = 2,
|
2014-09-30 00:57:14 -04:00
|
|
|
|
2015-01-01 15:09:57 -05:00
|
|
|
// Represents a vertex that has been seen
|
|
|
|
IB_FREE_VERTEX = 3
|
2014-09-30 00:57:14 -04:00
|
|
|
};
|
|
|
|
|
2014-10-01 00:13:35 -04:00
|
|
|
// These are the triangle codes for CompressIndexBuffer2
|
|
|
|
enum IndexBufferTriangleCodes
|
|
|
|
{
|
2015-01-01 15:09:57 -05:00
|
|
|
IB_EDGE_NEW = 0,
|
|
|
|
IB_EDGE_CACHED = 1,
|
|
|
|
IB_EDGE_FREE = 2,
|
|
|
|
IB_NEW_NEW_NEW = 3,
|
|
|
|
IB_NEW_NEW_CACHED = 4,
|
|
|
|
IB_NEW_NEW_FREE = 5,
|
|
|
|
IB_NEW_CACHED_CACHED = 6,
|
|
|
|
IB_NEW_CACHED_FREE= 7,
|
|
|
|
IB_NEW_FREE_CACHED = 8,
|
|
|
|
IB_NEW_FREE_FREE = 9,
|
|
|
|
IB_CACHED_CACHED_CACHED = 10,
|
|
|
|
IB_CACHED_CACHED_FREE = 11,
|
|
|
|
IB_CACHED_FREE_FREE = 12,
|
|
|
|
IB_FREE_FREE_FREE = 13,
|
|
|
|
IB_EDGE_0_NEW = 14,
|
|
|
|
IB_EDGE_1_NEW = 15
|
2014-10-01 00:13:35 -04:00
|
|
|
};
|
|
|
|
|
2014-09-30 00:57:14 -04:00
|
|
|
#endif
|