You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
203 lines
5.2 KiB
C++
203 lines
5.2 KiB
C++
/*
|
|
* All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
|
|
* its licensors.
|
|
*
|
|
* For complete copyright and license terms please see the LICENSE at the root of this
|
|
* distribution (the "License"). All use of this software is governed by the License,
|
|
* or, if provided, by the license below or the license accompanying this file. Do not
|
|
* remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
*
|
|
*/
|
|
// Original file Copyright Crytek GMBH or its affiliates, used under license.
|
|
|
|
#ifndef CRYINCLUDE_CRYCOMMON_GEOMCACHEFILEFORMAT_H
|
|
#define CRYINCLUDE_CRYCOMMON_GEOMCACHEFILEFORMAT_H
|
|
#pragma once
|
|
|
|
#include "CryExtension/CryGUID.h"
|
|
|
|
#if !defined(LINUX)
|
|
#pragma pack(push)
|
|
#pragma pack(1)
|
|
#define PACK_GCC
|
|
#else
|
|
#define PACK_GCC __attribute__ ((packed))
|
|
#endif
|
|
|
|
namespace GeomCacheFile
|
|
{
|
|
// Important: The enums are serialized, don't change the values
|
|
// without increasing the file version, conversion code etc!
|
|
|
|
typedef Vec3_tpl<uint16> Position;
|
|
typedef Vec2_tpl<int16> Texcoords;
|
|
typedef Vec4_tpl<int16> QTangent;
|
|
typedef uint8 Color;
|
|
|
|
// ASCII "CAXCACHE"
|
|
const uint64 kFileSignature = 0x4548434143584143ull;
|
|
|
|
// The smallest 'UVmax' we'll support - this avoids division by zero when encoding/decoding UVs
|
|
const float kMinUVrange = .01f;
|
|
|
|
// Bit Precision of tangents quaternions
|
|
const uint kTangentQuatPrecision = 10;
|
|
|
|
// Current file version GUID. Files with other GUIDs will not be loaded by the engine.
|
|
const CryGUID kCurrentVersion = MAKE_CRYGUID(0x1641defe440af501, 0x7ec5e9164c8c2d1c);
|
|
|
|
// Mesh prediction look back array size
|
|
const uint kMeshPredictorLookBackMaxDist = 4096;
|
|
|
|
// Number of frames between index frames. Needs to be <= g_kMaxBufferedFrames.
|
|
const uint kMaxIFrameDistance = 30;
|
|
|
|
enum EFileHeaderFlags
|
|
{
|
|
eFileHeaderFlags_PlaybackFromMemory = BIT(0),
|
|
eFileHeaderFlags_32BitIndices = BIT(1)
|
|
};
|
|
|
|
enum EBlockCompressionFormat
|
|
{
|
|
eBlockCompressionFormat_None = 0,
|
|
eBlockCompressionFormat_Deflate = 1, // zlib
|
|
eBlockCompressionFormat_LZ4HC = 2, // LZ4 HC
|
|
eBlockCompressionFormat_ZSTD = 3, //ZStandard
|
|
};
|
|
|
|
enum EStreams
|
|
{
|
|
eStream_Indices = BIT(0),
|
|
eStream_Positions = BIT(1),
|
|
eStream_Texcoords = BIT(2),
|
|
eStream_QTangents = BIT(3),
|
|
eStream_Colors = BIT(4)
|
|
};
|
|
|
|
enum ETransformType
|
|
{
|
|
eTransformType_Constant,
|
|
eTransformType_Animated
|
|
};
|
|
|
|
enum ENodeType
|
|
{
|
|
eNodeType_Transform = 0, // Transforms all sub nodes
|
|
eNodeType_Mesh = 1,
|
|
eNodeType_PhysicsGeometry = 2,
|
|
};
|
|
|
|
// Common frame
|
|
enum EFrameType
|
|
{
|
|
eFrameType_IFrame = 0,
|
|
eFrameType_BFrame = 1
|
|
};
|
|
|
|
// Common frame flags
|
|
enum EFrameFlags
|
|
{
|
|
eFrameFlags_Hidden = BIT(0)
|
|
};
|
|
|
|
// Flags for mesh index frames
|
|
enum EMeshIFrameFlags
|
|
{
|
|
eMeshIFrameFlags_UsePredictor = BIT(1)
|
|
};
|
|
|
|
struct SHeader
|
|
{
|
|
SHeader()
|
|
: m_signature(0)
|
|
, m_version(kCurrentVersion)
|
|
, m_blockCompressionFormat(0)
|
|
, m_flags(0)
|
|
, m_numFrames(0) {}
|
|
|
|
uint64 m_signature;
|
|
CryGUID m_version;
|
|
uint16 m_blockCompressionFormat;
|
|
uint32 m_flags;
|
|
uint32 m_numFrames;
|
|
uint64 m_totalUncompressedAnimationSize;
|
|
float m_aabbMin[3];
|
|
float m_aabbMax[3];
|
|
} PACK_GCC;
|
|
|
|
struct SFrameInfo
|
|
{
|
|
uint32 m_frameType;
|
|
uint32 m_frameSize;
|
|
uint64 m_frameOffset;
|
|
float m_frameTime;
|
|
} PACK_GCC;
|
|
|
|
struct SCompressedBlockHeader
|
|
{
|
|
uint32 m_uncompressedSize;
|
|
uint32 m_compressedSize;
|
|
} PACK_GCC;
|
|
|
|
struct SFrameHeader
|
|
{
|
|
uint32 m_nodeDataOffset;
|
|
float m_frameAABBMin[3];
|
|
float m_frameAABBMax[3];
|
|
uint32 m_padding;
|
|
} PACK_GCC;
|
|
|
|
struct STemporalPredictorControl
|
|
{
|
|
uint8 m_acceleration;
|
|
uint8 m_indexFrameLerpFactor;
|
|
uint8 m_combineFactor;
|
|
uint8 m_padding;
|
|
} PACK_GCC;
|
|
|
|
struct SMeshFrameHeader
|
|
{
|
|
uint32 m_flags;
|
|
STemporalPredictorControl m_positionStreamPredictorControl;
|
|
STemporalPredictorControl m_texcoordStreamPredictorControl;
|
|
STemporalPredictorControl m_qTangentStreamPredictorControl;
|
|
STemporalPredictorControl m_colorStreamPredictorControl[4];
|
|
} PACK_GCC;
|
|
|
|
struct SMeshInfo
|
|
{
|
|
uint8 m_constantStreams;
|
|
uint8 m_animatedStreams;
|
|
uint8 m_positionPrecision[3];
|
|
float m_uvMax;
|
|
uint8 m_padding;
|
|
uint16 m_numMaterials;
|
|
uint32 m_numVertices;
|
|
uint32 m_flags;
|
|
float m_aabbMin[3];
|
|
float m_aabbMax[3];
|
|
uint32 m_nameLength;
|
|
uint64 m_hash;
|
|
} PACK_GCC;
|
|
|
|
struct SNodeInfo
|
|
{
|
|
uint8 m_type;
|
|
uint8 m_bVisible;
|
|
uint16 m_transformType;
|
|
uint32 m_meshIndex;
|
|
uint32 m_numChildren;
|
|
uint32 m_nameLength;
|
|
} PACK_GCC;
|
|
}
|
|
|
|
#undef PACK_GCC
|
|
|
|
#if !defined(LINUX)
|
|
#pragma pack(pop)
|
|
#endif
|
|
|
|
#endif // CRYINCLUDE_CRYCOMMON_GEOMCACHEFILEFORMAT_H
|