Process only animated tiles
Trying to make copies of static tiles and animating them has bad results on some GLES devices
This commit is contained in:
parent
bcdd187f69
commit
0f4de4b5f7
|
@ -6,6 +6,14 @@ uniform vec2 translation;
|
|||
|
||||
uniform float aniIndex;
|
||||
|
||||
uniform float t1Ani;
|
||||
uniform float t2Ani;
|
||||
uniform float t3Ani;
|
||||
uniform float t4Ani;
|
||||
uniform float t5Ani;
|
||||
uniform float t6Ani;
|
||||
uniform float t7Ani;
|
||||
|
||||
attribute vec2 position;
|
||||
attribute vec2 texCoord;
|
||||
|
||||
|
@ -20,6 +28,16 @@ void main()
|
|||
vec2 tex = texCoord;
|
||||
|
||||
lowp float pred = float(tex.x <= atAreaW && tex.y <= atAreaH);
|
||||
|
||||
highp int tileIndex = int(tex.y / 128.0) + 1;
|
||||
|
||||
if ((tileIndex == 1 && t1Ani >= 1.0) ||
|
||||
(tileIndex == 2 && t2Ani >= 1.0) ||
|
||||
(tileIndex == 3 && t3Ani >= 1.0) ||
|
||||
(tileIndex == 4 && t4Ani >= 1.0) ||
|
||||
(tileIndex == 5 && t5Ani >= 1.0) ||
|
||||
(tileIndex == 6 && t6Ani >= 1.0) ||
|
||||
(tileIndex == 7 && t7Ani >= 1.0))
|
||||
tex.x += aniIndex * atAniOffset * pred;
|
||||
|
||||
gl_Position = projMat * vec4(position + translation, 0, 1);
|
||||
|
|
|
@ -520,6 +520,13 @@ TilemapShader::TilemapShader()
|
|||
ShaderBase::init();
|
||||
|
||||
GET_U(aniIndex);
|
||||
GET_U(t1Ani);
|
||||
GET_U(t2Ani);
|
||||
GET_U(t3Ani);
|
||||
GET_U(t4Ani);
|
||||
GET_U(t5Ani);
|
||||
GET_U(t6Ani);
|
||||
GET_U(t7Ani);
|
||||
}
|
||||
|
||||
void TilemapShader::setAniIndex(int value)
|
||||
|
@ -527,6 +534,16 @@ void TilemapShader::setAniIndex(int value)
|
|||
gl.Uniform1f(u_aniIndex, value);
|
||||
}
|
||||
|
||||
void TilemapShader::setAniIndices(int value[])
|
||||
{
|
||||
gl.Uniform1f(u_t1Ani, value[0]);
|
||||
gl.Uniform1f(u_t2Ani, value[1]);
|
||||
gl.Uniform1f(u_t3Ani, value[2]);
|
||||
gl.Uniform1f(u_t4Ani, value[3]);
|
||||
gl.Uniform1f(u_t5Ani, value[4]);
|
||||
gl.Uniform1f(u_t6Ani, value[5]);
|
||||
gl.Uniform1f(u_t7Ani, value[6]);
|
||||
}
|
||||
|
||||
|
||||
FlashMapShader::FlashMapShader()
|
||||
|
|
|
@ -219,9 +219,17 @@ public:
|
|||
TilemapShader();
|
||||
|
||||
void setAniIndex(int value);
|
||||
void setAniIndices(int value[]);
|
||||
|
||||
private:
|
||||
GLint u_aniIndex;
|
||||
GLint u_t1Ani;
|
||||
GLint u_t2Ani;
|
||||
GLint u_t3Ani;
|
||||
GLint u_t4Ani;
|
||||
GLint u_t5Ani;
|
||||
GLint u_t6Ani;
|
||||
GLint u_t7Ani;
|
||||
};
|
||||
|
||||
class FlashMapShader : public ShaderBase
|
||||
|
|
|
@ -281,6 +281,7 @@ struct TilemapPrivate
|
|||
/* Animation state */
|
||||
uint8_t frameIdx;
|
||||
uint8_t aniIdx;
|
||||
int aniIndices[7];
|
||||
} tiles;
|
||||
|
||||
FlashMap flashMap;
|
||||
|
@ -432,8 +433,12 @@ struct TilemapPrivate
|
|||
|
||||
usableATs.push_back(i);
|
||||
|
||||
if (autotiles[i]->width() > autotileW)
|
||||
if (autotiles[i]->width() > autotileW) {
|
||||
animatedATs.push_back(i);
|
||||
tiles.aniIndices[i] = 2;
|
||||
} else {
|
||||
tiles.aniIndices[i] = 0;
|
||||
}
|
||||
}
|
||||
|
||||
tiles.animated = !animatedATs.empty();
|
||||
|
@ -514,19 +519,8 @@ struct TilemapPrivate
|
|||
|
||||
GLMeta::blitSource(autotile->getGLTypes());
|
||||
|
||||
if (blitW <= autotileW && tiles.animated)
|
||||
{
|
||||
/* Static autotile */
|
||||
for (int j = 0; j < 4; ++j)
|
||||
GLMeta::blitRectangle(IntRect(0, 0, blitW, blitH),
|
||||
Vec2i(autotileW*j, atInd*autotileH));
|
||||
}
|
||||
else
|
||||
{
|
||||
/* Animated autotile */
|
||||
GLMeta::blitRectangle(IntRect(0, 0, blitW, blitH),
|
||||
Vec2i(0, atInd*autotileH));
|
||||
}
|
||||
GLMeta::blitRectangle(IntRect(0, 0, blitW, blitH),
|
||||
Vec2i(0, atInd*autotileH));
|
||||
}
|
||||
|
||||
GLMeta::blitEnd();
|
||||
|
@ -771,6 +765,7 @@ struct TilemapPrivate
|
|||
TilemapShader &tilemapShader = shState->shaders().tilemap;
|
||||
tilemapShader.bind();
|
||||
tilemapShader.setAniIndex(tiles.frameIdx);
|
||||
tilemapShader.setAniIndices(tiles.aniIndices);
|
||||
shaderVar = &tilemapShader;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue