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
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.
-
Armbian 24.11 Released with Expanded Hardware Support
If you've been waiting for Armbian to support OrangePi 5 Max and Radxa ROCK 5B+, the wait is over.
-
SUSE Renames Several Products for Better Name Recognition
SUSE has been a very powerful player in the European market, but it knows it must branch out to gain serious traction. Will a name change do the trick?
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.