diff --git a/drape/drape_tests/drape_tests.pro b/drape/drape_tests/drape_tests.pro index d170885e4a..cc8d95a04c 100644 --- a/drape/drape_tests/drape_tests.pro +++ b/drape/drape_tests/drape_tests.pro @@ -40,6 +40,7 @@ SOURCES += \ font_texture_tests.cpp \ bingind_info_tests.cpp \ stipple_pen_tests.cpp \ + texture_of_colors_tests.cpp \ HEADERS += \ glmock_functions.hpp \ diff --git a/drape/drape_tests/texture_of_colors_tests.cpp b/drape/drape_tests/texture_of_colors_tests.cpp index 7d4c1315d0..5d815cbe2b 100644 --- a/drape/drape_tests/texture_of_colors_tests.cpp +++ b/drape/drape_tests/texture_of_colors_tests.cpp @@ -55,7 +55,7 @@ UNIT_TEST(ColorPalleteMappingTests) { ColorPalette cp(m2::PointU(32, 16)); - dp::ColorKey key; + dp::ColorKey key(0); key.SetColor(0); ColorResourceInfo const * info1 = cp.MapResource(key); key.SetColor(1); @@ -89,7 +89,7 @@ UNIT_TEST(ColorPalleteUploadingTests1) ColorPalette cp(m2::PointU(width, height)); cp.UploadResources(MakeStackRefPointer(&texture)); - dp::ColorKey key; + dp::ColorKey key(0); key.SetColor(0); cp.MapResource(key); key.SetColor(1); @@ -158,7 +158,7 @@ UNIT_TEST(ColorPalleteUploadingTests2) InitOpenGLTextures(width, height); SimpleTexture texture; - dp::ColorKey key; + dp::ColorKey key(0); texture.Create(width, height, dp::RGBA8); ColorPalette cp(m2::PointU(width, height)); diff --git a/drape/dynamic_texture.hpp b/drape/dynamic_texture.hpp index c043b3580d..60bd4ad6b2 100644 --- a/drape/dynamic_texture.hpp +++ b/drape/dynamic_texture.hpp @@ -26,11 +26,11 @@ public: virtual void UpdateState() { - this->Bind(); + Bind(); m_indexer.UploadResources(MakeStackRefPointer(this)); } -public: +private: mutable TIndexer m_indexer; }; diff --git a/drape/shaders/font_fragment_shader.fsh b/drape/shaders/font_fragment_shader.fsh index 8b45f87b2b..2213132d7f 100755 --- a/drape/shaders/font_fragment_shader.fsh +++ b/drape/shaders/font_fragment_shader.fsh @@ -11,13 +11,8 @@ const lowp float OUTLINE_MAX_VALUE1 = 0.95; const lowp float GLYPH_MIN_VALUE = 0.45; const lowp float GLYPH_MAX_VALUE = 0.6; -lowp vec4 colorize(lowp vec4 baseColor) +lowp vec4 colorize(lowp vec4 base, lowp vec4 outline, lowp float alpha) { - int textureIndex = int(v_index); - lowp vec4 outline = getTexel(textureIndex, v_colors.zw); - lowp vec4 base = getTexel(textureIndex, v_colors.xy); - lowp float alpha = 1.0 - baseColor.a; - if (alpha > OUTLINE_MAX_VALUE1) return vec4(outline.rgb, 0); if (alpha > OUTLINE_MAX_VALUE0) @@ -37,12 +32,8 @@ lowp vec4 colorize(lowp vec4 baseColor) return base; } -lowp vec4 without_outline(lowp vec4 baseColor) +lowp vec4 without_outline(lowp vec4 base, lowp float alpha) { - int textureIndex = int(v_index); - lowp vec4 base = getTexel(textureIndex, v_colors.xy); - lowp float alpha = 1.0 - baseColor.a; - if (alpha > GLYPH_MIN_VALUE) { lowp float oFactor = smoothstep(GLYPH_MIN_VALUE, GLYPH_MAX_VALUE, alpha ); @@ -53,14 +44,15 @@ lowp vec4 without_outline(lowp vec4 baseColor) void main (void) { - int textureIndex = int(v_texcoord.z / 2.0); - int textureIndex2 = int(v_index); - lowp vec4 base = getTexel(textureIndex2, v_colors.xy); - mediump float alpha = getTexel(textureIndex, v_texcoord.xy).a; + int shapeIndex = int(v_texcoord.z / 2.0); + int colorIndex = int(v_index); + lowp vec4 base = getTexel(colorIndex, v_colors.xy); + lowp vec4 outline = getTexel(colorIndex, v_colors.zw); + mediump float alpha = getTexel(shapeIndex, v_texcoord.xy).a; lowp float needOutline = (fract(v_texcoord.z / 2.0)) * 2.0; if (needOutline > 0.5) - gl_FragColor = colorize(vec4(base.rgb, base.a*alpha)); + gl_FragColor = colorize(base, outline, 1.0 - base.a*alpha); else - gl_FragColor = without_outline(vec4(base.rgb, base.a*alpha)); + gl_FragColor = without_outline(base, 1.0 - base.a*alpha); } diff --git a/drape/shaders/line_fragment_shader.fsh b/drape/shaders/line_fragment_shader.fsh index 21e4926fab..46385c8bea 100644 --- a/drape/shaders/line_fragment_shader.fsh +++ b/drape/shaders/line_fragment_shader.fsh @@ -13,12 +13,9 @@ varying lowp float v_index; ~getTexel~ -void sphere_join(MAXPREC float gip2) +void sphere_join(MAXPREC float gip2, lowp vec4 baseColor, lowp vec4 outlineColor) { MAXPREC float r = v_radius.y; - int textureIndex = int(v_index); - lowp vec4 baseColor = getTexel(textureIndex, v_colors.xy); - lowp vec4 outlineColor = getTexel(textureIndex, v_colors.zw); gl_FragColor = baseColor; if (gip2 > v_radius.w * v_radius.w) { @@ -101,7 +98,7 @@ void main(void) if(gip2 > v_radius.y * v_radius.y) discard; else - sphere_join(gip2); + sphere_join(gip2, baseColor, outlineColor); } else if (v_dx <= -1.0) { @@ -110,7 +107,7 @@ void main(void) if(gip2 > v_radius.y * v_radius.y) discard; else - sphere_join(gip2); + sphere_join(gip2, baseColor, outlineColor); } } } diff --git a/drape/shaders/solid_color_fragment_shader.fsh b/drape/shaders/solid_color_fragment_shader.fsh index 687f12d7e1..31935ad7ef 100644 --- a/drape/shaders/solid_color_fragment_shader.fsh +++ b/drape/shaders/solid_color_fragment_shader.fsh @@ -4,6 +4,5 @@ varying mediump vec3 v_color_index; void main(void) { - int textureIndex = int(v_color_index.z); - gl_FragColor = getTexel(textureIndex, v_color_index.xy); + gl_FragColor = getTexel(int(v_color_index.z), v_color_index.xy); } diff --git a/drape/shaders/texturing_fragment_shader.fsh b/drape/shaders/texturing_fragment_shader.fsh index a2ca0d5f5c..f21f575841 100644 --- a/drape/shaders/texturing_fragment_shader.fsh +++ b/drape/shaders/texturing_fragment_shader.fsh @@ -10,6 +10,5 @@ varying MAXPREC float v_textureIndex; void main(void) { - int textureIndex = int(v_textureIndex); - gl_FragColor = getTexel(textureIndex, v_texCoords); + gl_FragColor = getTexel(int(v_textureIndex), v_texCoords); } diff --git a/drape/texture_of_colors.cpp b/drape/texture_of_colors.cpp index 61aa2e6576..6e5da04ab5 100644 --- a/drape/texture_of_colors.cpp +++ b/drape/texture_of_colors.cpp @@ -7,26 +7,31 @@ ColorPalette::ColorPalette(m2::PointU const & canvasSize) : m_textureSize(canvasSize), m_curY(0), m_curX(0) +{} + +ColorPalette::~ColorPalette() { - m_info = new ColorResourceInfo(m2::RectF(0, 0, 1, 1)); + TPalette::iterator it = m_palette.begin(); + for (; it != m_palette.end(); ++it) + it->second.Destroy(); } ColorResourceInfo const * ColorPalette::MapResource(const ColorKey &key) { - TPalette::iterator itm = m_palette.find(key.GetColor()); + uint32_t color = key.GetColor(); + TPalette::iterator itm = m_palette.find(color); if (itm == m_palette.end()) { - m_pendingNodes.push_back(key.GetColor()); - TInserted example = m_palette.insert(make_pair(key.GetColor(), m_palette.size())); - itm = example.first; + m_pendingNodes.push_back(color); + int const size = m_palette.size(); + float const sizeX = static_cast(m_textureSize.x); + float const sizeY = static_cast(m_textureSize.y); + float const x = (size % m_textureSize.x + 0.5f) / sizeX; + float const y = (size / m_textureSize.x + 0.5f) / sizeY; + TResourcePtr m_ptr(new ColorResourceInfo(m2::RectF(x, y, x, y))); + itm = m_palette.insert(make_pair(color, m_ptr)).first; } - float const sizeX = static_cast(m_textureSize.x); - float x = (itm->second % m_textureSize.x) / sizeX; - float y = (itm->second / m_textureSize.x) / sizeX; - float deltaX = 1.0f / sizeX; - float deltaY = 1.0f / sizeX; - *m_info = ColorResourceInfo(m2::RectF(x, y, x + deltaX, y + deltaY)); - return m_info; + return itm->second.GetRaw(); } void ColorPalette::UploadResources(RefPointer texture) @@ -34,58 +39,36 @@ void ColorPalette::UploadResources(RefPointer texture) ASSERT(texture->GetFormat() == dp::RGBA8, ()); if (m_pendingNodes.empty()) return; - uint32_t nodeCnt = m_pendingNodes.size(); - uint32_t offset1 = m_textureSize.x - m_curX; - if (offset1 >= nodeCnt) + uint32_t const nodeCnt = m_pendingNodes.size(); + uint32_t const offset = m_textureSize.x - m_curX; + if (offset >= nodeCnt) { texture->UploadData(m_curX, m_curY, nodeCnt, 1, dp::RGBA8, MakeStackRefPointer(&m_pendingNodes[0])); - Move(nodeCnt); + m_curX += nodeCnt; + if (offset == nodeCnt) + { + m_curX = 0; + m_curY++; + } } else { - texture->UploadData(m_curX, m_curY, offset1, 1, dp::RGBA8, MakeStackRefPointer(&m_pendingNodes[0])); - m_curY += 1; + texture->UploadData(m_curX, m_curY, offset, 1, dp::RGBA8, MakeStackRefPointer(&m_pendingNodes[0])); + m_curY++; m_curX = 0; - uint32_t ySteps = (nodeCnt - offset1) / m_textureSize.x; - uint32_t xSteps = (nodeCnt - offset1) % m_textureSize.x; - texture->UploadData(0, m_curY, m_textureSize.x, ySteps, dp::RGBA8, MakeStackRefPointer(&m_pendingNodes[offset1])); + uint32_t const remnant = nodeCnt - offset; + uint32_t const ySteps = remnant / m_textureSize.x; + uint32_t const xSteps = remnant % m_textureSize.x; + if (ySteps) + texture->UploadData(0, m_curY, m_textureSize.x, ySteps, dp::RGBA8, MakeStackRefPointer(&m_pendingNodes[offset])); m_curY += ySteps; if (!xSteps) return; - texture->UploadData(m_curX, m_curY, xSteps, 1, dp::RGBA8, MakeStackRefPointer(&m_pendingNodes[offset1 + ySteps * m_textureSize.x])); + texture->UploadData(m_curX, m_curY, xSteps, 1, dp::RGBA8, MakeStackRefPointer(&m_pendingNodes[offset + ySteps * m_textureSize.x])); m_curX += xSteps; } m_pendingNodes.clear(); } -void ColorPalette::AddData(void const * data, uint32_t size) -{ - ASSERT(size % 4 == 0, ()); - uint32_t const cnt = size / 4; - uint32_t const * idata = (uint32_t *)data; - for (int i = 0; i < cnt; i++) - { - TInserted example = m_palette.insert(make_pair(idata[i], m_palette.size())); - if (example.second) - m_pendingNodes.push_back(idata[i]); - } -} - -void ColorPalette::Move(uint32_t step) -{ - uint32_t initial = min(step, m_textureSize.x - m_curX); - m_curX += initial; - if (m_curX == m_textureSize.x) - { - m_curX = 0; - m_curY += 1; - } - step -= initial; - if (step <= 0) - return; - m_curY += step / m_textureSize.x; - m_curX += step % m_textureSize.x; -} - } diff --git a/drape/texture_of_colors.hpp b/drape/texture_of_colors.hpp index 0c8063d43d..d31d5a4269 100644 --- a/drape/texture_of_colors.hpp +++ b/drape/texture_of_colors.hpp @@ -10,8 +10,11 @@ namespace dp class ColorKey : public Texture::Key { public: + ColorKey(uint32_t color) : Texture::Key(), m_color(color) {} virtual Texture::ResourceType GetType() const { return Texture::Color; } uint32_t GetColor() const { return m_color; } + void SetColor(uint32_t color) { m_color = color; } +private: uint32_t m_color; }; @@ -22,30 +25,24 @@ public: virtual Texture::ResourceType GetType() const { return Texture::Color; } }; -class TextureOfColors -{ -public: - TextureOfColors(); -}; - class ColorPalette { public: ColorPalette(m2::PointU const & canvasSize); - ~ColorPalette() { delete m_info; } + ~ColorPalette(); ColorResourceInfo const * MapResource(ColorKey const & key); void UploadResources(RefPointer texture); - void AddData(void const * data, uint32_t size); -public: - void Move(uint32_t step); - typedef map TPalette; +private: + typedef MasterPointer TResourcePtr; + typedef map TPalette; typedef pair TInserted; + + void Move(uint32_t step); TPalette m_palette; vector m_pendingNodes; m2::PointU m_textureSize; uint32_t m_curY; uint32_t m_curX; - ColorResourceInfo * m_info; }; } diff --git a/drape_frontend/area_shape.cpp b/drape_frontend/area_shape.cpp index 35a750659c..e2c321f76f 100644 --- a/drape_frontend/area_shape.cpp +++ b/drape_frontend/area_shape.cpp @@ -35,15 +35,13 @@ void AreaShape::Draw(dp::RefPointer batcher, dp::RefPointerGetColorRegion(key, region); - m2::RectF const & rect1 = region.GetTexRect(); - m2::PointF coord1 = (rect1.RightTop() + rect1.LeftBottom()) * 0.5f; + m2::RectF const & rect = region.GetTexRect(); float texIndex = static_cast(region.GetTextureNode().m_textureOffset); - vector colors(m_vertexes.size(), vec3(coord1, texIndex)); + vector colors(m_vertexes.size(), vec3(rect.RightTop(), texIndex)); state.SetTextureSet(region.GetTextureNode().m_textureSet); diff --git a/drape_frontend/circle_shape.cpp b/drape_frontend/circle_shape.cpp index 128be770b9..06aa11baf5 100644 --- a/drape_frontend/circle_shape.cpp +++ b/drape_frontend/circle_shape.cpp @@ -53,15 +53,13 @@ void CircleShape::Draw(dp::RefPointer batcher, dp::RefPointerGetColorRegion(key, region); - m2::RectF const & rect1 = region.GetTexRect(); - m2::PointF coord1 = (rect1.RightTop() + rect1.LeftBottom()) * 0.5f; + m2::RectF const & rect = region.GetTexRect(); float texIndex = static_cast(region.GetTextureNode().m_textureOffset); - vec3 color(coord1, texIndex); + vec3 color(rect.RightTop(), texIndex); /// x, y, z floats on geompoint /// normal x, y on triangle forming normals diff --git a/drape_frontend/line_shape.cpp b/drape_frontend/line_shape.cpp index b20f841b7c..4f58c2be46 100644 --- a/drape_frontend/line_shape.cpp +++ b/drape_frontend/line_shape.cpp @@ -175,20 +175,16 @@ void LineShape::Draw(dp::RefPointer batcher, dp::RefPointerGetColorRegion(key, region); - m2::RectF const & rect1 = region.GetTexRect(); - m2::PointF coord1 = (rect1.RightTop() + rect1.LeftBottom()) * 0.5f; - key.m_color = (255 << 24) | (127 << 16) | (127 << 8) | 127; + m2::RectF const & rect = region.GetTexRect(); + key.SetColor(dp::Color(127, 127, 127, 255).GetColorInInt()); textures->GetColorRegion(key, region); - m2::RectF const & rect2 = region.GetTexRect(); - m2::PointF coord2 = (rect2.RightTop() + rect2.LeftBottom()) * 0.5f; + m2::RectF const & outlineRect = region.GetTexRect(); float texIndex = static_cast(region.GetTextureNode().m_textureOffset); - vector colors(numVert, vec4(coord1, coord2)); + vector colors(numVert, vec4(rect.RightTop(), outlineRect.RightTop())); vector index(numVert, texIndex); /// TODO this color now not using. ///We need merge line styles to draw line outline and line by ont pass diff --git a/drape_frontend/text_layout.cpp b/drape_frontend/text_layout.cpp index 3d283d9e44..4c8c88de12 100644 --- a/drape_frontend/text_layout.cpp +++ b/drape_frontend/text_layout.cpp @@ -17,17 +17,14 @@ void FillColor(vector & colors, dp::Color const & base, dp::Color const & outline, dp::RefPointer textures) { - dp::ColorKey key; - key.m_color = (base.m_alfa << 24) | (base.m_blue << 16) | (base.m_green << 8) | base.m_red; + dp::ColorKey key(base.GetColorInInt()); textures->GetColorRegion(key, region); - m2::RectF const & rect1 = region.GetTexRect(); - m2::PointF coord1 = (rect1.RightTop() + rect1.LeftBottom()) * 0.5f; - key.m_color = (outline.m_alfa << 24) | (outline.m_blue << 16) | (outline.m_green << 8) | outline.m_red; + m2::RectF const & rect = region.GetTexRect(); + key.SetColor(outline.GetColorInInt()); textures->GetColorRegion(key, region); - m2::RectF const & rect2 = region.GetTexRect(); - m2::PointF coord2 = (rect2.RightTop() + rect2.LeftBottom()) * 0.5f; + m2::RectF const & outlineRect = region.GetTexRect(); - vec4 clrs(coord1, coord2); + vec4 clrs(rect.RightTop(), outlineRect.RightTop()); Quad4 f(clrs, clrs, clrs, clrs); fill(colors.begin(), colors.end(), f); } diff --git a/drape_head/testing_engine.cpp b/drape_head/testing_engine.cpp index 656096f21a..173227f607 100644 --- a/drape_head/testing_engine.cpp +++ b/drape_head/testing_engine.cpp @@ -7,7 +7,6 @@ #include "../drape/shader_def.hpp" #include "../drape/overlay_tree.hpp" #include "../drape/stipple_pen_resource.hpp" -#include "../drape/dynamic_texture.hpp" #include "../drape_frontend/visual_params.hpp" #include "../drape_frontend/line_shape.hpp" @@ -131,39 +130,12 @@ public: void Draw(dp::RefPointer batcher, dp::RefPointer textures) const { const int cnt = 6000; - uint32_t colors[50000]; - colors[0] = (255<<24) | (0<<16) | (0<<8) | 255; - colors[1] = (255<<24) | (0<<16) | (255<<8) | 0; - colors[2] = (255<<24) | (0<<16) | (0<<8) | 255; - colors[3] = (255<<24) | (0<<16) | (255<<8) | 255; - colors[4] = (255<<24) | (255<<16) | (0<<8) | 255; - colors[5] = (255<<24) | (255<<16) | (255<<8) | 0; - - colors[6] = (255<<24) | (255<<16) | (255<<8) | 255; - - colors[7] = (255<<24) | (0<<16) | (0<<8) | 0; - - dp::ColorKey key; - key.m_color = (255<<24) | (1<<16) | (255<<8) | 0; + dp::ColorKey key(0); dp::TextureSetHolder::ColorRegion region; - textures->GetColorRegion(key, region); - key.m_color = (255<<24) | (0<<16) | (255<<8) | 255; - textures->GetColorRegion(key, region); - key.m_color = colors[0]; - textures->GetColorRegion(key, region); - key.m_color = colors[1]; - textures->GetColorRegion(key, region); - key.m_color = colors[2]; - textures->GetColorRegion(key, region); - key.m_color = colors[3]; - textures->GetColorRegion(key, region); - key.m_color = colors[4]; - textures->GetColorRegion(key, region); - for (int i = 8; i < cnt; ++i) + for (int i = 0; i < cnt; ++i) { - colors[i] = (255<<24) | (rand()%256 << 16) | (rand()%256 << 8) | (rand()%256); - key.m_color = colors[i]; + key.SetColor(dp::Color(rand()%256, rand()%256, rand()%256, 255).GetColorInInt()); textures->GetColorRegion(key, region); } @@ -184,23 +156,22 @@ public: m2::PointF(halfSize, halfSize), m2::PointF(halfSize, -halfSize) }; - m2::PointF coord = (rect.RightTop() + rect.LeftBottom()) * 0.5f; - -// glsl_types::vec4 texCoord[4] = -// { -// glsl_types::vec4(m2::PointF(0.0f, 1.0f), texIndex, 0), -// glsl_types::vec4(m2::PointF(0.0f, 0.0f), texIndex, 0), -// glsl_types::vec4(m2::PointF(1.0f, 1.0f), texIndex, 0), -// glsl_types::vec4(m2::PointF(1.0f, 0.0f), texIndex, 0) -// }; - - glsl_types::vec4 texCoord[4] = + bool drawEntireTexture = true; + glsl_types::vec4 texCoord[4]; + if (drawEntireTexture) { - glsl_types::vec4(coord, texIndex, 0), - glsl_types::vec4(coord, texIndex, 0), - glsl_types::vec4(coord, texIndex, 0), - glsl_types::vec4(coord, texIndex, 0) - }; + texCoord[0] = glsl_types::vec4(m2::PointF(0.0f, 1.0f), texIndex, 0); + texCoord[1] = glsl_types::vec4(m2::PointF(0.0f, 0.0f), texIndex, 0); + texCoord[2] = glsl_types::vec4(m2::PointF(1.0f, 1.0f), texIndex, 0); + texCoord[3] = glsl_types::vec4(m2::PointF(1.0f, 0.0f), texIndex, 0); + } + else + { + texCoord[0] = glsl_types::vec4(rect.RightTop(), texIndex, 0); + texCoord[1] = glsl_types::vec4(rect.RightTop(), texIndex, 0); + texCoord[2] = glsl_types::vec4(rect.RightTop(), texIndex, 0); + texCoord[3] = glsl_types::vec4(rect.RightTop(), texIndex, 0); + } dp::AttributeProvider provider(3, 4); { @@ -303,15 +274,13 @@ public: formingVectors[2] = m2::PointF( m_radius, m_radius); formingVectors[3] = m2::PointF( m_radius, -m_radius); - dp::ColorKey key; - key.m_color = dp::Color(150, 130, 120, 255).GetColorInInt(); + dp::ColorKey key(dp::Color(150, 130, 120, 255).GetColorInInt()); dp::TextureSetHolder::ColorRegion region; textures->GetColorRegion(key, region); - m2::RectF const & rect1 = region.GetTexRect(); - m2::PointF coord1 = (rect1.RightTop() + rect1.LeftBottom()) * 0.5f; + m2::RectF const & rect = region.GetTexRect(); float texIndex = static_cast(region.GetTextureNode().m_textureOffset); - vector colors(4, vec3(coord1, texIndex)); + vector colors(4, vec3(rect.RightTop(), texIndex)); dp::AttributeProvider provider(3, 4); {