Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Building an RPG  with Unreal 4.x
Building an RPG  with Unreal 4.x

Building an RPG with Unreal 4.x: Get to grips with building the foundations of an RPG using Unreal Engine 4.x

Arrow left icon
Profile Icon Santello Profile Icon Stagner
Arrow right icon
R$50 per month
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.1 (7 Ratings)
Paperback Jan 2016 360 pages 1st Edition
eBook
R$80 R$245.99
Paperback
R$306.99
Subscription
Free Trial
Renews at R$50p/m
Arrow left icon
Profile Icon Santello Profile Icon Stagner
Arrow right icon
R$50 per month
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.1 (7 Ratings)
Paperback Jan 2016 360 pages 1st Edition
eBook
R$80 R$245.99
Paperback
R$306.99
Subscription
Free Trial
Renews at R$50p/m
eBook
R$80 R$245.99
Paperback
R$306.99
Subscription
Free Trial
Renews at R$50p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

Building an RPG with Unreal 4.x

Chapter 2. Scripting and Data in Unreal

Now that we've got a design to work from, we can begin to develop the game.

Before we can do that, however, we'll be exploring the variety of ways in which we can work with game code and game data in the Unreal game engine.

This chapter will walk you through the steps necessary to get Unreal and Visual Studio installed, and to create a new Unreal Engine project. Additionally, you will learn how to create new C++ game code, work with Blueprints and Blueprint graphs, and work with custom data for your game. In this chapter, we will cover the following topics:

  • Downloading Unreal
  • Setting up Visual Studio for use with Unreal
  • Setting up a new Unreal project
  • Creating new C++ classes
  • Creating Blueprints and Blueprint graphs
  • Using Data Tables to import spreadsheet data

Downloading Unreal

Before getting started, make sure that you have at least 18 GB of free disk space on your computer. You will need this disk space to hold the development environments for Unreal and also your project files.

We will now need to download Unreal. To do this, go to https://www.unrealengine.com and click on the GET UNREAL button.

Before you can download Unreal, you'll need to make an Epic Games account. The GET UNREAL button will redirect you to an account creation form, so fill it out and submit it.

After you've signed in, you'll see the Download button. This will download the installer for the Epic Games Launcher (from this launcher, you can download Unreal version 4.12).

Downloading Visual Studio

We will need to start programming soon, so if you haven't already, now is the time to download Visual Studio, which is the integrated development environment that we will need to program the framework for our engine and game logic in C++. Luckily, Microsoft provides Visual Studio Community for free.

To download Visual Studio Community, go to https://www.visualstudio.com/ and download Community 2015. This will download the installer for Visual Studio. After it downloads, simply run the installer. Note that Visual Studio Community 2015 does not install C++ by default, so be sure that under Features, you are installing Visual C++, Common Tools for Visual C++ 2015, and Microsoft Foundation Classes for C++. If you do not have C++ installed, you will not be able to write or compile code written for UE4 in Visual Studio since UE4 is built on C++.

Setting up Visual Studio for Unreal

After you've installed Visual Studio, there are some steps you can take to make it easier to work with C++ code in Unreal. These steps are not at all necessary, and can be safely skipped.

Adding the Solution Platforms drop-down list

On the right-hand side of the toolbar is a drop-down arrow, as shown in the following screenshot:

Adding the Solution Platforms drop-down list

Click on this button, hover over the Add or Remove buttons, and click on Solution Platforms to add the menu to the toolbar.

The Solution Platforms drop-down list allows you to switch the project between target platforms (for instance, Windows, Mac, and so on).

Disabling the Error List tab

The error list in Visual Studio shows you the errors that it detects in your code before you even compile the project. While normally this is incredibly useful, in Unreal, it can frequently detect false positives and become more annoying than helpful.

To disable the error list, first close the Error List tab (you can find this in the bottom pane...

Setting up a new Unreal project

Now that you have both Unreal and Visual Studio downloaded and installed, we're going to create a project for our game.

Unreal comes with a variety of starter kits that you can use, but for our game, we'll be scripting everything from scratch.

After signing into Epic Games Launcher, you'll first want to download the Unreal Engine. This book uses version 4.12. You may use a later version, but depending on the version, some code and the navigation of the engine may slightly differ. The steps for creating a new project are as follows:

  1. Firstly, in the Unreal Engine tab, select Library. Then, under Engine Versions, click on Add Versions and select the version you'd like to download.
  2. After the engine has downloaded, click on the Launch button.
  3. Once the Unreal Engine has launched, click on the New Project tab. Then, click on the C++ tab and select Basic Code.
  4. Finally, choose a location for your project and give it a name (in my case, I named the project...

Creating a new C++ class

We're now going to create a new C++ class with the following steps:

  1. To do this, from the Unreal editor, click on File | New C++ Class. We'll be creating an Actor class, so select Actor as the base class. Actors are the objects that are placed in the scene (anything from meshes, to lights, to sounds, and more).
  2. Next, enter a name for your new class, such as MyNewActor. Hit Create Class. After it adds the files to the project, open MyNewActor.h in Visual Studio. When you create a new class using this interface, it will generate both a header file and a source file for your class.
  3. Let's just make our actor print a message to the output log when we start our game. To do this, we'll use the BeginPlay event. BeginPlay is called once the game has started (in a multiplayer game, this might be called after an initial countdown, but in our case, it will be called immediately).
  4. The MyNewActor.h file (which should already be open at this point) should contain...

Downloading Unreal


Before getting started, make sure that you have at least 18 GB of free disk space on your computer. You will need this disk space to hold the development environments for Unreal and also your project files.

We will now need to download Unreal. To do this, go to https://www.unrealengine.com and click on the GET UNREAL button.

Before you can download Unreal, you'll need to make an Epic Games account. The GET UNREAL button will redirect you to an account creation form, so fill it out and submit it.

After you've signed in, you'll see the Download button. This will download the installer for the Epic Games Launcher (from this launcher, you can download Unreal version 4.12).

Downloading Visual Studio


We will need to start programming soon, so if you haven't already, now is the time to download Visual Studio, which is the integrated development environment that we will need to program the framework for our engine and game logic in C++. Luckily, Microsoft provides Visual Studio Community for free.

To download Visual Studio Community, go to https://www.visualstudio.com/ and download Community 2015. This will download the installer for Visual Studio. After it downloads, simply run the installer. Note that Visual Studio Community 2015 does not install C++ by default, so be sure that under Features, you are installing Visual C++, Common Tools for Visual C++ 2015, and Microsoft Foundation Classes for C++. If you do not have C++ installed, you will not be able to write or compile code written for UE4 in Visual Studio since UE4 is built on C++.

Setting up Visual Studio for Unreal


After you've installed Visual Studio, there are some steps you can take to make it easier to work with C++ code in Unreal. These steps are not at all necessary, and can be safely skipped.

Adding the Solution Platforms drop-down list

On the right-hand side of the toolbar is a drop-down arrow, as shown in the following screenshot:

Click on this button, hover over the Add or Remove buttons, and click on Solution Platforms to add the menu to the toolbar.

The Solution Platforms drop-down list allows you to switch the project between target platforms (for instance, Windows, Mac, and so on).

Disabling the Error List tab

The error list in Visual Studio shows you the errors that it detects in your code before you even compile the project. While normally this is incredibly useful, in Unreal, it can frequently detect false positives and become more annoying than helpful.

To disable the error list, first close the Error List tab (you can find this in the bottom pane, as...

Left arrow icon Right arrow icon

Key benefits

  • • Utilize a mixture of C++, Blueprints, and UMG to create a role playing game (RPG) efficiently
  • • Create reusable code chunks and elements that can easily be integrated into other games
  • • A cost effective, step-by-step guide to building and customizing an entire framework for your RPG

Description

Now that Unreal Engine 4 has become one of the most cutting edge game engines in the world, developers are looking for the best ways of creating games of any genre in the engine. This book will lay out the foundation of creating a turn-based RPG in Unreal Engine 4.12. The book starts by walking you through creating a turn-based battle system that can hold commands for party members and enemies. You’ll get your hands dirty by creating NPCs such as shop owners, and important mechanics, that make up every RPG such as a currency system, inventory, dialogue, and character statistics. Although this book specifically focuses on the creation of a turn-based RPG, there are a variety of topics that can be utilized when creating many other types of genres. By the end of the book, you will be able to build upon core RPG framework elements to create your own game experience.

Who is this book for?

If you are new to Unreal Engine and always wanted to script an RPG, you are this book’s target reader. The lessons assume you understand the conventions of RPG games and have some awareness of the basics of using the Unreal editor to build levels.

What you will learn

  • • Program gameplay elements in C++ in Unreal
  • • Create custom game data for entities such as players and enemies
  • • Create a turn-based combat engine
  • • Design menu systems and blueprint logic
  • • Create an NPC and dialog system
  • • Integrate equipment and items
  • • Develop the foundations of a saving and loading system

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jan 28, 2016
Length: 360 pages
Edition : 1st
Language : English
ISBN-13 : 9781782175636
Vendor :
Epic Games
Languages :
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Jan 28, 2016
Length: 360 pages
Edition : 1st
Language : English
ISBN-13 : 9781782175636
Vendor :
Epic Games
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
R$50 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
R$500 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just R$25 each
Feature tick icon Exclusive print discounts
R$800 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just R$25 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total R$ 920.97
Unreal Engine Game Development Blueprints
R$306.99
Unreal Engine Game Development Cookbook
R$306.99
Building an RPG  with Unreal 4.x
R$306.99
Total R$ 920.97 Stars icon
Banner background image

Table of Contents

11 Chapters
1. Getting Started with RPG Design in Unreal Chevron down icon Chevron up icon
2. Scripting and Data in Unreal Chevron down icon Chevron up icon
3. Exploration and Combat Chevron down icon Chevron up icon
4. Pause Menu Framework Chevron down icon Chevron up icon
5. Bridging Character Statistics Chevron down icon Chevron up icon
6. NPCs and Dialog Chevron down icon Chevron up icon
7. Gold, Items, and a Shop Chevron down icon Chevron up icon
8. Inventory Population and Item Use Chevron down icon Chevron up icon
9. Equipment Chevron down icon Chevron up icon
10. Leveling, Abilities, and Saving Progress Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.1
(7 Ratings)
5 star 0%
4 star 28.6%
3 star 0%
2 star 28.6%
1 star 42.9%
Filter icon Filter
Top Reviews

Filter reviews by




Avishek Dec 15, 2016
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
An excellent addition to your collection to your collection if you dream of creating the perfect RPG. The book is clearly written with a beginner in mind. Though it can become a bit jarring for someone with enough C++ experience to be explained obvious concepts in core programming, it nevertheless serves as handy book for newbies in game development. However, the book seems to over emphasise on certain topics such as optimisation of code and subroutines which in my opinion should not be hand fed to developers. A solid 4 stars from me.
Amazon Verified review Amazon
Germán Feb 27, 2016
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
Me lo compré porque necesitaba una referencia para continuar un juego de rol que estoy haciendo pero action-rpg. Sin embargo este libro explica las cosas, o más bien contiene código c++ dónde se puedo uno fijar de como se hacen las cosas en juego de las mismas características y de carácter profesional.
Amazon Verified review Amazon
BD Jun 02, 2016
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2
I've had similar issues to what others have said. I've had a back and forth with the publisher on a couple issues, was told they weren't issues, and had no real acceptable resolution. There are several instances where we're told to do something in the text, but the sample code does not reflect the instructions.The book even describes the setting of the RPG as taking place in a tower where you fight your way to the top through enemies until you reach the villain. At no point are these aspects of the book addressed.I will say that the early chapters of the book were nice, though. Walking through the creation of a game design document was helpful. And some practices presented in the book were illuminating (such as the use of UDataTable systems).Overall, though, I can't really recommend the book as a whole.
Amazon Verified review Amazon
Ruben Baeza Jun 02, 2016
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2
Like other reviewers here already noted, the code is chock-full of problems stemming from the fact that the author asks you to create a class based on Actor, for example, and replace the entirety of the pregenerated class with new code leading to problems during compile time. This process is not in line with a good approach for UE4 development and just leads to more frustration than insight. The author does do a good job in the design process and breaking down some of the ideas of how you would think through the design and structure, but overall I cannot recommend this book.
Amazon Verified review Amazon
Amazon Customer May 29, 2016
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
This book has BAD code. I tried every combination I could think of and none of it would compile. DO NOT WASTE YOUR MONEY purchasing this book. Again I can't stress this enough, BAD BAD CODE! He should be sued for defamation.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.