Let’s switch your attention now to a building a level editor. The original game that you are working on upgrading used a very limited system to define its levels. It consisted of text files where each row of comma-separated fields described what was displayed on the screen. Those level files also did not contain any data for what to draw in the background since they assumed that there was an infinite scrolling background in the game.
As you saw in Chapter 3, you are moving ...