|
|
What is SFML?Table of contents:What is SFMLSFML is short for Simple and Fast Multimedia Library and its an opensource API written in C++. Its main focus is using it with C++ but it does support multiple commonly used programming languages as well. Its designed to be simple and user friendly.The multimedia layer is the layer between you and the hardware SFML is that layer that lets you communicate with your hardware. After the boring summary, now for the dumdums like me, its basically something that lets you create graphical applications including everything you would interact with a modern software nowadays. Its primarily used for game development. Its also based on OpenGL, keep that in mind boys. To make an insane AAA game you just include some libraries, write some code and BOOOOM you have a game, thats it, its that easy. Anyways… Its based on 5 core modules:
Your allowed to just include the necessary modules for your current project. So why SFML? I just wanted to make a simple game using C++ so I looked around how I could achieve this, I found SFML and searched for a book. The book I choose is written by the devs of SFML and its called SFML Game Development. Pretty good so far its not only teaching you how SFML works through making a space shooter game (which I will be covering), but also giving you advice on general game programming principles and good practices. ReferencesSFML: https://www.sfml-dev.org/ BOOK: https://www.amazon.com/SFML-Game-Development-Jan-Haller/dp/1849696845 |
|