Questions tagged [sdl2]
The sdl2 tag has no summary.
8 questions
3votes
1answer
132views
How can I make my force calculations better?
I am making a simple physics solver (haven't gotten to collision resolution or detection yet, just finished making it mt'ed), and when I apply forces through "W", "A", "S"...
2votes
0answers
28views
Recording/Playback thread device in Object Pascal
I have developed an audio recording and playback base device in Free Pascal. This device is built on Free Pascal's TThread class and utilizes the low-level audio ...
7votes
2answers
2kviews
Chess Game with GUI in C++ using SDL2
Introduction So, I recently completed a chess game with a GUI in Python, using Pygame. Upon research, I learned that Pygame is built on SDL, and since I wanted to practice C++ more, I decided to code ...
4votes
3answers
933views
SDL2 engine base implementation
I would like a little help with the implementation of my SDL2 engine. It's actually not a real engine nor does it strive to be but I don't have a better word to describe it. The purpose of this ...
2votes
1answer
375views
Game of Life in C/SDL2
My first project in C/SDL2 after completing a short tutorial coding Pong. These 2 projects are my entire experience with both C and SDL2, although I had some previous basic experience with Python. I ...
9votes
1answer
2kviews
Audio visualizer in C++
I have completed my first attempt of a simple music visualizer app for windows in C++ using SDL. It takes system audio and outputs the soundwave in real-time. I'd appreciate some feedback on how I can ...
1vote
1answer
1kviews
Good way to structure a SDL project
I am absolutely new to c++ and am trying to learn SDL2 with c++. I am setting up my first project and I was unsure if the way I have structured the project is good or if I have over done it. Here is ...
3votes
1answer
811views
Conway's game of life in C++ using SDL2
I finally finished my Conway's game of life in c++ project and i'd love to find out how to improve the code. main.cpp ...