El Octavio
1.0
This is a video game about adventures.
|
Window that can serve as a target for 2D drawing. More...
#include <RenderWindow.hpp>
Public Member Functions | |
RenderWindow () | |
Default constructor. More... | |
RenderWindow (VideoMode mode, const String &title, Uint32 style=Style::Default, const ContextSettings &settings=ContextSettings()) | |
Construct a new window. More... | |
RenderWindow (WindowHandle handle, const ContextSettings &settings=ContextSettings()) | |
Construct the window from an existing control. More... | |
virtual | ~RenderWindow () |
Destructor. More... | |
virtual Vector2u | getSize () const |
Get the size of the rendering region of the window. More... | |
bool | setActive (bool active=true) |
Activate or deactivate the window as the current target for OpenGL rendering. More... | |
SFML_DEPRECATED Image | capture () const |
Copy the current contents of the window to an image. More... | |
![]() | |
Window () | |
Default constructor. More... | |
Window (VideoMode mode, const String &title, Uint32 style=Style::Default, const ContextSettings &settings=ContextSettings()) | |
Construct a new window. More... | |
Window (WindowHandle handle, const ContextSettings &settings=ContextSettings()) | |
Construct the window from an existing control. More... | |
virtual | ~Window () |
Destructor. More... | |
void | create (VideoMode mode, const String &title, Uint32 style=Style::Default, const ContextSettings &settings=ContextSettings()) |
Create (or recreate) the window. More... | |
void | create (WindowHandle handle, const ContextSettings &settings=ContextSettings()) |
Create (or recreate) the window from an existing control. More... | |
void | close () |
Close the window and destroy all the attached resources. More... | |
bool | isOpen () const |
Tell whether or not the window is open. More... | |
const ContextSettings & | getSettings () const |
Get the settings of the OpenGL context of the window. More... | |
bool | pollEvent (Event &event) |
Pop the event on top of the event queue, if any, and return it. More... | |
bool | waitEvent (Event &event) |
Wait for an event and return it. More... | |
Vector2i | getPosition () const |
Get the position of the window. More... | |
void | setPosition (const Vector2i &position) |
Change the position of the window on screen. More... | |
Vector2u | getSize () const |
Get the size of the rendering region of the window. More... | |
void | setSize (const Vector2u &size) |
Change the size of the rendering region of the window. More... | |
void | setTitle (const String &title) |
Change the title of the window. More... | |
void | setIcon (unsigned int width, unsigned int height, const Uint8 *pixels) |
Change the window's icon. More... | |
void | setVisible (bool visible) |
Show or hide the window. More... | |
void | setVerticalSyncEnabled (bool enabled) |
Enable or disable vertical synchronization. More... | |
void | setMouseCursorVisible (bool visible) |
Show or hide the mouse cursor. More... | |
void | setMouseCursorGrabbed (bool grabbed) |
Grab or release the mouse cursor. More... | |
void | setMouseCursor (const Cursor &cursor) |
Set the displayed cursor to a native system cursor. More... | |
void | setKeyRepeatEnabled (bool enabled) |
Enable or disable automatic key-repeat. More... | |
void | setFramerateLimit (unsigned int limit) |
Limit the framerate to a maximum fixed frequency. More... | |
void | setJoystickThreshold (float threshold) |
Change the joystick threshold. More... | |
bool | setActive (bool active=true) const |
Activate or deactivate the window as the current target for OpenGL rendering. More... | |
void | requestFocus () |
Request the current window to be made the active foreground window. More... | |
bool | hasFocus () const |
Check whether the window has the input focus. More... | |
void | display () |
Display on screen what has been rendered to the window so far. More... | |
WindowHandle | getSystemHandle () const |
Get the OS-specific handle of the window. More... | |
![]() | |
virtual | ~RenderTarget () |
Destructor. More... | |
void | clear (const Color &color=Color(0, 0, 0, 255)) |
Clear the entire target with a single color. More... | |
void | setView (const View &view) |
Change the current active view. More... | |
const View & | getView () const |
Get the view currently in use in the render target. More... | |
const View & | getDefaultView () const |
Get the default view of the render target. More... | |
IntRect | getViewport (const View &view) const |
Get the viewport of a view, applied to this render target. More... | |
Vector2f | mapPixelToCoords (const Vector2i &point) const |
Convert a point from target coordinates to world coordinates, using the current view. More... | |
Vector2f | mapPixelToCoords (const Vector2i &point, const View &view) const |
Convert a point from target coordinates to world coordinates. More... | |
Vector2i | mapCoordsToPixel (const Vector2f &point) const |
Convert a point from world coordinates to target coordinates, using the current view. More... | |
Vector2i | mapCoordsToPixel (const Vector2f &point, const View &view) const |
Convert a point from world coordinates to target coordinates. More... | |
void | draw (const Drawable &drawable, const RenderStates &states=RenderStates::Default) |
Draw a drawable object to the render target. More... | |
void | draw (const Vertex *vertices, std::size_t vertexCount, PrimitiveType type, const RenderStates &states=RenderStates::Default) |
Draw primitives defined by an array of vertices. More... | |
void | draw (const VertexBuffer &vertexBuffer, const RenderStates &states=RenderStates::Default) |
Draw primitives defined by a vertex buffer. More... | |
void | draw (const VertexBuffer &vertexBuffer, std::size_t firstVertex, std::size_t vertexCount, const RenderStates &states=RenderStates::Default) |
Draw primitives defined by a vertex buffer. More... | |
virtual Vector2u | getSize () const =0 |
Return the size of the rendering region of the target. More... | |
virtual bool | setActive (bool active=true) |
Activate or deactivate the render target for rendering. More... | |
void | pushGLStates () |
Save the current OpenGL render states and matrices. More... | |
void | popGLStates () |
Restore the previously saved OpenGL render states and matrices. More... | |
void | resetGLStates () |
Reset the internal OpenGL states so that the target is ready for drawing. More... | |
Protected Member Functions | |
virtual void | onCreate () |
Function called after the window has been created. More... | |
virtual void | onResize () |
Function called after the window has been resized. More... | |
virtual void | onCreate () |
Function called after the window has been created. More... | |
virtual void | onResize () |
Function called after the window has been resized. More... | |
![]() | |
RenderTarget () | |
Default constructor. More... | |
void | initialize () |
Performs the common initialization step after creation. More... | |
Window that can serve as a target for 2D drawing.
sf::RenderWindow is the main class of the Graphics module.
It defines an OS window that can be painted using the other classes of the graphics module.
sf::RenderWindow is derived from sf::Window, thus it inherits all its features: events, window management, OpenGL rendering, etc. See the documentation of sf::Window for a more complete description of all these features, as well as code examples.
On top of that, sf::RenderWindow adds more features related to 2D drawing with the graphics module (see its base class sf::RenderTarget for more details). Here is a typical rendering and event loop with a sf::RenderWindow:
Like sf::Window, sf::RenderWindow is still able to render direct OpenGL stuff. It is even possible to mix together OpenGL calls and regular SFML drawing commands.
Definition at line 44 of file RenderWindow.hpp.
sf::RenderWindow::RenderWindow | ( | ) |
Default constructor.
This constructor doesn't actually create the window, use the other constructors or call create() to do so.
sf::RenderWindow::RenderWindow | ( | VideoMode | mode, |
const String & | title, | ||
Uint32 | style = Style::Default , |
||
const ContextSettings & | settings = ContextSettings() |
||
) |
Construct a new window.
This constructor creates the window with the size and pixel depth defined in mode. An optional style can be passed to customize the look and behavior of the window (borders, title bar, resizable, closable, ...).
The fourth parameter is an optional structure specifying advanced OpenGL context settings such as antialiasing, depth-buffer bits, etc. You shouldn't care about these parameters for a regular usage of the graphics module.
mode | Video mode to use (defines the width, height and depth of the rendering area of the window) |
title | Title of the window |
style | Window style, a bitwise OR combination of sf::Style enumerators |
settings | Additional settings for the underlying OpenGL context |
|
explicit |
Construct the window from an existing control.
Use this constructor if you want to create an SFML rendering area into an already existing control.
The second parameter is an optional structure specifying advanced OpenGL context settings such as antialiasing, depth-buffer bits, etc. You shouldn't care about these parameters for a regular usage of the graphics module.
handle | Platform-specific handle of the control (HWND on Windows, Window on Linux/FreeBSD, NSWindow on OS X) |
settings | Additional settings for the underlying OpenGL context |
|
virtual |
Destructor.
Closes the window and frees all the resources attached to it.
SFML_DEPRECATED Image sf::RenderWindow::capture | ( | ) | const |
Copy the current contents of the window to an image.
This is a slow operation, whose main purpose is to make screenshots of the application. If you want to update an image with the contents of the window and then use it for drawing, you should rather use a sf::Texture and its update(Window&) function. You can also draw things directly to a texture with the sf::RenderTexture class.
|
virtual |
Get the size of the rendering region of the window.
The size doesn't include the titlebar and borders of the window.
Implements sf::RenderTarget.
|
protectedvirtual |
Function called after the window has been created.
This function is called so that derived classes can perform their own specific initialization as soon as the window is created.
Reimplemented from sf::Window.
|
protectedvirtual |
Function called after the window has been resized.
This function is called so that derived classes can perform custom actions when the size of the window changes.
Reimplemented from sf::Window.
|
virtual |
Activate or deactivate the window as the current target for OpenGL rendering.
A window is active only on the current thread, if you want to make it active on another thread you have to deactivate it on the previous thread first if it was active. Only one window can be active on a thread at a time, thus the window previously active (if any) automatically gets deactivated. This is not to be confused with requestFocus().
active | True to activate, false to deactivate |
Reimplemented from sf::RenderTarget.