2008-10-17 16:26:47 +00:00
|
|
|
/*
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
Open Asset Import Library (ASSIMP)
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
2010-04-10 15:30:22 +00:00
|
|
|
Copyright (c) 2006-2010, ASSIMP Development Team
|
2008-10-17 16:26:47 +00:00
|
|
|
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use of this software in source and binary forms,
|
|
|
|
with or without modification, are permitted provided that the following
|
|
|
|
conditions are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer.
|
|
|
|
|
|
|
|
* 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.
|
|
|
|
|
|
|
|
* Neither the name of the ASSIMP team, nor the names of its
|
|
|
|
contributors may be used to endorse or promote products
|
|
|
|
derived from this software without specific prior
|
|
|
|
written permission of the ASSIMP Development Team.
|
|
|
|
|
|
|
|
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.
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file Defines the StreamReader class which reads data from
|
2010-02-06 13:15:35 +00:00
|
|
|
* a binary stream with a well-defined endianess. */
|
2008-10-17 16:26:47 +00:00
|
|
|
|
|
|
|
#ifndef AI_STREAMREADER_H_INCLUDED
|
|
|
|
#define AI_STREAMREADER_H_INCLUDED
|
|
|
|
|
|
|
|
#include "ByteSwap.h"
|
2010-02-06 13:15:35 +00:00
|
|
|
namespace Assimp {
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------------------------
|
|
|
|
/** Wrapper class around IOStream to allow for consistent reading of binary data in both
|
|
|
|
* little and big endian format. Don't attempt to instance the template directly. Use
|
|
|
|
* StreamReaderLE to read from a little-endian stream and StreamReaderBE to read from a
|
|
|
|
* BE stream. The class expects that the endianess of any input data is known at
|
|
|
|
* compile-time, which should usually be true (#BaseImporter::ConvertToUTF8 implements
|
|
|
|
* runtime endianess conversions for text files).
|
|
|
|
*
|
|
|
|
* XXX switch from unsigned int for size types to size_t? or ptrdiff_t?*/
|
|
|
|
// --------------------------------------------------------------------------------------------
|
2008-10-17 16:26:47 +00:00
|
|
|
template <bool SwapEndianess = false>
|
2008-10-18 12:19:28 +00:00
|
|
|
class StreamReader
|
2008-10-17 16:26:47 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------
|
2008-10-17 16:26:47 +00:00
|
|
|
/** Construction from a given stream with a well-defined endianess
|
2008-10-31 19:32:00 +00:00
|
|
|
*
|
|
|
|
* The stream will be deleted afterwards.
|
2008-10-17 16:26:47 +00:00
|
|
|
* @param stream Input stream
|
|
|
|
*/
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
StreamReader(IOStream* _stream)
|
2008-10-17 16:26:47 +00:00
|
|
|
{
|
2010-02-06 13:15:35 +00:00
|
|
|
if (!_stream) {
|
2010-03-18 17:00:12 +00:00
|
|
|
throw DeadlyImportError("StreamReader: Unable to open file");
|
2010-02-06 13:15:35 +00:00
|
|
|
}
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
stream = _stream;
|
2008-10-17 16:26:47 +00:00
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
const size_t s = stream->FileSize();
|
|
|
|
if (!s) {
|
2010-03-18 17:00:12 +00:00
|
|
|
throw DeadlyImportError("StreamReader: File is empty");
|
2010-02-06 13:15:35 +00:00
|
|
|
}
|
2008-10-17 16:26:47 +00:00
|
|
|
|
|
|
|
current = buffer = new int8_t[s];
|
2008-10-31 19:32:00 +00:00
|
|
|
stream->Read(current,s,1);
|
|
|
|
end = limit = &buffer[s];
|
2008-10-17 16:26:47 +00:00
|
|
|
}
|
|
|
|
|
2009-01-12 22:06:54 +00:00
|
|
|
~StreamReader()
|
2008-10-31 19:32:00 +00:00
|
|
|
{
|
|
|
|
delete[] buffer;
|
|
|
|
delete stream;
|
|
|
|
}
|
2008-10-17 16:26:47 +00:00
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
public:
|
2008-10-17 16:26:47 +00:00
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
// deprecated, use overloaded operator>> instead
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** Read a float from the stream */
|
2009-01-12 22:06:54 +00:00
|
|
|
float GetF4()
|
2008-10-17 16:26:47 +00:00
|
|
|
{
|
|
|
|
return Get<float>();
|
|
|
|
}
|
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** Read a double from the stream */
|
|
|
|
double GetF8() {
|
2008-10-17 16:26:47 +00:00
|
|
|
return Get<double>();
|
|
|
|
}
|
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** Read a signed 16 bit integer from the stream */
|
|
|
|
int16_t GetI2() {
|
2008-10-17 16:26:47 +00:00
|
|
|
return Get<int16_t>();
|
|
|
|
}
|
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** Read a signed 8 bit integer from the stream */
|
|
|
|
int8_t GetI1() {
|
|
|
|
return Get<int8_t>();
|
2008-10-17 16:26:47 +00:00
|
|
|
}
|
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** Read an signed 32 bit integer from the stream */
|
|
|
|
int32_t GetI4() {
|
2008-10-17 16:26:47 +00:00
|
|
|
return Get<int32_t>();
|
|
|
|
}
|
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** Read a signed 64 bit integer from the stream */
|
|
|
|
int64_t GetI8() {
|
2008-10-17 16:26:47 +00:00
|
|
|
return Get<int64_t>();
|
|
|
|
}
|
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** Read a unsigned 16 bit integer from the stream */
|
|
|
|
uint16_t GetU2() {
|
|
|
|
return Get<uint16_t>();
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** Read a unsigned 8 bit integer from the stream */
|
|
|
|
uint8_t GetU1() {
|
|
|
|
return Get<uint8_t>();
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** Read an unsigned 32 bit integer from the stream */
|
|
|
|
uint32_t GetU4() {
|
|
|
|
return Get<uint32_t>();
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** Read a unsigned 64 bit integer from the stream */
|
|
|
|
uint64_t GetU8() {
|
|
|
|
return Get<uint64_t>();
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** Get the remaining stream size (to the end of the srream) */
|
|
|
|
unsigned int GetRemainingSize() const {
|
2008-10-17 16:26:47 +00:00
|
|
|
return (unsigned int)(end - current);
|
|
|
|
}
|
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** Get the remaining stream size (to the current read limit). The
|
|
|
|
* return value is the remaining size of the stream if no custom
|
|
|
|
* read limit has been set. */
|
|
|
|
unsigned int GetRemainingSizeToLimit() const {
|
2008-10-31 19:32:00 +00:00
|
|
|
return (unsigned int)(limit - current);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** Increase the file pointer (relative seeking) */
|
2010-04-02 04:17:05 +00:00
|
|
|
void IncPtr(int plus) {
|
2008-10-31 19:32:00 +00:00
|
|
|
current += plus;
|
2010-02-06 13:15:35 +00:00
|
|
|
if (current > end) {
|
2010-03-18 17:00:12 +00:00
|
|
|
throw DeadlyImportError("End of file was reached");
|
2008-10-31 19:32:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** Get the current file pointer */
|
|
|
|
int8_t* GetPtr() const {
|
2008-10-31 19:32:00 +00:00
|
|
|
return current;
|
|
|
|
}
|
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** Set current file pointer (Get it from #GetPtr). This is if you
|
|
|
|
* prefer to do pointer arithmetics on your own or want to copy
|
|
|
|
* large chunks of data at once.
|
|
|
|
* @param p The new pointer, which is validated against the size
|
|
|
|
* limit and buffer boundaries. */
|
|
|
|
void SetPtr(int8_t* p) {
|
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
current = p;
|
2010-02-06 13:15:35 +00:00
|
|
|
if (current > end || current < buffer) {
|
2010-03-18 17:00:12 +00:00
|
|
|
throw DeadlyImportError("End of file was reached");
|
2008-10-31 19:32:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** Copy n bytes to an external buffer
|
|
|
|
* @param out Destination for copying
|
|
|
|
* @param bytes Number of bytes to copy */
|
|
|
|
void CopyAndAdvance(void* out, size_t bytes) {
|
|
|
|
|
|
|
|
int8_t* ur = GetPtr();
|
|
|
|
SetPtr(ur+bytes); // fire exception if eof
|
|
|
|
|
|
|
|
memcpy(out,ur,bytes);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** Get the current offset from the beginning of the file */
|
|
|
|
int GetCurrentPos() const {
|
2008-10-31 19:32:00 +00:00
|
|
|
return (unsigned int)(current - buffer);
|
|
|
|
}
|
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
// ---------------------------------------------------------------------
|
2008-10-31 19:32:00 +00:00
|
|
|
/** Setup a temporary read limit
|
|
|
|
*
|
|
|
|
* @param limit Maximum number of bytes to be read from
|
|
|
|
* the beginning of the file. Passing 0xffffffff
|
2010-02-06 13:15:35 +00:00
|
|
|
* resets the limit to the original end of the stream. */
|
|
|
|
void SetReadLimit(unsigned int _limit) {
|
|
|
|
|
|
|
|
if (0xffffffff == _limit) {
|
2008-10-31 19:32:00 +00:00
|
|
|
limit = end;
|
|
|
|
return;
|
|
|
|
}
|
2010-02-06 13:15:35 +00:00
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
limit = buffer + _limit;
|
2010-02-06 13:15:35 +00:00
|
|
|
if (limit > end) {
|
2010-03-18 17:00:12 +00:00
|
|
|
throw DeadlyImportError("StreamReader: Invalid read limit");
|
2010-02-06 13:15:35 +00:00
|
|
|
}
|
2008-10-31 19:32:00 +00:00
|
|
|
}
|
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** Get the current read limit in bytes. Reading over this limit
|
|
|
|
* accidentially raises an exception. */
|
|
|
|
int GetReadLimit() const {
|
2008-10-31 19:32:00 +00:00
|
|
|
return (unsigned int)(limit - buffer);
|
|
|
|
}
|
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** Skip to the read limit in bytes. Reading over this limit
|
|
|
|
* accidentially raises an exception. */
|
|
|
|
void SkipToReadLimit() {
|
2008-10-31 19:32:00 +00:00
|
|
|
current = limit;
|
|
|
|
}
|
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** overload operator>> and allow chaining of >> ops. */
|
|
|
|
template <typename T>
|
|
|
|
StreamReader& operator >> (T& f) {
|
|
|
|
f = Get<T>();
|
|
|
|
return *this;
|
|
|
|
}
|
2008-10-17 16:26:47 +00:00
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
private:
|
2008-10-17 16:26:47 +00:00
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
template <typename T, bool doit>
|
|
|
|
struct ByteSwapper {
|
|
|
|
void operator() (T* inout) {
|
|
|
|
ByteSwap::Swap(inout);
|
|
|
|
}
|
|
|
|
};
|
2008-10-17 16:26:47 +00:00
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
template <typename T>
|
|
|
|
struct ByteSwapper<T,false> {
|
|
|
|
void operator() (T*) {
|
|
|
|
}
|
|
|
|
};
|
2008-10-17 16:26:47 +00:00
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
/** Generic read method. ByteSwap::Swap(T*) *must* be defined */
|
2008-10-17 16:26:47 +00:00
|
|
|
template <typename T>
|
2010-02-06 13:15:35 +00:00
|
|
|
T Get() {
|
|
|
|
if (current + sizeof(T) > limit) {
|
2010-03-18 17:00:12 +00:00
|
|
|
throw DeadlyImportError("End of file or stream limit was reached");
|
2010-02-06 13:15:35 +00:00
|
|
|
}
|
2008-10-17 16:26:47 +00:00
|
|
|
|
|
|
|
T f = *((const T*)current);
|
2010-02-06 13:15:35 +00:00
|
|
|
ByteSwapper<T,(SwapEndianess && sizeof(T)>1)> swapper;
|
|
|
|
swapper(&f);
|
|
|
|
|
2008-10-17 16:26:47 +00:00
|
|
|
current += sizeof(T);
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
IOStream* stream;
|
2008-10-31 19:32:00 +00:00
|
|
|
int8_t *buffer, *current, *end, *limit;
|
2008-10-17 16:26:47 +00:00
|
|
|
};
|
|
|
|
|
2010-02-06 13:15:35 +00:00
|
|
|
|
|
|
|
// --------------------------------------------------------------------------------------------
|
2008-10-17 16:26:47 +00:00
|
|
|
#ifdef AI_BUILD_BIG_ENDIAN
|
|
|
|
typedef StreamReader<true> StreamReaderLE;
|
|
|
|
typedef StreamReader<false> StreamReaderBE;
|
|
|
|
#else
|
|
|
|
typedef StreamReader<true> StreamReaderBE;
|
|
|
|
typedef StreamReader<false> StreamReaderLE;
|
|
|
|
#endif
|
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
} // end namespace Assimp
|
2008-10-17 16:26:47 +00:00
|
|
|
|
2008-10-19 11:32:33 +00:00
|
|
|
#endif // !! AI_STREAMREADER_H_INCLUDED
|