shape.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* svg_renderer/shape.h - Svg renderer shape module definitions
  2. * Copyright (C) 2017-2018 caryoscelus
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #ifndef SHAPE_H_21EA882C_4435_5D12_BDB2_AA2007E61909
  18. #define SHAPE_H_21EA882C_4435_5D12_BDB2_AA2007E61909
  19. namespace rainynite::core::renderers {
  20. /**
  21. * Base class for svg shape render modules.
  22. *
  23. * Use SVG_SHAPE_RENDERER when declaring render module to automatically
  24. * register it.
  25. */
  26. struct SvgShapeRenderer {
  27. /// Render shape/shading/extra_style to svg xml string
  28. virtual string operator()(any const& shape, Shading const& shading, string extra_style, string extra_defs) const = 0;
  29. };
  30. /**
  31. * Simple shape renderer, suitable for most cases
  32. */
  33. struct DefaultSvgShapeRenderer : public SvgShapeRenderer {
  34. string operator()(any const& shape, Shading const& shading, string extra_style, string extra_defs) const override;
  35. /// Return main svg shape tag & params part
  36. virtual string get_main_shape(any const& shape) const = 0;
  37. };
  38. /**
  39. * Render shape to .svg.
  40. *
  41. * Accepts shape of any type that has a registered SvgShapeRenderer for it
  42. */
  43. template <typename... Args>
  44. string render_svg_shape(any const& shape, Args&&... args) {
  45. return class_init::type_info<SvgShapeRenderer, string>(shape.type(), shape, std::forward<Args>(args)...);
  46. }
  47. #define REGISTER_SVG_SHAPE_RENDERER(Self, Shape) \
  48. private class_init::Registered<Self, Shape, SvgShapeRenderer>
  49. #define SVG_SHAPE_RENDERER(Self, Shape) \
  50. public DefaultSvgShapeRenderer, \
  51. REGISTER_SVG_SHAPE_RENDERER(Self, Shape)
  52. } // namespace rainynite::core::renderers
  53. #endif