Utility class for manipulating RGBA colors. More...
#include <Color.hpp>
Public Member Functions | |
Color () | |
Default constructor. More... | |
Color (Uint8 red, Uint8 green, Uint8 blue, Uint8 alpha=255) | |
Construct the color from its 4 RGBA components. More... | |
Color (Uint32 color) | |
Construct the color from 32-bit unsigned integer. More... | |
Uint32 | toInteger () const |
Retrieve the color as a 32-bit unsigned integer. More... | |
Public Attributes | |
Uint8 | r |
Red component. More... | |
Uint8 | g |
Green component. More... | |
Uint8 | b |
Blue component. More... | |
Uint8 | a |
Alpha (opacity) component. More... | |
Static Public Attributes | |
static const Color | Black |
Black predefined color. More... | |
static const Color | White |
White predefined color. More... | |
static const Color | Red |
Red predefined color. More... | |
static const Color | Green |
Green predefined color. More... | |
static const Color | Blue |
Blue predefined color. More... | |
static const Color | Yellow |
Yellow predefined color. More... | |
static const Color | Magenta |
Magenta predefined color. More... | |
static const Color | Cyan |
Cyan predefined color. More... | |
static const Color | Transparent |
Transparent (black) predefined color. More... | |
Related Functions | |
(Note that these are not member functions.) | |
bool | operator== (const Color &left, const Color &right) |
Overload of the == operator. More... | |
bool | operator!= (const Color &left, const Color &right) |
Overload of the != operator. More... | |
Color | operator+ (const Color &left, const Color &right) |
Overload of the binary + operator. More... | |
Color | operator- (const Color &left, const Color &right) |
Overload of the binary - operator. More... | |
Color | operator* (const Color &left, const Color &right) |
Overload of the binary * operator. More... | |
Color & | operator+= (Color &left, const Color &right) |
Overload of the binary += operator. More... | |
Color & | operator-= (Color &left, const Color &right) |
Overload of the binary -= operator. More... | |
Color & | operator*= (Color &left, const Color &right) |
Overload of the binary *= operator. More... | |
Utility class for manipulating RGBA colors.
sf::Color is a simple color class composed of 4 components:
Each component is a public member, an unsigned integer in the range [0, 255]. Thus, colors can be constructed and manipulated very easily:
The fourth component of colors, named "alpha", represents the opacity of the color. A color with an alpha value of 255 will be fully opaque, while an alpha value of 0 will make a color fully transparent, whatever the value of the other components is.
The most common colors are already defined as static variables:
Colors can also be added and modulated (multiplied) using the overloaded operators + and *.
sf::Color::Color | ( | ) |
Default constructor.
Constructs an opaque black color. It is equivalent to sf::Color(0, 0, 0, 255).
sf::Color::Color | ( | Uint8 | red, |
Uint8 | green, | ||
Uint8 | blue, | ||
Uint8 | alpha = 255 |
||
) |
Construct the color from its 4 RGBA components.
red | Red component (in the range [0, 255]) |
green | Green component (in the range [0, 255]) |
blue | Blue component (in the range [0, 255]) |
alpha | Alpha (opacity) component (in the range [0, 255]) |
|
explicit |
Construct the color from 32-bit unsigned integer.
color | Number containing the RGBA components (in that order) |
Uint32 sf::Color::toInteger | ( | ) | const |
Retrieve the color as a 32-bit unsigned integer.
Overload of the != operator.
This operator compares two colors and check if they are different.
left | Left operand |
right | Right operand |
Overload of the binary * operator.
This operator returns the component-wise multiplication (also called "modulation") of two colors. Components are then divided by 255 so that the result is still in the range [0, 255].
left | Left operand |
right | Right operand |
Overload of the binary *= operator.
This operator returns the component-wise multiplication (also called "modulation") of two colors, and assigns the result to the left operand. Components are then divided by 255 so that the result is still in the range [0, 255].
left | Left operand |
right | Right operand |
Overload of the binary + operator.
This operator returns the component-wise sum of two colors. Components that exceed 255 are clamped to 255.
left | Left operand |
right | Right operand |
Overload of the binary += operator.
This operator computes the component-wise sum of two colors, and assigns the result to the left operand. Components that exceed 255 are clamped to 255.
left | Left operand |
right | Right operand |
Overload of the binary - operator.
This operator returns the component-wise subtraction of two colors. Components below 0 are clamped to 0.
left | Left operand |
right | Right operand |
Overload of the binary -= operator.
This operator computes the component-wise subtraction of two colors, and assigns the result to the left operand. Components below 0 are clamped to 0.
left | Left operand |
right | Right operand |
Overload of the == operator.
This operator compares two colors and check if they are equal.
left | Left operand |
right | Right operand |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |