当前位置: 首页 > 工具软件 > SDL2-CS > 使用案例 >

SDL介绍

阳福
2023-12-01

SDL介绍

官网

libsdl - https://www.libsdl.org/index.php

Ubuntu安装

sudo apt install libsdl2-dev

简介

SDL(Simple DirectMedia Layer )是一个跨平台的开发库,它通过实现了对音频、键盘、鼠标、手柄的底层支持,并通过OpenGL和Direct3D提供对视频的支持。 SDL可运行在Windows, Mac OS X, Linux, iOS, and Android系统下,因为采用C语言编写,原生支持C++,提供源代码,所以,可编译为其他平台。目前SDL2为2.0版。

SDL库同时由社区提供其他语言的支持,例如:

Python语言

pygame_sdl2
pygame - https://github.com/pygame/pygame Pygame基于SDL1开发,Pygame2目前正在基于SDL2开发,需要自己安装

# tested with Ubuntu Bionic 18.04
sudo apt-get update
sudo apt install libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev libfreetype6-dev python3-setuptools python3-dev python3 libportmidi-dev
sudo apt-get build-dep libsdl2 libsdl2-image libsdl2-mixer libsdl2-ttf libfreetype6 python3 libportmidi0
git clone https://github.com/pygame/pygame.git
cd pygame
python3 setup.py -config -auto -sdl2
python3 setup.py install --user
#python3 -m pygame.examples.aliens
#python3 -m pygame.tests

C#语言

SDL2#- https://github.com/flibitijibibo/SDL2-CS

Go语言

go-sdl2 - https://github.com/veandco/go-sdl2

Lua语言

Lua-SDL2 - https://github.com/Tangent128/luasdl2

Rust语言

Rust-SDL2 - https://github.com/AngryLawyer/rust-sdl2

版权

SDL2采用 zlib协议,可自由用于商业开发。

用途

SDL可用于视频播放、模拟器、游戏开发等。每个人都由自己的不同用途,对于我,可能作为C++、C#、Python、Rust语言的学习试炼地,用来学习这些语言,并实验图形学和模拟仿真的一些应用。

 类似资料: