Drag[en]gine Game Engine  1.21
decDiskFileReader Class Reference

Reads data from files stored on disc. More...

#include <decDiskFileReader.h>

Inheritance diagram for decDiskFileReader:
decBaseFileReader deObject

Public Types

typedef deTObjectReference< decDiskFileReaderRef
 Type holding strong reference. More...
 
- Public Types inherited from decBaseFileReader
typedef deTObjectReference< decBaseFileReaderRef
 Type holding strong reference. More...
 
- Public Types inherited from deObject
typedef deTObjectReference< deObjectRef
 Type holding strong reference. More...
 

Public Member Functions

Management
virtual const char * GetFilename ()
 Name of the file. More...
 
virtual int GetLength ()
 Length of the file. More...
 
virtual TIME_SYSTEM GetModificationTime ()
 Modification time. More...
 
virtual int GetPosition ()
 Current reading position in the file. More...
 
virtual void SetPosition (int position)
 Set file position for the next read action. More...
 
virtual void MovePosition (int offset)
 Move file position by the given offset. More...
 
virtual void SetPositionEnd (int position)
 Set file position to the given position measured from the end of the file. More...
 
virtual void Read (void *buffer, int size)
 Read size bytes into buffer and advances the file pointer. More...
 
virtual decBaseFileReader::Ref Duplicate ()
 Duplicate file reader. More...
 
- Public Member Functions inherited from decBaseFileReader
bool IsEOF ()
 File pointer is at the end of the file. More...
 
int8_t ReadChar ()
 Read one byte and advances the file pointer. More...
 
uint8_t ReadByte ()
 Read one unsigned byte and advances the file pointer. More...
 
int16_t ReadShort ()
 Read one short integer (2 bytes) and advances the file pointer. More...
 
uint16_t ReadUShort ()
 Read one unsigned short integer (2 bytes) and advances the file pointer. More...
 
int32_t ReadInt ()
 Read one integer (4 bytes) and advances the file pointer. More...
 
uint32_t ReadUInt ()
 Read one unsigned integer (4 bytes) and advances the file pointer. More...
 
int64_t ReadLong ()
 Read one integer (8 bytes) and advances the file pointer. More...
 
uint64_t ReadULong ()
 Read one unsigned integer (8 bytes) and advances the file pointer. More...
 
float ReadFloat ()
 Read one float (4 bytes) and advances the file pointer. More...
 
double ReadDouble ()
 Read one double (8 bytes) and advances the file pointer. More...
 
decString ReadString8 ()
 Read a string prefixed by a 1-byte length field and advances the file pointer. More...
 
void ReadString8Into (decString &string)
 Read string prefixed by a 1-byte length field and advances the file pointer. More...
 
decString ReadString16 ()
 Read a string prefixed by a 2-byte2 length field and advances the file pointer. More...
 
void ReadString16Into (decString &string)
 Read string prefixed by a 2-byte2 length field and advances the file pointer. More...
 
decVector ReadVector ()
 Read a 3-float vector and advances the file pointer. More...
 
void ReadVectorInto (decVector &vector)
 Read a 3-float vector and advances the file pointer. More...
 
decVector2 ReadVector2 ()
 Read a 2-float vector and advances the file pointer. More...
 
void ReadVector2Into (decVector2 &vector)
 Read a 2-float vector and advances the file pointer. More...
 
decQuaternion ReadQuaternion ()
 Read a 4-float quaternion and advances the file pointer. More...
 
void ReadQuaternionInto (decQuaternion &quaternion)
 Read a 4-float quaternion and advances the file pointer. More...
 
decPoint ReadPoint ()
 Read a 2-int point and advances the file pointer. More...
 
void ReadPointInto (decPoint &point)
 Read a 2-int point and advances the file pointer. More...
 
decPoint3 ReadPoint3 ()
 Read a 3-int point and advances the file pointer. More...
 
void ReadPoint3Into (decPoint3 &point)
 Read a 3-int point and advances the file pointer. More...
 
decDVector ReadDVector ()
 Read a 3-double vector and advances the file pointer. More...
 
void ReadDVectorInto (decDVector &vector)
 Read a 3-double vector and advances the file pointer. More...
 
decColor ReadColor ()
 Read a 4-component color and advances the file pointer. More...
 
void ReadColorInto (decColor &color)
 Read a 4-component color and advances the file pointer. More...
 
decColor ReadColor3 ()
 Read a 3-component color and advances the file pointer. More...
 
void ReadColor3Into (decColor &color)
 Read a 3-component color and advances the file pointer. More...
 
void SkipChar ()
 Skip one byte and advances the file pointer. More...
 
void SkipByte ()
 Skip one unsigned byte and advances the file pointer. More...
 
void SkipShort ()
 Skip one short integer (2 bytes) and advances the file pointer. More...
 
void SkipUShort ()
 Skip one unsigned short integer (2 bytes) and advances the file pointer. More...
 
void SkipInt ()
 Skip one integer (4 bytes) and advances the file pointer. More...
 
void SkipUInt ()
 Skip one unsigned integer (4 bytes) and advances the file pointer. More...
 
void SkipLong ()
 Skip one integer (8 bytes) and advances the file pointer. More...
 
void SkipULong ()
 Skip one unsigned integer (8 bytes) and advances the file pointer. More...
 
void SkipFloat ()
 Skip one float (4 bytes) and advances the file pointer. More...
 
void SkipDouble ()
 Skip one double (8 bytes) and advances the file pointer. More...
 
void SkipString8 ()
 Skip a string prefixed by a 1-byte length field and advances the file pointer. More...
 
void SkipString16 ()
 Skip a string prefixed by a 2-byte2 length field and advances the file pointer. More...
 
void SkipVector ()
 Skip a 3-float vector and advances the file pointer. More...
 
void SkipVector2 ()
 Skip a 2-float vector and advances the file pointer. More...
 
void SkipQuaternion ()
 Skip a 4-float quaternion and advances the file pointer. More...
 
void SkipPoint ()
 Skip a 2-int point and advances the file pointer. More...
 
void SkipPoint3 ()
 Skip a 3-int point and advances the file pointer. More...
 
void SkipDVector ()
 Skip a 3-double vector and advances the file pointer. More...
 
void SkipColor ()
 Skip a 4-component color and advances the file pointer. More...
 
void SkipColor3 ()
 Skip a 3-component color and advances the file pointer. More...
 
 decBaseFileReader ()
 Create file reader. More...
 
- Public Member Functions inherited from deObject
int GetRefCount () const
 Reference count. More...
 
void AddReference ()
 Add reference increasing reference count by 1. More...
 
void FreeReference ()
 Decrease reference count by one and delete object if count reaches 0. More...
 
 deObject ()
 Create object with reference count of 1. More...
 

Constructors and Destructors

 decDiskFileReader (const char *filename)
 Create file reader object for a file. More...
 
virtual ~decDiskFileReader ()
 Close file and clean up. More...
 

Additional Inherited Members

- Protected Member Functions inherited from decBaseFileReader
virtual ~decBaseFileReader ()
 Clean up file reader. More...
 
- Protected Member Functions inherited from deObject
virtual ~deObject ()
 Clean up object. More...
 

Detailed Description

Reads data from files stored on disc.

Member Typedef Documentation

◆ Ref

Type holding strong reference.

Constructor & Destructor Documentation

◆ decDiskFileReader()

decDiskFileReader::decDiskFileReader ( const char *  filename)

Create file reader object for a file.

The file is opened immediatly for reading only. The filename specified has to be an absolute path.

Exceptions
deeFileNotFoundfilename does not exist.
deeFileNotFoundfilename can not be opened for reading.

◆ ~decDiskFileReader()

virtual decDiskFileReader::~decDiskFileReader ( )
protectedvirtual

Close file and clean up.

Note
Subclasses should set their destructor protected too to avoid users accidently deleting a reference counted object through the object pointer. Only FreeReference() is allowed to delete the object.

Member Function Documentation

◆ Duplicate()

virtual decBaseFileReader::Ref decDiskFileReader::Duplicate ( )
virtual

Duplicate file reader.

Implements decBaseFileReader.

◆ GetFilename()

virtual const char* decDiskFileReader::GetFilename ( )
virtual

Name of the file.

Implements decBaseFileReader.

◆ GetLength()

virtual int decDiskFileReader::GetLength ( )
virtual

Length of the file.

Implements decBaseFileReader.

◆ GetModificationTime()

virtual TIME_SYSTEM decDiskFileReader::GetModificationTime ( )
virtual

Modification time.

Implements decBaseFileReader.

◆ GetPosition()

virtual int decDiskFileReader::GetPosition ( )
virtual

Current reading position in the file.

Implements decBaseFileReader.

◆ MovePosition()

virtual void decDiskFileReader::MovePosition ( int  offset)
virtual

Move file position by the given offset.

Implements decBaseFileReader.

◆ Read()

virtual void decDiskFileReader::Read ( void *  buffer,
int  size 
)
virtual

Read size bytes into buffer and advances the file pointer.

Exceptions
deeInvalidParambuffer is NULL.
deeInvalidParamsize is less than 1.
deeReadFileCan not read from file.

Implements decBaseFileReader.

◆ SetPosition()

virtual void decDiskFileReader::SetPosition ( int  position)
virtual

Set file position for the next read action.

Implements decBaseFileReader.

◆ SetPositionEnd()

virtual void decDiskFileReader::SetPositionEnd ( int  position)
virtual

Set file position to the given position measured from the end of the file.

Implements decBaseFileReader.


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