diff options
author | cutealien <cutealien@dfc29bdd-3216-0410-991c-e03cc46cb475> | 2020-01-03 19:05:16 +0000 |
---|---|---|
committer | cutealien <cutealien@dfc29bdd-3216-0410-991c-e03cc46cb475> | 2020-01-03 19:05:16 +0000 |
commit | 2ae2a551a6290f46734307bbfdafea4b1a2cf2ba (patch) | |
tree | ba2f0b468640e44899fed3df2d4cc58795f4a003 /source/Irrlicht/Android/CAndroidAssetReader.h | |
download | irrlicht-2ae2a551a6290f46734307bbfdafea4b1a2cf2ba.tar.xz |
Merging r5975 through r6036 from trunk to ogl-es branch.
GLES drivers adapted, but only did make compile-tests.
git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/branches/ogl-es@6038 dfc29bdd-3216-0410-991c-e03cc46cb475
Diffstat (limited to 'source/Irrlicht/Android/CAndroidAssetReader.h')
-rw-r--r-- | source/Irrlicht/Android/CAndroidAssetReader.h | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/source/Irrlicht/Android/CAndroidAssetReader.h b/source/Irrlicht/Android/CAndroidAssetReader.h new file mode 100644 index 0000000..c9d96a5 --- /dev/null +++ b/source/Irrlicht/Android/CAndroidAssetReader.h @@ -0,0 +1,75 @@ +// Copyright (C) 2012 Joerg Henrichs
+// This file is part of the "Irrlicht Engine".
+// For conditions of distribution and use, see copyright notice in irrlicht.h
+
+#ifndef __C_ANDROID_ASSET_READER_H_INCLUDED__
+#define __C_ANDROID_ASSET_READER_H_INCLUDED__
+
+
+#include "IrrCompileConfig.h"
+
+#ifdef _IRR_COMPILE_ANDROID_ASSET_READER_
+
+
+#include "IReadFile.h"
+
+struct AAssetManager;
+struct AAsset;
+struct ANativeActivity;
+
+namespace irr
+{
+namespace io
+{
+
+ class CAndroidAssetReader : public virtual IReadFile
+ {
+ public:
+ CAndroidAssetReader(AAssetManager *assetManager, const io::path &filename);
+
+ virtual ~CAndroidAssetReader();
+
+ //! Reads an amount of bytes from the file.
+ /** \param buffer Pointer to buffer where read bytes are written to.
+ \param sizeToRead Amount of bytes to read from the file.
+ \return How many bytes were read. */
+ virtual size_t read(void* buffer, size_t sizeToRead);
+
+ //! Changes position in file
+ /** \param finalPos Destination position in the file.
+ \param relativeMovement If set to true, the position in the file is
+ changed relative to current position. Otherwise the position is changed
+ from beginning of file.
+ \return True if successful, otherwise false. */
+ virtual bool seek(long finalPos, bool relativeMovement = false);
+
+ //! Get size of file.
+ /** \return Size of the file in bytes. */
+ virtual long getSize() const;
+
+ //! Get the current position in the file.
+ /** \return Current position in the file in bytes. */
+ virtual long getPos() const;
+
+ //! Get name of file.
+ /** \return File name as zero terminated character string. */
+ virtual const io::path& getFileName() const;
+
+ /** Return true if the file could be opened. */
+ bool isOpen() const { return Asset!=NULL; }
+
+ private:
+ //! Android's asset manager
+ AAssetManager *AssetManager;
+
+ // An asset, i.e. file
+ AAsset *Asset;
+ path Filename;
+ };
+
+} // end namespace io
+} // end namespace irr
+
+#endif // _IRR_COMPILE_ANDROID_ASSET_READER_
+#endif // __C_ANDROID_ASSET_READER_H_INCLUDED__
+
|