Tag Archives: Design

Help Us Decide: Splash Contours or Elevation Contours?

We need your input on how elevation (hills and ridges) will be displayed in General Staff. Originally we had planned on using ‘splash contours’. Splash contours were often used in quick sketch maps on the battlefield and they have an authentic look to them.

An example of a splash contour representing a hill (artwork by Ed Isenberg).

However, recently “Cry Havoc” – a Grognard on Facebook – asked if we were going to include the original Kriegsspiel Meckel map with General Staff. That got us thinking and taking another look at the original Kriegsspiel maps. Below is a map from the original American Kriegsspiel (circa 1892-8):

An original American Kriegsspiel map (circa 1892). Note the elevation contour lines. Click to enlarge.

Obviously, concentric elevation contours were in use in the 19th century so we could be authentic using either method of display.

This leads us to a very simple user survey:

[os-widget path=”/drezrasidran/splash-contours-or-concentric-elevation-contours” of=”drezrasidran” comments=”false”]

Victorian Typography

Last week we ran a quick survey to get your opinion on the legibility of two Victorian typefaces (see here). The clear favorite was the font ‘Monastic’ garnering 73% of the votes. However, we also received numerous personal emails and comments from grognards that were also very fond of the Phectic font. The decision was made to go with Monastic but to use Phectic in a larger point size when appropriate.

Below is a screen shot of how we will be using Phectic:

Screen shot of the Unit Types information display. The ornate Victorian font at the top is Phectic.

Your comments were greatly appreciated (it was especially enjoyable to hear from a letterpress operator who fondly remembered metal type). The interactive Army Design Module is almost completed and we will be posting a video of it shortly.

A Wargame 55 Years in the Making (Part 2)

After The War College I created a couple of non-wargames including Online Mysteries, a massive multiplayer online mystery game that was written for AOL’s WorldPlay. WorldPlay was envisioned to be a 3D online world populated with avatars. It was similar in concept to Second Life but, like a lot of great ideas, was ahead of its time. AOL shut WorldPlay down before most of the games, including Online Mysteries, launched.

Mysteries Unlimited screen shot (Windows) was a massively multiplayer online mystery game created for AOL/WorldPlay (click to enlarge).

Mysteries Unlimited screen shot (Windows) was a massively multiplayer online mystery game created for AOL/WorldPlay (click to enlarge).

By 2000 the game publishing industry  was going through another convulsion of consolidations, buyouts and contractions. Publishers were producing fewer games but the ones that were being created had large teams, long development cycles and massive budgets. The days when an independent developer could pitch a game idea, get an advance and then develop it outside of a publisher’s studio were gone. And the last thing that the big publishers were interested in were wargames.

Over the previous fifteen years I had received inquiries from active duty military and Pentagon project managers about my wargames (known as Commercial Off The Shelf, or COTS, in Pentagon-lingo) and if I would be available to consult on various wargaming projects. Unfortunately, I was lacking a key prerequisite for this: a doctorate. I returned to academia, first to a small local college where I also taught computer game design and in 2003 I was accepted in the computer science PhD program at the University of Iowa (one of the oldest computer science departments in the world).

Before I ever set foot in MacLean Hall (the home of the Department of Computer Science at the University of Iowa) I knew what I would spend the next six years of my life researching and studying: tactical and strategic AI (I would eventually coin the phrase ‘computational military reasoning’ to describe this field).  What I soon discovered was that very little work had ever been done in this research area. What was even more surprising was my discovery that most ‘professional’ military wargames (i.e. wargames used by the US Army, NATO, England, Australia, France, etc.) had absolutely no AI whatsoever. Instead, they employed ‘pucksters’ (usually retired military officers) who made all the moves for OPFOR (Opposition Forces, AKA ‘the enemy’) from another computer in another room.

Pucksters, or humans (usually retired military officers) who make the decisions and moves for enemy (or OPFOR) units during a wargame.

Pucksters are humans (usually retired military officers) who make the decisions and moves for enemy (Opposition Forces = OPFOR) units during a wargame. Note the sign OPFOR & EXCON (Exercise Control) over the puckster’s work station.

To earn a doctorate at an American ‘Research One’ university requires 90 graduate credits (about 30 classes), a GPA > 3.5 (out of 4.0) and passing three major examinations. The first examination on the road to a doctorate is the Qualifying Examination (or Q Exam as everyone calls it). The topic of my Q exam was “An Analysis of Dimdal’s (ex-Jonsson’s) ‘An Optimal Pathfinder for Vehicles in Real-World Terrain Maps’.” This is the area of computer science and graph theory known as ‘least weighted path algorithms’. GPS devices and Map apps use a least weighted path algorithm, except they’re only interested in roads; they don’t consider terrain, slope and other things (that are important to a military unit maneuvering on a battlefield).

Now, if you were to wander into the ivied halls of academic computer science  (like MacLean Hall) and inquire of a tenured faculty member how to calculate the fastest path between two points on a sparse grid they would almost certainly reply to you, “Dijkstra’s algorithm.”  Dr. Dijkstra invented his algorithm in 1956 and it works like this: first calculate the distance between every point on the map and every other point on the map. Then figure out the fastest path. Yeah, it’s that obvious, and painfully slow. In fact, it’s so slow that it isn’t used for GPS or game AI. In computer science we us ‘Big O’ notation to describe how fast (or slow) an algorithm takes to run. Dijkstra’s algorithm runs in O(|V|2). This means that as the number of vertices, or points on the map, (that’s the |V| part) increases, the time it takes for the entire algorithm to complete goes up by the square of the number of vertices. In other words, as the map gets bigger the algorithm gets a lot slower.

Dimdal, and I and most of the gaming world do not use Dijkstra’s algorithm, Instead we use A* (pronounced ‘A Star’) which was designed in 1968 primarily by Nils Nilsson with later improvements by Peter Hart and Bertram Raphael. Below is an example of A* used in General Staff (note that the algorithm doesn’t look at every point on the map, just ones that it thinks are relevant to the problem at hand). A* runs in O(n) time.

A screen shot of A* algorithm running. The green areas are where the algorithm searched for a least weighted path, the brown line is the shortest path (mostly following a road).

A screen shot of A* algorithm running. The green areas are where the algorithm searched for a least weighted path, the brown line is the shortest path (mostly following a road).

Graph showing the difference between Dijkstra's algorithm and the A* algorithm. The blue line that increases rapidly shows that Dijkstra's algorithm gets much slower as the map gets bigger. A* is not affected as much by the size of the map.

Graph showing the difference between Dijkstra’s algorithm and the A* algorithm. The blue line that increases rapidly shows that Dijkstra’s algorithm takes much more time as the map gets bigger. A* (the green line) is not affected as much by the size of the map.

As part of my research into computational military reasoning I made further modifications to A* to take into effect the slope of the terrain (which can affect speed of some units), the range of enemy units (OPFOR ROI, e.g. areas controlled by enemy artillery) and to avoid enemy line of sight (LOS). My MATE (Machine Analysis of Tactical Environments) project used all of these options:

A slide from my presentation to DARPA showing how my modified A* avoids enemy range of weapons.

A slide from my presentation to DARPA showing how my modified A* avoids enemy range of weapons. The likelihood of taking casualties is indicated by the darkness of the red coloring.

While working on General Staff I came up with a new optimization of the A* algorithm which I’ve called EZRoadStar. EZRoadStar first looks at the roadnet and attempts to utilize it for rapid troop movement. Only after ascertaining how far using roads will get it to its goal does the algorithm look for nonroad paths. EZRoadStar is much faster than traditional A*; especially for wargames and military simulations.

An example of the EZRoadStar least weighted path algorithm. What's the fastest way point A to point B (the yellow line)? Taking the road, of course. This algorithm looks at a battlefield like a commander and utilizes the roadnet first before looking at other options. Click to enlarge.

An example of the EZRoadStar least weighted path algorithm. What’s the fastest way from point A to point B (the yellow arrow)? Taking the road, of course. This algorithm looks at a battlefield like a commander and utilizes the roadnet first before looking at other options. Click to enlarge.

Well, this wargame may be 55 years in the making and it looks like describing some of the key things that went into it may take almost as long. Clearly, I’m going to have to continue this story with yet another post. We’ve just barely scratched the surface of my work on wargame AI. The next installment will (hopefully) cover algorithms for ‘the five canonical offensive maneuvers’ (i.e. The Envelopment Maneuver, The Turning Maneuver, Penetration, Infiltration and Frontal Assault. These are the algorithms that are ‘under the hood’ of General Staff. If any of my readers would like to know more about these topics (links to my published papers on the subject or whatever) please drop me a line at Ezra [at] RiverviewAI.com.

 

Latest Look at General Staff!

Screen capture of General Staff on April 28, 2016

Screen capture of General Staff on April 28, 2016. Click to enlarge.

We are very pleased to show the first actual screen shot from the development of General Staff. This will give you a good idea of what it looks like and how it works. Currently, General Staff is in 2D. We’ve always planned to have it in 3D but, frankly, this looks so great as it is we’re thinking that maybe we’ll just have a 3D view option. Either way, as you can see the elevation display in the lower left hand corner, we have a complete 3D map of the battlefield ‘underneath’ the gorgeous topographical map made by Ed Isenberg. We will use this data for calculating line of sight and movement.

This is what the invisible 3D height map for the same battlefield looks like:

The 3D height map for the above topographical map. Click to enlarge.

The 3D height map for the above topographical map. Click to enlarge.

Other interesting gameplay features that are visible in the screenshot: there are certain areas of each battlefield that are worth ‘victory points’. This will help establish the goals for the battle. The most important ‘victory points’, however, are the Red and Blue retreat routes.

We anticipate shipping with about 20 different battles from ancient history to the 19th century.

What does General Staff look like?

I tell my students that one of the first things they should do when creating a game is design a logo. This may not seem obvious or logical. Probably a lot of people leave designing a logo towards the end of a project. I think this is a mistake.

Click to enlarge.

Once you have a logo it shows everybody working on the project exactly what the feel and image is we’re working towards.

For General Staff I wanted a 19th century feel; something that brought back the original Kriegsspiel, old, faded maps and general staff officers in Napoleonic and Victorian uniforms. The type that I chose (Blaisdell and K22 Monastic) are classic Victorian fonts. The image in the logo is an engraving of the original Kriegsspiel being played; presumably in Prussia.

When you look at the General Staff logo it is obvious what the game looks and feels like; this is not a zombie chasing game, this is not an RPG, this is not Lara Croft, Tomb Raider (games that I all like and play, by the way). General Staff is a thinking game. It is a tactical game.

Ed Isenberg did a fantastic job creating the first map for General Staff.
He perfectly captured the feel of playing Kriegsspiel on an old map; complete with coffee stains and map folds.

The first General Staff battlefield.

The first General Staff battlefield. Click to enlarge.