C#

Game From Scratch C++ Edition Part 4

  In this section we are going to accomplish one very small task.  We are going to get this sprite:     to draw on the screen ( Click here to download paddle.png ).  In the process we are going to look a little deeper into object oriented programming, specifically inheritance, where you will see […]

Game From Scratch C++ Edition Part 3

    So, now we have a functioning game loop and a screen to draw on, lets add some more functionality.  This time we are going to add a menu and a welcome splash screen.  We are going to take a consistent approach in that all “screens” are in charge of handling their own input. […]

Game From Scratch C++ Edition The Introduction

  I have decided to take a quick detour from my primary game development, to illustrate how to create a more simplistic 2D game using C++. I am going to cover it over a number of posts, each building on the last and if you follow along, hopefully at the end you will be well […]

Game from Scratch C++ Edition Part 2

    Alright, code time! In this part we are going to setup the general framework for our application. Pang! is going to be state driven, which means at any given time the game is in exactly one state. It is by changing states that we control program flow. It also makes certain tasks like […]

Game From Scratch C++ Edition Part 1

  This part is sadly rather dull, there will be absolutely no coding but it is a necessary evil. In this part we are going to configure your development environment to work with SFML. If you already know all about how to set Visual Studio up, or are working in a different IDE, feel free […]

Scroll to Top