/* SleepLib BinaryFile Implementation Author: Mark Watkins License: GPL */ #include #include "binary_file.h" BinaryFile::BinaryFile() { size=pos=0; buffer=NULL; } void BinaryFile::Close() { if (bf_mode==BF_WRITE) { //f.Write(buffer,pos); } f.Close(); if (buffer) delete [] buffer; size=pos=0; } BinaryFile::~BinaryFile() { Close(); } size_t BinaryFile::Write(const void* buffer, size_t count) { return f.Write(buffer,count); } bool BinaryFile::Open(wxString filename,BFOpenMode mode) { pos=size=0; bf_mode=mode; if (wxFileExists(filename)) { if (mode==BF_WRITE) { // hmm.. file exists. unsure of best course of action here.. return false; } size=wxFileName::GetSize(filename).GetLo(); } wxString om; if (mode==BF_READ) om=wxT("rb"); else if (mode==BF_WRITE) om=wxT("wb"); if (!f.Open(filename,om)) return false; if (mode==BF_READ) { buffer=new char [size]; size=f.Read(buffer,size); } return true; } bool BinaryFile::Unpack(wxInt8 & data) { if (pos>=size) return false; data=((wxInt8 *)buffer)[pos++]; return true; } bool BinaryFile::Unpack(bool & data) { if (pos>=size) return false; data=((wxInt8 *)buffer)[pos++]; return true; } bool BinaryFile::Unpack(wxInt16 & data) { if (pos+1>=size) return false; data=((wxUint8 *)buffer)[pos++]; data|=((wxInt8 *)buffer)[pos++] << 8; return true; } bool BinaryFile::Unpack(wxInt32 & data) { if (pos+3>=size) return false; if (wxIsPlatformLittleEndian()) { data=*((wxInt32 *)(&buffer[pos])); pos+=4; } else { data=((wxUint8 *)buffer)[pos++]; data|=((wxUint8 *)buffer)[pos++] << 8; data|=((wxUint8 *)buffer)[pos++] << 16; data|=((wxInt8 *)buffer)[pos++] << 24; } return true; } bool BinaryFile::Unpack(wxInt64 & data) { if (pos+7>=size) return false; if (wxIsPlatformLittleEndian()) { data=*((wxInt64 *)(&buffer[pos])); pos+=8; } else { //for (int i=7;i>=0;i--) data=(data << 8) | ((wxUint8 *)buffer))[pos+i]; // pos+=8; data=wxInt64(((wxUint8 *)buffer)[pos++]); data|=wxInt64(((wxUint8 *)buffer)[pos++]) << 8; data|=wxInt64(((wxUint8 *)buffer)[pos++]) << 16; data|=wxInt64(((wxUint8 *)buffer)[pos++]) << 24; data|=wxInt64(((wxUint8 *)buffer)[pos++]) << 32; data|=wxInt64(((wxUint8 *)buffer)[pos++]) << 40; data|=wxInt64(((wxUint8 *)buffer)[pos++]) << 48; data|=wxInt64(((wxInt8 *)buffer)[pos++]) << 56; } return true; } bool BinaryFile::Unpack(wxUint8 & data) { if (pos>=size) return false; data=((wxInt8 *)buffer)[pos++]; return true; } bool BinaryFile::Unpack(wxUint16 & data) { if (pos+1>=size) return false; data=wxUint16(((wxUint8 *)buffer)[pos++]); data|=wxUint16(((wxUint8 *)buffer)[pos++]) << 8; return true; } bool BinaryFile::Unpack(wxUint32 & data) { if (pos>=size) return false; if (wxIsPlatformLittleEndian()) { data=*((wxUint32 *)(&buffer[pos])); pos+=4; } else { data=wxUint32(((wxUint8 *)buffer)[pos++]); data|=wxUint32(((wxUint8 *)buffer)[pos++]) << 8; data|=wxUint32(((wxUint8 *)buffer)[pos++]) << 16; data|=wxUint32(((wxUint8 *)buffer)[pos++]) << 24; } return true; } bool BinaryFile::Unpack(wxUint64 & data) { if (pos>=size) return false; if (wxIsPlatformLittleEndian()) { data=*((wxInt64 *)(&buffer[pos])); pos+=8; } else { //for (int i=7;i>=0;i--) data=(data << 8) | ((wxUint8 *)buffer))[pos+i]; // pos+=8; data=wxUint64(((wxUint8 *)buffer)[pos++]); data|=wxUint64(((wxUint8 *)buffer)[pos++]) << 8; data|=wxUint64(((wxUint8 *)buffer)[pos++]) << 16; data|=wxUint64(((wxUint8 *)buffer)[pos++]) << 24; data|=wxUint64(((wxUint8 *)buffer)[pos++]) << 32; data|=wxUint64(((wxUint8 *)buffer)[pos++]) << 40; data|=wxUint64(((wxUint8 *)buffer)[pos++]) << 48; data|=wxUint64(((wxUint8 *)buffer)[pos++]) << 56; } return true; } bool BinaryFile::Unpack(float & data) { if ((pos+4)>=size) return false; if (wxIsPlatformLittleEndian()) { data=*((float *)(&buffer[pos])); pos+=4; } else { unsigned char b[4]; for (int i=0; i<4; i++) { b[3-i]=buffer[pos+i]; } data=*((float *)(b)); pos+=4; } return true; } bool BinaryFile::Unpack(double & data) { if ((pos+7)>=size) return false; if (wxIsPlatformLittleEndian()) { data=*((double *)(&buffer[pos])); pos+=8; } else { unsigned char b[8]; for (int i=0; i<8; i++) { b[7-i]=buffer[pos+i]; } data=*((double *)(b)); pos+=8; } return true; } bool BinaryFile::Unpack(wxString & data) { wxInt16 i16; if (!Unpack(i16)) return false; if ((pos+i16)>=size) return false; data=wxT(""); for (int i=0; i