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
Conferences
Free Learning
Arrow right icon
CryENGINE 3 Game Development: Beginner's Guide
CryENGINE 3 Game Development: Beginner's Guide

CryENGINE 3 Game Development: Beginner's Guide: Discover how to use the CryENGINE 3 free SDK, the next-generation, real-time game development tool with this book and ebook.

eBook
₱579.99 ₱2245.99
Paperback
₱2806.99
Subscription
Free Trial

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

CryENGINE 3 Game Development: Beginner's Guide

Chapter 2. Breaking Ground with Sandbox

You may now be asking yourself, "I've downloaded the CryENGINE 3 SDK. Now how do I start making games with it?" Such a question has far-reaching implications and is awfully difficult to answer! So in my attempt to answer this question, let's create our own game together, in a short amount of time, using some of the functions and entities that the CryENGINE 3 SDK gives to us straight out of the box.

In this chapter, we will be:

  • Beginning with our first example using out of the box features of the engine

  • Creating and sculpting terrain for a new level, from scratch

  • Creating and using terrain texture layers

  • Creating vegetation groups and applying them to your level

  • Creating and setting a basic time of day to light our level

What makes a game?


In the previous chapter, we saw that majority of the games created on the CryENGINE SDK have historically been first-person shooters containing a mix of sandbox and directed gameplay. If you have gone so far as to purchase a book on the use of the CryENGINE 3 SDK, then I am certain that you have had some kind of idea for a game, or even improvements to existing games, that you might want to make. It has been my experience professionally that should you have any of these ideas and want to share or sell them, the ideas that are presented in a playable format, even in early prototype form, are far more effective and convincing than any PowerPoint presentation or 100-page design document.

Reducing, reusing, recycling

Good practice when creating prototypes and smaller scale games, especially if you lack the expertise in creating certain assets and code, is to reduce, reuse, and recycle. To break down what I mean:

  • Reduce the amount of new assets and new code you need to make

  • Reuse...

Developing out of the box


As mentioned earlier, the CryENGINE 3 SDK has a huge amount of out-of-the-box features for creating games.

Let's begin by following a few simple steps to make our first game world.

Before proceeding with this example, it's important to understand the features it is displaying; the level we will have created by the end of this chapter will not be a full, playable game, but rather a unique creation of yours, which will be constructed using the first major features we will need in our game. It will provide an environment in to which we can design gameplay.

With the ultimate goal of this chapter being to create our own level with the core features immediately available to us, we must keep in mind that these examples are orientated to compliment a first-person shooter and not other genres. The first-person shooter genre is quite well defined as new games come out every year within this genre. So, it should be fairly easy for any developer to follow these examples.

In my...

Time for action - creating a new level


Let's follow a few simple steps to create our own level:

  1. Start the Editor.exe application.

  2. Select File | New. This will present you with a New Level dialog box that allows you to do the adjustments of some principal properties of your masterpiece to come. The following screenshot shows the properties available in New Level:

  3. Name this New Level, as Book_Example_1. The name that you choose here will identify this level for loading later as well as creating a folder and .cry file of the same name.

  4. In the Terrain section of the dialog box, set Heightmap Resolution to 1024x1024, and Meters Per Unit to 1.

  5. Click on OK and your New Level will begin to load. This should occur relatively fast, but will depend on your computer's specifications.

  6. You will know the level has been loaded when you see Ready in the status bar. You will also see an ocean stretching out infinitely and some terrain slightly underneath the water.

  7. Maneuver your camera so that you have a good, overall...

Time for action - creating your own heightmap


You must have created a new map to follow this example.

Having sufficiently beaten the terrain system to death through explanation, let's get on with what we are most interested in, which is creating our own heightmap to use for our game:

  1. As discussed in the previous example, you should now see a flat plane of terrain slightly submerged beneath the ocean.

  2. At the top of the Sandbox interface in the main toolbar, you will find a menu selection called Terrain; open this. The following screenshot shows the options available in the Terrain menu.

  3. As we want to adjust the terrain, we will select the Edit Terrain option. This will open the Terrain Editor window, which is shown in the following screenshot:

  4. You can zoom in and pan this window to further inspect areas within the map. Click-and-drag using the right mouse button to pan the view and use the mouse wheel to zoom in and zoom out.

  5. The Terrain Editor window has a multitude of options, which can be used...

Using alternative ways for creating terrain


There are still two other methods we have not yet explored for creating terrain. Before experimenting with either of these, I recommend that you create a new level.

Generating procedural terrain

Use the Tools menu in the Terrain Editor and click on Generate Terrain; you can modify many parameters when generating new terrain procedurally like this:

Have a go hero – generating procedural terrain

Try adjusting some of the automatic generation parameters like:

  • Feature Size: This value handles the general height manipulations within the seed and the size of each mound within the seed. Since the size of the feature depends greatly on rounded numbers, it is easy to end up with a perfectly rounded island. This is not realistic, so it is best to leave this value to around 7.

  • Bumpiness / Noise (Fade): This is a noise filter for the level. The greater the value, the more the noise that will appear on the heightmap.

  • Detail (Passes): This value controls how detailed...

Time for action - creating some basic terrain texture layers


Applying a good set of terrain layers depends heavily on the environment in which you wish to create your map. In this particular example, we will use a somewhat straightforward setup of rocks, forest, grass, mud, sand, and underwater.

  1. Create a new map and generate some terrain, or open Book_Example_1_no_color.cry because we need to have some terrain loaded for us to paint onto like a blank canvas.

  2. Open the Terrain Texture Layers window found in the main sandbox toolbar under Terrain | Texture.

  3. In this window we want to create some new layers because, as we can see, it has only a single layer at present.

  4. Create a new layer using the Add Layer command, as shown in the following screenshot:

  5. Rename the new layer grass.

  6. Next, change the Surface texture of this layer.

  7. Use the Change Layer Texture command shown in the following figure, and navigate to Book_Chapter_2_Assets\low_detail_terrain_textures\directory and select the grass.tif texture...

Time for action - creating some flora for your level


Without further ado, let's bring some life to the map we have been working on.

  1. Open Example_Level_2.cry or your own, already textured level.

  2. From the RollupBar, open the Terrain tab and click on the Vegetation button as shown in the following screenshot:

    Before we can paint the vegetation, we first must add in some objects that we want to use. The first vegetation we will place will be some trees.

  3. Click on the icon called Add Vegetation Category, as shown in the following screenshot:

  4. Name the new category Trees.

  5. Select the newly created Trees category.

  6. Click on the add vegetation object icon as shown in the following screenshot.

  7. Navigate to .../Objects/Natural/vegetation/rocky_ravines/ and select a_spruce_a.cgf, then click on Open.

    Note

    You can hold Control and click on multiple objects in a category at once.

  8. All of the highlighted trees have now been placed in this category. You can now start painting with a few of the selected trees or select the...

Time for action - setting up time of day and its basic parameters


Now, the time has come to adjust the overall lighting of our level. The fastest and easiest way to achieve a huge variety of atmospheres and settings is by using the Time of day feature in CryENGINE.

The sun in CryENGINE is approximated by a colored, directional light without distance attenuation. This is important to understand as its properties are similar to that of a regular light, and properties such as color and specular level can be adjusted. There is an important distinction, however, to the sun and other lights in CryENGINE, as the sun uses a technology called cascaded shadow maps.

  1. Open the Time Of Day dialog box from Terrain | Time Of Day.

    Note that when you highlight any of the basic parameters in the time of day dialog, there are key frames set already represented by the small, yellow squares on the timeline in the preceding screenshot.

    This timeline is represented by a 24-hour slider at the top of the Time Of Day...

Summary


In this chapter, we've found out that gameplay needs an environment in order to take place, and so the creation and design of a level's environment is a critical factor in developing top-quality games. The level's environment is just as important as character design and presents several unique challenges to designers.

Designing levels breaks down into two distinct parts. The first of which is the look and feel of the level's environment, which we've gone over in a good amount of detail in this chapter. The second, which we will explore in the next chapter, is the design and challenge of the play space itself. The whole purpose to this chapter was to provide the space and ambience to host the various challenges of AI enemies, puzzles, and trials within our game.

Having made an interesting environment, let's fill it with some gameplay, using entities and objects essential to making our first game example!

Left arrow icon Right arrow icon

Key benefits

  • Begin developing your own games of any scale by learning to harness the power of the Award Winning CryENGINE 3 game engine
  • Build your game worlds in real-time with CryENGINE 3 Sandbox as we share insights into some of the tools and features useable right out of the box.
  • Harness your imagination by learning how to create customized content for use within your own custom games through the detailed asset creation examples within the book.
  • Contains C++ programming examples designed to expose powerful game customization opportunities available to game programmers.
  • Translate your game design into a functioning game by following the easy step by step examples exploring level building, visual scripting, and many of the other tools within CryENGINE 3.

Description

CryENGINE is a complete game development environment used by AAA game development studio Crytek to produce blockbuster games such as Crysis 1, 2 and 3. This complete Beginner's Guide takes the would be game developer through the steps required to create a game world complete with event scripting, user interface and 3D environment in the free CryENGINE SDK. Learn to create game worlds with the CryENGINE 3 Sandbox, the tool used to create AAA games like the soon to be released Crysis 3. Follow straightforward examples to sculpt the terrain, place vegetation, set up lighting, create game sounds, script with Lua and code with C++. Learn to navigate the interface within the CryENGINE 3 Sandbox, the tool used to create AAA games like Crysis 1 and 2, as well as the soon to be released Crysis 3. Learn to create your own worlds by following straight forward examples to sculpt the terrain, place vegetation, set up lighting, create game sounds, and script with the Lua language. The book covers all beginner aspects of game development including an introduction to C++ for non- coders.

Who is this book for?

This book is written with the beginner and casual developer in mind. The freely available version of the CryENGINE® 3 is used for all examples in this book.

What you will learn

  • Learn to navigate within the CryENGINE 3 Sandbox.
  • Learn to create your own worlds by following straightforward examples to sculpt and mould the terrain and place vegetation.
  • Learn to model with the integrated tools available to designers and artist in the CryENGINE3 Sandbox.
  • Learn methods of visual scripting used to create amazingly complex scripted events
  • Learn how to start creating and compile C++ game code to create your own custom game.
  • Learn to use Autodesk Scaleform to create high fidelity 3d heads up displays and menus for the player.
  • Learn how to create your own custom characters and objects for use within the examples.
  • Learn to create your own cut scenes, animations and videos using the power of the CryENGINE3 engine to maximize the output.
  • Learn to use FMOD designer along with the CryENGINE 3 to add sound and music to your game.
  • Explore some of the key performance and optimization strategies for levels and learn to share your content with others.

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Sep 21, 2012
Length: 354 pages
Edition : 1st
Language : English
ISBN-13 : 9781849692069
Languages :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Sep 21, 2012
Length: 354 pages
Edition : 1st
Language : English
ISBN-13 : 9781849692069
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 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
$199.99 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 ₱260 each
Feature tick icon Exclusive print discounts
$279.99 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 ₱260 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 8,114.97
CryENGINE 3 Cookbook
₱2806.99
CryENGINE 3 Game Development: Beginner's Guide
₱2806.99
CryENGINE Game Programming with C++, C#, and Lua
₱2500.99
Total 8,114.97 Stars icon
Banner background image

Table of Contents

10 Chapters
Introducing the CryENGINE 3 Free SDK Chevron down icon Chevron up icon
Breaking Ground with Sandbox Chevron down icon Chevron up icon
Playable Levels in No Time Chevron down icon Chevron up icon
I'm a Scripter, Not a Coder Chevron down icon Chevron up icon
C++ and Compiling Your Own Game Code Chevron down icon Chevron up icon
User Interface and HUD Creation with Flash Chevron down icon Chevron up icon
Creating Assets for the CryENGINE 3 Chevron down icon Chevron up icon
Creating Real-time Cutscenes and Cinematic Events Chevron down icon Chevron up icon
Immersion through Audio Design Chevron down icon Chevron up icon
Preparing to Share Your Content Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
(10 Ratings)
5 star 40%
4 star 40%
3 star 10%
2 star 0%
1 star 10%
Filter icon Filter
Top Reviews

Filter reviews by




railerswim Mar 28, 2014
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I love it! This book has helped me get a great start. I'm halfway through but I have hit some snags because of my limited education (we haven't and won't get into programming xml files or anything at my University, so much for a college education). I already recommended it to my fellow dev team for my indie game company. I ABSOLUTELY RECOMMEND THIS BOOK!
Amazon Verified review Amazon
sefirosu777 Oct 23, 2012
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I Love the way this book is written. The format is great and the wording is perfect, its easy to understand. A Must have for anyone interested in game development. The only problem I have with it is the terrain_materials folder in missing from the chapter 2 assets. I think that's what is causing the Example_Base_Terrain_Layers.lay to not work, I get an error when I try to open it. Hopefully that will be fixed soon cuz besides that this is the greatest game development book of all time.
Amazon Verified review Amazon
Mohamed Dec 23, 2012
Full star icon Full star icon Full star icon Full star icon Full star icon 5
No book explains everything regarding game development or a game engine nor it will can.However, CryENGINE 3 Game Development: Beginner's Guide explains all the fundamentals that the CryENGINE 3 Free SDK has. From the introduction, creating levels or sculpting terrain, scripting through Flow Graph, coding in C++, User Interface and HUD creation using Flash, assets, etc... This book will help you begin your first steps through CryENGINE 3 and when you're done, you're ready to create levels and content in this engine.If you're interested to learn creating content through CryENGINE 3 SDK, don't hesitate to buy this book.
Amazon Verified review Amazon
S. M. Prinke Dec 25, 2012
Full star icon Full star icon Full star icon Full star icon Full star icon 5
For those interested in game developement this book gives information you need on the cryengine. It fills in where other books do not.
Amazon Verified review Amazon
W Boudville Nov 06, 2012
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
It is encouraging that the Cryengine 3 was used to make actual successful games, like the Crysis series. This helps validate the book's appeal to a newcomer. But be aware that the book is not a quick read. Yes, much effort has been expended by the package's developers to streamline the steps you need to do within it to make various and many effects. The reality is that game development has so much in the way of details and coding that is indispensible.Specifically, you need a pre-existing background in programming. This book is not akin to one on, say, webpage design (like this one I recently reviewed, Learning Adobe Muse ). Game development is far more complex. Many details cannot be swept under the rug of an SDK GUI. Consequently, the book has snippets of C++ code that demonstrate certain points of functionality. Oh, and that means you need to know C++. By the way, the choice of C++ is accurate. Serious game programming tends to fall back on C++ as the underlying language of choice, or necessity, to be more pragmatic. C++ and its core originating subset, C, gets close to the silicon, for maximum performance.The book has many recommendations germane to the practicalities of game development. One keen aspect is the use of white boxing. Where you model some object with a simpler geometrical object, in the interests of rapid prototyping. The idea is to get quickly to a baseline functionality so that your testers and you can get feedback on how the game plays. Later, you can go back and build the final object.While I mentioned the need to know C++, it turns out that Cryengine has alternatives. You can do scripting. Here the design flow is more rapid than having to wait for your machine to compile and link in C++ changes. The scripting language is Lua, (see Programming in Lua, Second Edition for a text devoted to it). But Cryengine proffers another and very different scripting approach. The use of visual scripting via what it calls a Flow Graph. This is a graphical drag and drop method of hooking up various entities, from the output of one to the input of another. Very intuitive and akin to chip layout software, if you have that background. Again, to do rapid development, either scripting approach may benefit you.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.