Simple DirectMedia Layer 2.0
Fit
To fit the image properly, you need to tell the SDL_RenderCopy()
function the size of the texture, as well as the position of the upper left corner of the image in the window. SDL_RenderCopy()
expects this information as an SDL_Rect
.
This data structure simply encapsulates the dimensions of a rectangle. In other words, SDL_RECT pos;
first draws a rectangle. SDL counts the pixels from the left upper corner of the window, starting at 0
. In this example, I want the upper-left corner of the texture to be 150 pixels from the left edge of the window and 100 pixels from the top edge of the window. These two numbers are stored in the variables x
and y
:
pos.x = 150; pos.y = 100;
To define the width and height of the texture window, you use the pos.w
and pos.h
variables. To avoid texture distortion by the renderer, you thus assign the width and height of the texture to it. You can either painstakingly use a paint program to discover these two values, or you can use the SDL_QueryTexture()
function:
SDL_QueryTexture(texture, NULL, NULL, &pos.w, &pos.h);
This returns the pixel format (RGB, YUV, or similar), a pointer to the actual bitmap in memory, and the width and height of the texture. This information is no longer of interest, which is why SDL_QueryTexture()
keeps it to itself, thanks to the two NULL
s.
At this point, pos
contains the position and size that the renderer will use to paint the texture in the window. You only need to pass a pointer to pos
to SDL_RenderCopy()
:
SDL_RenderCopy(renderer, texture, NULL,&pos);
The results are shown in Figure 4. Using the same principle, you can then draw more textures in the window. The renderer draws the first textures copied first. In the following example,
SDL_RenderCopy(renderer, rear, NULL,NULL); SDL_RenderCopy(renderer, front, NULL, NULL);
the renderer would first paint the rear
texture in the window and then glue the front
texture on top. At the end of the code, you need to tell the renderer to display the updated window contents:
SDL_RenderPresent(renderer);
This last step only seems superfluous at first glance: If the renderer directly output every drawing action in the window, you would be able to see how the image was built up from individual textures. The result would be ugly, flickering animations.

Bus Stop
If you were to put together the code snippets as a program and launch it, you would briefly see a window appear and immediately disappear. To prevent that, you could stop the program just for two seconds:
SDL_Delay(2000);
However, a more elegant approach is to allow the user to quit by pressing a key, clicking on the window, or pressing the close button in the title bar. From this point on, SDL 1.2 users will be back on familiar ground: Keystrokes, mouse clicks, and other inputs are events in SDL.
Please Wait
Each event first ends up in a queue. The next event in the queue is retrieved by the SDL_WaitEvent()
function. If the queue is empty, SDL_WaitEvent()
waits until an event occurs. Then, you only need to query what event is occurring. The resulting switch
/case
monster is shown in Listing 1.
Listing 1
Event Handling in SDL
The helper variable quit
only indicates whether the end of the program has been reached. SDL_WaitEvent()
picks up the next event from the queue and puts it into a data structure of the SDL_Event
type. The structure stores the event type in a variable named type
. If the user presses a key, type
has a value of SDL_KEYDOWN
. The myevent.key.keysym.scancode
event variables reveal what key this was. The key number is translated by SDL_GetScancodeName()
into the corresponding letter or the label.
Because the keyboard on any given system will tend to differ, SDL assigns a symbolic name to each key, which is stored in the myevent.key.keysym.sym
variable. The SDL_GetKeyName()
function converts this to a readable result (Figure 5). An SDL_MOUSEBUTTONDOWN
type event is created if the user clicks on the window. The mouse pointer coordinates are stored in the variables myevent.motion.x
and myevent.motion.y
. A game would evaluate these coordinates and check which game object lies below them.

The user triggers the SDL_QUIT
event on quitting the program. In addition to the three cases presented, SDL supports many more events [4]. For example, if the user releases a key, this triggers an SDL_KEYUP
event.
« Previous 1 2 3 4 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Direct Download
Read full article as PDF:
Price $2.95
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Find SysAdmin Jobs
News
-
KDE Plasma 5.27 Beta is Ready for Testing
The latest beta iteration of the KDE Plasma desktop is now available and includes some important additions and fixes.
-
Netrunner OS 23 Is Now Available
The latest version of this Linux distribution is now based on Debian Bullseye and is ready for installation and finally hits the KDE 5.20 branch of the desktop.
-
New Linux Distribution Built for Gamers
With a Gnome desktop that offers different layouts and a custom kernel, PikaOS is a great option for gamers of all types.
-
System76 Beefs Up Popular Pangolin Laptop
The darling of open-source-powered laptops and desktops will soon drop a new AMD Ryzen 7-powered version of their popular Pangolin laptop.
-
Nobara Project Is a Modified Version of Fedora with User-Friendly Fixes
If you're looking for a version of Fedora that includes third-party and proprietary packages, look no further than the Nobara Project.
-
Gnome 44 Now Has a Release Date
Gnome 44 will be officially released on March 22, 2023.
-
Nitrux 2.6 Available with Kernel 6.1 and a Major Change
The developers of Nitrux have officially released version 2.6 of their Linux distribution with plenty of new features to excite users.
-
Vanilla OS Initial Release Is Now Available
A stock GNOME experience with on-demand immutability finally sees its first production release.
-
Critical Linux Vulnerability Found to Impact SMB Servers
A Linux vulnerability with a CVSS score of 10 has been found to affect SMB servers and can lead to remote code execution.
-
Linux Mint 21.1 Now Available with Plenty of Look and Feel Changes
Vera has arrived and although it is still using kernel 5.15, there are plenty of improvements sure to please everyone.