diff options
author | scuri <scuri> | 2009-10-01 14:14:53 +0000 |
---|---|---|
committer | scuri <scuri> | 2009-10-01 14:14:53 +0000 |
commit | 537ce7ddb32932a2100ae767b1eca51a9dd1c35f (patch) | |
tree | 0b487bef90b949fd8b97f180629a1b0bacefc78c /src/im_binfile.cpp | |
parent | 62783aee16f96fe5e513fb230b8efddaa02981df (diff) |
New: ASCII compression for RAW format to access text data instead of binary.
Diffstat (limited to 'src/im_binfile.cpp')
-rw-r--r-- | src/im_binfile.cpp | 68 |
1 files changed, 67 insertions, 1 deletions
diff --git a/src/im_binfile.cpp b/src/im_binfile.cpp index 670623c..7171032 100644 --- a/src/im_binfile.cpp +++ b/src/im_binfile.cpp @@ -2,7 +2,7 @@ * \brief Binary File Access * * See Copyright Notice in im_lib.h - * $Id: im_binfile.cpp,v 1.1 2008/10/17 06:10:16 scuri Exp $ + * $Id: im_binfile.cpp,v 1.2 2009/10/01 14:15:47 scuri Exp $ */ @@ -637,6 +637,72 @@ unsigned long imBinFilePrintf(imBinFile* bfile, char *format, ...) return imBinFileWrite(bfile, buffer, size, 1); } +int imBinFileReadInteger(imBinFile* handle, int *value) +{ + int i = 0, found = 0; + char buffer[11], c; + + while (!found) + { + imBinFileRead(handle, &c, 1, 1); + + /* if it's an integer, increments the number of characters read */ + if ((c >= '0' && c <= '9') || (c == '-')) + { + buffer[i] = c; + i++; + } + else + { + /* if it's not, and we read some characters, convert them to an integer */ + if (i > 0) + { + buffer[i] = 0; + *value = atoi(buffer); + found = 1; + } + } + + if (imBinFileError(handle) || i > 10) + return 0; + } + + return 1; +} + +int imBinFileReadFloat(imBinFile* handle, float *value) +{ + int i = 0, found = 0; + char buffer[17], c; + + while (!found) + { + imBinFileRead(handle, &c, 1, 1); + + /* if it's a floating point number, increments the number of characters read */ + if ((c >= '0' && c <= '9') || c == '-' || c == '+' || c == '.' || c == 'e' || c == 'E') + { + buffer[i] = c; + i++; + } + else + { + /* if it's not, and we read some characters convert them to an integer */ + if (i > 0) + { + buffer[i] = 0; + *value = (float)atof(buffer); + found = 1; + } + } + + if (imBinFileError(handle) || i > 16) + return 0; + } + + return 1; +} + static imBinFileBase* iBinFileBaseHandle(const char* pFileName) { imBinFile* bfile = (imBinFile*)pFileName; |