/* * This source file is part of RmlUi, the HTML/CSS Interface Middleware * * For the latest information, see http://github.com/mikke89/RmlUi * * Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd * Copyright (c) 2019-2023 The RmlUi Team, and contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * */ #include "DecoratorTiledHorizontal.h" #include "../../Include/RmlUi/Core/Element.h" #include "../../Include/RmlUi/Core/Geometry.h" #include "../../Include/RmlUi/Core/RenderManager.h" #include "../../Include/RmlUi/Core/Texture.h" namespace Rml { struct DecoratorTiledHorizontalData { DecoratorTiledHorizontalData(int num_textures) : num_textures(num_textures) { geometry = new Geometry[num_textures]; } ~DecoratorTiledHorizontalData() { delete[] geometry; } const int num_textures; Geometry* geometry; }; DecoratorTiledHorizontal::DecoratorTiledHorizontal() {} DecoratorTiledHorizontal::~DecoratorTiledHorizontal() {} bool DecoratorTiledHorizontal::Initialise(const Tile* _tiles, const Texture* _textures) { // Load the textures. for (int i = 0; i < 3; i++) { tiles[i] = _tiles[i]; tiles[i].texture_index = AddTexture(_textures[i]); } // If only one side of the decorator has been configured, then mirror the texture for the other side. if (tiles[LEFT].texture_index == -1 && tiles[RIGHT].texture_index > -1) { tiles[LEFT] = tiles[RIGHT]; tiles[LEFT].orientation = FLIP_HORIZONTAL; } else if (tiles[RIGHT].texture_index == -1 && tiles[LEFT].texture_index > -1) { tiles[RIGHT] = tiles[LEFT]; tiles[RIGHT].orientation = FLIP_HORIZONTAL; } else if (tiles[LEFT].texture_index == -1 && tiles[RIGHT].texture_index == -1) return false; if (tiles[CENTRE].texture_index == -1) return false; return true; } DecoratorDataHandle DecoratorTiledHorizontal::GenerateElementData(Element* element, BoxArea paint_area) const { // Initialise the tiles for this element. for (int i = 0; i < 3; i++) tiles[i].CalculateDimensions(GetTexture(tiles[i].texture_index)); const Vector2f offset = element->GetBox().GetPosition(paint_area); const Vector2f size = element->GetBox().GetSize(paint_area); Vector2f left_dimensions = tiles[LEFT].GetNaturalDimensions(element); Vector2f right_dimensions = tiles[RIGHT].GetNaturalDimensions(element); Vector2f centre_dimensions = tiles[CENTRE].GetNaturalDimensions(element); // Scale the tile sizes by the height scale. ScaleTileDimensions(left_dimensions, size.y, Axis::Vertical); ScaleTileDimensions(right_dimensions, size.y, Axis::Vertical); ScaleTileDimensions(centre_dimensions, size.y, Axis::Vertical); // Round the outer tile widths now so that we don't get gaps when rounding again in GenerateGeometry. left_dimensions.x = Math::Round(left_dimensions.x); right_dimensions.x = Math::Round(right_dimensions.x); // Shrink the x-sizes on the left and right tiles if necessary. if (size.x < left_dimensions.x + right_dimensions.x) { float minimum_width = left_dimensions.x + right_dimensions.x; left_dimensions.x = size.x * (left_dimensions.x / minimum_width); right_dimensions.x = size.x * (right_dimensions.x / minimum_width); } const ComputedValues& computed = element->GetComputedValues(); Mesh mesh[COUNT]; tiles[LEFT].GenerateGeometry(mesh[tiles[LEFT].texture_index], computed, offset, left_dimensions, left_dimensions); tiles[CENTRE].GenerateGeometry(mesh[tiles[CENTRE].texture_index], computed, offset + Vector2f(left_dimensions.x, 0), Vector2f(size.x - (left_dimensions.x + right_dimensions.x), centre_dimensions.y), centre_dimensions); tiles[RIGHT].GenerateGeometry(mesh[tiles[RIGHT].texture_index], computed, offset + Vector2f(size.x - right_dimensions.x, 0), right_dimensions, right_dimensions); const int num_textures = GetNumTextures(); DecoratorTiledHorizontalData* data = new DecoratorTiledHorizontalData(num_textures); RenderManager* render_manager = element->GetRenderManager(); // Set the mesh and textures on the geometry. for (int i = 0; i < num_textures; i++) data->geometry[i] = render_manager->MakeGeometry(std::move(mesh[i])); return reinterpret_cast(data); } void DecoratorTiledHorizontal::ReleaseElementData(DecoratorDataHandle element_data) const { delete reinterpret_cast(element_data); } void DecoratorTiledHorizontal::RenderElement(Element* element, DecoratorDataHandle element_data) const { Vector2f translation = element->GetAbsoluteOffset(BoxArea::Border); DecoratorTiledHorizontalData* data = reinterpret_cast(element_data); for (int i = 0; i < data->num_textures; i++) data->geometry[i].Render(translation, GetTexture(i)); } DecoratorTiledHorizontalInstancer::DecoratorTiledHorizontalInstancer() : DecoratorTiledInstancer(3) { RegisterTileProperty("left-image"); RegisterTileProperty("right-image"); RegisterTileProperty("center-image"); RegisterShorthand("decorator", "left-image, center-image, right-image", ShorthandType::RecursiveCommaSeparated); } DecoratorTiledHorizontalInstancer::~DecoratorTiledHorizontalInstancer() {} SharedPtr DecoratorTiledHorizontalInstancer::InstanceDecorator(const String& /*name*/, const PropertyDictionary& properties, const DecoratorInstancerInterface& instancer_interface) { constexpr size_t num_tiles = 3; DecoratorTiled::Tile tiles[num_tiles]; Texture textures[num_tiles]; if (!GetTileProperties(tiles, textures, num_tiles, properties, instancer_interface)) return nullptr; auto decorator = MakeShared(); if (!decorator->Initialise(tiles, textures)) return nullptr; return decorator; } } // namespace Rml