Reader small image

You're reading from  Learning Game AI Programming with Lua

Product typeBook
Published inNov 2014
Reading LevelBeginner
PublisherPackt
ISBN-139781783281336
Edition1st Edition
Languages
Right arrow
Author (1)
David Young
David Young
Right arrow

Adding random pathfinding to our soldier


Now that we have navmesh generation and pathfinding out of the way, we can add pathfinding to our agents. As our agents currently have no decision making—and therefore, no ability to select a goal to reach—we'll randomly pick a point on the navmesh and send our agent to that point. Once it reaches its target, a new location will be selected.

Our sandbox Lua script will be very similar to previous scripts we've written, and it will take advantage of the previous controller-based agents we've created so far:

Sandbox.lua:

require "DebugUtilities"
require "SandboxUtilities"
local agents = {};

Updating agent paths

We can use a helper function to generate new paths for agents that have reached their target. As we're randomly selecting a point on the navmesh, we need to check whether the agent can actually use a path to that point, as the obstacle course geometry isn't fully connected. We'll continue trying to generate new paths until a path is successfully...

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Learning Game AI Programming with Lua
Published in: Nov 2014Publisher: PacktISBN-13: 9781783281336

Author (1)