diff --git a/.gitignore b/.gitignore index c37ad25..3b7513f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ *.json out/ -.vs/ -docs/ \ No newline at end of file +.vs/ \ No newline at end of file diff --git a/docs/html/_clock_8cpp.html b/docs/html/_clock_8cpp.html new file mode 100644 index 0000000..66804d7 --- /dev/null +++ b/docs/html/_clock_8cpp.html @@ -0,0 +1,99 @@ + + +
+ + + + +
+ SDL Utility
+
+ |
+
#include "structures/Clock.hpp"
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
#include "structures/Color.hpp"
#include <math.h>
#include <cmath>
+Functions | |
Color | operator+ (const Color &left, const Color &right) |
Color | operator- (const Color &left, const Color &right) |
Color | operator* (const Color &left, const Color &right) |
Color | operator/ (const Color &left, const Color &right) |
Color & | operator+= (Color &left, const Color &right) |
Color & | operator-= (Color &left, const Color &right) |
Color & | operator*= (Color &left, const Color &right) |
Color & | operator/= (Color &left, const Color &right) |
bool | operator== (const Color &left, const Color &right) |
bool | operator!= (const Color &left, const Color &right) |
bool operator!= | +( | +const Color & | +left, | +
+ | + | const Color & | +right | +
+ | ) | ++ |
Color operator* | +( | +const Color & | +left, | +
+ | + | const Color & | +right | +
+ | ) | ++ |
Color& operator*= | +( | +Color & | +left, | +
+ | + | const Color & | +right | +
+ | ) | ++ |
Color operator+ | +( | +const Color & | +left, | +
+ | + | const Color & | +right | +
+ | ) | ++ |
Color& operator+= | +( | +Color & | +left, | +
+ | + | const Color & | +right | +
+ | ) | ++ |
Color operator- | +( | +const Color & | +left, | +
+ | + | const Color & | +right | +
+ | ) | ++ |
Color& operator-= | +( | +Color & | +left, | +
+ | + | const Color & | +right | +
+ | ) | ++ |
Color operator/ | +( | +const Color & | +left, | +
+ | + | const Color & | +right | +
+ | ) | ++ |
Color& operator/= | +( | +Color & | +left, | +
+ | + | const Color & | +right | +
+ | ) | ++ |
bool operator== | +( | +const Color & | +left, | +
+ | + | const Color & | +right | +
+ | ) | ++ |
+ SDL Utility
+
+ |
+
Provides utility for creating and handling colors. +More...
+#include "Util.hpp"
Go to the source code of this file.
++Classes | |
struct | Color |
A structure holding color data. More... | |
Provides utility for creating and handling colors.
+ +
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
#include "structures/Cursor.hpp"
#include <SDL2/SDL_mouse.h>
+ SDL Utility
+
+ |
+
Go to the source code of this file.
++Classes | |
class | Cursor |
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
The base class of everything renderable by RenderTarget. +More...
+#include "Util.hpp"
Go to the source code of this file.
++Classes | |
class | Drawable |
Everything that can be rendered derives from this class. More... | |
The base class of everything renderable by RenderTarget.
+ +
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
#include <structures/Mouse.hpp>
#include <SDL_mouse.h>
+ SDL Utility
+
+ |
+
A static class to provide easy handling of the mouse. +More...
+ +Go to the source code of this file.
++Classes | |
class | Mouse |
A static class that contains/handles data about mouse position and button states. More... | |
A static class to provide easy handling of the mouse.
+ +
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
#include <graphics/drawable/shapes/Rectangle.hpp>
#include <graphics/RenderTarget.hpp>
#include <SDL.h>
+Namespaces | |
sdlu | |
+ SDL Utility
+
+ |
+
The primitive Rectangle shape. +More...
+#include "Shape.hpp"
Go to the source code of this file.
++Classes | |
class | sdlu::Rectangle |
+Namespaces | |
sdlu | |
The primitive Rectangle shape.
+ +
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
#include "graphics/RenderTarget.hpp"
#include <SDL.h>
#include <Util.hpp>
+ SDL Utility
+
+ |
+
Go to the source code of this file.
++Classes | |
class | RenderTarget |
Acts as a wrapper for SDL_Renderer*. You can't (and shouldn't) instantiate this, but rather derive from it. More... | |
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
#include "graphics/RenderWindow.hpp"
#include <cstring>
#include <Util.hpp>
+ SDL Utility
+
+ |
+
A wrapper around SDL_Window and SDL_Renderer. +More...
+#include <string>
#include <chrono>
#include "structures/Vector2.hpp"
#include "structures/Color.hpp"
#include "structures/Window.hpp"
#include "graphics/RenderTarget.hpp"
Go to the source code of this file.
++Classes | |
class | RenderWindow |
A class that handles window related functionality. More... | |
A wrapper around SDL_Window and SDL_Renderer.
+ +
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
#include "SDLU.hpp"
#include <SDL.h>
#include "Util.hpp"
+Functions | |
SDLU_BEGIN int | Initialize () |
void | Quit () |
+Variables | |
SDL_CommonEvent | c |
SDLU_BEGIN int Initialize | +( | +) | ++ |
void Quit | +( | +) | ++ |
SDL_CommonEvent c | +
+ SDL Utility
+
+ |
+
#include <graphics/Graphics.hpp>
#include <structures/Mouse.hpp>
#include <structures/Cursor.hpp>
#include <structures/Clock.hpp>
Go to the source code of this file.
++Namespaces | |
sdlu | |
+Functions | |
int | sdlu::Initialize () |
void | sdlu::Quit () |
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
#include <graphics/drawable/shapes/Shape.hpp>
+Namespaces | |
sdlu | |
+ SDL Utility
+
+ |
+
The base class for all native SDLU shapes. +More...
+#include "graphics/drawable/Drawable.hpp"
#include "graphics/drawable/Transformable.hpp"
#include "structures/Color.hpp"
Go to the source code of this file.
++Classes | |
class | Shape |
The non-instantiable base class for all SDLU shapes. More... | |
The base class for all native SDLU shapes.
+ +
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
#include "structures/Time.hpp"
#include "..\..\include\structures\Time.hpp"
+Functions | |
Time | Seconds (float seconds) |
Time | Milliseconds (Int32 milliseconds) |
Time | Microseconds (Int64 microseconds) |
bool | operator== (const Time &left, const Time &right) |
bool | operator!= (const Time &left, const Time &right) |
bool | operator< (const Time &left, const Time &right) |
bool | operator> (const Time &left, const Time &right) |
bool | operator<= (const Time &left, const Time &right) |
bool | operator>= (const Time &left, const Time &right) |
Time | operator- (const Time &right) |
Time | operator+ (const Time &left, const Time &right) |
Time & | operator+= (Time &left, const Time &right) |
Time | operator- (const Time &left, const Time &right) |
Time & | operator-= (Time &left, const Time &right) |
Time | operator* (const Time &left, float right) |
Time | operator* (const Time &left, Int64 right) |
Time | operator* (float left, const Time &right) |
Time | operator* (Int64 left, const Time &right) |
Time & | operator*= (Time &left, float right) |
Time & | operator*= (Time &left, Int64 right) |
Time | operator/ (const Time &left, float right) |
Time | operator/ (const Time &left, Int64 right) |
Time & | operator/= (Time &left, float right) |
Time & | operator/= (Time &left, Int64 right) |
float | operator/ (const Time &left, const Time &right) |
Time | operator% (const Time &left, const Time &right) |
Time & | operator%= (Time &left, const Time &right) |
Time Microseconds | +( | +Int64 | +microseconds | ) | ++ |
Time Milliseconds | +( | +Int32 | +milliseconds | ) | ++ |
bool operator!= | +( | +const Time & | +left, | +
+ | + | const Time & | +right | +
+ | ) | ++ |
Time operator% | +( | +const Time & | +left, | +
+ | + | const Time & | +right | +
+ | ) | ++ |
Time& operator%= | +( | +Time & | +left, | +
+ | + | const Time & | +right | +
+ | ) | ++ |
Time operator* | +( | +const Time & | +left, | +
+ | + | float | +right | +
+ | ) | ++ |
Time operator* | +( | +const Time & | +left, | +
+ | + | Int64 | +right | +
+ | ) | ++ |
Time operator* | +( | +float | +left, | +
+ | + | const Time & | +right | +
+ | ) | ++ |
Time operator* | +( | +Int64 | +left, | +
+ | + | const Time & | +right | +
+ | ) | ++ |
Time& operator*= | +( | +Time & | +left, | +
+ | + | float | +right | +
+ | ) | ++ |
Time& operator*= | +( | +Time & | +left, | +
+ | + | Int64 | +right | +
+ | ) | ++ |
Time operator+ | +( | +const Time & | +left, | +
+ | + | const Time & | +right | +
+ | ) | ++ |
Time& operator+= | +( | +Time & | +left, | +
+ | + | const Time & | +right | +
+ | ) | ++ |
Time operator- | +( | +const Time & | +left, | +
+ | + | const Time & | +right | +
+ | ) | ++ |
Time operator- | +( | +const Time & | +right | ) | ++ |
Time& operator-= | +( | +Time & | +left, | +
+ | + | const Time & | +right | +
+ | ) | ++ |
float operator/ | +( | +const Time & | +left, | +
+ | + | const Time & | +right | +
+ | ) | ++ |
Time operator/ | +( | +const Time & | +left, | +
+ | + | float | +right | +
+ | ) | ++ |
Time operator/ | +( | +const Time & | +left, | +
+ | + | Int64 | +right | +
+ | ) | ++ |
Time& operator/= | +( | +Time & | +left, | +
+ | + | float | +right | +
+ | ) | ++ |
Time& operator/= | +( | +Time & | +left, | +
+ | + | Int64 | +right | +
+ | ) | ++ |
bool operator< | +( | +const Time & | +left, | +
+ | + | const Time & | +right | +
+ | ) | ++ |
bool operator<= | +( | +const Time & | +left, | +
+ | + | const Time & | +right | +
+ | ) | ++ |
bool operator== | +( | +const Time & | +left, | +
+ | + | const Time & | +right | +
+ | ) | ++ |
bool operator> | +( | +const Time & | +left, | +
+ | + | const Time & | +right | +
+ | ) | ++ |
bool operator>= | +( | +const Time & | +left, | +
+ | + | const Time & | +right | +
+ | ) | ++ |
Time Seconds | +( | +float | +seconds | ) | ++ |
+ SDL Utility
+
+ |
+
A wrapper around std::chrono::duration. +More...
+ +Go to the source code of this file.
++Classes | |
class | Time |
This class wraps std::chrono::duration and defines some conversions for commonly used times. More... | |
+Typedefs | |
typedef std::nano | TimePeriod |
+Variables | |
SDLU_BEGIN typedef Int64 | TimeRep |
A wrapper around std::chrono::duration.
+ +typedef std::nano TimePeriod | +
SDLU_BEGIN typedef Int64 TimeRep | +
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
#include "graphics/drawable/Transformable.hpp"
+ SDL Utility
+
+ |
+
Contains information for transformable objects. +More...
+#include "structures/Vector2.hpp"
Go to the source code of this file.
++Classes | |
class | Transformable |
A class that stores locational information. More... | |
Contains information for transformable objects.
+ +
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
Basic utility macros, typedefs... +More...
+#include <cstdint>
Go to the source code of this file.
++Macros | |
#define | PI 3.1415926f |
#define | IS_NULLPTR(x) (x == nullptr) |
#define | RETURN_IF_NULLPTR(x, ...) { if(IS_NULLPTR(x)) return __VA_ARGS__; } |
#define | RETURN_IF_NOT_NULLPTR(x, ...) { if(!IS_NULLPTR(x)) return __VA_ARGS__; } |
#define | THROW_IF(condition, exception) ( condition ? throw exception : false) |
#define | THROW_IF_NOT(condition, exception) ( THROW_IF(!condition, exception) ) |
#define | SDLU_BEGIN namespace sdlu { |
+Typedefs | |
typedef uint8_t | Uint8 |
typedef int8_t | Int8 |
typedef uint16_t | Uint16 |
typedef int16_t | Int16 |
typedef uint32_t | Uint32 |
typedef int32_t | Int32 |
typedef uint64_t | Uint64 |
typedef int64_t | Int64 |
Basic utility macros, typedefs...
+ +#define IS_NULLPTR | +( | ++ | x | ) | +(x == nullptr) | +
#define PI 3.1415926f | +
#define RETURN_IF_NOT_NULLPTR | +( | ++ | x, | +
+ | + | + | ... | +
+ | ) | +{ if(!IS_NULLPTR(x)) return __VA_ARGS__; } | +
#define RETURN_IF_NULLPTR | +( | ++ | x, | +
+ | + | + | ... | +
+ | ) | +{ if(IS_NULLPTR(x)) return __VA_ARGS__; } | +
#define SDLU_BEGIN namespace sdlu { | +
#define THROW_IF | +( | ++ | condition, | +
+ | + | + | exception | +
+ | ) | +( condition ? throw exception : false) | +
#define THROW_IF_NOT | +( | ++ | condition, | +
+ | + | + | exception | +
+ | ) | +( THROW_IF(!condition, exception) ) | +
typedef int16_t Int16 | +
typedef int32_t Int32 | +
typedef int64_t Int64 | +
typedef int8_t Int8 | +
typedef uint16_t Uint16 | +
typedef uint32_t Uint32 | +
typedef uint64_t Uint64 | +
typedef uint8_t Uint8 | +
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
Provides a structure for simple vector calculations. +More...
+ +Go to the source code of this file.
++Classes | |
struct | Vector2< T, typename > |
A struct to handle basic 2D vector operations. More... | |
+Typedefs | |
typedef Vector2< unsigned int > | Vector2u |
typedef Vector2< unsigned int > | Vec2u |
typedef Vector2< int > | Vector2i |
typedef Vector2< int > | Vec2i |
typedef Vector2< float > | Vector2f |
typedef Vector2< float > | Vec2f |
typedef Vector2< double > | Vector2d |
typedef Vector2< double > | Vec2d |
Provides a structure for simple vector calculations.
+ +
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
#include "structures/Window.hpp"
#include <SDL.h>
#include <cstring>
#include "structures/Cursor.hpp"
+ SDL Utility
+
+ |
+
Contains window related objects. +More...
+ +Go to the source code of this file.
++Classes | |
class | Window |
Stores information about a window. You probably want RenderWindow. More... | |
Contains window related objects.
+ +
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
▼Nsdlu | |
CRectangle | |
CClock | Essentially a timer |
CColor | A structure holding color data |
CCursor | |
CDrawable | Everything that can be rendered derives from this class |
CMouse | A static class that contains/handles data about mouse position and button states |
CRenderTarget | Acts as a wrapper for SDL_Renderer*. You can't (and shouldn't) instantiate this, but rather derive from it |
CRenderWindow | A class that handles window related functionality |
CShape | The non-instantiable base class for all SDLU shapes |
CTime | This class wraps std::chrono::duration and defines some conversions for commonly used times |
CTransformable | A class that stores locational information |
CVector2 | A struct to handle basic 2D vector operations |
CWindow | Stores information about a window. You probably want RenderWindow |
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
Essentially a timer. + More...
+ +#include <Clock.hpp>
+Public Member Functions | |
Clock () | |
Creates a new Clock. It has not yet been started, call Restart() before doing anything else. More... | |
Time | GetElapsedTime () |
Returns the time elapsed since the last Restart() call. More... | |
Time | Restart () |
Restarts the Clock. More... | |
Essentially a timer.
+Clock::Clock | +( | +) | ++ |
Time Clock::GetElapsedTime | +( | +) | ++ |
Returns the time elapsed since the last Restart() call.
+ +Time Clock::Restart | +( | +) | ++ |
+ SDL Utility
+
+ |
+
This is the complete list of members for Cursor, including all inherited members.
+Cursor() | Cursor | |
Cursor(Type type) | Cursor | |
Cursor(const Cursor &other)=delete | Cursor | |
Cursor(Cursor &&other) noexcept | Cursor | |
LoadFromPixels(const Uint8 *pixels, Vector2u size, Vector2u hotspot) | Cursor | |
LoadFromSurface(SDL_Surface *surface, Vector2u hotspot) | Cursor | |
LoadFromSystem(Type type) | Cursor | |
Type enum name | Cursor | |
Window class | Cursor | friend |
~Cursor() | Cursor |
+ SDL Utility
+
+ |
+
#include <Cursor.hpp>
+Public Types | |
enum class | Type { + Arrow +, IBeam +, Wait +, Crosshair +, + WaitArrow +, SizeNWSE +, SizeNESW +, SizeWE +, + SizeNS +, SizeAll +, No +, Hand + + } |
+Public Member Functions | |
Cursor () | |
Cursor (Type type) | |
Cursor (const Cursor &other)=delete | |
Cursor (Cursor &&other) noexcept | |
~Cursor () | |
bool | LoadFromPixels (const Uint8 *pixels, Vector2u size, Vector2u hotspot) |
bool | LoadFromSurface (SDL_Surface *surface, Vector2u hotspot) |
bool | LoadFromSystem (Type type) |
+Friends | |
class | Window |
+
|
+ +strong | +
Cursor::Cursor | +( | +) | ++ |
Cursor::Cursor | +( | +Type | +type | ) | ++ |
+
|
+ +delete | +
+
|
+ +noexcept | +
Cursor::~Cursor | +( | +) | ++ |
bool Cursor::LoadFromPixels | +( | +const Uint8 * | +pixels, | +
+ | + | Vector2u | +size, | +
+ | + | Vector2u | +hotspot | +
+ | ) | ++ |
bool Cursor::LoadFromSurface | +( | +SDL_Surface * | +surface, | +
+ | + | Vector2u | +hotspot | +
+ | ) | ++ |
bool Cursor::LoadFromSystem | +( | +Type | +type | ) | ++ |
+
|
+ +friend | +
+ SDL Utility
+
+ |
+
This is the complete list of members for Drawable, including all inherited members.
+Draw(SDL_Renderer *const target) const =0 | Drawable | protectedpure virtual |
Drawable(const Drawable &other)=delete | Drawable | |
Drawable(Drawable &&other)=delete | Drawable | |
Drawable() | Drawable | inlineprotected |
operator=(const Drawable &other)=delete | Drawable | |
RenderTarget class | Drawable | friend |
+ SDL Utility
+
+ |
+
Everything that can be rendered derives from this class. + More...
+ +#include <Drawable.hpp>
+Public Member Functions | |
Drawable (const Drawable &other)=delete | |
Drawable (Drawable &&other)=delete | |
Drawable & | operator= (const Drawable &other)=delete |
+Protected Member Functions | |
Drawable () | |
virtual void | Draw (SDL_Renderer *const target) const =0 |
+Friends | |
class | RenderTarget |
Everything that can be rendered derives from this class.
+
+
|
+ +delete | +
+
|
+ +delete | +
+
|
+ +inlineprotected | +
+
|
+ +protectedpure virtual | +
Implemented in sdlu::Rectangle.
+ +
+
|
+ +friend | +
+ SDL Utility
+
+ |
+
This is the complete list of members for Mouse, including all inherited members.
+Button enum name | Mouse | |
GetButtonState() | Mouse | static |
GetPosition() | Mouse | static |
GetPosition(const RenderWindow &relativeTo) | Mouse | static |
IsButtonDown(Button button) | Mouse | static |
SetPosition(const Vector2i &position) | Mouse | static |
SetPosition(const Vector2i &position, const RenderWindow &relativeTo) | Mouse | static |
+ SDL Utility
+
+ |
+
A static class that contains/handles data about mouse position and button states. + More...
+ +#include <Mouse.hpp>
+Public Types | |
enum class | Button { + Left = 1 +, Right = 2 +, Middle = 3 +, XButton1 = 4 +, + XButton2 = 5 + + } |
Mouse buttons. More... | |
+Static Public Member Functions | |
static Uint32 | GetButtonState () |
Returns the current mouse button state. More... | |
static bool | IsButtonDown (Button button) |
Checks if a specific button is pressed. More... | |
static Vector2i | GetPosition () |
Gets the absolute position of the mouse. More... | |
static Vector2i | GetPosition (const RenderWindow &relativeTo) |
Gets current relative position of the mouse. More... | |
static void | SetPosition (const Vector2i &position) |
Sets the absolute position of the mouse. More... | |
static void | SetPosition (const Vector2i &position, const RenderWindow &relativeTo) |
Sets current relative position of the mouse. More... | |
A static class that contains/handles data about mouse position and button states.
+
+
|
+ +strong | +
Mouse buttons.
+Enumerator | |
---|---|
Left | |
Right | |
Middle | |
XButton1 | |
XButton2 |
+
|
+ +static | +
Returns the current mouse button state.
+
+
|
+ +static | +
Gets the absolute position of the mouse.
+
+
|
+ +static | +
Gets current relative position of the mouse.
+[in] | relativeTo | The window the mouse position should be relative to |
+
|
+ +static | +
Checks if a specific button is pressed.
+[in] | button | The button to check |
+
|
+ +static | +
Sets the absolute position of the mouse.
+[in] | position | A 2D vector of the new position |
+
|
+ +static | +
Sets current relative position of the mouse.
+[in] | position | A 2D vector of the new position |
[in] | relativeTo | The window the mouse position should be relative to |
+ SDL Utility
+
+ |
+
This is the complete list of members for RenderTarget, including all inherited members.
+Clear(const Color &color=Color::Black) | RenderTarget | |
Display() | RenderTarget | |
Draw(const Drawable &drawable) | RenderTarget | |
renderer | RenderTarget | protected |
RenderTarget(SDL_Window *target) | RenderTarget | protected |
RenderTarget(SDL_Surface *target) | RenderTarget | protected |
SetMaxFramerate(Uint32 max) | RenderTarget | |
~RenderTarget() | RenderTarget | virtual |
+ SDL Utility
+
+ |
+
Acts as a wrapper for SDL_Renderer*. You can't (and shouldn't) instantiate this, but rather derive from it. + More...
+ +#include <RenderTarget.hpp>
+Public Member Functions | |
virtual | ~RenderTarget () |
void | Clear (const Color &color=Color::Black) |
Clears the display. More... | |
void | Draw (const Drawable &drawable) |
Draws a sdlu::Drawable to the SDL_Renderer. More... | |
void | Display () |
Display the current state of the renderer to the screen. More... | |
void | SetMaxFramerate (Uint32 max) |
Sets a maximum framerate on the display function. More... | |
+Protected Member Functions | |
RenderTarget (SDL_Window *target) | |
Create Renderer and bind it to a window. More... | |
RenderTarget (SDL_Surface *target) | |
Create Renderer and bind it to a texture. More... | |
+Protected Attributes | |
SDL_Renderer * | renderer |
The renderer object. More... | |
Acts as a wrapper for SDL_Renderer*. You can't (and shouldn't) instantiate this, but rather derive from it.
+
+
|
+ +virtual | +
+
|
+ +protected | +
Create Renderer and bind it to a window.
+[in] | target | The SDL_Window to bind to |
+
|
+ +protected | +
Create Renderer and bind it to a texture.
+[in] | target | The SDL_Surface to bind to |
void RenderTarget::Clear | +( | +const Color & | +color = Color::Black | ) | ++ |
Clears the display.
+[in] | color | The color to clear the display with |
void RenderTarget::Display | +( | +) | ++ |
Display the current state of the renderer to the screen.
+ +void RenderTarget::Draw | +( | +const Drawable & | +drawable | ) | ++ |
Draws a sdlu::Drawable to the SDL_Renderer.
+[in] | drawable | A reference to a derived class of Drawable |
void RenderTarget::SetMaxFramerate | +( | +Uint32 | +max | ) | ++ |
Sets a maximum framerate on the display function.
+If the maximum framerate is not 0, SDL_Delay() will be called after each Display() to ensure that the time between displays is not shorter than the framerate limit.
+[in] | max | The new maximum framerate |
+
|
+ +protected | +
The renderer object.
+ +
+ SDL Utility
+
+ |
+
This is the complete list of members for RenderWindow, including all inherited members.
+Borderless enum value | Window | |
Clear(const Color &color=Color::Black) | RenderTarget | |
Close() | Window | |
Create(Vector2u dimension, const std::string &title, Uint32 windowFlags) | Window | |
Display() | RenderTarget | |
Draw(const Drawable &drawable) | RenderTarget | |
Flags enum name | Window | |
Foregin enum value | Window | |
Fullscreen enum value | Window | |
FullscreenDesktop enum value | Window | |
GetPosition() const | Window | |
GetSize() const | Window | |
GetTitle() const | Window | |
GetWindow() const | Window | |
Hidden enum value | Window | |
InputFocus enum value | Window | |
InputGrabbed enum value | Window | |
IsOpen() const | Window | |
Maximized enum value | Window | |
Minimized enum value | Window | |
MouseFocus enum value | Window | |
OnClose() | RenderWindow | protectedvirtual |
OnCreate() | RenderWindow | protectedvirtual |
OnResize() | RenderWindow | protectedvirtual |
OpenGL enum value | Window | |
PollEvent(SDL_Event *event) | Window | |
renderer | RenderTarget | protected |
RenderTarget(SDL_Window *target) | RenderTarget | protected |
RenderTarget(SDL_Surface *target) | RenderTarget | protected |
RenderWindow() | RenderWindow | |
RenderWindow(Vector2u dimension, const std::string &title, Uint32 windowFlags=Window::Flags::Shown) | RenderWindow | |
RenderWindow(const RenderWindow &other)=delete | RenderWindow | |
RenderWindow(const RenderWindow &&other)=delete | RenderWindow | |
Resizable enum value | Window | |
SetIcon(Uint32 width, Uint32 height, const Uint8 *pixels) | Window | |
SetIcon(Uint32 width, Uint32 height, const Uint32 *pixels) | Window | |
SetIcon(SDL_Surface *icon) | Window | |
SetMaxFramerate(Uint32 max) | RenderTarget | |
SetMouseCursor(SDL_Cursor *cursor) | Window | |
SetMouseCursor(const Cursor &cursor) | Window | |
SetMouseCursorGrabbed(bool grabbed) | Window | |
SetMouseCursorVisible(bool visible) | Window | |
SetPosition(Vector2i position) | Window | |
SetPosition(int x, int y) | Window | |
SetSize(Vector2u size) | Window | |
SetSize(unsigned int width, unsigned int height) | Window | |
SetTitle(std::string title) | Window | |
SetVisible(bool visible) | Window | |
SetVsync(bool vsync) | Window | |
Shown enum value | Window | |
WaitEvent(SDL_Event *event) | Window | |
Window() | Window | |
Window(Vector2u dimension, const std::string &title, Uint32 windowFlags) | Window | |
Window(const Window &other)=delete | Window | |
Window(Window &&other)=delete | Window | |
window | Window | protected |
~RenderTarget() | RenderTarget | virtual |
~RenderWindow() | RenderWindow | virtual |
~Window() | Window | virtual |
+ SDL Utility
+
+ |
+
A class that handles window related functionality. + More...
+ +#include <RenderWindow.hpp>
+Public Member Functions | |
RenderWindow () | |
Default Constructor. No window or renderer is created. More... | |
RenderWindow (Vector2u dimension, const std::string &title, Uint32 windowFlags=Window::Flags::Shown) | |
Creates a window and renderer with the given parameters. More... | |
RenderWindow (const RenderWindow &other)=delete | |
RenderWindow (const RenderWindow &&other)=delete | |
virtual | ~RenderWindow () |
![]() | |
Window () | |
Default Constructor. No window is created. More... | |
Window (Vector2u dimension, const std::string &title, Uint32 windowFlags) | |
Creates a window with the given parameters. More... | |
Window (const Window &other)=delete | |
Window (Window &&other)=delete | |
virtual | ~Window () |
void | Create (Vector2u dimension, const std::string &title, Uint32 windowFlags) |
Creates the window. More... | |
void | Close () |
Destroys the window. More... | |
bool | IsOpen () const |
Wether or not the window object is created. More... | |
bool | PollEvent (SDL_Event *event) |
A non-blocking event polling function. More... | |
bool | WaitEvent (SDL_Event *event) |
A blocking event polling function. More... | |
Vector2i | GetPosition () const |
Returns the current position of the window. More... | |
void | SetPosition (Vector2i position) |
Sets a new window position. More... | |
void | SetPosition (int x, int y) |
Sets a new window position. More... | |
Vector2u | GetSize () const |
Gets the current window size. More... | |
void | SetSize (Vector2u size) |
Sets a new window size. More... | |
void | SetSize (unsigned int width, unsigned int height) |
Sets a new window size. More... | |
std::string | GetTitle () const |
Gets the current window title. More... | |
void | SetTitle (std::string title) |
Sets a new window title. More... | |
SDL_Window *const | GetWindow () const |
Returns a constant pointer to the SDL_Window. More... | |
void | SetVisible (bool visible) |
Set the windows visibility. More... | |
void | SetVsync (bool vsync) |
(De)activates VSync !globally! More... | |
void | SetMouseCursorVisible (bool visible) |
Hides/Shows the mouse cursor inside the windos. More... | |
void | SetMouseCursorGrabbed (bool grabbed) |
Traps the mouse cursor inside the window. More... | |
void | SetIcon (Uint32 width, Uint32 height, const Uint8 *pixels) |
Sets the window icon to an array of RGBA values. More... | |
void | SetIcon (Uint32 width, Uint32 height, const Uint32 *pixels) |
Sets the window icon to an array of RGBA values. More... | |
void | SetIcon (SDL_Surface *icon) |
Sets the window icon to a SDL_Surface. More... | |
void | SetMouseCursor (SDL_Cursor *cursor) |
Changes the mouse cursor. More... | |
void | SetMouseCursor (const Cursor &cursor) |
Changes the mouse cursor. More... | |
![]() | |
virtual | ~RenderTarget () |
void | Clear (const Color &color=Color::Black) |
Clears the display. More... | |
void | Draw (const Drawable &drawable) |
Draws a sdlu::Drawable to the SDL_Renderer. More... | |
void | Display () |
Display the current state of the renderer to the screen. More... | |
void | SetMaxFramerate (Uint32 max) |
Sets a maximum framerate on the display function. More... | |
+Protected Member Functions | |
virtual void | OnCreate () |
Function called after Window creation. More... | |
virtual bool | OnResize () |
Function called after resize event. More... | |
virtual void | OnClose () |
Function called after closing the window. More... | |
![]() | |
RenderTarget (SDL_Window *target) | |
Create Renderer and bind it to a window. More... | |
RenderTarget (SDL_Surface *target) | |
Create Renderer and bind it to a texture. More... | |
+Additional Inherited Members | |
![]() | |
enum | Flags { + Fullscreen = ((Uint32)1 << 0) +, OpenGL = ((Uint32)1 << 1) +, Shown = ((Uint32)1 << 2) +, Hidden = ((Uint32)1 << 3) +, + Borderless = ((Uint32)1 << 4) +, Resizable = ((Uint32)1 << 5) +, Minimized = ((Uint32)1 << 6) +, Maximized = ((Uint32)1 << 7) +, + InputGrabbed = ((Uint32)1 << 8) +, InputFocus = ((Uint32)1 << 9) +, MouseFocus = ((Uint32)1 << 10) +, Foregin = ((Uint32)1 << 11) +, + FullscreenDesktop = (Fullscreen | ((Uint32)1 << 12)) + + } |
![]() | |
SDL_Window * | window |
![]() | |
SDL_Renderer * | renderer |
The renderer object. More... | |
A class that handles window related functionality.
+A class that combines the SDL_Window and SDL_Renderer and behaves similar to the sf::RenderWindow from SFML. It provides utility and wrappers for common operations on those objects.
+RenderWindow::RenderWindow | +( | +) | ++ |
Default Constructor. No window or renderer is created.
+ +RenderWindow::RenderWindow | +( | +Vector2u | +dimension, | +
+ | + | const std::string & | +title, | +
+ | + | Uint32 | +windowFlags = Window::Flags::Shown |
+
+ | ) | ++ |
Creates a window and renderer with the given parameters.
+[in] | dimension | A vector containing the width and height |
[in] | title | The title of the create window |
+
|
+ +delete | +
+
|
+ +delete | +
+
|
+ +virtual | +
+
|
+ +protectedvirtual | +
Function called after closing the window.
+ +Reimplemented from Window.
+ +
+
|
+ +protectedvirtual | +
+
|
+ +protectedvirtual | +
Function called after resize event.
+Reimplemented from Window.
+ +
+ SDL Utility
+
+ |
+
This is the complete list of members for Shape, including all inherited members.
+
+ SDL Utility
+
+ |
+
The non-instantiable base class for all SDLU shapes. + More...
+ +#include <Shape.hpp>
+Public Member Functions | |
virtual | ~Shape () |
Deconstructor. More... | |
void | SetColor (const Color &color) |
Sets the color of the shape. More... | |
Color | GetColor () |
Gets the color of the shape. More... | |
![]() | |
Drawable (const Drawable &other)=delete | |
Drawable (Drawable &&other)=delete | |
Drawable & | operator= (const Drawable &other)=delete |
![]() | |
Transformable () | |
Default constructur. More... | |
virtual | ~Transformable () |
Deconstructor. More... | |
Vector2f | GetPosition () |
Returns the position of the object. More... | |
void | SetPosition (const Vector2f &position) |
Sets a new position. More... | |
void | SetPosition (float x, float y) |
Sets a new position. More... | |
void | Move (const Vector2f &position) |
Adds to the current position. More... | |
void | Move (float x, float y) |
Adds to the current position. More... | |
Vector2f | GetOrigin () |
Gets the current local origin. More... | |
void | SetOrigin (const Vector2f &origin) |
Sets a new local origin. More... | |
void | SetOrigin (float x, float y) |
Sets a new local origin. More... | |
Vector2f | GetScale () |
Gets the current scale of the object. More... | |
void | SetScale (const Vector2f &scale) |
Sets a new scale. More... | |
void | SetScale (float x, float y) |
Sets a new scale. More... | |
void | Scale (const Vector2f &scale) |
Scales the object by some amount. More... | |
void | Scale (float x, float y) |
Scales the object by some amount. More... | |
float | GetRotation () |
Gets the current rotation. More... | |
void | SetRotation (float angle) |
Sets a new rotation. More... | |
void | Rotate (float angle) |
Rotates by some amount. More... | |
+Protected Member Functions | |
Shape () | |
Default constructor. More... | |
![]() | |
Drawable () | |
virtual void | Draw (SDL_Renderer *const target) const =0 |
+Protected Attributes | |
Color | color |
![]() | |
Vector2f | position |
Position of the object. More... | |
Vector2f | origin |
Offset of the top-left corner from the position. More... | |
Vector2f | scale |
Scale of the object. More... | |
float | rotation |
Rotation of the object (in degrees) More... | |
The non-instantiable base class for all SDLU shapes.
+
+
|
+ +virtual | +
Deconstructor.
+ +
+
|
+ +protected | +
Default constructor.
+ +Color Shape::GetColor | +( | +) | ++ |
Gets the color of the shape.
+ +void Shape::SetColor | +( | +const Color & | +color | ) | ++ |
Sets the color of the shape.
+ +
+
|
+ +protected | +
+ SDL Utility
+
+ |
+
This is the complete list of members for Time, including all inherited members.
+AsChrono() const | Time | inline |
AsChronoMicroseconds() const | Time | |
AsChronoMilliseconds() const | Time | |
AsChronoSeconds() const | Time | |
AsMicroseconds() const | Time | |
AsMilliseconds() const | Time | |
AsSeconds() const | Time | |
AsValue() const | Time | inline |
Create(const Rep &duration) | Time | inlinestatic |
Create(const std::chrono::duration< Rep, Period > &duration) | Time | inlinestatic |
Microseconds(Int64 microseconds) | Time | friend |
Milliseconds(Int32 milliseconds) | Time | friend |
Now() | Time | inlinestatic |
operator!=(const Time &left, const Time &right) | Time | friend |
operator%(const Time &left, const Time &right) | Time | friend |
operator%=(Time &left, const Time &right) | Time | friend |
operator*(const Time &left, float right) | Time | friend |
operator*(const Time &left, Int64 right) | Time | friend |
operator*(float left, const Time &right) | Time | friend |
operator*(Int64 left, const Time &right) | Time | friend |
operator*=(Time &left, float right) | Time | friend |
operator*=(Time &left, Int64 right) | Time | friend |
operator+(const Time &left, const Time &right) | Time | friend |
operator+=(Time &left, const Time &right) | Time | friend |
operator-(const Time &right) | Time | friend |
operator-(const Time &left, const Time &right) | Time | friend |
operator-=(Time &left, const Time &right) | Time | friend |
operator/(const Time &left, float right) | Time | friend |
operator/(const Time &left, Int64 right) | Time | friend |
operator/(const Time &left, const Time &right) | Time | friend |
operator/=(Time &left, float right) | Time | friend |
operator/=(Time &left, Int64 right) | Time | friend |
operator<(const Time &left, const Time &right) | Time | friend |
operator<=(const Time &left, const Time &right) | Time | friend |
operator==(const Time &left, const Time &right) | Time | friend |
operator>(const Time &left, const Time &right) | Time | friend |
operator>=(const Time &left, const Time &right) | Time | friend |
Seconds(float seconds) | Time | friend |
Time() | Time |
+ SDL Utility
+
+ |
+
This class wraps std::chrono::duration and defines some conversions for commonly used times. + More...
+ +#include <Time.hpp>
+Public Member Functions | |
Time () | |
Default constructor. Constructs a time with value 0. More... | |
template<typename Rep = Int64, typename Period = std::ratio<1>> | |
Rep | AsValue () const |
Returns the stored time in the specified format as a scalar. More... | |
float | AsSeconds () const |
Returns the stored time in seconds. More... | |
Int32 | AsMilliseconds () const |
Returns the stored time in milliseconds. More... | |
Int64 | AsMicroseconds () const |
Returns the stored time in microseconds. More... | |
template<typename Rep = Int64, typename Period = std::ratio<1>> | |
std::chrono::duration< Rep, Period > | AsChrono () const |
Returns the stored time in the specified format as a std::duration. More... | |
std::chrono::seconds | AsChronoSeconds () const |
Returns the stored time in std::chrono::seconds. More... | |
std::chrono::milliseconds | AsChronoMilliseconds () const |
Returns the stored time in std::chrono::milliseconds. More... | |
std::chrono::microseconds | AsChronoMicroseconds () const |
Returns the stored time in std::chrono::microseconds. More... | |
+Static Public Member Functions | |
template<typename Rep = Int64, typename Period = std::ratio<1>> | |
static Time | Create (const Rep &duration) |
Stores the given scalar as a time, using the given format. More... | |
template<typename Rep = Int64, typename Period = std::ratio<1>> | |
static Time | Create (const std::chrono::duration< Rep, Period > &duration) |
Stores the given std::duration. More... | |
static Time | Now () |
Creates a Time object storing the current point in time. More... | |
+Friends | |
Time | Seconds (float seconds) |
Creates a Time object from a given number of seconds. More... | |
Time | Milliseconds (Int32 milliseconds) |
Creates a Time object from a given number of milliseconds. More... | |
Time | Microseconds (Int64 microseconds) |
Creates a Time object from a given number of microseconds. More... | |
bool | operator== (const Time &left, const Time &right) |
Overload of == operator comparing two Times. More... | |
bool | operator!= (const Time &left, const Time &right) |
Overload of != operator comparing two Times. More... | |
bool | operator< (const Time &left, const Time &right) |
Overload of < operator comparing two Times. More... | |
bool | operator> (const Time &left, const Time &right) |
Overload of > operator comparing two Times. More... | |
bool | operator<= (const Time &left, const Time &right) |
Overload of <= operator comparing two Times. More... | |
bool | operator>= (const Time &left, const Time &right) |
Overload of < operator comparing two Times. More... | |
Time | operator- (const Time &right) |
Overload of the unary - operator. More... | |
Time | operator+ (const Time &left, const Time &right) |
Overload of + operator to add two Times. More... | |
Time & | operator+= (Time &left, const Time &right) |
Overload of += operator to add two Times. More... | |
Time | operator- (const Time &left, const Time &right) |
Overload of - operator to subtract two Times. More... | |
Time & | operator-= (Time &left, const Time &right) |
Overload of -= operator to subtract two Times. More... | |
Time | operator* (const Time &left, float right) |
Overload of * operator to multiply a Time with a scalar. More... | |
Time | operator* (const Time &left, Int64 right) |
Overload of * operator to multiply a Time with a scalar. More... | |
Time | operator* (float left, const Time &right) |
Overload of * operator to multiply a Time with a scalar. More... | |
Time | operator* (Int64 left, const Time &right) |
Overload of * operator to multiply a Time with a scalar. More... | |
Time & | operator*= (Time &left, float right) |
Overload of *= operator to multiply a Time with a scalar. More... | |
Time & | operator*= (Time &left, Int64 right) |
Overload of *= operator to multiply a Time with a scalar. More... | |
Time | operator/ (const Time &left, float right) |
Overload of / operator to divide a Time by a scalar. More... | |
Time | operator/ (const Time &left, Int64 right) |
Overload of / operator to divide a Time by a scalar. More... | |
Time & | operator/= (Time &left, float right) |
Overload of /= operator to divide a Time by a scalar. More... | |
Time & | operator/= (Time &left, Int64 right) |
Overload of /= operator to divide a Time by a scalar. More... | |
float | operator/ (const Time &left, const Time &right) |
Overload of / operator to divide two Times. More... | |
Time | operator% (const Time &left, const Time &right) |
Overload of % operator to calculate the modulo of a Time. More... | |
Time & | operator%= (Time &left, const Time &right) |
Overload of % operator to calculate the modulo of a Time. More... | |
This class wraps std::chrono::duration and defines some conversions for commonly used times.
+Time::Time | +( | +) | ++ |
Default constructor. Constructs a time with value 0.
+ +
+
|
+ +inline | +
Returns the stored time in the specified format as a std::duration.
+Rep | The datatype to be returned |
Period | An std::ratio representing the resolution of the time format. E.g. the number of seconds per time step |
std::chrono::microseconds Time::AsChronoMicroseconds | +( | +) | +const | +
Returns the stored time in std::chrono::microseconds.
+ +std::chrono::milliseconds Time::AsChronoMilliseconds | +( | +) | +const | +
Returns the stored time in std::chrono::milliseconds.
+ +std::chrono::seconds Time::AsChronoSeconds | +( | +) | +const | +
Returns the stored time in std::chrono::seconds.
+ +Int64 Time::AsMicroseconds | +( | +) | +const | +
Returns the stored time in microseconds.
+ +Int32 Time::AsMilliseconds | +( | +) | +const | +
Returns the stored time in milliseconds.
+ +float Time::AsSeconds | +( | +) | +const | +
Returns the stored time in seconds.
+ +
+
|
+ +inline | +
Returns the stored time in the specified format as a scalar.
+Rep | The datatype to be returned |
Period | An std::ratio representing the resolution of the time format. E.g. the number of seconds per time step |
+
|
+ +inlinestatic | +
Stores the given scalar as a time, using the given format.
+Rep | The datatype to be returned |
Period | An std::ratio representing the resolution of the time format. E.g. the number of seconds per time step |
+
|
+ +inlinestatic | +
Stores the given std::duration.
+Rep | The datatype to be returned |
Period | An std::ratio representing the resolution of the time format. E.g. the number of seconds per time step |
+
|
+ +inlinestatic | +
+
|
+ +friend | +
Overload of != operator comparing two Times.
+left | Left operand |
right | Right operand |
+
|
+ +friend | +
Overload of % operator to calculate the modulo of a Time.
+left | Left operand |
right | Right operand |
left
% right
+
|
+ +friend | +
Overload of % operator to calculate the modulo of a Time.
+left | Left operand |
right | Right operand |
left
+
|
+ +friend | +
Overload of * operator to multiply a Time with a scalar.
+left | Left operand |
right | Right operand |
left
scaled by a factor of right
+
|
+ +friend | +
Overload of * operator to multiply a Time with a scalar.
+left | Left operand |
right | Right operand |
left
scaled by a factor of right
+
|
+ +friend | +
Overload of * operator to multiply a Time with a scalar.
+left | Left operand |
right | Right operand |
right
scaled by a factor of left
+
|
+ +friend | +
Overload of * operator to multiply a Time with a scalar.
+left | Left operand |
right | Right operand |
right
scaled by a factor of left
+
|
+ +friend | +
Overload of *= operator to multiply a Time with a scalar.
+left | Left operand |
right | Right operand |
left
+
|
+ +friend | +
Overload of *= operator to multiply a Time with a scalar.
+left | Left operand |
right | Right operand |
left
+
|
+ +friend | +
Overload of + operator to add two Times.
+left | Left operand |
right | Right operand |
+
|
+ +friend | +
Overload of += operator to add two Times.
+left | Left operand |
right | Right operand |
left
+
|
+ +friend | +
Overload of - operator to subtract two Times.
+left | Left operand |
right | Right operand |
Overload of the unary - operator.
+right | Right operand |
right
+
|
+ +friend | +
Overload of -= operator to subtract two Times.
+left | Left operand |
right | Right operand |
left
+
|
+ +friend | +
Overload of / operator to divide two Times.
+left | Left operand |
right | Right operand |
+
|
+ +friend | +
Overload of / operator to divide a Time by a scalar.
+left | Left operand |
right | Right operand |
left
divided by right
+
|
+ +friend | +
Overload of / operator to divide a Time by a scalar.
+left | Left operand |
right | Right operand |
left
divided by right
+
|
+ +friend | +
Overload of /= operator to divide a Time by a scalar.
+left | Left operand |
right | Right operand |
left
+
|
+ +friend | +
Overload of /= operator to divide a Time by a scalar.
+left | Left operand |
right | Right operand |
left
+
|
+ +friend | +
Overload of < operator comparing two Times.
+left | Left operand |
right | Right operand |
left
is less than right
+
|
+ +friend | +
Overload of <= operator comparing two Times.
+left | Left operand |
right | Right operand |
left
is less than or equal to right
+
|
+ +friend | +
Overload of == operator comparing two Times.
+left | Left operand |
right | Right operand |
+
|
+ +friend | +
Overload of > operator comparing two Times.
+left | Left operand |
right | Right operand |
left
is greater than right
+
|
+ +friend | +
Overload of < operator comparing two Times.
+left | Left operand |
right | Right operand |
left
is greater than or equal to right
+
|
+ +friend | +
+ SDL Utility
+
+ |
+
This is the complete list of members for Transformable, including all inherited members.
+GetOrigin() | Transformable | |
GetPosition() | Transformable | |
GetRotation() | Transformable | |
GetScale() | Transformable | |
Move(const Vector2f &position) | Transformable | |
Move(float x, float y) | Transformable | |
origin | Transformable | protected |
position | Transformable | protected |
Rotate(float angle) | Transformable | |
rotation | Transformable | protected |
scale | Transformable | protected |
Scale(const Vector2f &scale) | Transformable | |
Scale(float x, float y) | Transformable | |
SetOrigin(const Vector2f &origin) | Transformable | |
SetOrigin(float x, float y) | Transformable | |
SetPosition(const Vector2f &position) | Transformable | |
SetPosition(float x, float y) | Transformable | |
SetRotation(float angle) | Transformable | |
SetScale(const Vector2f &scale) | Transformable | |
SetScale(float x, float y) | Transformable | |
Transformable() | Transformable | |
~Transformable() | Transformable | virtual |
+ SDL Utility
+
+ |
+
A class that stores locational information. + More...
+ +#include <Transformable.hpp>
+Public Member Functions | |
Transformable () | |
Default constructur. More... | |
virtual | ~Transformable () |
Deconstructor. More... | |
Vector2f | GetPosition () |
Returns the position of the object. More... | |
void | SetPosition (const Vector2f &position) |
Sets a new position. More... | |
void | SetPosition (float x, float y) |
Sets a new position. More... | |
void | Move (const Vector2f &position) |
Adds to the current position. More... | |
void | Move (float x, float y) |
Adds to the current position. More... | |
Vector2f | GetOrigin () |
Gets the current local origin. More... | |
void | SetOrigin (const Vector2f &origin) |
Sets a new local origin. More... | |
void | SetOrigin (float x, float y) |
Sets a new local origin. More... | |
Vector2f | GetScale () |
Gets the current scale of the object. More... | |
void | SetScale (const Vector2f &scale) |
Sets a new scale. More... | |
void | SetScale (float x, float y) |
Sets a new scale. More... | |
void | Scale (const Vector2f &scale) |
Scales the object by some amount. More... | |
void | Scale (float x, float y) |
Scales the object by some amount. More... | |
float | GetRotation () |
Gets the current rotation. More... | |
void | SetRotation (float angle) |
Sets a new rotation. More... | |
void | Rotate (float angle) |
Rotates by some amount. More... | |
+Protected Attributes | |
Vector2f | position |
Position of the object. More... | |
Vector2f | origin |
Offset of the top-left corner from the position. More... | |
Vector2f | scale |
Scale of the object. More... | |
float | rotation |
Rotation of the object (in degrees) More... | |
A class that stores locational information.
+Stores position, rotation, scale and the origin of an object, and provides functions to get/set those values. "Origin" is the offset between the position and the top-left corner of the object.
+Transformable::Transformable | +( | +) | ++ |
Default constructur.
+ +
+
|
+ +virtual | +
Deconstructor.
+ +Vector2f Transformable::GetOrigin | +( | +) | ++ |
Gets the current local origin.
+Vector2f Transformable::GetPosition | +( | +) | ++ |
Returns the position of the object.
+float Transformable::GetRotation | +( | +) | ++ |
Gets the current rotation.
+Vector2f Transformable::GetScale | +( | +) | ++ |
Gets the current scale of the object.
+void Transformable::Move | +( | +const Vector2f & | +position | ) | ++ |
Adds to the current position.
+[in] | position | A 2D movement vector |
void Transformable::Move | +( | +float | +x, | +
+ | + | float | +y | +
+ | ) | ++ |
Adds to the current position.
+[in] | x | The offset in x direction |
[in] | y | The offset in y direction |
void Transformable::Rotate | +( | +float | +angle | ) | ++ |
Rotates by some amount.
+[in] | angle | The angle to rotate by in degrees |
void Transformable::Scale | +( | +const Vector2f & | +scale | ) | ++ |
Scales the object by some amount.
+[in] | scale | The amount to scale by in x- and y-direction |
void Transformable::Scale | +( | +float | +x, | +
+ | + | float | +y | +
+ | ) | ++ |
Scales the object by some amount.
+[in] | x | The amount to scale by in x direction |
[in] | y | The amount to scale by in y direction |
void Transformable::SetOrigin | +( | +const Vector2f & | +origin | ) | ++ |
Sets a new local origin.
+[in] | origin | A 2D vector with the new origin |
void Transformable::SetOrigin | +( | +float | +x, | +
+ | + | float | +y | +
+ | ) | ++ |
Sets a new local origin.
+[in] | x | The new x component of the origin |
[in] | y | The new y component of the origin |
void Transformable::SetPosition | +( | +const Vector2f & | +position | ) | ++ |
Sets a new position.
+[in] | position | A 2D vector with the new position |
void Transformable::SetPosition | +( | +float | +x, | +
+ | + | float | +y | +
+ | ) | ++ |
Sets a new position.
+[in] | x | The new x position |
[in] | y | The new y position |
void Transformable::SetRotation | +( | +float | +angle | ) | ++ |
Sets a new rotation.
+[in] | angle | The new rotation in degrees |
void Transformable::SetScale | +( | +const Vector2f & | +scale | ) | ++ |
Sets a new scale.
+[in] | scale | A 2D vector with the new scale |
void Transformable::SetScale | +( | +float | +x, | +
+ | + | float | +y | +
+ | ) | ++ |
Sets a new scale.
+[in] | x | The new scale in x direction |
[in] | y | The new scale in y direction |
+
|
+ +protected | +
Offset of the top-left corner from the position.
+ +
+
|
+ +protected | +
Position of the object.
+ +
+
|
+ +protected | +
Rotation of the object (in degrees)
+ +
+
|
+ +protected | +
Scale of the object.
+ +
+ SDL Utility
+
+ |
+
This is the complete list of members for Window, including all inherited members.
+Borderless enum value | Window | |
Close() | Window | |
Create(Vector2u dimension, const std::string &title, Uint32 windowFlags) | Window | |
Flags enum name | Window | |
Foregin enum value | Window | |
Fullscreen enum value | Window | |
FullscreenDesktop enum value | Window | |
GetPosition() const | Window | |
GetSize() const | Window | |
GetTitle() const | Window | |
GetWindow() const | Window | |
Hidden enum value | Window | |
InputFocus enum value | Window | |
InputGrabbed enum value | Window | |
IsOpen() const | Window | |
Maximized enum value | Window | |
Minimized enum value | Window | |
MouseFocus enum value | Window | |
OnClose() | Window | protectedvirtual |
OnCreate() | Window | protectedvirtual |
OnResize() | Window | protectedvirtual |
OpenGL enum value | Window | |
PollEvent(SDL_Event *event) | Window | |
Resizable enum value | Window | |
SetIcon(Uint32 width, Uint32 height, const Uint8 *pixels) | Window | |
SetIcon(Uint32 width, Uint32 height, const Uint32 *pixels) | Window | |
SetIcon(SDL_Surface *icon) | Window | |
SetMouseCursor(SDL_Cursor *cursor) | Window | |
SetMouseCursor(const Cursor &cursor) | Window | |
SetMouseCursorGrabbed(bool grabbed) | Window | |
SetMouseCursorVisible(bool visible) | Window | |
SetPosition(Vector2i position) | Window | |
SetPosition(int x, int y) | Window | |
SetSize(Vector2u size) | Window | |
SetSize(unsigned int width, unsigned int height) | Window | |
SetTitle(std::string title) | Window | |
SetVisible(bool visible) | Window | |
SetVsync(bool vsync) | Window | |
Shown enum value | Window | |
WaitEvent(SDL_Event *event) | Window | |
window | Window | protected |
Window() | Window | |
Window(Vector2u dimension, const std::string &title, Uint32 windowFlags) | Window | |
Window(const Window &other)=delete | Window | |
Window(Window &&other)=delete | Window | |
~Window() | Window | virtual |
+ SDL Utility
+
+ |
+
Stores information about a window. You probably want RenderWindow. + More...
+ +#include <Window.hpp>
+Public Types | |
enum | Flags { + Fullscreen = ((Uint32)1 << 0) +, OpenGL = ((Uint32)1 << 1) +, Shown = ((Uint32)1 << 2) +, Hidden = ((Uint32)1 << 3) +, + Borderless = ((Uint32)1 << 4) +, Resizable = ((Uint32)1 << 5) +, Minimized = ((Uint32)1 << 6) +, Maximized = ((Uint32)1 << 7) +, + InputGrabbed = ((Uint32)1 << 8) +, InputFocus = ((Uint32)1 << 9) +, MouseFocus = ((Uint32)1 << 10) +, Foregin = ((Uint32)1 << 11) +, + FullscreenDesktop = (Fullscreen | ((Uint32)1 << 12)) + + } |
+Public Member Functions | |
Window () | |
Default Constructor. No window is created. More... | |
Window (Vector2u dimension, const std::string &title, Uint32 windowFlags) | |
Creates a window with the given parameters. More... | |
Window (const Window &other)=delete | |
Window (Window &&other)=delete | |
virtual | ~Window () |
void | Create (Vector2u dimension, const std::string &title, Uint32 windowFlags) |
Creates the window. More... | |
void | Close () |
Destroys the window. More... | |
bool | IsOpen () const |
Wether or not the window object is created. More... | |
bool | PollEvent (SDL_Event *event) |
A non-blocking event polling function. More... | |
bool | WaitEvent (SDL_Event *event) |
A blocking event polling function. More... | |
Vector2i | GetPosition () const |
Returns the current position of the window. More... | |
void | SetPosition (Vector2i position) |
Sets a new window position. More... | |
void | SetPosition (int x, int y) |
Sets a new window position. More... | |
Vector2u | GetSize () const |
Gets the current window size. More... | |
void | SetSize (Vector2u size) |
Sets a new window size. More... | |
void | SetSize (unsigned int width, unsigned int height) |
Sets a new window size. More... | |
std::string | GetTitle () const |
Gets the current window title. More... | |
void | SetTitle (std::string title) |
Sets a new window title. More... | |
SDL_Window *const | GetWindow () const |
Returns a constant pointer to the SDL_Window. More... | |
void | SetVisible (bool visible) |
Set the windows visibility. More... | |
void | SetVsync (bool vsync) |
(De)activates VSync !globally! More... | |
void | SetMouseCursorVisible (bool visible) |
Hides/Shows the mouse cursor inside the windos. More... | |
void | SetMouseCursorGrabbed (bool grabbed) |
Traps the mouse cursor inside the window. More... | |
void | SetIcon (Uint32 width, Uint32 height, const Uint8 *pixels) |
Sets the window icon to an array of RGBA values. More... | |
void | SetIcon (Uint32 width, Uint32 height, const Uint32 *pixels) |
Sets the window icon to an array of RGBA values. More... | |
void | SetIcon (SDL_Surface *icon) |
Sets the window icon to a SDL_Surface. More... | |
void | SetMouseCursor (SDL_Cursor *cursor) |
Changes the mouse cursor. More... | |
void | SetMouseCursor (const Cursor &cursor) |
Changes the mouse cursor. More... | |
+Protected Member Functions | |
virtual void | OnCreate () |
This function is called after Create() finishes. More... | |
virtual bool | OnResize () |
This function is called after a SDL_WINDOWEVENT_RESIZED is polled. (PollEvent() must be called for this to work) More... | |
virtual void | OnClose () |
This function is called after Close() finishes. More... | |
+Protected Attributes | |
SDL_Window * | window |
Stores information about a window. You probably want RenderWindow.
+enum Window::Flags | +
Window::Window | +( | +) | ++ |
Default Constructor. No window is created.
+ +Window::Window | +( | +Vector2u | +dimension, | +
+ | + | const std::string & | +title, | +
+ | + | Uint32 | +windowFlags | +
+ | ) | ++ |
Creates a window with the given parameters.
+[in] | dimension | A vector containing the width and height |
[in] | title | The title of the create window |
+
|
+ +delete | +
+
|
+ +delete | +
+
|
+ +virtual | +
void Window::Close | +( | +) | ++ |
Destroys the window.
+ +void Window::Create | +( | +Vector2u | +dimension, | +
+ | + | const std::string & | +title, | +
+ | + | Uint32 | +windowFlags | +
+ | ) | ++ |
Creates the window.
+This function creates the SDL_Window object. If they were already created the function does nothing and returns. If it fails to create either, an ObjectCreationException is thrown.
+[in] | dimension | A vector containing the width and height |
[in] | title | The title of the create window |
Vector2i Window::GetPosition | +( | +) | +const | +
Returns the current position of the window.
+Vector2u Window::GetSize | +( | +) | +const | +
Gets the current window size.
+std::string Window::GetTitle | +( | +) | +const | +
Gets the current window title.
+SDL_Window* const Window::GetWindow | +( | +) | +const | +
Returns a constant pointer to the SDL_Window.
+bool Window::IsOpen | +( | +) | +const | +
Wether or not the window object is created.
+
+
|
+ +protectedvirtual | +
This function is called after Close() finishes.
+ +Reimplemented in RenderWindow.
+ +
+
|
+ +protectedvirtual | +
This function is called after Create() finishes.
+ +Reimplemented in RenderWindow.
+ +
+
|
+ +protectedvirtual | +
This function is called after a SDL_WINDOWEVENT_RESIZED is polled. (PollEvent() must be called for this to work)
+Reimplemented in RenderWindow.
+ +bool Window::PollEvent | +( | +SDL_Event * | +event | ) | ++ |
A non-blocking event polling function.
+[out] | event | An object to write the latest event to |
void Window::SetIcon | +( | +SDL_Surface * | +icon | ) | ++ |
Sets the window icon to a SDL_Surface.
+[in] | icon | A SDL_Surface* holding the icon data |
void Window::SetIcon | +( | +Uint32 | +width, | +
+ | + | Uint32 | +height, | +
+ | + | const Uint32 * | +pixels | +
+ | ) | ++ |
Sets the window icon to an array of RGBA values.
+[in] | width | Width of the icon (in px) |
[in] | height | Height of the icon (in px) |
[in] | pixels | Array of color data (RGBA as one 32-Bit integer value) |
void Window::SetIcon | +( | +Uint32 | +width, | +
+ | + | Uint32 | +height, | +
+ | + | const Uint8 * | +pixels | +
+ | ) | ++ |
Sets the window icon to an array of RGBA values.
+[in] | width | Width of the icon (in px) |
[in] | height | Height of the icon (in px) |
[in] | pixels | Array of color data (RGBA as seperate 8-Bit integer values) |
void Window::SetMouseCursor | +( | +const Cursor & | +cursor | ) | ++ |
Changes the mouse cursor.
+[in] | cursor | The cursor object holding cursor data |
void Window::SetMouseCursor | +( | +SDL_Cursor * | +cursor | ) | ++ |
Changes the mouse cursor.
+[in] | cursor | A pointer to a SDL_Cursor containing cursor data |
void Window::SetMouseCursorGrabbed | +( | +bool | +grabbed | ) | ++ |
Traps the mouse cursor inside the window.
+[in] | grabbed | Wether to (un)trap the cursor |
void Window::SetMouseCursorVisible | +( | +bool | +visible | ) | ++ |
Hides/Shows the mouse cursor inside the windos.
+[in] | visible | The new visibility of the cursor |
void Window::SetPosition | +( | +int | +x, | +
+ | + | int | +y | +
+ | ) | ++ |
Sets a new window position.
+[in] | x | The new x position |
[in] | y | The new y position |
void Window::SetPosition | +( | +Vector2i | +position | ) | ++ |
Sets a new window position.
+[in] | position | A vector with the new position |
void Window::SetSize | +( | +unsigned int | +width, | +
+ | + | unsigned int | +height | +
+ | ) | ++ |
Sets a new window size.
+[in] | width | The new width of the window |
[in] | height | The new height of the window |
void Window::SetSize | +( | +Vector2u | +size | ) | ++ |
Sets a new window size.
+[in] | size | A vector with the new size |
void Window::SetTitle | +( | +std::string | +title | ) | ++ |
Sets a new window title.
+[in] | title | The new window title |
void Window::SetVisible | +( | +bool | +visible | ) | ++ |
Set the windows visibility.
+[in] | visible | The new visibility setting |
void Window::SetVsync | +( | +bool | +vsync | ) | ++ |
(De)activates VSync !globally!
+[in] | vsync | Wether to enable or disable vsync |
bool Window::WaitEvent | +( | +SDL_Event * | +event | ) | ++ |
A blocking event polling function.
+[out] | event | An object to write the latest event to |
+
|
+ +protected | +
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
This is the complete list of members for sdlu::Rectangle, including all inherited members.
+
+ SDL Utility
+
+ |
+
#include <Rectangle.hpp>
+Public Member Functions | |
Rectangle () | |
Default constructor. More... | |
Rectangle (const Vector2f &position, const Vector2f &size) | |
Constructor with default parameters. More... | |
Vector2f | GetSize () |
Gets the size of the rectangle. More... | |
void | SetSize (const Vector2f &size) |
Sets a new size for the rectangle. More... | |
void | SetSize (float x, float y) |
Sets a new size for the rectangle. More... | |
virtual void | Draw (SDL_Renderer *const target) const override |
Draws the Rectangle to the target. More... | |
![]() | |
virtual | ~Shape () |
Deconstructor. More... | |
void | SetColor (const Color &color) |
Sets the color of the shape. More... | |
Color | GetColor () |
Gets the color of the shape. More... | |
![]() | |
Drawable (const Drawable &other)=delete | |
Drawable (Drawable &&other)=delete | |
Drawable & | operator= (const Drawable &other)=delete |
![]() | |
Transformable () | |
Default constructur. More... | |
virtual | ~Transformable () |
Deconstructor. More... | |
Vector2f | GetPosition () |
Returns the position of the object. More... | |
void | SetPosition (const Vector2f &position) |
Sets a new position. More... | |
void | SetPosition (float x, float y) |
Sets a new position. More... | |
void | Move (const Vector2f &position) |
Adds to the current position. More... | |
void | Move (float x, float y) |
Adds to the current position. More... | |
Vector2f | GetOrigin () |
Gets the current local origin. More... | |
void | SetOrigin (const Vector2f &origin) |
Sets a new local origin. More... | |
void | SetOrigin (float x, float y) |
Sets a new local origin. More... | |
Vector2f | GetScale () |
Gets the current scale of the object. More... | |
void | SetScale (const Vector2f &scale) |
Sets a new scale. More... | |
void | SetScale (float x, float y) |
Sets a new scale. More... | |
void | Scale (const Vector2f &scale) |
Scales the object by some amount. More... | |
void | Scale (float x, float y) |
Scales the object by some amount. More... | |
float | GetRotation () |
Gets the current rotation. More... | |
void | SetRotation (float angle) |
Sets a new rotation. More... | |
void | Rotate (float angle) |
Rotates by some amount. More... | |
+Additional Inherited Members | |
![]() | |
Shape () | |
Default constructor. More... | |
![]() | |
Drawable () | |
![]() | |
Color | color |
![]() | |
Vector2f | position |
Position of the object. More... | |
Vector2f | origin |
Offset of the top-left corner from the position. More... | |
Vector2f | scale |
Scale of the object. More... | |
float | rotation |
Rotation of the object (in degrees) More... | |
sdlu::Rectangle::Rectangle | +( | +) | ++ |
Default constructor.
+ +sdlu::Rectangle::Rectangle | +( | +const Vector2f & | +position, | +
+ | + | const Vector2f & | +size | +
+ | ) | ++ |
Constructor with default parameters.
+[in] | position | A 2D position vector |
[in] | size | A 2D size vector |
+
|
+ +overridevirtual | +
Draws the Rectangle to the target.
+[in] | target | The RenderTarget to draw to |
Implements Drawable.
+ +Vector2f sdlu::Rectangle::GetSize | +( | +) | ++ |
Gets the size of the rectangle.
+void sdlu::Rectangle::SetSize | +( | +const Vector2f & | +size | ) | ++ |
Sets a new size for the rectangle.
+[in] | size | A 2D vector with the size information |
void sdlu::Rectangle::SetSize | +( | +float | +x, | +
+ | + | float | +y | +
+ | ) | ++ |
Sets a new size for the rectangle.
+[in] | x | The new size in x direction |
[in] | y | The new size in y direction |
+ SDL Utility
+
+ |
+
+Directories | |
directory | shapes |
+Files | |
file | Drawable.hpp [code] |
The base class of everything renderable by RenderTarget. | |
file | Transformable.hpp [code] |
Contains information for transformable objects. | |
+ SDL Utility
+
+ |
+
+Directories | |
directory | drawable |
+Files | |
file | RenderTarget.cpp |
file | RenderWindow.cpp |
+ SDL Utility
+
+ |
+
+Files | |
file | Clock.cpp |
file | Color.cpp |
file | Cursor.cpp |
file | Mouse.cpp |
file | Time.cpp |
file | Window.cpp |
+ SDL Utility
+
+ |
+
+Directories | |
directory | graphics |
directory | structures |
+Files | |
file | SDLU.cpp |
+ SDL Utility
+
+ |
+
+Directories | |
directory | shapes |
+Files | |
file | Transformable.cpp |
+ SDL Utility
+
+ |
+
+Files | |
file | Rectangle.cpp |
file | Shape.cpp |
+ SDL Utility
+
+ |
+
+Files | |
file | Clock.hpp [code] |
A small timing utility. | |
file | Color.hpp [code] |
Provides utility for creating and handling colors. | |
file | Cursor.hpp [code] |
file | Mouse.hpp [code] |
A static class to provide easy handling of the mouse. | |
file | Time.hpp [code] |
A wrapper around std::chrono::duration. | |
file | Vector2.hpp [code] |
Provides a structure for simple vector calculations. | |
file | Window.hpp [code] |
Contains window related objects. | |
+ SDL Utility
+
+ |
+
+Files | |
file | Rectangle.hpp [code] |
The primitive Rectangle shape. | |
file | Shape.hpp [code] |
The base class for all native SDLU shapes. | |
+ SDL Utility
+
+ |
+
+Directories | |
directory | drawable |
+Files | |
file | Graphics.hpp [code] |
file | RenderTarget.hpp [code] |
file | RenderWindow.hpp [code] |
A wrapper around SDL_Window and SDL_Renderer. | |
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
▼ include | |
▼ graphics | |
▼ drawable | |
▼ shapes | |
Rectangle.hpp | The primitive Rectangle shape |
Shape.hpp | The base class for all native SDLU shapes |
Drawable.hpp | The base class of everything renderable by RenderTarget |
Transformable.hpp | Contains information for transformable objects |
Graphics.hpp | |
RenderTarget.hpp | |
RenderWindow.hpp | A wrapper around SDL_Window and SDL_Renderer |
▼ structures | |
Clock.hpp | A small timing utility |
Color.hpp | Provides utility for creating and handling colors |
Cursor.hpp | |
Mouse.hpp | A static class to provide easy handling of the mouse |
Time.hpp | A wrapper around std::chrono::duration |
Vector2.hpp | Provides a structure for simple vector calculations |
Window.hpp | Contains window related objects |
SDLU.hpp | |
Util.hpp | Basic utility macros, typedefs.. |
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+
CClock | Essentially a timer |
CColor | A structure holding color data |
CCursor | |
▼CDrawable | Everything that can be rendered derives from this class |
▼CShape | The non-instantiable base class for all SDLU shapes |
Csdlu::Rectangle | |
CMouse | A static class that contains/handles data about mouse position and button states |
▼CRenderTarget | Acts as a wrapper for SDL_Renderer*. You can't (and shouldn't) instantiate this, but rather derive from it |
CRenderWindow | A class that handles window related functionality |
CTime | This class wraps std::chrono::duration and defines some conversions for commonly used times |
▼CTransformable | A class that stores locational information |
CShape | The non-instantiable base class for all SDLU shapes |
CVector2< T, typename > | A struct to handle basic 2D vector operations |
CVector2< float > | |
▼CWindow | Stores information about a window. You probably want RenderWindow |
CRenderWindow | A class that handles window related functionality |
+ SDL Utility
+
+ |
+
+ SDL Utility
+
+ |
+