TDME2 1.9.121
Renderer.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
7#include <tdme/math/Math.h>
10
11using std::string;
12using std::to_string;
13
15
20
21Renderer::Renderer()
22{
24 ID_NONE = -1;
27 CULLFACE_FRONT = -1;
28 CULLFACE_BACK = -1;
32 PROGRAM_LINES = 3;
42 FRONTFACE_CW = -1;
43 FRONTFACE_CCW = -1;
44 LIGHTING_NONE = 0;
52 LIGHTING_PBR = 2;
56 viewPortWidth = 0;
63 effectPass = 0;
64}
65
67}
68
69Texture* Renderer::generateMipMap(const string& id, Texture* texture, int32_t level, int32_t atlasBorderSize) {
70 auto generatedTextureWidth = texture->getTextureWidth() / 2;
71 auto generatedTextureHeight = texture->getTextureHeight() / 2;
72 auto generatedTextureByteBuffer = ByteBuffer::allocate(generatedTextureWidth * generatedTextureHeight * 4);
73 auto atlasTextureSize = texture->getWidth() / texture->getAtlasSize();
74 auto materialTextureWidth = texture->getTextureWidth() / texture->getAtlasSize();
75 auto materialTextureHeight = texture->getTextureHeight() / texture->getAtlasSize();
76 auto materialTextureBytesPerPixel = texture->getDepth() / 8;
77 for (auto y = 0; y < generatedTextureHeight; y++)
78 for (auto x = 0; x < generatedTextureWidth; x++) {
79 auto atlasTextureIdxX = (x * 2) / atlasTextureSize;
80 auto atlasTextureIdxY = (y * 2) / atlasTextureSize;
81 auto materialTextureX = (x * 2) - (atlasTextureIdxX * atlasTextureSize);
82 auto materialTextureY = (y * 2) - (atlasTextureIdxY * atlasTextureSize);
83 auto materialTextureXFloat = static_cast<float>(materialTextureX) / static_cast<float>(atlasTextureSize);
84 auto materialTextureYFloat = static_cast<float>(materialTextureY) / static_cast<float>(atlasTextureSize);
85 {
86 auto materialSamples = 0;
87 auto materialTextureXInt = static_cast<int>(materialTextureXFloat * static_cast<float>(materialTextureWidth));
88 auto materialTextureYInt = static_cast<int>(materialTextureYFloat * static_cast<float>(materialTextureHeight));
89 auto materialPixelR = 0;
90 auto materialPixelG = 0;
91 auto materialPixelB = 0;
92 auto materialPixelA = 0;
93 for (auto y = -1; y <= 1; y++)
94 for (auto x = -1; x <= 1; x++)
95 if ((Math::abs(x) == 1 && Math::abs(y) == 1) == false &&
96 materialTextureXInt + x >= 0 && materialTextureXInt + x < materialTextureWidth &&
97 materialTextureYInt + y >= 0 && materialTextureYInt + y < materialTextureHeight) {
98 auto materialTexturePixelOffset =
99 (atlasTextureIdxY * materialTextureHeight + materialTextureYInt + y) * texture->getTextureWidth() * materialTextureBytesPerPixel +
100 (atlasTextureIdxX * materialTextureWidth + materialTextureXInt + x) * materialTextureBytesPerPixel;
101 materialPixelR+= texture->getTextureData()->get(materialTexturePixelOffset + 0);
102 materialPixelG+= texture->getTextureData()->get(materialTexturePixelOffset + 1);
103 materialPixelB+= texture->getTextureData()->get(materialTexturePixelOffset + 2);
104 materialPixelA+= materialTextureBytesPerPixel == 4?texture->getTextureData()->get(materialTexturePixelOffset + 3):0xff;
105 materialSamples++;
106 }
107 generatedTextureByteBuffer->put(materialPixelR / materialSamples);
108 generatedTextureByteBuffer->put(materialPixelG / materialSamples);
109 generatedTextureByteBuffer->put(materialPixelB / materialSamples);
110 generatedTextureByteBuffer->put(materialPixelA / materialSamples);
111 }
112 }
113 auto generatedTexture = new Texture(
114 id + ".mipmap." + to_string(level),
115 32,
116 generatedTextureWidth,
117 generatedTextureHeight,
118 generatedTextureWidth,
119 generatedTextureHeight,
120 generatedTextureByteBuffer
121 );
122 generatedTexture->setAtlasSize(texture->getAtlasSize());
123 generatedTexture->acquireReference();
124 return generatedTexture;
125}
Texture * generateMipMap(const string &id, Texture *texture, int32_t level, int32_t atlasBorderSize)
Generate mip map for atlas texture currently.
Definition: Renderer.cpp:69
Standard math functions.
Definition: Math.h:21
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Matrix4x4 & identity()
Setup identity matrix.
Definition: Matrix4x4.h:326
uint8_t get(int32_t position)
Definition: Buffer.h:102
Byte buffer class.
Definition: ByteBuffer.h:24