From c92a5801305a2a2f9e3d3132c28e190133c4eddf Mon Sep 17 00:00:00 2001 From: rachytski Date: Thu, 6 Dec 2012 18:11:46 +0300 Subject: [PATCH] moved files. --- graphics/{circle_info.cpp => circle.cpp} | 0 graphics/{circle_info.hpp => circle.hpp} | 0 graphics/circle_style.cpp | 154 -------------- graphics/{glyph_style.cpp => glyph.cpp} | 0 graphics/graphics.pro | 16 +- graphics/{image_info.cpp => image.cpp} | 0 graphics/{image_info.hpp => image.hpp} | 0 graphics/line_style.cpp | 190 ------------------ graphics/{pen_info.cpp => pen.cpp} | 0 graphics/{pen_info.hpp => pen.hpp} | 0 graphics/{resource_style.cpp => resource.cpp} | 0 graphics/{resource_style.hpp => resource.hpp} | 0 12 files changed, 8 insertions(+), 352 deletions(-) rename graphics/{circle_info.cpp => circle.cpp} (100%) rename graphics/{circle_info.hpp => circle.hpp} (100%) delete mode 100644 graphics/circle_style.cpp rename graphics/{glyph_style.cpp => glyph.cpp} (100%) rename graphics/{image_info.cpp => image.cpp} (100%) rename graphics/{image_info.hpp => image.hpp} (100%) delete mode 100644 graphics/line_style.cpp rename graphics/{pen_info.cpp => pen.cpp} (100%) rename graphics/{pen_info.hpp => pen.hpp} (100%) rename graphics/{resource_style.cpp => resource.cpp} (100%) rename graphics/{resource_style.hpp => resource.hpp} (100%) diff --git a/graphics/circle_info.cpp b/graphics/circle.cpp similarity index 100% rename from graphics/circle_info.cpp rename to graphics/circle.cpp diff --git a/graphics/circle_info.hpp b/graphics/circle.hpp similarity index 100% rename from graphics/circle_info.hpp rename to graphics/circle.hpp diff --git a/graphics/circle_style.cpp b/graphics/circle_style.cpp deleted file mode 100644 index f9d059a855..0000000000 --- a/graphics/circle_style.cpp +++ /dev/null @@ -1,154 +0,0 @@ -#include "resource_style.hpp" -#include "agg_traits.hpp" - -#include "opengl/data_traits.hpp" - -namespace graphics -{ - CircleStyle::CircleStyle(m2::RectU const & texRect, int pipelineID, graphics::CircleInfo const & ci) - : ResourceStyle(ECircleStyle, texRect, pipelineID), - m_ci(ci) - {} - - void CircleStyle::render(void * dst) - { - graphics::CircleInfo & circleInfo = m_ci; - m2::RectU const & rect = m_texRect; - - DATA_TRAITS::view_t v = gil::interleaved_view( - rect.SizeX(), rect.SizeY(), - (DATA_TRAITS::pixel_t*)dst, - sizeof(DATA_TRAITS::pixel_t) * rect.SizeX() - ); - - agg::rgba8 aggColor(circleInfo.m_color.r, - circleInfo.m_color.g, - circleInfo.m_color.b, - circleInfo.m_color.a); - - agg::rgba8 aggOutlineColor(circleInfo.m_outlineColor.r, - circleInfo.m_outlineColor.g, - circleInfo.m_outlineColor.b, - circleInfo.m_outlineColor.a); - - circleInfo.m_color /= DATA_TRAITS::channelScaleFactor; - - DATA_TRAITS::pixel_t gilColorTranslucent; - - gil::get_color(gilColorTranslucent, gil::red_t()) = circleInfo.m_color.r; - gil::get_color(gilColorTranslucent, gil::green_t()) = circleInfo.m_color.g; - gil::get_color(gilColorTranslucent, gil::blue_t()) = circleInfo.m_color.b; - gil::get_color(gilColorTranslucent, gil::alpha_t()) = 0; - - circleInfo.m_outlineColor /= DATA_TRAITS::channelScaleFactor; - - DATA_TRAITS::pixel_t gilOutlineColorTranslucent; - - gil::get_color(gilOutlineColorTranslucent, gil::red_t()) = circleInfo.m_outlineColor.r; - gil::get_color(gilOutlineColorTranslucent, gil::green_t()) = circleInfo.m_outlineColor.g; - gil::get_color(gilOutlineColorTranslucent, gil::blue_t()) = circleInfo.m_outlineColor.b; - gil::get_color(gilOutlineColorTranslucent, gil::alpha_t()) = 0; - - DATA_TRAITS::pixel_t gilColor = gilColorTranslucent; - gil::get_color(gilColor, gil::alpha_t()) = circleInfo.m_color.a; - - DATA_TRAITS::pixel_t gilOutlineColor = gilOutlineColorTranslucent; - gil::get_color(gilOutlineColor, gil::alpha_t()) = circleInfo.m_outlineColor.a; - - /// draw circle - agg::rendering_buffer buf( - (unsigned char *)&v(0, 0), - rect.SizeX(), - rect.SizeY(), - rect.SizeX() * sizeof(DATA_TRAITS::pixel_t) - ); - - typedef AggTraits::pixfmt_t agg_pixfmt_t; - - agg_pixfmt_t pixfmt(buf); - agg::renderer_base rbase(pixfmt); - - if (circleInfo.m_isOutlined) - gil::fill_pixels(v, gilOutlineColorTranslucent); - else - gil::fill_pixels(v, gilColorTranslucent); - - m2::PointD center(circleInfo.patternSize()); - center *= 0.5; - - agg::scanline_u8 s; - agg::rasterizer_scanline_aa<> rasterizer; - - agg::ellipse ell; - - ell.init(center.x, - center.y, - circleInfo.m_isOutlined ? circleInfo.m_radius + circleInfo.m_outlineWidth : circleInfo.m_radius, - circleInfo.m_isOutlined ? circleInfo.m_radius + circleInfo.m_outlineWidth : circleInfo.m_radius, - 100); - - rasterizer.add_path(ell); - - agg::render_scanlines_aa_solid(rasterizer, - s, - rbase, - circleInfo.m_isOutlined ? aggOutlineColor : aggColor); - - //DATA_TRAITS::pixel_t px = circleInfo.m_isOutlined ? gilOutlineColor : gilColor; - - /* - // making alpha channel opaque - for (size_t x = 2; x < v.width() - 2; ++x) - for (size_t y = 2; y < v.height() - 2; ++y) - { - unsigned char alpha = gil::get_color(v(x, y), gil::alpha_t()); - - float fAlpha = alpha / (float)DATA_TRAITS::maxChannelVal; - - if (alpha != 0) - { - gil::get_color(v(x, y), gil::red_t()) *= fAlpha; - gil::get_color(v(x, y), gil::green_t()) *= fAlpha; - gil::get_color(v(x, y), gil::blue_t()) *= fAlpha; - - gil::get_color(v(x, y), gil::alpha_t()) = DATA_TRAITS::maxChannelVal; - } - } - */ - - if (circleInfo.m_isOutlined) - { - /// drawing inner circle - ell.init(center.x, - center.y, - circleInfo.m_radius, - circleInfo.m_radius, - 100); - - rasterizer.reset(); - rasterizer.add_path(ell); - - agg::render_scanlines_aa_solid(rasterizer, - s, - rbase, - aggColor); - - /* - for (size_t x = 2; x < v.width() - 2; ++x) - for (size_t y = 2; y < v.height() - 2; ++y) - { - unsigned char alpha = gil::get_color(v(x, y), gil::alpha_t()); - //if (alpha != 0) - //{ - float const fAlpha = alpha / (float)DATA_TRAITS::maxChannelVal; - gil::get_color(v(x, y), gil::red_t()) *= fAlpha; - gil::get_color(v(x, y), gil::green_t()) *= fAlpha; - gil::get_color(v(x, y), gil::blue_t()) *= fAlpha; - - //gil::get_color(v(x, y), gil::alpha_t()) = DATA_TRAITS::maxChannelVal; - //} - } - */ - } - } -} diff --git a/graphics/glyph_style.cpp b/graphics/glyph.cpp similarity index 100% rename from graphics/glyph_style.cpp rename to graphics/glyph.cpp diff --git a/graphics/graphics.pro b/graphics/graphics.pro index 79fb1db974..da1f9fc9aa 100644 --- a/graphics/graphics.pro +++ b/graphics/graphics.pro @@ -32,8 +32,8 @@ SOURCES += \ blitter.cpp \ resource_manager.cpp \ skin.cpp \ - pen_info.cpp \ - resource_style.cpp \ + pen.cpp \ + resource.cpp \ color.cpp \ skin_loader.cpp \ resource_cache.cpp \ @@ -44,7 +44,7 @@ SOURCES += \ text_renderer.cpp \ path_renderer.cpp \ shape_renderer.cpp \ - circle_info.cpp \ + circle.cpp \ area_renderer.cpp \ font_desc.cpp \ glyph_layout.cpp \ @@ -64,7 +64,7 @@ SOURCES += \ packets_queue.cpp \ display_list.cpp \ data_formats.cpp \ - image_info.cpp \ + image.cpp \ image_renderer.cpp \ display_list_renderer.cpp \ vertex_decl.cpp \ @@ -97,8 +97,8 @@ HEADERS += \ resource_manager.hpp \ skin.hpp \ skin_loader.hpp \ - pen_info.hpp \ - resource_style.hpp \ + pen.hpp \ + resource.hpp \ color.hpp \ resource_cache.hpp \ render_target.hpp \ @@ -112,7 +112,7 @@ HEADERS += \ defines.hpp \ path_renderer.hpp \ shape_renderer.hpp \ - circle_info.hpp \ + circle.hpp \ area_renderer.hpp \ font_desc.hpp \ glyph_layout.hpp \ @@ -130,7 +130,7 @@ HEADERS += \ packets_queue.hpp \ display_list.hpp \ image_renderer.hpp \ - image_info.hpp \ + image.hpp \ display_list_renderer.hpp \ vertex_decl.hpp \ render_context.hpp \ diff --git a/graphics/image_info.cpp b/graphics/image.cpp similarity index 100% rename from graphics/image_info.cpp rename to graphics/image.cpp diff --git a/graphics/image_info.hpp b/graphics/image.hpp similarity index 100% rename from graphics/image_info.hpp rename to graphics/image.hpp diff --git a/graphics/line_style.cpp b/graphics/line_style.cpp deleted file mode 100644 index eb22bca483..0000000000 --- a/graphics/line_style.cpp +++ /dev/null @@ -1,190 +0,0 @@ -#include "resource_style.hpp" -#include "agg_traits.hpp" - -#include "opengl/data_traits.hpp" - -namespace graphics -{ - LineStyle::LineStyle(bool isWrapped, m2::RectU const & texRect, int pipelineID, graphics::PenInfo const & penInfo) : - ResourceStyle(ELineStyle, texRect, pipelineID), - m_isWrapped(isWrapped), - m_isSolid(penInfo.m_isSolid), - m_penInfo(penInfo) - { - if (m_isSolid) - { - m_borderColorPixel = m_centerColorPixel = m2::PointU(texRect.minX() + 1, texRect.minY() + 1); - } - else - { - double firstDashOffset = penInfo.firstDashOffset(); - m_centerColorPixel = m2::PointU(static_cast(firstDashOffset + texRect.minX() + 3), - static_cast(texRect.minY() + texRect.SizeY() / 2.0)); - m_borderColorPixel = m2::PointU(static_cast(firstDashOffset + texRect.minX() + 3), - static_cast(texRect.minY() + 1)); - } - } - - double LineStyle::geometryTileLen() const - { - return m_texRect.SizeX() - 2; - } - - double LineStyle::geometryTileWidth() const - { - return m_texRect.SizeY() - 2; - } - - double LineStyle::rawTileLen() const - { - return m_texRect.SizeX() - 4; - } - - double LineStyle::rawTileWidth() const - { - return m_texRect.SizeY() - 4; - } - - void LineStyle::render(void * dst) - { - graphics::PenInfo const & penInfo = m_penInfo; - m2::RectU const & rect = m_texRect; - - DATA_TRAITS::view_t v = gil::interleaved_view(rect.SizeX(), - rect.SizeY(), - (DATA_TRAITS::pixel_t*)dst, - sizeof(DATA_TRAITS::pixel_t) * rect.SizeX()); - - graphics::Color penInfoColor = penInfo.m_color; - - penInfoColor /= DATA_TRAITS::channelScaleFactor; - - DATA_TRAITS::pixel_t penColorTranslucent; - - gil::get_color(penColorTranslucent, gil::red_t()) = penInfoColor.r; - gil::get_color(penColorTranslucent, gil::green_t()) = penInfoColor.g; - gil::get_color(penColorTranslucent, gil::blue_t()) = penInfoColor.b; - gil::get_color(penColorTranslucent, gil::alpha_t()) = 0; - - DATA_TRAITS::pixel_t penColor = penColorTranslucent; - gil::get_color(penColor, gil::alpha_t()) = penInfoColor.a; - - if (penInfo.m_isSolid) - { - /// draw circle - agg::rendering_buffer buf( - (unsigned char *)&v(0, 0), - rect.SizeX(), - rect.SizeY(), - rect.SizeX() * sizeof(DATA_TRAITS::pixel_t) - ); - - typedef AggTraits::pixfmt_t agg_pixfmt_t; - - agg_pixfmt_t pixfmt(buf); - agg::renderer_base rbase(pixfmt); - - gil::fill_pixels(v, penColorTranslucent); - - agg::scanline_u8 s; - agg::rasterizer_scanline_aa<> rasterizer; - if (penInfo.m_w > 2) - { - agg::ellipse ell; - float r = ceil(penInfo.m_w) / 2.0; - ell.init(r + 2, r + 2, r, r, 100); - rasterizer.add_path(ell); - - agg::render_scanlines_aa_solid(rasterizer, - s, - rbase, - agg::rgba8(penInfo.m_color.r, - penInfo.m_color.g, - penInfo.m_color.b, - penInfo.m_color.a)); - - uint32_t ri = static_cast(r); - - /// pixels that are used to texture inner part of the line should be fully opaque - v(2 + ri - 1, 2) = penColor; - v(2 + ri , 2) = penColor; - v(2 + ri - 1, 2 + ri * 2 - 1) = penColor; - v(2 + ri , 2 + ri * 2 - 1) = penColor; - - /// in non-transparent areas - premultiply color value with alpha and make it opaque - for (size_t x = 2; x < v.width() - 2; ++x) - for (size_t y = 2; y < v.height() - 2; ++y) - { - unsigned char alpha = gil::get_color(v(x, y), gil::alpha_t()); - if (alpha != 0) - v(x, y) = penColor; - } - } - else - { - gil::fill_pixels( - gil::subimage_view(v, 2, 2, rect.SizeX() - 4, rect.SizeY() - 4), - penColor - ); - } - } - else - { - /// First two and last two rows of a pattern are filled - /// with a penColorTranslucent pixel for the antialiasing. - for (size_t y = 0; y < 2; ++y) - for (size_t x = 0; x < rect.SizeX(); ++x) - v(x, y) = penColorTranslucent; - - for (size_t y = rect.SizeY() - 2; y < rect.SizeY(); ++y) - for (size_t x = 0; x < rect.SizeX(); ++x) - v(x, y) = penColorTranslucent; - - /// first and last two pixels filled with penColorTranslucent - for (size_t y = 2; y < rect.SizeY() - 2; ++y) - { - v(0, y) = penColorTranslucent; - v(1, y) = penColorTranslucent; - v(rect.SizeX() - 2, y) = penColorTranslucent; - v(rect.SizeX() - 1, y) = penColorTranslucent; - } - - /// draw pattern - for (size_t y = 2; y < rect.SizeY() - 2; ++y) - { - double curLen = 0; - - DATA_TRAITS::pixel_t px = penColor; - - /// In general case this code is incorrect. - /// TODO : Make a pattern start and end with a dash. - uint32_t curLenI = static_cast(curLen); - - v(curLenI, y) = px; - v(curLenI + 1, y) = px; - - for (size_t i = 0; i < penInfo.m_pat.size(); ++i) - { - for (size_t j = 0; j < penInfo.m_pat[i]; ++j) - { - uint32_t val = (i + 1) % 2; - - if (val == 0) - gil::get_color(px, gil::alpha_t()) = 0; - else - gil::get_color(px, gil::alpha_t()) = penInfoColor.a; - - v(curLenI + j + 2, y) = px; - } - - v(static_cast(curLen + 2 + penInfo.m_pat[i]), y) = px; - v(static_cast(curLen + 2 + penInfo.m_pat[i] + 1), y) = px; - - curLen += penInfo.m_pat[i]; - - curLenI = static_cast(curLen); - } - } - } - } -} diff --git a/graphics/pen_info.cpp b/graphics/pen.cpp similarity index 100% rename from graphics/pen_info.cpp rename to graphics/pen.cpp diff --git a/graphics/pen_info.hpp b/graphics/pen.hpp similarity index 100% rename from graphics/pen_info.hpp rename to graphics/pen.hpp diff --git a/graphics/resource_style.cpp b/graphics/resource.cpp similarity index 100% rename from graphics/resource_style.cpp rename to graphics/resource.cpp diff --git a/graphics/resource_style.hpp b/graphics/resource.hpp similarity index 100% rename from graphics/resource_style.hpp rename to graphics/resource.hpp