Simple Directmedia Layer

Simple DirectMedia Layer (SDL) is a cross-platform software development library designed to provide a hardware abstraction layer for computer multimedia hardware components.

Software developers can use it to write high-performance computer games and other multimedia applications that can run on many operating systems such as Android, iOS, Linux, macOS, and Windows.

Simple DirectMedia Layer
Original author(s)Sam Lantinga
Developer(s)SDL Community
Initial release1998; 26 years ago (1998)
Stable release
2.30.2 Edit this on Wikidata / 1 April 2024
Repository
Written inC
Operating systemLinux (e.g. SteamOS), Windows, macOS 10.4+, iOS 3.1.3+, tvOS, Android 2.3.3+, FreeBSD 8.4+, Nintendo Switch, PlayStation 2, Haiku, RISC OS 3.5+
Additionally before v2.0.0: e.g. AmigaOS and MorphOS, and consoles (PlayStation, XBox, Wii, etc), Nintendo DS
TypeAPI
Licensezlib License
Before 2.0.0:
GNU LGPL
Websitewww.libsdl.org

SDL manages video, audio, input devices, CD-ROM, threads, shared object loading, networking and timers. For 3D graphics, it can handle an OpenGL, Vulkan, Metal, or Direct3D11 (older Direct3D version 9 is also supported) context. A common misconception is that SDL is a game engine. However, the library is suited to building games directly, or is usable indirectly by engines built on top of it.

The library is internally written in C and possibly, depending on the target platform, C++ or Objective-C, and provides the application programming interface in C, with bindings to other languages available. It is free and open-source software subject to the requirements of the zlib License since version 2.0, and with prior versions subject to the GNU Lesser General Public License. Under the zlib License, SDL 2.0 is freely available for static linking in closed-source projects, unlike SDL 1.2. SDL 2.0, released in 2013, was a major departure from previous versions, offering more opportunity for 3D hardware acceleration, but breaking backwards-compatibility.

SDL is extensively used in the industry in both large and small projects. Over 700 games, 180 applications, and 120 demos have been posted on the library website.

History

Sam Lantinga created the library, first releasing it in early 1998, while working for Loki Software. He got the idea while porting a Windows application to Macintosh. He then used SDL to port Doom to BeOS (see Doom source ports). Several other free libraries were developed to work alongside SDL, such as SMPEG and OpenAL. He also founded Galaxy Gameworks in 2008 to help commercially support SDL, although the company plans are currently on hold due to time constraints.

Soon after putting Galaxy Gameworks on hold, Lantinga announced that SDL 1.3 (which would then later become SDL 2.0) would be licensed under the zlib License. Lantinga announced SDL 2.0 on 14 July 2012, at the same time announcing that he was joining Valve, the first version of which was announced the same day he joined the company. Lantinga announced the stable release of SDL 2.0.0 on 13 August 2013.

SDL 2.0 is a major update to the SDL 1.2 codebase with a different, not backwards-compatible API. It replaces several parts of the 1.2 API with more general support for multiple input and output options. Some feature additions include multiple window support, hardware-accelerated 2D graphics, and better Unicode support.

Support for Mir and Wayland was added in SDL 2.0.2 and enabled by default in SDL 2.0.4. Version 2.0.4 also provided better support for Android.

Software architecture

SDL is a wrapper around the operating-system-specific functions that the game needs to access. The only purpose of SDL is to provide a common framework for accessing these functions for multiple operating systems (cross-platform). SDL provides support for 2D pixel operations, sound, file access, event handling, timing and threading. It is often used to complement OpenGL by setting up the graphical output and providing mouse and keyboard input, since OpenGL comprises only rendering.

A game using the Simple DirectMedia Layer will not automatically run on every operating system; further adaptations must be applied. These are reduced to the minimum, since SDL also contains a few abstraction APIs for frequent functions offered by an operating system.

The syntax of SDL is function-based: all operations done in SDL are done by passing parameters to subroutines (functions). Special structures are also used to store the specific information SDL needs to handle. SDL functions are categorized under several different subsystems.

Subsystems

SDL is divided into several subsystems:

    Basics
    Initialization and Shutdown, Configuration Variables, Error Handling, Log Handling
    Video
    Display and Window Management, surface functions, rendering acceleration, etc.
    Input Events
    Event handling, Support for Keyboard, Mouse, Joystick and Game controller
    Force Feedback
    SDL_haptic.h implements support for "Force Feedback"
    Audio
    SDL_audio.h implements Audio Device Management, Playing and Recording
    Threads
    multi-threading: Thread Management, Thread Synchronization Primitives, Atomic Operations
    Timers
    Timer Support
    File Abstraction
    Filesystem Paths, File I/O Abstraction
    Shared Object Support
    Shared Object Loading and Function Lookup
    Platform and CPU Information
    Platform Detection, CPU Feature Detection, Byte Order and Byte Swapping, Bit Manipulation
    Power Management
    Power Management Status
    Additional
    Platform-specific functionality

Besides this basic, low-level support, there also are a few separate official libraries that provide some more functions. These comprise the "standard library", and are provided on the official website and included in the official documentation:

  • SDL_image — support for multiple image formats
  • SDL_mixer — complex audio functions, mainly for sound mixing
  • SDL_net — networking support
  • SDL_ttfTrueType font rendering support
  • SDL_rtf — simple Rich Text Format rendering

Other, non-standard libraries also exist. For example: SDL_Collide on SourceForge created by Amir Taaki.

Language bindings

The SDL 2.0 library has language bindings for:

Supported back-ends

Simple Directmedia Layer 
Abstraction layers of several SDL platforms

Because of the way SDL is designed, much of its source code is split into separate modules for each operating system, to make calls to the underlying system. When SDL is compiled, the appropriate modules are selected for the target system. The following back-ends are available:

  • GDI back-end for Microsoft Windows.
  • DirectX back-end; older SDL 1.2 uses DirectX 7 by default, while 2.0 defaults to DirectX 9 and can access up to DirectX 11.
  • Quartz back-end for macOS (dropped in 2.0).
  • Metal back-end for macOS / iOS / tvOS since 2.0.8; older versions use OpenGL by default.
  • Xlib back-end for X11-based windowing system on various operating systems.
  • OpenGL contexts on various platforms.
  • EGL back-end when used in conjunction with Wayland-based windowing system., Raspberry Pi and other systems.
  • Vulkan contexts on platforms that support it.
  • sceGu back-end, a Sony OpenGL-like backend native to the PSP.

An unofficial Sixel back-end is available for SDL 1.2.

The Rockbox MP3 player firmware also distributes a version of SDL 1.2, which is used to run games such as Quake.

Reception and adoption

Simple Directmedia Layer 
Workshop on SDL, University of Cádiz (2010)

Over the years SDL was used for many commercial and non-commercial video game projects. For instance, MobyGames listed 120 games using SDL in 2013, and the SDL website itself listed around 700 games in 2012. Important commercial examples are Angry Birds, Unreal Tournament, and games developed using Valve's Source Engine, which uses SDL extensively for cross-platform compatibility; ones from the open-source domain are OpenTTD, The Battle for Wesnoth or Freeciv.

The cross-platform game releases of the popular Humble Indie Bundles for Linux, Mac and Android are often SDL-based.

SDL is also often used for later ports on new platforms with legacy code. For instance, the PC game Homeworld was ported to the Pandora handheld and Jagged Alliance 2 for Android via SDL.

Also, several non video game programs use SDL; examples are the emulators, such as DOSBox, FUSE ZX Spectrum emulator and VisualBoyAdvance.

There were several books written for development with SDL (see further readings).

SDL is used in university courses teaching multimedia and computer science, for instance, in a workshop about game programming using libSDL at the University of Cadiz in 2010, or a Game Design discipline at UTFPR (Ponta Grossa campus) in 2015.

Video game examples using SDL

See also

References

Tags:

Simple Directmedia Layer HistorySimple Directmedia Layer Software architectureSimple Directmedia Layer Reception and adoptionSimple Directmedia Layer Further readingSimple Directmedia Layer

🔥 Trending searches on Wiki English:

WrestleMania XLList of presidents of the United StatesRussell WilsonAdrian NeweyJoJo SiwaMaadhavi LathaConan O'BrienBaldwin IV of JerusalemSupreme Court of the United StatesSplit (2016 American film)WhatsAppGigi Hadid2024 Indian general election in West BengalGeorgia (country)Rajiv Gandhi International Cricket StadiumList of Marvel Cinematic Universe filmsWalmartGulf WarGeorge LucasBMW 1602 Elektro-AntriebMaldivesVoice of VietnamRwandaList of Stanley Cup championsNazi GermanySouth KoreaBill ClintonRed Eye (British TV series)Orlando BloomDaman, IndiaCicadaSerie ARyan Smith (businessman)Emma RobertsHyderabad Lok Sabha constituencyManchester United F.C.PortugalPSV EindhovenElla PurnellBill CosbyList of countries and dependencies by populationJohnny McDaidChallengers (film)Nicola CoughlanMike FaistJimmy CarterARaindrop cakeList of most-streamed artists on SpotifyAnne HecheJodie ComerMatthew PerryWill Smith (defensive end)Kendrick LamarRichard NixonKYUR2024 AFC Futsal Asian CupGenghis KhanWayne RooneyRobert DurstDonald TrumpHamasAll I Want for Christmas Is YouTerry A. AndersonIndiaJesusArticle 370 (film)Ronald ReaganTwo-upStripchatBabe RuthKylian MbappéThe Office (American TV series)No Way UpBangalore Central Lok Sabha constituencyTom AndersonDua Lipa🡆 More