Home

Awesome

Mastering C++ Game Development

This is the code repository for Mastering C++ Game Development, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

Although many languages are now being used to develop games, C++ remains the standard for professional development. The majority of professional libraries and toolchains are still built using C++. The primary goal of this book is to teach you how to harness the power of the language and provide you with the ability to build high-quality games.

To begin, you will be presented with, an overview of popular development methodologies, and a short guide to updated features of the C++ 17 standard. You will learn how to leverage existing libraries such as OpenGL and the STL (standard library) to build complex systems. Throughout the journey, you will also build a set of C++ 17 compatible libraries that can be reused in your own development projects. In the last half of the book, you will work with demos designed to introduce you to advanced rendering techniques, interactive physics, advanced AI techniques, and even multiplayer game concerns with modern networks.

By the end of the book, you will have a good understanding of the structure of modern high-end games and have the tools to create them.

Instructions and Navigations

All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.

The code will look like the following:

#include <BookEngine/IGame.h>
#include "App.h"

int main(int argc, char** argv)
{
	App app;
	app.Run();

	return 0;
}

Software and Hardware Requirements

To get the most out of the examples and development experience, it is recommended you to have a relatively newer development device with at least the following things:

The examples (with a few exceptions) have been designed to run on both macOS and Windows PC devices. To follow along you should have the following software installed:

Related Products

Download a free PDF

<i>If you have already purchased a print or Kindle version of this book, you can get a DRM-free PDF version at no cost.<br>Simply click on the link to claim your free PDF.</i>

<p align="center"> <a href="https://packt.link/free-ebook/9781783554355">https://packt.link/free-ebook/9781783554355 </a> </p>