TGUI 1.8
Loading...
Searching...
No Matches
Sprite.hpp
1
2//
3// TGUI - Texus' Graphical User Interface
4// Copyright (C) 2012-2025 Bruno Van de Velde (vdv_b@tgui.eu)
5//
6// This software is provided 'as-is', without any express or implied warranty.
7// In no event will the authors be held liable for any damages arising from the use of this software.
8//
9// Permission is granted to anyone to use this software for any purpose,
10// including commercial applications, and to alter it and redistribute it freely,
11// subject to the following restrictions:
12//
13// 1. The origin of this software must not be misrepresented;
14// you must not claim that you wrote the original software.
15// If you use this software in a product, an acknowledgment
16// in the product documentation would be appreciated but is not required.
17//
18// 2. Altered source versions must be plainly marked as such,
19// and must not be misrepresented as being the original software.
20//
21// 3. This notice may not be removed or altered from any source distribution.
22//
24
25#ifndef TGUI_SPRITE_HPP
26#define TGUI_SPRITE_HPP
27
28#include <TGUI/Texture.hpp>
29#include <TGUI/Vector2.hpp>
30#include <TGUI/Rect.hpp>
31#include <TGUI/Color.hpp>
32#include <TGUI/RenderStates.hpp>
33
34#if !TGUI_EXPERIMENTAL_USE_STD_MODULE
35 #include <vector>
36 #include <memory>
37#endif
38
40
41TGUI_MODULE_EXPORT namespace tgui
42{
44
46 class TGUI_API Sprite
47 {
48 public:
49
60
62 public:
63
67 Sprite() = default;
68
74 Sprite(const Texture& texture);
75
79 Sprite(const Sprite&);
80
84 Sprite(Sprite&&) noexcept;
85
90
94 Sprite& operator=(const Sprite&);
95
99 Sprite& operator=(Sprite&&) noexcept;
100
106 void setTexture(const Texture& texture);
107
113 TGUI_NODISCARD const Texture& getTexture() const;
114
120 TGUI_NODISCARD bool isSet() const;
121
127 void setSize(Vector2f size);
128
134 TGUI_NODISCARD Vector2f getSize() const;
135
143 void setOpacity(float opacity);
144
150 TGUI_NODISCARD float getOpacity() const;
151
159 void setVisibleRect(const FloatRect& visibleRect);
160
166 TGUI_NODISCARD FloatRect getVisibleRect() const;
167
173 void setPosition(Vector2f position);
174
180 TGUI_NODISCARD Vector2f getPosition() const;
181
189 void setRotation(float angle);
190
196 TGUI_NODISCARD float getRotation() const;
197
205 TGUI_NODISCARD bool isTransparentPixel(Vector2f pos) const;
206
212 TGUI_NODISCARD ScalingType getScalingType() const;
213
218 TGUI_NODISCARD const std::shared_ptr<BackendTexture>& getSvgTexture() const
219 {
220 return m_svgTexture;
221 }
222
227 TGUI_NODISCARD const std::vector<Vertex>& getVertices() const
228 {
229 return m_vertices;
230 }
231
236 TGUI_NODISCARD const std::vector<unsigned int>& getIndices() const
237 {
238 return m_indices;
239 }
240
245 void updateVertices();
246
248 private:
249
250 Vector2f m_size;
251 Texture m_texture;
252 std::shared_ptr<BackendTexture> m_svgTexture;
253 std::vector<Vertex> m_vertices;
254 std::vector<unsigned int> m_indices;
255
256 FloatRect m_visibleRect;
257
258 Color m_vertexColor = Color::White;
259 float m_opacity = 1;
260 float m_rotation = 0;
261 Vector2f m_position;
262
263 ScalingType m_scalingType = ScalingType::Normal;
264 };
265
267}
268
270
271#endif // TGUI_SPRITE_HPP
Base class for texture implementations that depend on the backend.
Definition BackendTexture.hpp:43
FloatRect getVisibleRect() const
Returns the part of the sprite that is drawn.
float getRotation() const
Gets rotation of the sprite.
void setOpacity(float opacity)
Changes the opacity of the texture.
void setRotation(float angle)
Sets rotation of the sprite.
ScalingType
The way the image should be scaled.
Definition Sprite.hpp:54
@ Vertical
Image is split in Top, Middle and Bottom parts. Top and Bottom keep ratio, Middle gets stretched.
Definition Sprite.hpp:57
@ Normal
The image is not split and scaled normally.
Definition Sprite.hpp:55
@ Horizontal
Image is split in Left, Middle and Right parts. Left and Right keep ratio, Middle gets stretched.
Definition Sprite.hpp:56
@ NineSlice
Image is split in 9 parts. Corners keep size, sides are stretched in one direction,...
Definition Sprite.hpp:58
float getOpacity() const
Returns the opacity of the texture.
void setSize(Vector2f size)
Changes the size that the image will have when drawing.
Sprite()=default
Default constructor.
ScalingType getScalingType() const
Returns the way in which the image is being scaled.
bool isSet() const
Returns whether a texture was set.
Sprite(Sprite &&) noexcept
Move constructor.
Vector2f getPosition() const
Gets the position of the sprite.
const Texture & getTexture() const
Returns the texture used by this sprite.
void setPosition(Vector2f position)
Sets the position of the sprite.
Sprite(const Texture &texture)
Constructor that immediately sets the texture.
void setTexture(const Texture &texture)
Changes the texture.
void setVisibleRect(const FloatRect &visibleRect)
Changes the part of the sprite that should be drawn.
Vector2f getSize() const
Returns the size that the image has when drawing.
bool isTransparentPixel(Vector2f pos) const
Checks if a certain pixel is transparent.
Sprite(const Sprite &)
Copy constructor.
Texture wrapper that internally reuses resources when multiple Texture objects are loaded from the sa...
Definition Texture.hpp:57
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:38