TDME2 1.9.121
TextureReader.h
Go to the documentation of this file.
1#pragma once
2
3#include <map>
4#include <string>
5#include <vector>
6
7#include <tdme/tdme.h>
13
14#include <ext/libpng/png.h>
15
16using std::map;
17using std::string;
18using std::vector;
19
24
25/**
26 * Texture reader class
27 * @author Andreas Drewke
28 * @version $Id$
29 */
31{
32 friend class Texture;
33
34public:
35 /**
36 * @return texture extensions
37 */
38 static const vector<string>& getTextureExtensions();
39
40 /**
41 * Reads a texture
42 * @param pathName path name
43 * @param fileName file name
44 * @param useCache use cache
45 * @param powerOfTwo scale image to fit power of two dimensions
46 * @param idPrefix id prefix
47 * @return texture data instance or null
48 */
49 static Texture* read(const string& pathName, const string& fileName, bool useCache = true, bool powerOfTwo = true, const string& idPrefix = string());
50
51 /**
52 * Reads a texture with additional transparency texture
53 * @param texturePathName texture path name
54 * @param textureFileName texture file name
55 * @param transparencyTexturePathName transparency texture path name
56 * @param transparencyTextureFileName transparency texture file name
57 * @param useCache use cache
58 * @param powerOfTwo scale image to fit power of two dimensions
59 * @param idPrefix id prefix
60 * @return texture data instance or null
61 */
62 static Texture* read2(const string& texturePathName, const string& textureFileName, const string& transparencyTexturePathName, const string& transparencyTextureFileName, bool useCache = true, bool powerOfTwo = true, const string& idPrefix = string());
63
64 /**
65 * Read PNG
66 * @param textureId texture id
67 * @param data vector data to write PNG to
68 * @param powerOfTwo scale image to fit power of two dimensions
69 * @param idPrefix id prefix
70 */
71 static Texture* readPNG(const string& textureId, const vector<uint8_t>& data, bool powerOfTwo = true, const string& idPrefix = string());
72
73 /**
74 * Rotate texture around center
75 * @param texture texture
76 * @return rotation rotation
77 */
78 static Texture* rotate(Texture* texture, float rotation);
79
80 /**
81 * Scale texture
82 * @param texture texture
83 * @param width width
84 * @param height height
85 * @return texture
86 */
87 static Texture* scale(Texture* texture, int width, int height);
88
89 /**
90 * Smooth texture
91 * @param texture texture
92 * @return texture
93 */
94 static Texture* smooth(Texture* texture);
95
96private:
97 /**
98 * PNG input stream
99 */
101 public:
102
103 /**
104 * Public constructor
105 * @param data data
106 */
107 PNGInputStream(const vector<uint8_t>* data): offset(0), data(data) {
108 }
109
110 /**
111 * Destructor
112 */
114 }
115
116 /**
117 * Read bytes
118 * @param outBytes out bytes
119 * @param outBytesToRead out bytes to read
120 */
121 void readBytes(int8_t* outBytes, int32_t outBytesToRead) {
122 for (int32_t i = 0; i < outBytesToRead && offset < data->size(); i++) {
123 outBytes[i] = (*data)[offset++];
124 }
125 }
126
127 private:
129 const vector<uint8_t>* data;
130
131 };
132
133 /**
134 * Read PNG data from memory
135 * @param png_ptr png structure
136 * @param outBytes out bytes
137 * @param outBytesToRead out bytes to read
138 */
139 static void readPNGDataFromMemory(png_structp png_ptr, png_bytep outBytes, png_size_t outBytesToRead);
140
141 /**
142 * Remove texture from cache
143 * @param texture texture
144 */
145 static void removeFromCache(Texture* texture);
146
147 /**
148 * Scales a texture line
149 * @param pixelByteBuffer pixel byte buffer aka original texture
150 * @param pixelByteBufferScaled pixel byte buffer scaled aka new texture, its offset should point to start of line you want to write
151 * @param width orginal width
152 * @param textureWidth new texture width
153 * @param bytesPerPixel bytes per pixel
154 * @param y y position in original image
155 */
156 static void scaleTextureLine(ByteBuffer* pixelByteBuffer, ByteBuffer* pixelByteBufferScaled, int width, int textureWidth, int bytesPerPixel, int y);
157
158 //
159 STATIC_DLL_IMPEXT static vector<string> extensions;
160
161 // maybe have a read write lock here for texture cache, but currently I have no multithreaded access to it
162 STATIC_DLL_IMPEXT static map<string, Texture*>* textureCache;
164};
PNGInputStream(const vector< uint8_t > *data)
Public constructor.
void readBytes(int8_t *outBytes, int32_t outBytesToRead)
Read bytes.
static void removeFromCache(Texture *texture)
Remove texture from cache.
static Texture * readPNG(const string &textureId, const vector< uint8_t > &data, bool powerOfTwo=true, const string &idPrefix=string())
Read PNG.
static void scaleTextureLine(ByteBuffer *pixelByteBuffer, ByteBuffer *pixelByteBufferScaled, int width, int textureWidth, int bytesPerPixel, int y)
Scales a texture line.
static Texture * smooth(Texture *texture)
Smooth texture.
static Texture * scale(Texture *texture, int width, int height)
Scale texture.
static void readPNGDataFromMemory(png_structp png_ptr, png_bytep outBytes, png_size_t outBytesToRead)
Read PNG data from memory.
static STATIC_DLL_IMPEXT Mutex * textureCacheMutex
static const vector< string > & getTextureExtensions()
static Texture * read(const string &pathName, const string &fileName, bool useCache=true, bool powerOfTwo=true, const string &idPrefix=string())
Reads a texture.
static STATIC_DLL_IMPEXT map< string, Texture * > * textureCache
static Texture * read2(const string &texturePathName, const string &textureFileName, const string &transparencyTexturePathName, const string &transparencyTextureFileName, bool useCache=true, bool powerOfTwo=true, const string &idPrefix=string())
Reads a texture with additional transparency texture.
static Texture * rotate(Texture *texture, float rotation)
Rotate texture around center.
static STATIC_DLL_IMPEXT vector< string > extensions
Mutex implementation.
Definition: Mutex.h:27
Byte buffer class.
Definition: ByteBuffer.h:24
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11