axmol/cocos/3d/CCBundleReader.h

202 lines
4.6 KiB
C
Raw Normal View History

2014-06-19 15:43:02 +08:00
/****************************************************************************
Copyright (c) 2014 Chukong Technologies Inc.
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#ifndef __CC_BUNDLE_READER_H__
#define __CC_BUNDLE_READER_H__
#include <string>
#include <vector>
#include "base/CCRef.h"
#include "base/CCPlatformMacros.h"
#include "base/CCConsole.h"
NS_CC_BEGIN
/**
* BundleReader is an interface for reading sequence of bytes.
2014-06-19 15:43:02 +08:00
*/
class BundleReader: public cocos2d::Ref
{
public:
/**
2014-06-25 09:13:24 +08:00
* Structor
2014-06-27 14:42:48 +08:00
*/
2014-06-25 09:13:24 +08:00
BundleReader();
/**
* inicial
2014-06-27 14:42:48 +08:00
*/
2014-06-19 15:43:02 +08:00
~BundleReader();
2014-06-25 09:13:24 +08:00
/**
* initialise
* @param lpbuffer The data buffer pointer
* @param length The data buffer size
*/
2014-06-30 17:10:07 +08:00
void init(char* lpbuffer, ssize_t length);
2014-06-19 15:43:02 +08:00
/**
2014-06-19 15:43:02 +08:00
* Reads an array of elements.
2014-06-27 14:42:48 +08:00
*
* @param ptr The pointer to the memory to copy into.
* The available size should be at least bytes.
* @param size The size of each element to be read, in bytes.
* @param count The number of elements to read.
*
* @return The number of elements read.
2014-06-19 15:43:02 +08:00
*/
2014-06-27 14:42:48 +08:00
ssize_t read(void* ptr, ssize_t size, ssize_t count);
2014-06-19 15:43:02 +08:00
2014-06-27 14:42:48 +08:00
/**
* Reads a line from the buffer.
2014-06-19 15:43:02 +08:00
*/
2014-06-27 14:42:48 +08:00
char* readLine(int num, char* line);
2014-06-19 15:43:02 +08:00
2014-06-27 14:42:48 +08:00
/**
* Returns true if the end of the buffer has been reached.
2014-06-19 15:43:02 +08:00
*/
bool eof();
2014-06-27 14:42:48 +08:00
/**
* Returns the length of the buffer in bytes.
2014-06-19 15:43:02 +08:00
*/
2014-06-27 14:42:48 +08:00
ssize_t length();
2014-06-19 15:43:02 +08:00
2014-06-27 14:42:48 +08:00
/**
2014-06-19 15:43:02 +08:00
* Returns the position of the file pointer.
*/
long int tell();
2014-06-27 14:42:48 +08:00
/**
2014-06-19 15:43:02 +08:00
* Sets the position of the file pointer.
*/
bool seek(long int offset, int origin);
2014-06-27 14:42:48 +08:00
/**
* Sets the file pointer at the start of the file.
*/
2014-06-19 15:43:02 +08:00
bool rewind();
2014-06-27 14:42:48 +08:00
/**
* read binary typed value.
*/
template<typename T> bool read(T* ptr);
template<typename T> bool readArray(unsigned int* length, std::vector<T>* values);
2014-06-19 15:43:02 +08:00
2014-06-27 14:42:48 +08:00
/**
* first read length, then read string text
*/
2014-06-19 15:43:02 +08:00
std::string readString();
bool readMatrix(float* m);
private:
long int m_position;
2014-06-27 14:42:48 +08:00
ssize_t m_length;
2014-06-19 15:43:02 +08:00
char* m_buffer;
};
2014-06-27 14:42:48 +08:00
/**
* template read routines
*/
2014-06-19 15:43:02 +08:00
template<typename T>
inline bool BundleReader::read(T *ptr)
{
return (read(ptr, sizeof(T), 1) == 1);
}
/**
* template function to read array of value.
*/
template<typename T>
inline bool BundleReader::readArray(unsigned int *length, std::vector<T> *values)
{
if (!read(length))
{
return false;
}
if (*length > 0 && values)
{
values->resize(*length);
if (read(&(*values)[0], sizeof(T), *length) != *length)
{
return false;
}
}
return true;
}
/**
* specalization for char
*/
template<>
inline bool BundleReader::read<char>(char *ptr)
{
if (read(ptr, sizeof(char), 1) == 1)
{
return true;
}
else
{
*ptr = -1;
return false;
}
}
/**
* specalization for std::string
*/
template<>
inline bool BundleReader::read<std::string>(std::string *ptr)
{
CCLOG("can not read std::string, use readString() instead");
return false;
}
/**
* template function to read array of value.
*/
template<>
inline bool BundleReader::readArray<std::string>(unsigned int *length, std::vector<std::string> *values)
{
if (!read(length))
{
return false;
}
values->clear();
if (*length > 0 && values)
{
for (int i = 0; i < (int)*length; ++i)
{
values->push_back(readString());
}
}
return true;
}
NS_CC_END
#endif