OpenClonk
Ogre::Skeleton::ChunkBone Class Reference

#include <StdMeshLoaderBinaryChunks.h>

Inheritance diagram for Ogre::Skeleton::ChunkBone:
[legend]
Collaboration diagram for Ogre::Skeleton::ChunkBone:
[legend]

Public Member Functions

Type GetType () const
 
size_t GetSize () const
 

Static Public Member Functions

static std::unique_ptr< ChunkRead (DataStream *stream)
 
static Type Peek (const DataStream *stream)
 

Public Attributes

std::string name
 
uint16_t handle
 
StdMeshVector position
 
StdMeshQuaternion orientation
 
StdMeshVector scale
 

Static Public Attributes

static const size_t ChunkHeaderLength
 

Protected Types

typedef ChunkID Type
 

Protected Member Functions

void ReadImpl (DataStream *stream) override
 

Protected Attributes

Type type
 
size_t size
 

Detailed Description

Definition at line 586 of file StdMeshLoaderBinaryChunks.h.

Member Typedef Documentation

◆ Type

typedef ChunkID Ogre::ChunkBase< ChunkID >::Type
protectedinherited

Definition at line 286 of file StdMeshLoaderBinaryChunks.h.

Member Function Documentation

◆ GetSize()

size_t Ogre::ChunkBase< ChunkID >::GetSize ( ) const
inlineinherited

Definition at line 292 of file StdMeshLoaderBinaryChunks.h.

◆ GetType()

Type Ogre::ChunkBase< ChunkID >::GetType ( ) const
inlineinherited

Definition at line 291 of file StdMeshLoaderBinaryChunks.h.

◆ Peek()

static Type Ogre::ChunkBase< ChunkID >::Peek ( const DataStream stream)
inlinestaticinherited

Definition at line 295 of file StdMeshLoaderBinaryChunks.h.

296  {
297  return static_cast<Type>(stream->Peek<uint16_t>());
298  }

◆ Read()

std::unique_ptr< Chunk > Ogre::Skeleton::Chunk::Read ( DataStream stream)
staticinherited

Definition at line 322 of file StdMeshLoaderBinaryChunks.cpp.

323  {
324  assert(stream->GetRemainingBytes() >= ChunkHeaderLength);
325 
326  // Read metadata
327  ChunkID id = CID_Invalid;
328  id = static_cast<ChunkID>(stream->Read<uint16_t>());
329  size_t size = 0;
330  // Special case: CID_Header doesn't have any size info.
331  if (id != CID_Header)
332  {
333  // All others are proper chunks.
334  size = stream->Read<uint32_t>();
336  }
337 
338  // Create chunk
339  std::unique_ptr<Chunk> chunk;
340  switch (id)
341  {
342  case CID_Header: chunk = std::make_unique<Ogre::Skeleton::ChunkFileHeader>(); break;
343  case CID_BlendMode: chunk = std::make_unique<Ogre::Skeleton::ChunkBlendMode>(); break;
344  case CID_Bone: chunk = std::make_unique<Ogre::Skeleton::ChunkBone>(); break;
345  case CID_Bone_Parent: chunk = std::make_unique<Ogre::Skeleton::ChunkBoneParent>(); break;
346  case CID_Animation: chunk = std::make_unique<Ogre::Skeleton::ChunkAnimation>(); break;
347  case CID_Animation_BaseInfo: chunk = std::make_unique<Ogre::Skeleton::ChunkAnimationBaseInfo>(); break;
348  case CID_Animation_Track: chunk = std::make_unique<Ogre::Skeleton::ChunkAnimationTrack>(); break;
349  case CID_Animation_Track_KF: chunk = std::make_unique<Ogre::Skeleton::ChunkAnimationTrackKF>(); break;
350  case CID_Animation_Link: chunk = std::make_unique<Ogre::Skeleton::ChunkAnimationLink>(); break;
351  default:
352  LogF("StdMeshLoader: I don't know what to do with a chunk of type 0x%xu", id);
353  chunk = std::make_unique<Ogre::Skeleton::ChunkUnknown>(); break;
354  };
355  chunk->type = id;
356  chunk->size = size;
357  chunk->ReadImpl(stream);
358  return chunk;
359  }
bool LogF(const char *strMessage,...)
Definition: C4Log.cpp:262

References Ogre::ChunkBase< ChunkID >::ChunkHeaderLength, Ogre::Skeleton::CID_Animation, Ogre::Skeleton::CID_Animation_BaseInfo, Ogre::Skeleton::CID_Animation_Link, Ogre::Skeleton::CID_Animation_Track, Ogre::Skeleton::CID_Animation_Track_KF, Ogre::Skeleton::CID_BlendMode, Ogre::Skeleton::CID_Bone, Ogre::Skeleton::CID_Bone_Parent, Ogre::Skeleton::CID_Header, Ogre::Skeleton::CID_Invalid, Ogre::DataStream::GetRemainingBytes(), LogF(), Ogre::DataStream::Read(), and Ogre::ChunkBase< ChunkID >::size.

Referenced by StdMeshSkeletonLoader::LoadSkeletonBinary(), Ogre::Skeleton::ChunkAnimation::ReadImpl(), and Ogre::Skeleton::ChunkAnimationTrack::ReadImpl().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ReadImpl()

void Ogre::Skeleton::ChunkBone::ReadImpl ( DataStream stream)
overrideprotectedvirtual

Implements Ogre::ChunkBase< ChunkID >.

Definition at line 376 of file StdMeshLoaderBinaryChunks.cpp.

377  {
378  name = stream->Read<std::string>();
379  handle = stream->Read<uint16_t>();
380  position.x = stream->Read<float>();
381  position.y = stream->Read<float>();
382  position.z = stream->Read<float>();
383  orientation.x = stream->Read<float>();
384  orientation.y = stream->Read<float>();
385  orientation.z = stream->Read<float>();
386  orientation.w = stream->Read<float>();
387  // Guess whether we have a scale element
388  if (GetSize() > name.size() + 1 + sizeof(handle) + sizeof(float) * 7)
389  {
390  scale.x = stream->Read<float>();
391  scale.y = stream->Read<float>();
392  scale.z = stream->Read<float>();
393  }
394  else
395  {
397  }
398  }
static StdMeshVector UnitScale()
Definition: StdMeshMath.cpp:29

References Ogre::ChunkBase< ChunkID >::GetSize(), handle, name, orientation, position, Ogre::DataStream::Read(), scale, StdMeshVector::UnitScale(), StdMeshQuaternion::w, StdMeshVector::x, StdMeshQuaternion::x, StdMeshVector::y, StdMeshQuaternion::y, StdMeshVector::z, and StdMeshQuaternion::z.

Here is the call graph for this function:

Member Data Documentation

◆ ChunkHeaderLength

const size_t Ogre::ChunkBase< ChunkID >::ChunkHeaderLength
staticinherited

Definition at line 294 of file StdMeshLoaderBinaryChunks.h.

◆ handle

uint16_t Ogre::Skeleton::ChunkBone::handle

◆ name

std::string Ogre::Skeleton::ChunkBone::name

◆ orientation

StdMeshQuaternion Ogre::Skeleton::ChunkBone::orientation

◆ position

StdMeshVector Ogre::Skeleton::ChunkBone::position

◆ scale

StdMeshVector Ogre::Skeleton::ChunkBone::scale

◆ size

size_t Ogre::ChunkBase< ChunkID >::size
protectedinherited

Definition at line 288 of file StdMeshLoaderBinaryChunks.h.

◆ type

Type Ogre::ChunkBase< ChunkID >::type
protectedinherited

Definition at line 287 of file StdMeshLoaderBinaryChunks.h.


The documentation for this class was generated from the following files: