![]() |
Jolt Physics
A multi core friendly Game Physics Engine
|
Simple binary input stream. More...
#include <StreamIn.h>
Public Member Functions | |
virtual | ~StreamIn ()=default |
Virtual destructor. More... | |
virtual void | ReadBytes (void *outData, size_t inNumBytes)=0 |
Read a string of bytes from the binary stream. More... | |
virtual bool | IsEOF () const =0 |
Returns true when an attempt has been made to read past the end of the file. More... | |
virtual bool | IsFailed () const =0 |
Returns true if there was an IO failure. More... | |
template<class T , std::enable_if_t< std::is_trivially_copyable_v< T >, bool > = true> | |
void | Read (T &outT) |
Read a primitive (e.g. float, int, etc.) from the binary stream. More... | |
template<class T , class A , std::enable_if_t< std::is_trivially_copyable_v< T >, bool > = true> | |
void | Read (Array< T, A > &outT) |
Read a vector of primitives from the binary stream. More... | |
template<class Type , class Traits , class Allocator > | |
void | Read (std::basic_string< Type, Traits, Allocator > &outString) |
Read a string from the binary stream (reads the number of characters and then the characters) More... | |
template<class T , class A , typename F > | |
void | Read (Array< T, A > &outT, const F &inReadElement) |
Read a vector of primitives from the binary stream using a custom function to read the elements. More... | |
void | Read (Vec3 &outVec) |
Read a Vec3 (don't read W) More... | |
void | Read (DVec3 &outVec) |
Read a DVec3 (don't read W) More... | |
void | Read (DMat44 &outVec) |
Read a DMat44 (don't read W component of translation) More... | |
![]() | |
NonCopyable ()=default | |
NonCopyable (const NonCopyable &)=delete | |
void | operator= (const NonCopyable &)=delete |
Simple binary input stream.
|
virtualdefault |
Virtual destructor.
|
pure virtual |
Returns true when an attempt has been made to read past the end of the file.
Implemented in StreamInWrapper, and StateRecorderImpl.
|
pure virtual |
Returns true if there was an IO failure.
Implemented in StreamInWrapper, and StateRecorderImpl.
|
inline |
Read a vector of primitives from the binary stream.
|
inline |
Read a vector of primitives from the binary stream using a custom function to read the elements.
|
inline |
Read a string from the binary stream (reads the number of characters and then the characters)
|
inline |
Read a primitive (e.g. float, int, etc.) from the binary stream.
|
pure virtual |
Read a string of bytes from the binary stream.
Implemented in StreamInWrapper, and StateRecorderImpl.