Book Image

SDL Game Development

By : Shaun Mitchell
5 (1)
Book Image

SDL Game Development

5 (1)
By: Shaun Mitchell

Overview of this book

SDL 2.0 is the latest release of the popular Simple DirectMedia Layer API, which is designed to make life easier for C++ developers, allowing you simple low-level access to various multiplatform audio, graphics, and input devices.SDL Game Development guides you through creating your first 2D game using SDL and C++. It takes a clear and practical approach to SDL game development, ensuring that the focus remains on creating awesome games.Starting with the installation and setup of SDL, you will quickly become familiar with useful SDL features, covering sprites, state management, and OOP, leading to a reusable framework that is extendable for your own games. SDL Game Development culminates in the development of two exciting action games that utilize the created framework along with tips to improve the framework.
Table of Contents (16 chapters)
SDL Game Development
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Chapter 7. Creating and Displaying Tile Maps

Most 2D games that you have played in the past made use of tile maps. It is an extremely efficient and fast way to develop complex 2D levels or scenes. Even if a game has more complex graphical content, it is likely that it will still make use of tiles in some way. Throughout this chapter we will be using the tiled map editor, an open source and cross-platform tool created by Thorbjørn Lindeijer and a large open source community. It is available at http://www.mapeditor.org/. We will essentially make this tool our level editor and use it for creating maps and placing our objects within those maps.

In this chapter we will cover:

  • What a tile map is

  • What a tile sheet looks like

  • Using the tiled map editor to create our maps

  • Parsing a state from a tiled map

  • Loading and displaying a tile-based map in SDL 2.0