Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss
Groups keyboard shortcuts have been updated
Dismiss
See shortcuts

HELP: Recognising stratigic dispositions.

3 views
Skip to first unread message

Andrae Muys

unread,
May 8, 1995, 3:00:00 AM5/8/95
to
I am currently trying to write a game that will provide a computer
opponent in a computer wargame. I intend eventually to incorporate
relitivly complex game mechanics such as can be found in commercial table
top rules systems. However the current project is nowhere near as
extensive with *extremely* basic rules and mechanics. However as each
unit may still move once each turn, and a number of distances the
branching factor puts the CHESS/GO thread to shame. In fact a lower
bound calculated from rules far simpler than I intend to use ended with a
branching factor of 2.6^8. A simple PLY search is therefore out of the
question. Brainstorming suggested that by abstracting the battlefield
into three frontal sections and maybe a reserve leaves a basic set of
rules with a branching factor of approx 16(much more manageable).
However to implement this the AI needs to be able to recognise what
constitues a flank/centre/rear/front etc... From practical wargaming
experience this is something that is normally arrived at by intuition.
Surely it is a problem which has been faced before and I was wondering if
there was any theory/code/code examples which I might use to build
such an engine.
In the meantime I intend to start on the AI assuming that a way can be
found to recognise such stratigic dispositions.

Thanks in Advance.
Andrae Muys.

--
=====================================================================
a.m...@mailbox.uq.oz.au | <Insert favourate dislclaimer here>
Andrae Muys |
Prentice Centre | If you are reading this you can feel
University of Queensland. | safe in the knowledge you are
Australia | literate.<Lecture Theatre Graffiti>

Steve Woodcock

unread,
May 9, 1995, 3:00:00 AM5/9/95
to
Andrae Muys (cca...@dingo.cc.uq.oz.au) wrote:
: I am currently trying to write a game that will provide a computer
: opponent in a computer wargame. I intend eventually to incorporate
: relitivly complex game mechanics such as can be found in commercial table
: top rules systems. However the current project is nowhere near as
: extensive with *extremely* basic rules and mechanics. However as each
: unit may still move once each turn, and a number of distances the
: branching factor puts the CHESS/GO thread to shame. In fact a lower
: bound calculated from rules far simpler than I intend to use ended with a
: branching factor of 2.6^8. A simple PLY search is therefore out of the
: question. Brainstorming suggested that by abstracting the battlefield
: into three frontal sections and maybe a reserve leaves a basic set of
: rules with a branching factor of approx 16(much more manageable).
: However to implement this the AI needs to be able to recognise what
: constitues a flank/centre/rear/front etc... From practical wargaming
: experience this is something that is normally arrived at by intuition.
: Surely it is a problem which has been faced before and I was wondering if
: there was any theory/code/code examples which I might use to build
: such an engine.
: In the meantime I intend to start on the AI assuming that a way can be
: found to recognise such stratigic dispositions.

: Thanks in Advance.
: Andrae Muys.

Andrae:


Glad to see I'm not the only one wrestling with this problem! ;)

Your approach to break things down into 'front', 'flank', and
'rear' makes sense and seems like a reasonable simplification of the problem.
A first-order definition of each might be:

front -- Where the mass of the enemy units are known to be. The
direction I want to attack.

flank -- Any area in which there are fewer (1/3 ?) as many enemy
units as the area designed as 'front'. (Note this is
purely arbitrary, based as much on prior experience as
anything else.) Perhaps also selected based on natural
defensive terrain (i.e., oceans or mountains).

rear -- Any area in which no (known) enemy units are operating,
or an area completely surrounded and controlled by me.


These definitions work by identifying the front, then extrapolating
from that. As enemy units move around, become detected, attack, etc.,
the 'size' of the front will likely grown and shrink, forcing similar changes
to the flanks (especially) and perhaps to the rear areas as well.

One problem I can think of off the top of my head is how to handle
multiple front situations; there's at least some possibility of overlapping
definitions, meaning that some precedence order must be established.
Special exceptions will also have to be made for overflying enemy aircraft
and incursions by enemy units of various types. (Example: If the enemy
drops some paratroopers into your 'rear' area, does it automatically become
a 'front'?)

In extreme situations of mass attack, I could see virtually the entire
play area being designated as a 'front' (imagine the Eastern Front in
WWII), which of course makes your branching problem worse. On the other
hand, attempts to continually minimize the size of the front will cut down
on the branching options, but might result in poor strategic and tactical
choices (i.e., the entire German army focuses on capturing Malta, rather than
overrunning Malta on its way to North Africa).

More brainstorming as I come up with ideas..............

Steven
==============================================================================
Steven Woodcock _
Senior Software Engineer, Gameware _____C .._.
Lockheed Martin Information Systems Group ____/ \___/
Phone: 407-826-6986 <____/\_---\_\ "Ferretman"
E-mail: wood...@gate.net (Home)
swoo...@oldcolo.com (Alternate Home)
wood...@escmail.orl.mmc.com (Work)
Disclaimer: My opinions in NO way reflect the opinions of the
Lockheed Martin Information Systems Group, although
(like Rush Limbaugh) they should. ;)
Motto:
"...Men will awake presently and be Men again, and colour and laughter and
splendid living will return to a grey civilization. But that will only come
true because a few Men will believe in it, and fight for it, and fight in its
name against everything that sneers and snarls at that ideal..."

-- Leslie Charteris
THE LAST HERO

Will Uther

unread,
May 10, 1995, 3:00:00 AM5/10/95
to
In article <3onpj8$l...@theopolis.orl.mmc.com>,
wood...@escmail.orl.mmc.com (Steve Woodcock) wrote:

Seems like there's a couple of us....

> Your approach to break things down into 'front', 'flank', and
> 'rear' makes sense and seems like a reasonable simplification of the problem.
> A first-order definition of each might be:

A friend here (ric...@cs.su.oz.au) I was discussing it with actually came
up with a different solution. (based on two tanks on a board moving
pieces about - the game Bolo
http://www.cs.su.oz.au/~will/bolo/brains.html)

you define your 'center', their 'center' and the board 'center'. Anything
closer to your center than theirs is yours and can be taken. If they take
it back then it takes you less time to re-take than it takes them - if
they bother to take it they lose more time than you.

The idea is to
i) move your center towards the center of the board
then ii) move your center towards their center, always keeping it between
their center and the center of the board. This should push them off the
board.

the defintion of 'center' is tricky. It's more a 'focus' than a
center. At the moment we have a couple we're looking at:

- The modal position of all your pieces. (mean would be horrible if
you get split in two somehow)
- The average position of your tank

There is also one other interesting piece of info we've come across. It
involves finding neighbours.

most people would say that the 'Y' in the following diagram is not between
the 'X's:

X X


Y

Whereas, they would say the the Y is between these two X's:

X X
Y

The definition we found for 'between' or 'blocking' and hence allows you
get neighbour (nothing is between) is as follows.
i) draw a circle between the two items such that the items sit on either
end of a diameter of the circle.
ii) If there is anything inside that circle it is between the two items
otherwise it's not.

We thought of defining front as that section 'between' the two centers.
This doesn't really handle multiple fronts, but then the game only really
has two moving pieces which makes multiple fronts difficult anyway.

Looking forward to comments,

\x/ill :-}

--
William Uther wi...@cs.su.oz.au
"Nothing is so smiple it Basser Dept. of Computer Science
can't be stuffed up" University of Sydney, Australia

Andrae Muys

unread,
May 11, 1995, 3:00:00 AM5/11/95
to
Andrae Muys (cca...@dingo.cc.uq.oz.au) wrote:
: I am currently trying to write a game that will provide a computer
: opponent in a computer wargame. I intend eventually to incorporate
: relitivly complex game mechanics such as can be found in commercial table
: top rules systems. However the current project is nowhere near as
: extensive with *extremely* basic rules and mechanics.
<<<SNIP>>>

I thought it might be appropriate if I quickly outlined the game
mechanics I intend on using for an *extremely* basic game.
I have decided to create a napolionic era game. The reason's for this are..
a) Personal knowledge, and posession of a number of rule systems for the
era which may be adapted for computer play.
b) The rigid formations and formal tactics of the era should make the
pattern recognsion easier.
c) The principles of combined arms are easy to grasp and formalise
heruisticly in this era.
d) Only a small number of troop types have to be provided to provide a
reasonable game.

The rules which I intend on implementing to date consist of three troop
INF: slow, strong, short range;
CAV: fast, strong, zero range;
ART: slow, weak, long range;
and three extra terrain types(other than clear)
WOODS: defence from melee and ranged attacks, slows movement;
ROUGH(HILLS): defence from melee, slows movement, aids attack;
ROAD: no defence, faster movement;

Of course the principles of pattern recognition and stratigic disposions
apply to any game in any era, and also to more abstract forms of the
wargame such as CHESS, GO, and CHECKERS. I am using these rules because
I beleive they provide the basic elements of wargames, and are necessary
and sufficient for the application of traditional military stratagy and
tactics. Therefore if I can produce a computer player which successfully
plays a sound stratigic game and which has a 'grasp' of tactics, it
should be able to be applied to any napolionic rule system with little
modification, and to other eras without too much difficulty.

Andrae.

Andrae Muys

unread,
May 11, 1995, 3:00:00 AM5/11/95
to
Steve Woodcock (wood...@escmail.orl.mmc.com) wrote:

: Andrae Muys (cca...@dingo.cc.uq.oz.au) wrote:
: : I am currently trying to write a game that will provide a computer
: : opponent in a computer wargame.

: Your approach to break things down into 'front', 'flank', and

: 'rear' makes sense and seems like a reasonable simplification of the problem.
: A first-order definition of each might be:

: front -- Where the mass of the enemy units are known to be. The
: direction I want to attack.

: flank -- Any area in which there are fewer (1/3 ?) as many enemy
: units as the area designed as 'front'. (Note this is
: purely arbitrary, based as much on prior experience as
: anything else.) Perhaps also selected based on natural
: defensive terrain (i.e., oceans or mountains).

: rear -- Any area in which no (known) enemy units are operating,
: or an area completely surrounded and controlled by me.

:
: These definitions work by identifying the front, then extrapolating
: from that. As enemy units move around, become detected, attack, etc.,
: the 'size' of the front will likely grown and shrink, forcing similar changes
: to the flanks (especially) and perhaps to the rear areas as well.

Identifing the front first and then defining the rest w.r.t it would seem
to simplify the problem further. I hadn't thought of that, it looks like
a good idea. However one question to contimplate. Where are the fronts
in the following position. {X - YOURS, Y - THEIRS}

YY Now by any standards X is in a bad way. It has been
Y completely outflanked and his left flank is already
XXX YY overrun. Intuitivly his front is now perpendicular
XX XXX XX XY Y to Y's. I think we may need a concept such as
X X Y contact point, which in this case is Y's centre, and
Y X's left flank. Naturally in most battles there would
YYY be multiple contact points. Personally I would draw the
Y fronts as follows.
|
| What do you think?
--------C|
|
|


: One problem I can think of off the top of my head is how to handle


: multiple front situations; there's at least some possibility of overlapping
: definitions, meaning that some precedence order must be established.
: Special exceptions will also have to be made for overflying enemy aircraft
: and incursions by enemy units of various types. (Example: If the enemy
: drops some paratroopers into your 'rear' area, does it automatically become
: a 'front'?)

This is why I am using a very basic set of game mechanics, and using a
different era(see other post). This way the only way troops can reach
your rear is to march there. Also there are very few battles in this era
with multiple fronts. Although allowance must be made for bent and
twisted fronts. The hinge being a very critical point in an extended line.

: In extreme situations of mass attack, I could see virtually the entire


: play area being designated as a 'front' (imagine the Eastern Front in
: WWII), which of course makes your branching problem worse. On the other
: hand, attempts to continually minimize the size of the front will cut down
: on the branching options, but might result in poor strategic and tactical
: choices (i.e., the entire German army focuses on capturing Malta, rather than
: overrunning Malta on its way to North Africa).

In the rules I have in mind, most cases you will only have mass attacks
or at least dense fronts. One problem you do have if you try to model a
high echelon game such as the eastern front(WWII) what happened next.
The russian front fragmented and from one dense front you ended up with
hundreds of small localised fronts, the resulting loss of cohesion being
one of the greatest advantages of blitzcrieg. Because cohesion is so
much more important at a grand stratigic level(not that it isn't in
stratagies at a operational/tactical level) I feel that a search for a
front maybe counter productive. My gut feeling is that it would be
better to consider area controled by your forces, controlled by their
forces, and contested. With an emphisis on your forces maintaining
unbroken contact between spheres of influence. So the insertion of
forces 'behind the lines' would only alter the balance of control in the
local area. A domino effect would be possible where forces stratigicly
inserted would weaken a units control of an area weakening a unit relying
on it for its 'cohesive link' weaking its control of another area and so
on. However this is what happens in real life so if any thing it
suggests that it may be a good approach.

: More brainstorming as I come up with ideas..............
ditto.

: Steven

Andrae

Andrae Muys

unread,
May 11, 1995, 3:00:00 AM5/11/95
to
Will Uther (wi...@cs.su.oz.au) wrote:
: In article <3onpj8$l...@theopolis.orl.mmc.com>,
: wood...@escmail.orl.mmc.com (Steve Woodcock) wrote:

: > Andrae Muys (cca...@dingo.cc.uq.oz.au) wrote:
: > : I am currently trying to write a game that will provide a computer
: > : opponent in a computer wargame. I intend eventually to incorporate

<<<SNIP>>>
: > Glad to see I'm not the only one wrestling with this problem! ;)

: Seems like there's a couple of us....
<<<SNIP>>>

: There is also one other interesting piece of info we've come across. It
: involves finding neighbours.

: most people would say that the 'Y' in the following diagram is not between
: the 'X's:

: X X


: Y

However Y is definately infulencing the connection between the X's. The
right X should be able to support the left, however it is possible that
the reverse is impossible. Of course terrain could modify this.

: Whereas, they would say the the Y is between these two X's:

: X X
: Y

Here I would consider Y to have interdicted the link, or the X's are
still neighbours but they have outflanked/maybe even overrun, Y.

: The definition we found for 'between' or 'blocking' and hence allows you


: get neighbour (nothing is between) is as follows.
: i) draw a circle between the two items such that the items sit on either
: end of a diameter of the circle.
: ii) If there is anything inside that circle it is between the two items
: otherwise it's not.

An alternitive(I havn't played bolo so I don't know if it's appropriate)
would be to draw a circle radius Y's maximum EFFECTIVE range (you decide
what that is) and if it cuts a line drawn between the two X's the link is
cut.

: We thought of defining front as that section 'between' the two centers.

: This doesn't really handle multiple fronts, but then the game only really
: has two moving pieces which makes multiple fronts difficult anyway.

Andrae.

Steve Woodcock

unread,
May 12, 1995, 3:00:00 AM5/12/95
to
Will Uther (wi...@cs.su.oz.au) wrote:
: In article <3onpj8$l...@theopolis.orl.mmc.com>,

: A friend here (ric...@cs.su.oz.au) I was discussing it with actually came


: up with a different solution. (based on two tanks on a board moving
: pieces about - the game Bolo
: http://www.cs.su.oz.au/~will/bolo/brains.html)

: you define your 'center', their 'center' and the board 'center'. Anything
: closer to your center than theirs is yours and can be taken. If they take
: it back then it takes you less time to re-take than it takes them - if
: they bother to take it they lose more time than you.

: The idea is to
: i) move your center towards the center of the board
: then ii) move your center towards their center, always keeping it between
: their center and the center of the board. This should push them off the
: board.

: the defintion of 'center' is tricky. It's more a 'focus' than a
: center. At the moment we have a couple we're looking at:

: - The modal position of all your pieces. (mean would be horrible if
: you get split in two somehow)
: - The average position of your tank

: There is also one other interesting piece of info we've come across. It
: involves finding neighbours.

: most people would say that the 'Y' in the following diagram is not between
: the 'X's:

: X X


: Y

: Whereas, they would say the the Y is between these two X's:

: X X
: Y

: The definition we found for 'between' or 'blocking' and hence allows you


: get neighbour (nothing is between) is as follows.
: i) draw a circle between the two items such that the items sit on either
: end of a diameter of the circle.
: ii) If there is anything inside that circle it is between the two items
: otherwise it's not.

: We thought of defining front as that section 'between' the two centers.

: This doesn't really handle multiple fronts, but then the game only really
: has two moving pieces which makes multiple fronts difficult anyway.

: Looking forward to comments,

: \x/ill :-}


Hmmm...this does have some merit to it. I like the idea of the 'center'
being arrived at via this circle-method; it has an elegance to it that also
is somewhat intuitive.

The only potential problem I can see with this approach is that it will
tend towards great massive brute force engagements by migrating the bulk
of both forces towards a common 'center'. This is fine in the case of
two combatants (i.e., two Bolo tanks) but not so good for two armies.

I think we could solve the multiple front problem if we generalized the
problem to find SEVERAL 'localized centers', thus allowing for multiple axes
of advance along a somewhat more fluid 'front'. In the case of two armies,
you might get something like this:


x x x

y1 y2 y3 y4

x x x

In this case, each of the x-x pairs make INDEPENDENT determinations
of what lies 'between' them. Then, based on the relative combat strengths
and other factors, you could issue separate orders for each section of
the battlefield. This effectively sets up a variety of 'mini-centers'
(using our terminology from above) and more realistically (IMHO) emulates
realworld operations (i.e., lots of mini-objectives, the possibility for
overlapping objectives, etc.).

Opinions? Comments?

Steve Woodcock

unread,
May 13, 1995, 3:00:00 AM5/13/95
to
First off, let me just say that I think this is a *great* thread, easily
one of the more interesting I've seen in this newsgroup. *This* is the kind
of brainstorming the Net was made for....

Andrae Muys (cca...@dingo.cc.uq.oz.au) wrote:

: Identifing the front first and then defining the rest w.r.t it would seem

: to simplify the problem further. I hadn't thought of that, it looks like
: a good idea. However one question to contimplate. Where are the fronts
: in the following position. {X - YOURS, Y - THEIRS}

: YY Now by any standards X is in a bad way. It has been
: Y completely outflanked and his left flank is already
: XXX YY overrun. Intuitivly his front is now perpendicular
: XX XXX XX XY Y to Y's. I think we may need a concept such as
: X X Y contact point, which in this case is Y's centre, and
: Y X's left flank. Naturally in most battles there would
: YYY be multiple contact points. Personally I would draw the
: Y fronts as follows.
: |
: | What do you think?
: --------C|
: |

: |

I would agree with your assessment of the situation and your breakdown
of the forces into a front. Obviously in this case, X either a.) needs
to rapidly execute a turn of his front or b.) is in the midst of a brilliant
plan that wil prove to be Y's undoing. (The challenge, of course, is to
get a computer AI to execute 'b' more often than 'a'.)

If we define a contact point, then does that give us a natural focus
towards which to direct our forces and our strategic 'thinking'? They would
seem to.

: : One problem I can think of off the top of my head is how to handle


: : multiple front situations; there's at least some possibility of overlapping
: : definitions, meaning that some precedence order must be established.
: : Special exceptions will also have to be made for overflying enemy aircraft
: : and incursions by enemy units of various types. (Example: If the enemy
: : drops some paratroopers into your 'rear' area, does it automatically become
: : a 'front'?)
: This is why I am using a very basic set of game mechanics, and using a
: different era(see other post). This way the only way troops can reach
: your rear is to march there. Also there are very few battles in this era
: with multiple fronts. Although allowance must be made for bent and
: twisted fronts. The hinge being a very critical point in an extended line.


Okay; let's go with that simplification for now. It'll certainly make this
easier to think about, and we can always make the AI smarter in Rev 2.0! ;)


: In the rules I have in mind, most cases you will only have mass attacks

: or at least dense fronts. One problem you do have if you try to model a
: high echelon game such as the eastern front(WWII) what happened next.
: The russian front fragmented and from one dense front you ended up with
: hundreds of small localised fronts, the resulting loss of cohesion being
: one of the greatest advantages of blitzcrieg. Because cohesion is so
: much more important at a grand stratigic level(not that it isn't in
: stratagies at a operational/tactical level) I feel that a search for a
: front maybe counter productive. My gut feeling is that it would be
: better to consider area controled by your forces, controlled by their
: forces, and contested. With an emphisis on your forces maintaining
: unbroken contact between spheres of influence. So the insertion of
: forces 'behind the lines' would only alter the balance of control in the
: local area. A domino effect would be possible where forces stratigicly
: inserted would weaken a units control of an area weakening a unit relying
: on it for its 'cohesive link' weaking its control of another area and so
: on. However this is what happens in real life so if any thing it
: suggests that it may be a good approach.

Okay then, fronts are out. Spheres of influence are in. They do seem
to better reflect the 'domino effect', as you suggest.

If we use your previous suggestion for identifying centers, combined with
the above-mentioned contact points, then this may lead us towards a more
natural way of handling the above situation. Based on what we've discussed
so far, I would envision an AI's logic train going something like this:

Pass #1: Identify natural 'groups' of X-Y forces using the
'circle method' discussed earlier, perhaps taking into account
the possibilities of influence and interdiction as a previous
poster suggested.

Pass #2: Having identified these natural groupings, identify
contact points amongst the forces within each group. These
will serve as natural foci for our planning process.

Pass #3: Having identified natural groupings and focus points,
we now begin thinking about steps needed to link up our groups,
minimize the size of enemy-held areas, elimination of enemy units,
etc.


One thing we do want to avoid, of course, is TOO much reliance on
maintaining unbroken contact between spheres of influence. As you know,
in the Napoleanic era cavalry forces on the same side were often miles
apart and in some cases didn't even know of each other's existence! In this
case the AI would need to know to treat the two forces independently and
NOT make linking them a high priority.

Robert A. Uhl

unread,
May 14, 1995, 3:00:00 AM5/14/95
to
In article <3ovuv7$a...@theopolis.orl.mmc.com>,

Steve Woodcock <wood...@escmail.orl.mmc.com> wrote:
>
> Hmmm...this does have some merit to it. I like the idea of the 'center'
>being arrived at via this circle-method; it has an elegance to it that also
>is somewhat intuitive.
>
> The only potential problem I can see with this approach is that it will
>tend towards great massive brute force engagements by migrating the bulk
>of both forces towards a common 'center'. This is fine in the case of
>two combatants (i.e., two Bolo tanks) but not so good for two armies.

Actually, Bolo can be played by as many as 16 players, with as many
as 16 different sides. But most people play against bots only when
they cannot get any human competition, and so play against only one.

> I think we could solve the multiple front problem if we generalized the
>problem to find SEVERAL 'localized centers', thus allowing for multiple axes
>of advance along a somewhat more fluid 'front'. In the case of two armies,
>you might get something like this:
>
>
> x x x
>
> y1 y2 y3 y4
>
> x x x
>
> In this case, each of the x-x pairs make INDEPENDENT determinations
>of what lies 'between' them. Then, based on the relative combat strengths
>and other factors, you could issue separate orders for each section of
>the battlefield. This effectively sets up a variety of 'mini-centers'
>(using our terminology from above) and more realistically (IMHO) emulates
>realworld operations (i.e., lots of mini-objectives, the possibility for
>overlapping objectives, etc.).

Hmmm...

I assume that this assumes a single master strategist giving orders
to the units. I would think that the master should group neighboring
units as one, in order to save time when calculating the following:
calculate a center between every piece and every other. When his is
all done, choose the minimum amount of centers which take care of the
maximum amount of enemies. This should allow certain interesting
effects over varying terrain, if said terrain is taken into account as
it should be.

Otherwise, it sounds pretty good. If I ever get my set of Bolo
brains working, I'll turn 'em loose and see what happens.

--
Christos anesti ek nekron, thanato Christ is risen from the dead, trampling
thanaton patisas, kai tois en tois death by death, thus bestowing upon those
mnimasi, zoin charisamenos. in the tombs the gift of eternal life.
------------------------------------Robert Uhl---------------------------------

Robert A. Uhl

unread,
May 14, 1995, 3:00:00 AM5/14/95
to
In article <3p2k8r$c...@theopolis.orl.mmc.com>,

Steve Woodcock <wood...@escmail.orl.mmc.com> wrote:
>
>Andrae Muys (cca...@dingo.cc.uq.oz.au) wrote:
>
>: Identifing the front first and then defining the rest w.r.t it would seem
>: to simplify the problem further. I hadn't thought of that, it looks like
>: a good idea. However one question to contimplate. Where are the fronts
>: in the following position. {X - YOURS, Y - THEIRS}
>
>: YY Now by any standards X is in a bad way. It has been
>: Y completely outflanked and his left flank is already
>: XXX YY overrun. Intuitivly his front is now perpendicular
>: XX XXX XX XY Y to Y's. I think we may need a concept such as
>: X X Y contact point, which in this case is Y's centre, and
>: Y X's left flank. Naturally in most battles there would
>: YYY be multiple contact points. Personally I would draw the
>: Y fronts as follows.
>: |
>: | What do you think?
>: --------C|
>: |
>: |
>
>
>
> I would agree with your assessment of the situation and your breakdown
>of the forces into a front. Obviously in this case, X either a.) needs
>to rapidly execute a turn of his front or b.) is in the midst of a brilliant
>plan that wil prove to be Y's undoing. (The challenge, of course, is to
>get a computer AI to execute 'b' more often than 'a'.)

Heh. Actually, if X is driving through Y, in order to create two
fronts along which Y must fight, thereby forcing Y to regroup, then
'b' has been executed.

> If we define a contact point, then does that give us a natural focus
>towards which to direct our forces and our strategic 'thinking'? They would
>seem to.

Yes. The AI should attempt to create as many contatc points as
possible. Why? These points mean that he is actually fighting the
enemy and hopefully killing the same. That is why two parallel lines
are a good formation. With a good lookahead, though, the T formation
is also good, because it will enable many points of contact _over
time_, and hurt Y's ability to create them. Part of the battle is
controlling contact. In fact, if the AI can do this controlling, then
it is my belief that it will have an extremely good chance at winning.

> Okay then, fronts are out. Spheres of influence are in. They do seem
>to better reflect the 'domino effect', as you suggest.

The sphere of influence idea seems to work well with the points of
contact idea. Perhaps each unit has a sphere wherein it can contact
within a certain number fo moves (say 3), and its job is to contact
the fewest enemies at once but the most over time. IOW, it doesn't
want to be outnumbered but it wants to see action.

And two units have a greater sphere of influence, say 8 moves, than
just one. This would help reflect the greater power of two. Controlled
territory would be defined as that surrounded by my own units and
without enemy units, once again utilizing the SoIs. Contested would,
of course, be that which neither side controls. Perhaps a 'strength'
value would be attached to areas, indicating the number of units
controlling it, time for more to get there &c. Thiswould provide an
incentive for the AI to encircle enemy territory.

Andrae Muys

unread,
May 15, 1995, 3:00:00 AM5/15/95
to
Steve Woodcock (wood...@escmail.orl.mmc.com) wrote:
: Andrae Muys (cca...@dingo.cc.uq.oz.au) wrote:

: : YY Now by any standards X is in a bad way. It has been


: : Y completely outflanked and his left flank is already
: : XXX YY overrun. Intuitivly his front is now perpendicular
: : XX XXX XX XY Y to Y's. I think we may need a concept such as
: : X X Y contact point, which in this case is Y's centre, and
: : Y X's left flank. Naturally in most battles there would
: : YYY be multiple contact points. Personally I would draw the
: : Y fronts as follows.
: : |
: : | What do you think?
: : --------C|
: : |
: : |

: I would agree with your assessment of the situation and your breakdown
: of the forces into a front. Obviously in this case, X either a.) needs
: to rapidly execute a turn of his front or b.) is in the midst of a brilliant
: plan that wil prove to be Y's undoing. (The challenge, of course, is to
: get a computer AI to execute 'b' more often than 'a'.)

Of course the ultimate AI wouldn't find itself in such a dangerous
position. A bit like the untimate General wouldn't. But if it does it
must extricate itself well. Just one more 'special' situation to test
the AI's abiltiy.

: If we define a contact point, then does that give us a natural focus


: towards which to direct our forces and our strategic 'thinking'? They would
: seem to.

Well this thread is useful. The idea of contact points should radically
prune any decision tree.(And sooner or later the AI will have to make a
choice) Of course at the stratigic/grand stratigic levels we may need a
modified definition of contact point but at the level I am interested in
Contact points appear to be a good way to look at things. In fact now
that I think about it, contact points are how **I** allocate **MY**
consideration. This approach however leads us to consider how to
recognise potential contact points and how to evaluate the relitive
benifits of creating/avoiding specific contact points. e.g. in the
example above X should avoid contact with Y until he has rotated his
front.(it looks like we may still need to consider fronts as well).

: : This is why I am using a very basic set of game mechanics, and using a

: : different era(see other post). This way the only way troops can reach
: : your rear is to march there. Also there are very few battles in this era
: : with multiple fronts. Although allowance must be made for bent and
: : twisted fronts. The hinge being a very critical point in an extended line.
: Okay; let's go with that simplification for now. It'll certainly make this
: easier to think about, and we can always make the AI smarter in Rev 2.0! ;)

My thoughts exactly.

<<<<SNIP>>>>
: : front maybe counter productive. My gut feeling is that it would be

: : better to consider area controled by your forces, controlled by their
: : forces, and contested. With an emphisis on your forces maintaining
: : unbroken contact between spheres of influence. So the insertion of
: : forces 'behind the lines' would only alter the balance of control in the
: : local area. A domino effect would be possible where forces stratigicly
: : inserted would weaken a units control of an area weakening a unit relying
: : on it for its 'cohesive link' weaking its control of another area and so
: : on. However this is what happens in real life so if any thing it
: : suggests that it may be a good approach.

: Okay then, fronts are out. Spheres of influence are in. They do seem
: to better reflect the 'domino effect', as you suggest.

However as discussed above at a lower level fronts again become
important. IMHO this is because tactical considerations require physical
cohesion, while stratigic(level) utilise logical cohesion. As you later
note cavalry detatchments regularlly operated independently of other
units. However (excluding irregulars) many/most operated in conjunction
with armies, their presence in a particular area, important to enemy
forces, deliberate and planned. Even though operating independently.

: If we use your previous suggestion for identifying centers, combined with


: the above-mentioned contact points, then this may lead us towards a more
: natural way of handling the above situation. Based on what we've discussed
: so far, I would envision an AI's logic train going something like this:

: Pass #1: Identify natural 'groups' of X-Y forces using the
: 'circle method' discussed earlier, perhaps taking into account
: the possibilities of influence and interdiction as a previous
: poster suggested.

: Pass #2: Having identified these natural groupings, identify
: contact points amongst the forces within each group. These
: will serve as natural foci for our planning process.

: Pass #3: Having identified natural groupings and focus points,
: we now begin thinking about steps needed to link up our groups,
: minimize the size of enemy-held areas, elimination of enemy units,
: etc.

This sounds like it should work reasonably well, however I have a feeling
there may be problems with the way it handles many sparse stratigic
situations. I'll think about it and we can discuss it futher when I have
clearified my concerns.

: One thing we do want to avoid, of course, is TOO much reliance on


: maintaining unbroken contact between spheres of influence. As you know,
: in the Napoleanic era cavalry forces on the same side were often miles
: apart and in some cases didn't even know of each other's existence! In this
: case the AI would need to know to treat the two forces independently and
: NOT make linking them a high priority.

One more thing about cavalry is that the other arms(INF/ART) can't
operate this way as it requires a level of speed.

One thing I am considering is cross posting some questions regarding real
life treatment of these concerns to rec.games.miniatures after they finish
their reorganisation.

Andrae.

Steve Woodcock

unread,
May 15, 1995, 3:00:00 AM5/15/95
to
Andrae Muys (cca...@dingo.cc.uq.oz.au) wrote:

: Of course the ultimate AI wouldn't find itself in such a dangerous

: position. A bit like the untimate General wouldn't. But if it does it
: must extricate itself well. Just one more 'special' situation to test
: the AI's abiltiy.


War appears to be full of special cases, eh?

;)

: : If we define a contact point, then does that give us a natural focus


: : towards which to direct our forces and our strategic 'thinking'? They would
: : seem to.

: Well this thread is useful. The idea of contact points should radically
: prune any decision tree.(And sooner or later the AI will have to make a
: choice) Of course at the stratigic/grand stratigic levels we may need a
: modified definition of contact point but at the level I am interested in
: Contact points appear to be a good way to look at things. In fact now
: that I think about it, contact points are how **I** allocate **MY**
: consideration. This approach however leads us to consider how to
: recognise potential contact points and how to evaluate the relitive
: benifits of creating/avoiding specific contact points. e.g. in the
: example above X should avoid contact with Y until he has rotated his
: front.(it looks like we may still need to consider fronts as well).


Yes, I'd come to that conclusion as well. By identifying contact
points and making them the focus of (at least some) activity, we've
pruned our number of decisions fairly radically.

One concern I have with relying on them exclusively, however, is
that this makes the AI very reactive without some additional logic to
force it to 'seek' the enemy. Two obvious ways to handle this would be
a.) random movement of forces until contact with the enemy has been
achieved and b.) deliberate movement of forces to attain certain objectives
(which are, in effect, 'artificial' contact points, if you will).

It would be simple enough (I'm still talking Napoleonic-level for
simplicity's sake) to provide the AI with whatever its objectives are
for a given scenario; that's easy. The hard part is how to make it
approach those objectives in some fashion that makes sense rather than
to blindly throw its units down a road leading towards said objective
(perhaps the main failure of the AIs in Perfect General and Empire Deluxe,
to name two examples).

As I recall, Napoleonic-era tacticians were trained to recognize
'classic' battle formations (one such example being the 'T' you presented
earlier) and react accordingly. Pattern recognition is easy enough
to do on a computer via a variety of methods, ranging from simple table
lookup to full-blown neural nets.

: : If we use your previous suggestion for identifying centers, combined with


: : the above-mentioned contact points, then this may lead us towards a more
: : natural way of handling the above situation. Based on what we've discussed
: : so far, I would envision an AI's logic train going something like this:

: : Pass #1: Identify natural 'groups' of X-Y forces using the
: : 'circle method' discussed earlier, perhaps taking into account
: : the possibilities of influence and interdiction as a previous
: : poster suggested.

: : Pass #2: Having identified these natural groupings, identify
: : contact points amongst the forces within each group. These
: : will serve as natural foci for our planning process.

: : Pass #3: Having identified natural groupings and focus points,
: : we now begin thinking about steps needed to link up our groups,
: : minimize the size of enemy-held areas, elimination of enemy units,
: : etc.
: This sounds like it should work reasonably well, however I have a feeling
: there may be problems with the way it handles many sparse stratigic
: situations. I'll think about it and we can discuss it futher when I have
: clearified my concerns.


Agreed, it may. However, based on the above idea of using pattern
recognition to manuever our units in something resembling a smart fashion,
we can now elaborate on Pass #3:

Pass #3: Having identified natural groupings and focus points,

run a pattern-matching algorithm to identify most likely tactical
situations and reasonable responses. Randomly pick from the best
2 or 3 to avoid predicatability. For each turn a course of
action is in place, make some evaluation of its effectiveness
and/or success (i.e., has the pattern changed signficantly enough
to warrant a new course of action? have we attained the objective
in question? have we lost contact with the enemy?).


In the case of a sparse strategic situation, the AI defaults towards
trying to attain known and logical objectives (i.e., moving towards Paris).
Once contact is made, the situation naturally becomes less sparse, and
the AI begins to make moves based on sound engagement philosophies.

The AI will end up being a bit 'bookish', if you will, but certainly
ought to surprise you once in a while.

: However as discussed above at a lower level fronts again become

: important. IMHO this is because tactical considerations require physical
: cohesion, while stratigic(level) utilise logical cohesion.

<snip>

I'll buy that. That's a good definition, particularly for this
problem (Napoleonic-era combat), and better than many I've seen.

: [regarding comment that we post this to rec.games.miniatures]

Actually, I've already seen one thread on comp.ai recommeding THIS
thread as 'worthwhile'. ;)

Steven
Still Pondering in Orlando


==============================================================================
Steven Woodcock _
Senior Software Engineer, Gameware _____C .._.
Lockheed Martin Information Systems Group ____/ \___/
Phone: 407-826-6986 <____/\_---\_\ "Ferretman"
E-mail: wood...@gate.net

swoo...@oldcolo.com
wood...@escmail.orl.mmc.com

Daniele Terdina

unread,
May 15, 1995, 3:00:00 AM5/15/95
to
In article <3oro0c$e...@dingo.cc.uq.oz.au>, cca...@dingo.cc.uq.oz.au
(Andrae Muys) wrote:

> : One problem I can think of off the top of my head is how to handle
> : multiple front situations; there's at least some possibility of overlapping
> : definitions, meaning that some precedence order must be established.
> : Special exceptions will also have to be made for overflying enemy aircraft
> : and incursions by enemy units of various types. (Example: If the enemy
> : drops some paratroopers into your 'rear' area, does it automatically become
> : a 'front'?)
> This is why I am using a very basic set of game mechanics, and using a
> different era(see other post). This way the only way troops can reach
> your rear is to march there. Also there are very few battles in this era
> with multiple fronts. Although allowance must be made for bent and
> twisted fronts. The hinge being a very critical point in an extended line.

I don't know if it can help, however, when I was thinking about how to
build a program for a computer opponent for Squad Leader (an Avalon Hill's
boardgame) I didn't consider directly recognizing the troops patterns. I
would build intermediate maps describing entities like density of fire,
distances in unit movement points (rether than linear distance),
probability of passing the zone without damage, etc. and base the
reasoning on this intermediate maps. It turns out that looking (as an
example) at the fire distribution makes it clearer if some allineated
troops makes a real front or not. Many sub tactical problems could be
solved by looking for the shortest path in some of these maps: from what
side should I attack that hill? find the longest path from your units to
the hill in the percentage of survival map, where the path lenght is the
product of the percentage of the zones passed!
Sure it is not so simple, because the enviroment is highly dinamic and
there are a lot of interdependancies, but it is a good starting point.

Please answer by e-mail

Daniele Terdina
sis...@ictp.trieste.it

Satrapa / Alexander Marc (ISE)

unread,
May 16, 1995, 3:00:00 AM5/16/95
to
On 15 May 1995, Andrae Muys wrote:

> Steve Woodcock (wood...@escmail.orl.mmc.com) wrote:
> : Andrae Muys (cca...@dingo.cc.uq.oz.au) wrote:
>
> : : YY Now by any standards X is in a bad way. It has been
> : : Y completely outflanked and his left flank is already
> : : XXX YY overrun. Intuitivly his front is now perpendicular
> : : XX XXX XX XY Y to Y's. I think we may need a concept such as
> : : X X Y contact point, which in this case is Y's centre, and
> : : Y X's left flank. Naturally in most battles there would
> : : YYY be multiple contact points. Personally I would draw the
> : : Y fronts as follows.

[snip]


> benifits of creating/avoiding specific contact points. e.g. in the
> example above X should avoid contact with Y until he has rotated his
> front.(it looks like we may still need to consider fronts as well).

Two options I can see here - either X moves its forces into Y's "front"
to create as much damage as possible (in a concentrated strike or
"blitzkreig" style attack) or X moves its "front" back, forcing Y to make
the next move (allowing X the advantage in defence).

Is X aggressive or defensive? Y's forces are rather spread out, so X can
"spear" through the front and attack from both sides (like an inverse of
the "pincer" movement).

Just a thought...
-Alex

Steve Woodcock

unread,
May 16, 1995, 3:00:00 AM5/16/95
to
Daniele had so many good points that I did in fact respond to her by
e-mail, but thought everybody here (hopefully) would be interested
as well.....


Daniele Terdina (sis...@ictp.trieste.it) wrote:
: I don't know if it can help, however, when I was thinking about how to


: build a program for a computer opponent for Squad Leader (an Avalon Hill's
: boardgame) I didn't consider directly recognizing the troops patterns. I
: would build intermediate maps describing entities like density of fire,
: distances in unit movement points (rether than linear distance),
: probability of passing the zone without damage, etc. and base the
: reasoning on this intermediate maps. It turns out that looking (as an
: example) at the fire distribution makes it clearer if some allineated
: troops makes a real front or not. Many sub tactical problems could be
: solved by looking for the shortest path in some of these maps: from what
: side should I attack that hill? find the longest path from your units to
: the hill in the percentage of survival map, where the path lenght is the
: product of the percentage of the zones passed!
: Sure it is not so simple, because the enviroment is highly dinamic and
: there are a lot of interdependancies, but it is a good starting point.

: Please answer by e-mail

: Daniele Terdina
: sis...@ictp.trieste.it


Hello Daniele:


*Very* interesting approach...I don't believe I've seen it presented
here before.

It wouldn't be too hard to generate a density map such as you
described and use it in conjunction with a route-finding algorithm to
manage unit movement. That certainly has the added advantage of having
units attempt to 'avoid' enemy fire (very much a realistic behavior!)
as well as still focusing on objectives. And your point concerning
whether a front is REALLY a front based on fire distribution is a good
one; we'd been assuming almost toe-to-toe contact, I think, in the above
thread, but the inclusion of any type of ranged weapon muddies that up.

Question: How would we build a fire distribution map if a given
unit has several different types of weaponry? An example of that might
be a machine-gun crew from Squad Leader; the individuals in the squad
all have fairly short-range sidearms and such, but they're all supporting
the longer-range MG. I guess the worse-case situation is the one you
have to assume, even though you have no idea that they'll shoot at you
(it's that "fog of war" thing again).

This could very well be an interesting solution to the sub-tactical,
ordering-units-to-shoot-at-something part of the problem.

Satrapa / Alexander Marc (ISE)

unread,
May 16, 1995, 3:00:00 AM5/16/95
to
On Wed, 10 May 1995, Will Uther wrote:
[bigsnip]

> you define your 'center', their 'center' and the board 'center'. Anything
> closer to your center than theirs is yours and can be taken. If they take
[snip]

> The idea is to
> i) move your center towards the center of the board
> then ii) move your center towards their center, always keeping it between
> their center and the center of the board. This should push them off the
> board.

One problem - any enemy who knows this strategy may use it against you
(and therefore both sides end up fighting over the center while the edge
of the board is unused), or may act like water and flow - so you get
through to their centre, but find that the edges of the board have
suddenly caved in on you. So their center is your center, but their
distribution is wider than yours... while you're attacking them over
here, they're stealing your bases/terrain over there.

Just a thought.
-Alex

Satrapa / Alexander Marc (ISE)

unread,
May 16, 1995, 3:00:00 AM5/16/95
to
On 11 May 1995, Andrae Muys wrote:

> Steve Woodcock (wood...@escmail.orl.mmc.com) wrote:
> one of the greatest advantages of blitzcrieg. Because cohesion is so
> much more important at a grand stratigic level(not that it isn't in
> stratagies at a operational/tactical level) I feel that a search for a
> front maybe counter productive. My gut feeling is that it would be
> better to consider area controled by your forces, controlled by their
> forces, and contested. With an emphisis on your forces maintaining
> unbroken contact between spheres of influence. So the insertion of
> forces 'behind the lines' would only alter the balance of control in the
> local area. A domino effect would be possible where forces stratigicly
> inserted would weaken a units control of an area weakening a unit relying
> on it for its 'cohesive link' weaking its control of another area and so
> on. However this is what happens in real life so if any thing it
> suggests that it may be a good approach.

In real life, I would imagine one of the main targets in any campaign to
be supply lines. For example, The Dambusters is a movie about some
special bombers with special bombs desiged to destroy dams, with the aim
of crippling Germany's iron/steel industry. General Custer was in trouble
because he was surrounded and cut off from supplies and reinforcements
(yes, my knowledge is very sketchy).

Another approach to defining a front is that it is where you want it to
be! Perhaps call your front where you are trying to hold back/push back
enemy forces. Incursions don't necessarily happen on a front - you may
quick-march or drop forces into enemy territory next to a vital supply
line, or sneak in sabateurs to destroy strategic bridges ("A Bridge Too
Far").

I heard someone claim once that war is about economic ruin rather than
outright carnage. Is there any way your AI can calculate the move that
will cause most damage to industry and support, rather than shoot the
most enemy? Of course, these strategies apply to wars, not battles...

Just a thought...
-Alex

Will Uther

unread,
May 17, 1995, 3:00:00 AM5/17/95
to
In article
<Pine.SOL.3.91.95051...@student.canberra.edu.au>,

In the type of combat I was thinking of, you each have only one active
piece that moves around the board moving the other 'static' pieces. If
Player A surrounds Player B, but Player B has supplies 'inside', then
player B has the
advantage. e.g.

1 2


3 4

Supplies

5 6


7 8


Assume that 1,2,7 and 8 are owned by A and effectively 'surround' B who
owns 3, 4, 5 and 6 (and some supplies that mean he never has to leave his
fort). B can attack 1. when A moves there to defend, B can break off and
attack 8. A has a long way to go to get to 8 (A has to go right around
whereas B can go through the centre) and so will probably lose that
piece. Being more spead-out than the opposition can be a big problem.

I agree that this is probably not the type of combat you were thinking
about. For an example of this type of combat look at the mac game Bolo.

\x/ill :-}

P.S. as a side note, Sun Tzu (sp?) in his 'Art of War' recommends against
sieges which is effectively the situation you have above.

Andrae Muys

unread,
May 17, 1995, 3:00:00 AM5/17/95
to
Satrapa / Alexander Marc (ISE) (u90...@student.canberra.edu.au) wrote:
: On 11 May 1995, Andrae Muys wrote:
<<<SNIP>>>
: > front maybe counter productive. My gut feeling is that it would be
: > better to consider area controled by your forces, controlled by their
: > forces, and contested. With an emphisis on your forces maintaining
: > unbroken contact between spheres of influence. So the insertion of
<<<SNIP: Insersion of forces in rear/domino effect>>>

: In real life, I would imagine one of the main targets in any campaign to

: be supply lines. For example, The Dambusters is a movie about some
: special bombers with special bombs desiged to destroy dams, with the aim
: of crippling Germany's iron/steel industry. General Custer was in trouble
: because he was surrounded and cut off from supplies and reinforcements
: (yes, my knowledge is very sketchy).

Yes you are right one of the major considerations at a Stratigic level is
supply, how do I attack yours, how do I protect mine. One point
concerning General Custer however, his problem wasn't so much that his
supply lines were cut, more that he was surrounded with no avenue of
retreat. This is a position which is so inheriently poor that any AI
should automatically avoid it without any requirement for a 'special case'.

: Another approach to defining a front is that it is where you want it to

: be! Perhaps call your front where you are trying to hold back/push back
: enemy forces. Incursions don't necessarily happen on a front - you may
: quick-march or drop forces into enemy territory next to a vital supply
: line, or sneak in sabateurs to destroy strategic bridges ("A Bridge Too
: Far").

With the game mechanics we have been considering of late the AI won't
have to be concerned with most of these problems. I personally can't see
how defining a front 'where you want it to be' is useful although this is
probably more me not thinking it though properly than a problem with the
idea. What do you mean by it, and is it in anyway related to the concept
of critical point/contact point currently being discussed?

: I heard someone claim once that war is about economic ruin rather than

: outright carnage. Is there any way your AI can calculate the move that
: will cause most damage to industry and support, rather than shoot the
: most enemy? Of course, these strategies apply to wars, not battles...

Personally I prefer Sun Tzu's philosophy. Basically it holds that to win
without fighting is best, and the aim of war is to capture territory
without damaging it.
BTW: does anyone know if there is a e-text version of The Art of War
anywhere?

Andrae.

Andrae Muys

unread,
May 17, 1995, 3:00:00 AM5/17/95
to
I appologise for the excessive quoting but without the diagram any reply
is awkward.

Satrapa / Alexander Marc (ISE) (u90...@student.canberra.edu.au) wrote:

: On 15 May 1995, Andrae Muys wrote:

: > Steve Woodcock (wood...@escmail.orl.mmc.com) wrote:
: > : Andrae Muys (cca...@dingo.cc.uq.oz.au) wrote:
: >
: > : : YY Now by any standards X is in a bad way. It has been
: > : : Y completely outflanked and his left flank is already
: > : : XXX YY overrun. Intuitivly his front is now perpendicular
: > : : XX XXX XX XY Y to Y's. I think we may need a concept such as
: > : : X X Y contact point, which in this case is Y's centre, and
: > : : Y X's left flank. Naturally in most battles there would
: > : : YYY be multiple contact points. Personally I would draw the
: > : : Y fronts as follows.

: [snip]
: > benifits of creating/avoiding specific contact points. e.g. in the

: > example above X should avoid contact with Y until he has rotated his
: > front.(it looks like we may still need to consider fronts as well).

: Two options I can see here - either X moves its forces into Y's "front"

: to create as much damage as possible (in a concentrated strike or
: "blitzkreig" style attack) or X moves its "front" back, forcing Y to make
: the next move (allowing X the advantage in defence).

IMO The first of your options is probably going to lead to disaster. X
is not only outflanked but overrun. From this postion any attack he
makes is going to be piecemeal, and forces commited to an attack
piecemeal are destroyed piecemeal to very little effect. IMHO the second
option is the only option avaliable to X, the question for X is how far
back to regroup, and what to do next. Some of his options as I see them
involve, pulling all units at the contact point back, all units not at
the contact point foward, form an offensive formation and try to break
Y's, by now dissordered, centre. Or maybe send forces to delay Y's flank,
utilise defence in depth at the contact point to buy time, and either
prepare an attack, prepare a defence, or use the manuvour to start a
rearguard action.

: Is X aggressive or defensive? Y's forces are rather spread out, so X can

: "spear" through the front and attack from both sides (like an inverse of
: the "pincer" movement).

Personally I would quite enjoy gaming Y against an X attacking from this
postion.

Steve Woodcock

unread,
May 17, 1995, 3:00:00 AM5/17/95
to
Robert A. Uhl (ru...@phoebe.cair.du.edu) wrote:
: > I think we could solve the multiple front problem if we generalized the
: >problem to find SEVERAL 'localized centers', thus allowing for multiple axes
: >of advance along a somewhat more fluid 'front'. In the case of two armies,
: >you might get something like this:
: >
: >
: > x x x
: >
: > y1 y2 y3 y4
: >
: > x x x
: >
: > In this case, each of the x-x pairs make INDEPENDENT determinations
: >of what lies 'between' them. Then, based on the relative combat strengths
: >and other factors, you could issue separate orders for each section of
: >the battlefield. This effectively sets up a variety of 'mini-centers'
: >(using our terminology from above) and more realistically (IMHO) emulates
: >realworld operations (i.e., lots of mini-objectives, the possibility for
: >overlapping objectives, etc.).

: Hmmm...

: I assume that this assumes a single master strategist giving orders
: to the units. I would think that the master should group neighboring
: units as one, in order to save time when calculating the following:
: calculate a center between every piece and every other. When his is
: all done, choose the minimum amount of centers which take care of the
: maximum amount of enemies. This should allow certain interesting
: effects over varying terrain, if said terrain is taken into account as
: it should be.

Robert:

Good point; some type of nearness type to lump together nearby units
for the foci calculations makes sense. It might or might not end up
saving time overall; the test to see if somebody is nearby is almost the
same test as determing grouping.

However, the idea of choosing the minimum number of centers to affect
the maximum number of enemies has a good feel to it. After all, that's
what I do when I play a game--try to annihilate his forces with the
minimum amount of force necessary, so I can use my 'extra' forces for
something else.

Steve Woodcock

unread,
May 17, 1995, 3:00:00 AM5/17/95
to
Robert A. Uhl (ru...@phoebe.cair.du.edu) wrote:

: Heh. Actually, if X is driving through Y, in order to create two


: fronts along which Y must fight, thereby forcing Y to regroup, then
: 'b' has been executed.


Good point. Yet another example of how a human can spot an opportunity
in the face of the most daunting situations....


: > If we define a contact point, then does that give us a natural focus


: >towards which to direct our forces and our strategic 'thinking'? They would
: >seem to.

: Yes. The AI should attempt to create as many contatc points as


: possible. Why? These points mean that he is actually fighting the
: enemy and hopefully killing the same. That is why two parallel lines
: are a good formation. With a good lookahead, though, the T formation
: is also good, because it will enable many points of contact _over
: time_, and hurt Y's ability to create them. Part of the battle is
: controlling contact. In fact, if the AI can do this controlling, then
: it is my belief that it will have an extremely good chance at winning.


I'm not sure I agree that I would want the AI to maximize its number
of contacts with the enemy; I would agree that it should seek to control
them.

Maximization in itself will only lead to toe-to-toe WWI slugfests, and
basically leads to the AI playing a war of attrition. That's perhaps one
of the defining characteristics of most AIs today--if they don't cheat
somehow, then they tend to fight wars of attrition.


: The sphere of influence idea seems to work well with the points of


: contact idea. Perhaps each unit has a sphere wherein it can contact
: within a certain number fo moves (say 3), and its job is to contact
: the fewest enemies at once but the most over time. IOW, it doesn't
: want to be outnumbered but it wants to see action.


Yes indeed. That's sort of where we were headed, I believe.
I do like the idea of factoring time into the equation somehow; the AI
ought to be willing to have NO enemy contact for two turns if it's busy
moving forces around for MAJOR enemy contract (say, the Normandy invasion)
on the third turn. That does make sense intuitively. Perhaps we can tie
time-weighted values to multi-turn engagement decisions?

: And two units have a greater sphere of influence, say 8 moves, than


: just one. This would help reflect the greater power of two. Controlled
: territory would be defined as that surrounded by my own units and
: without enemy units, once again utilizing the SoIs. Contested would,
: of course, be that which neither side controls. Perhaps a 'strength'
: value would be attached to areas, indicating the number of units
: controlling it, time for more to get there &c. Thiswould provide an
: incentive for the AI to encircle enemy territory.

Agreed. This is very similar to the idea of using a 'fire distribution'
map that was presented by Daniele, actually, just a different method of
solving the same problem. We'll want to do SOMETHING like this in order
to properly consider the limiting effects of enemy weaponry and the
local terrain.

Steve Woodcock

unread,
May 17, 1995, 3:00:00 AM5/17/95
to
Andrae Muys (cca...@dingo.cc.uq.oz.au) wrote:
: With the game mechanics we have been considering of late the AI won't
: have to be concerned with most of these problems. I personally can't see
: how defining a front 'where you want it to be' is useful although this is
: probably more me not thinking it though properly than a problem with the
: idea. What do you mean by it, and is it in anyway related to the concept
: of critical point/contact point currently being discussed?


That's right; at the moment we're sort of focusing on a roughly
Napoleonic-era level of combat for the sake of simplicity. Paratroopers
will be added in AI v. 2.0. ;)


: : I heard someone claim once that war is about economic ruin rather than

: : outright carnage. Is there any way your AI can calculate the move that
: : will cause most damage to industry and support, rather than shoot the
: : most enemy? Of course, these strategies apply to wars, not battles...
: Personally I prefer Sun Tzu's philosophy. Basically it holds that to win
: without fighting is best, and the aim of war is to capture territory
: without damaging it.

If we hold to the concept of specifying various objectives (as discussed
way back at the start of this thread), then I would think moves designed
to inflict economic damage would flow naturally out of that. Oil wells,
ports, rail lines, etc. would all be natural objectives, and as the AI
considers its moves and attempts to seize objectives they would naturally
be overrrun.


: BTW: does anyone know if there is a e-text version of The Art of War
: anywhere?

Good question...I'd like to know myself.

Will Uther

unread,
May 19, 1995, 3:00:00 AM5/19/95
to
In article <3pd6nc$l...@theopolis.orl.mmc.com>,
wood...@escmail.orl.mmc.com (Steve Woodcock) wrote:

> Robert A. Uhl (ru...@phoebe.cair.du.edu) wrote:
> : Yes. The AI should attempt to create as many contatc points as
> : possible. Why? These points mean that he is actually fighting the
> : enemy and hopefully killing the same. That is why two parallel lines
> : are a good formation. With a good lookahead, though, the T formation
> : is also good, because it will enable many points of contact _over
> : time_, and hurt Y's ability to create them. Part of the battle is
> : controlling contact. In fact, if the AI can do this controlling, then
> : it is my belief that it will have an extremely good chance at winning.
>
> I'm not sure I agree that I would want the AI to maximize its number
> of contacts with the enemy; I would agree that it should seek to control
> them.
>
> Maximization in itself will only lead to toe-to-toe WWI slugfests, and
> basically leads to the AI playing a war of attrition. That's perhaps one
> of the defining characteristics of most AIs today--if they don't cheat
> somehow, then they tend to fight wars of attrition.

Very good point.

> : The sphere of influence idea seems to work well with the points of
> : contact idea. Perhaps each unit has a sphere wherein it can contact
> : within a certain number fo moves (say 3), and its job is to contact
> : the fewest enemies at once but the most over time. IOW, it doesn't
> : want to be outnumbered but it wants to see action.

This is where the determination of neighbours came in before. Assume the
following:

1

2 3

A

A is attacking and could normally reach 1, 2 or 3. However most humans
would rule out attacking 1 because 2 and 3 are 'in the way' - 1 is not a
neighbour of A.
This is assuming normal distances are used. If you penalise paths for
travelling close to an enemy then the shortest path A -> 1 may be around
the outside of 2 or 3 - making it 'out of range' anyway. You have to
search for shortest paths in this case though.

\x/ill :-}

.oO FactorY Oo.

unread,
May 19, 1995, 3:00:00 AM5/19/95
to
cca...@dingo.cc.uq.oz.au (Andrae Muys) writes:
>Personally I prefer Sun Tzu's philosophy. Basically it holds that to win
>without fighting is best, and the aim of war is to capture territory
>without damaging it.
>BTW: does anyone know if there is a e-text version of The Art of War
>anywhere?
>
>Andrae.

http://timpwrmac.clh.icnet.uk/Docs/suntzu/szcontents.html
for the Art of War (not the 1960's translation, an older one) , and

http://fermi.clas.virginia.edu/~gl8f/paradoxes.html
for George Silver's Paradoxes of defence, which is probably
in a similarr vein, but I have not got around to reading it yet.

Anybody who does any type of strategic or tactical stuff should
read at least the Art of War, very good stuff indeed.

--
______ _____________________________________ _______
(_ ___ / / / / / / |/ / /
(__ / ___/ / / / / / / /__
/ __// . / ___/__ __/ __ / . /____ /___)_

Steve Woodcock

unread,
May 19, 1995, 3:00:00 AM5/19/95
to
Hello All:


Jason Kester (the guy whose post is contained below) asked me to post this
for him; he's having some problems actually getting his posts to take.
He went ahead and tried the most recent suggestion for generating a
force map and got some interesting results....

==============================================================================
From JKe...@sea.ms.ch2m.com Fri May 19 15:04:11 1995
Received: from ds9.ch2m.com (ds9.ch2m.com [130.77.4.78]) by tequesta.gate.net (8.6.9/8.6.9) with ESMTP id PAA88870 for <wood...@gate.net>; Fri, 19 May 1995 15:03:48 -0400
Received: from smtpgate.ch2m.com (smtpgate.ch2m.com [130.77.4.228]) by ds9.ch2m.com (8.6.4/8.6.4) with SMTP id NAA08839 for <wood...@gate.net>; Fri, 19 May 1995 13:11:43 -0600
Received: by smtpgate.ch2m.com with Microsoft Mail
id <2FBC...@smtpgate.ch2m.com>; Fri, 19 May 95 13:04:29 PDT
From: "Kester, Jason/SEA" <JKe...@sea.ms.ch2m.com>
To: Steve Woodcock <wood...@gate.net>
Subject: AI Stuff
Date: Fri, 19 May 95 13:06:00 PDT
Message-ID: <2FBC...@smtpgate.ch2m.com>
Encoding: 64 TEXT
X-Mailer: Microsoft Mail V3.0
Status: RO


Hey, I dont know what's wrong w/ my mailserver, but for some reason it wont
send my posts out to the rest of the world. Anyway, I have some comments on
that strategic position thread in comp.ai.games & since I've seen yer name
on a bunch of stuff there, I thot you might do me a favor & post this there.
If not, just send me a big ol' nasty message & I'll try this thru someone
else. Thanks!

Jason Kester - jke...@sea.ms.ch2m.com
>:
>: The algorithm boils down to:
>
>: 1) Assign each map location one of three values:
>: a) If it's empty, assign 0;
>: b) If it's occupied by a friendly unit, assign a positive value.
>: c) If it's occupied by an enemy unit, assign a negative value.
>
>: 2) Make a new copy of the map with each location receiving its old
>: value modified by the six hexes surrounding it:
>: a) Increase by one for each adjacent hex containing a positive
>: value.
>: b) Decrease by one for each adjacent hex containing a negative
>: value.
>
>: 3) Copy the new map back into the old map.
>
>: 4) Repeat steps 2) and 3) an arbitrary number of times.
>

Well, I refined this algorithm a little & tried it out. First of all, I
used a square matrix so my computer could handle it easier. My major
change, however, was in step two.

for each square:
a) get the value it had last time
b) add the values of the 8 surrounding squares together & scale (divide)
them by some
factor. I used 4 & it worked ok, but 2 or 8 would be good too.
c) add a&b to get new value.

Then Step 3 & 4 - I repeated twice to get a good dispersion.

Your original values dont need to be too high, since they get increased with
each iteration. A couple 10's next to eachother grow to 50 or so after two
iterations.

Finally, I had a third matrix defined which holds the defensive
modifications due to terrain. These can be positive or zero, and you just
add them on top at the end. I suppose you could multiply them instead, but
you get the idea.

I ran this on a 10X10 matrix w/ 3 or four units for + and -, then stuck it
into my surface mapper. Sure enough, your zero-level contour defines a
front. Your units have areas of influence that overlap & combine w/
eachother & you can see where thecenter of their force is with a relative
max (or min).

I guess the next step is to have your forces find a relative max in the
opponents side, and send a bigger force in there. The idea being that you
send a group with a force count higher than the enemy, and not just a bunch
of individual units that may add up to enough if they happen to get there at
the right time.
==============================================================================

That's Jason's post.

Very interesting results. I remain somewhat unconvinced that it's a
good thing for a very high value unit to 'swamp' a nearby low-value enemy
unit, but it didn't seem to make a difference here, so maybe I'm wrong.
Time to try a little experimental coding myself....

Steve Woodcock

unread,
May 19, 1995, 3:00:00 AM5/19/95
to
.oO FactorY Oo. (cs58...@lux.latrobe.edu.au) wrote:

: cca...@dingo.cc.uq.oz.au (Andrae Muys) writes:
: >Personally I prefer Sun Tzu's philosophy. Basically it holds that to win
: >without fighting is best, and the aim of war is to capture territory
: >without damaging it.
: >BTW: does anyone know if there is a e-text version of The Art of War
: >anywhere?
: >
: >Andrae.

: http://timpwrmac.clh.icnet.uk/Docs/suntzu/szcontents.html
: for the Art of War (not the 1960's translation, an older one) , and

: http://fermi.clas.virginia.edu/~gl8f/paradoxes.html
: for George Silver's Paradoxes of defence, which is probably
: in a similarr vein, but I have not got around to reading it yet.

: Anybody who does any type of strategic or tactical stuff should
: read at least the Art of War, very good stuff indeed.

Thank you very much!!! I knew they had to be out there somewhere...


==============================================================================
Steven Woodcock _
Senior Software Engineer, Gameware _____C .._.
Lockheed Martin Information Systems Group ____/ \___/
Phone: 407-826-6986 <____/\_---\_\ "Ferretman"
E-mail: wood...@gate.net

swoo...@oldcolo.com
wood...@escmail.orl.mmc.com

Eric Dybsand

unread,
May 20, 1995, 3:00:00 AM5/20/95
to
In <1995May19.1...@lugb.latrobe.edu.au>

cs58...@lux.latrobe.edu.au (.oO FactorY Oo.) writes:
>
>cca...@dingo.cc.uq.oz.au (Andrae Muys) writes:
>>Personally I prefer Sun Tzu's philosophy. Basically it holds that to
[snip]

>>BTW: does anyone know if there is a e-text version of The Art of War
>>anywhere?
>>
>>Andrae.
>
>http://timpwrmac.clh.icnet.uk/Docs/suntzu/szcontents.html
> for the Art of War (not the 1960's translation, an older one) , and
>
>http://fermi.clas.virginia.edu/~gl8f/paradoxes.html
> for George Silver's Paradoxes of defence, which is probably
>in a similarr vein, but I have not got around to reading it yet.

Do you have another site for the Sun Tzu work? I just tried the one
above as was unable to find /Docs/suntzu/szcontents.html at that site.
Apparently, things have changed there.

Any other suggestion would be appreciated.

Regards,

Eric


Steve Woodcock

unread,
May 20, 1995, 3:00:00 AM5/20/95
to
Robert A. Uhl (ru...@phoebe.cair.du.edu) wrote:

: The function must first seek to find nearby units. The first
: criteria for 'nearness' would simply be physical nearness. This would
: choose, say 10 or 20 units. These would be sorted by strength, then by
: friendly units in the rough direction of the enemy. The idea is that a
: unit doesn't know where its allies are headed, but if they are near an
: enemy, the odds are that it is a melee situation. After sorting these
: the second time, the AI would choose the 'nearest' unit. In close
: quarters, it would most likely choose the physically nearest one. But
: from a distance, it would tend towards otehr criteria, such as unit
: strength, friendlies in the area, &c.

Okay. Earlier in the thread a mechanism for 'grouping' enemy and
allied units was proposed that involved drawing circles based variously
on movement capabilities and/or firepower.

: The one problem is that such an AI might be too chaotic at first,
: sending units out willy-nilly. These first units would be likely to go
: one way, then the other. But soon, I believe that some order would
: arise. Units would have a tendency to conglomerate in an area and
: fight as one. This is just my own thought, though. It is quite
: possible that it would be entirely too chotic.

I wonder if some variant of this isn't what many games already do?
Most of them do tend to exhibit a nasty tendency to trickle units unit
a battle.

: >
: > 1
: >
: > 2 3
: >
: > A
: >

: Hmm. I would suggest that the AI measure the distances. For the sake
: of argument A->1 = 3, A->2 = 2, A->3 = 2.

: The AI takes its 5 closest neigbours, that is 1, 2, 3, null and
: null. Of the the closest is 2 (since it is numerically before 3, which
: is the same distance away). In real life, this would be adjusted with
: another function, perhaps measuring the relative strength of the unit
: in question. It opts to attack 2. After attacking two, it opts to
: attack 1. After one, it takes on 3. Of course, it may be too weak by
: then and therefor leaves the field or waits for reinforcements.

: Simplistic, and probably not the best method. In fatc, I know that
: it is rather bad, but it works, and that is what counts for the
: moment. Perhaps it would only be good for individual movement. In
: fact, I think thta it would mimic a single man rather well. The man
: takes on the closest, weakest enemy.

As you say, this solution is fast but sub-optimal. There's no provision
or mechanism for combining the firepower of several allied units against
a single enemy unit. That's a situation that occurs in both the strategic
arena and the tactical.

On a related subject, I wonder how one would best determine how many
units to allocate to the attack against a given enemy unit? I can think
of two approaches:

a.) The AI operates on a battle-to-battle basis, always strives to
achieve a certain ratio (3:1) or certain probability of kill (say, 90%)
and allocates units (depending on their proximity to the battle) to
achieve this;
b.) The AI works on a more 'big picture' basis, attempting to maximize
OVERALL probability of kill across several battles (i.e., willing to
take a 20% chance of success in one battle for three others at 90%).

Intellectually, option 'b' is more appealing, and more reflective of
how most gamers actually play. You balance your needs and are sometimes
willing to sacrifice one unit to save several others.

There's no need, nor is terribly desirable, for the AI to attempt to make
this tradeoff across the entire battlefield. I think we could tie this in
with the influence mapping suggested earlier to easily identify sub-areas
of the battlefield that the AI could make the tradeoffs in, perhaps by
using some type of edge detection across the values of the hexes?


Steven
==============================================================================
Steven Woodcock _
Senior Software Engineer, Gameware _____C .._.
Lockheed Martin Information Systems Group ____/ \___/
Phone: 407-826-6986 <____/\_---\_\ "Ferretman"
E-mail: wood...@gate.net

swoo...@oldcolo.com
wood...@escmail.orl.mmc.com

Robert A. Uhl

unread,
May 20, 1995, 3:00:00 AM5/20/95
to
In article <will-19059...@willsmac.cs.su.oz.au>,

Will Uther <wi...@cs.su.oz.au> wrote:
>In article <3pd6nc$l...@theopolis.orl.mmc.com>,
>wood...@escmail.orl.mmc.com (Steve Woodcock) wrote:
>
>> Robert A. Uhl (ru...@phoebe.cair.du.edu) wrote:
>>
>> Maximization in itself will only lead to toe-to-toe WWI slugfests, and
>> basically leads to the AI playing a war of attrition. That's perhaps one
>> of the defining characteristics of most AIs today--if they don't cheat
>> somehow, then they tend to fight wars of attrition.
>
>Very good point.

Well, to minimize the possibility of a WWI-type war, something needs
to be done to keep the AI from planning one (gee, that was
brilliant:-). There are two possibilities: allow it to do so, but give
ti the long-range planning skills necessary to make it realize that
such a war is undesirable, or keep it from planning such a war. I will
focus on preventing this.

First of all, the unit must attempt to maximize contact with weak
units _over time_. It must seek to minimize contact with any units,
esp. strong ones, at once. To do so, it can be given either planning
skills, or merely given a function which will do so. Once again, I
will concentrate on the simpler way and faster. Planning takes CPU
time, something which most 'puters lack. Planning would take the form
of a path finder which would decide the path for a unit which would
bring it in contact with units individually.

The function must first seek to find nearby units. The first
criteria for 'nearness' would simply be physical nearness. This would
choose, say 10 or 20 units. These would be sorted by strength, then by
friendly units in the rough direction of the enemy. The idea is that a
unit doesn't know where its allies are headed, but if they are near an
enemy, the odds are that it is a melee situation. After sorting these
the second time, the AI would choose the 'nearest' unit. In close
quarters, it would most likely choose the physically nearest one. But
from a distance, it would tend towards otehr criteria, such as unit
strength, friendlies in the area, &c.

The one problem is that such an AI might be too chaotic at first,


sending units out willy-nilly. These first units would be likely to go
one way, then the other. But soon, I believe that some order would
arise. Units would have a tendency to conglomerate in an area and
fight as one. This is just my own thought, though. It is quite
possible that it would be entirely too chotic.

Also, it must be made possible for them to retreat. With this, your
units willbe akin to men; they don't like to be hit on too much.
Perhaps they would be craven or berserk. That would be neat.

>> : The sphere of influence idea seems to work well with the points of
>> : contact idea. Perhaps each unit has a sphere wherein it can contact
>> : within a certain number fo moves (say 3), and its job is to contact
>> : the fewest enemies at once but the most over time. IOW, it doesn't
>> : want to be outnumbered but it wants to see action.
>

>This is where the determination of neighbours came in before. Assume the
>following:
>
> 1
>
> 2 3
>
> A
>
> A is attacking and could normally reach 1, 2 or 3. However most humans
>would rule out attacking 1 because 2 and 3 are 'in the way' - 1 is not a
>neighbour of A.
> This is assuming normal distances are used. If you penalise paths for
>travelling close to an enemy then the shortest path A -> 1 may be around
>the outside of 2 or 3 - making it 'out of range' anyway. You have to
>search for shortest paths in this case though.

Hmm. I would suggest that the AI measure the distances. For the sake


of argument A->1 = 3, A->2 = 2, A->3 = 2.

The AI takes its 5 closest neigbours, that is 1, 2, 3, null and
null. Of the the closest is 2 (since it is numerically before 3, which
is the same distance away). In real life, this would be adjusted with
another function, perhaps measuring the relative strength of the unit
in question. It opts to attack 2. After attacking two, it opts to
attack 1. After one, it takes on 3. Of course, it may be too weak by
then and therefor leaves the field or waits for reinforcements.

Simplistic, and probably not the best method. In fatc, I know that
it is rather bad, but it works, and that is what counts for the
moment. Perhaps it would only be good for individual movement. In
fact, I think thta it would mimic a single man rather well. The man
takes on the closest, weakest enemy.

--

.oO FactorY Oo.

unread,
May 21, 1995, 3:00:00 AM5/21/95
to
Eric Dybsand (ed...@ix.netcom.com) wrote:
: In <1995May19.1...@lugb.latrobe.edu.au>

: cs58...@lux.latrobe.edu.au (.oO FactorY Oo.) writes:
: >
: >http://timpwrmac.clh.icnet.uk/Docs/suntzu/szcontents.html

: > for the Art of War (not the 1960's translation, an older one) , and
: >
: >http://fermi.clas.virginia.edu/~gl8f/paradoxes.html
: > for George Silver's Paradoxes of defence, which is probably
: >in a similarr vein, but I have not got around to reading it yet.

: Do you have another site for the Sun Tzu work? I just tried the one
: above as was unable to find /Docs/suntzu/szcontents.html at that site.
: Apparently, things have changed there.

: Any other suggestion would be appreciated.

Anybody who has a problem with this site could contact
m_coc...@icrf.icnet.uk, who converted the documents to
html format, and he is not reachable one could try Bob Sutton,
who wrote the preface,
( al...@cleaveland.freenet.edu or bo...@gnu.ai.mit.edu )
^^^^
Hmm is gnu going to do something with ai's, or does Bob have a
strange machine name..?

--
______ _____________________________________ _______
(_ ___ / / / / / / |/ / /
(__ / ___/ / / / / / / /__
/ __// . / ___/__ __/ __ / . /____ /___)_

/__/ /__/__/_____/ /__/ /______/__/__|______/______)

Will Uther

unread,
May 21, 1995, 3:00:00 AM5/21/95
to
Hi,
It seems that this thread is heading towards a 'spreading activation'
type algorithm (see the 'influence mapping' thread for my comments on how
to do/use that type of algorithm). I don't think that a real-time game
played of a large map has the computational power to implement that type
of algorithm.
A better type (computationally feasable) of algorithm would just
consider the pieces on the board, rather than each square. As whoever
started this thread said, the reason for looking for 'fronts' and other
high level entities was to speed up search. Finding these entities by
considering ever square on the board is self-defeating.

Anyway, as I said in my post to the 'influence mapping' thread, a front is
not just a line of equal influence/distance. It is a small section of
that line closest to the two opposing sides.

An algorithm for defining a front mathematically is to place a 'kernal
function' around each piece. Say each piece has a function
Strength/sqrt((x-X)^2+(y-Y)^2) == Strength/dist. Your pieces have +ve
strength, theirs have -ve strength. Where the sum of kernals is 0 is a
point of equal strength. Where the sum of kernals is 0 and there is a
large derivative is a front. This still leaves the problem of solving
that lot and doesn't take terrain into account.

Anyone else got any ideas? BTW, this was why I originally came up with
the concept of centres, and defining area in the circle which they sit on
as the 'front'. It doesn't use spreading activation and can be partially
modified for terrain.

Steve Woodcock

unread,
May 21, 1995, 3:00:00 AM5/21/95
to
Will Uther (wi...@cs.su.oz.au) wrote:
: Hi,

: It seems that this thread is heading towards a 'spreading activation'
: type algorithm (see the 'influence mapping' thread for my comments on how
: to do/use that type of algorithm). I don't think that a real-time game
: played of a large map has the computational power to implement that type
: of algorithm.
:
: A better type (computationally feasable) of algorithm would just
: consider the pieces on the board, rather than each square. As whoever
: started this thread said, the reason for looking for 'fronts' and other
: high level entities was to speed up search. Finding these entities by
: considering ever square on the board is self-defeating.


As I understand it, the influence mapping centers on the units themselves,
propogating their influence out across the map. While I question whether or
not it is practical or feasible to do this for evrey unit and every hex,
the approach is otherwise very similar to what you suggest.

: Anyway, as I said in my post to the 'influence mapping' thread, a front is


: not just a line of equal influence/distance. It is a small section of
: that line closest to the two opposing sides.


I don't think I would agree. A front isn't a line of equal influence,
nor is it a section of that line closest to the two opposing sides. It
is where there are opposing forces, of whatever strength, in close enough
proximity to affect each other.


: An algorithm for defining a front mathematically is to place a 'kernal


: function' around each piece. Say each piece has a function
: Strength/sqrt((x-X)^2+(y-Y)^2) == Strength/dist. Your pieces have +ve
: strength, theirs have -ve strength. Where the sum of kernals is 0 is a
: point of equal strength. Where the sum of kernals is 0 and there is a
: large derivative is a front. This still leaves the problem of solving
: that lot and doesn't take terrain into account.


I see this as a variant on influence mapping....you've got the unit's
strength, propogated over a distance.

: Anyone else got any ideas? BTW, this was why I originally came up with


: the concept of centres, and defining area in the circle which they sit on
: as the 'front'. It doesn't use spreading activation and can be partially
: modified for terrain.

Actually I'm still more in favor of defining centers and circles
rather than using influence mapping, if only because it's computationally
less intensive. On the other hand, the idea of influence mapping is
rather unique, and does better propogate the value of combined arms
than center definition.


Steven
==============================================================================
Steven Woodcock _
Senior Software Engineer, Gameware _____C .._.
Lockheed Martin Information Systems Group ____/ \___/
Phone: 407-826-6986 <____/\_---\_\ "Ferretman"
E-mail: wood...@gate.net

swoo...@oldcolo.com
wood...@escmail.orl.mmc.com

Daniel Boese

unread,
May 22, 1995, 3:00:00 AM5/22/95
to
I've been lurking for a while here and am finally putting my $.02 in... :)

Is there any way to combine all of the previously mentioned approaches,
with limits on each? They've all got advantages, and are more useful in
certain situations than others (ie, influence mapping seems like it would
be excellent if you had a several forces on each side, some surrounding
each other). But is there any way for the AI to recognize which method to
use in a particular situation? Or would it do a "quickie" run of each,
and compare?

Then again, I'm not entirely sure I have any idea what I'm talking
about... :)

--
--
Daniel Boese aka Flying Fox
dbo...@freenet.niagara.com

Will Uther

unread,
May 22, 1995, 3:00:00 AM5/22/95
to
In article <1995May21....@lugb.latrobe.edu.au>,

cs58...@lux.latrobe.edu.au (.oO FactorY Oo.) wrote:

> Eric Dybsand (ed...@ix.netcom.com) wrote:
> : In <1995May19.1...@lugb.latrobe.edu.au>
> : cs58...@lux.latrobe.edu.au (.oO FactorY Oo.) writes:
> : >
> : >http://timpwrmac.clh.icnet.uk/Docs/suntzu/szcontents.html
> : > for the Art of War (not the 1960's translation, an older one) , and
> : >
> : >http://fermi.clas.virginia.edu/~gl8f/paradoxes.html
> : > for George Silver's Paradoxes of defence, which is probably
> : >in a similarr vein, but I have not got around to reading it yet.
>
> : Do you have another site for the Sun Tzu work? I just tried the one
> : above as was unable to find /Docs/suntzu/szcontents.html at that site.
> : Apparently, things have changed there.
>
> : Any other suggestion would be appreciated.

I found these two:

http://atlantis.austin.apple.com/html/gan2/TAW/STAW.html

and

http://deepthought.armory.com/~peterr/suntzu/szfront.html

Andrew Edward White

unread,
May 22, 1995, 3:00:00 AM5/22/95
to

Does it make any difference to the AI if the game being played
is Real-Time as opposed to turn-based? In a real-time game, the
game state can change dynamically even as the analysis is being
performed. Is this significant, or is it simply a matter of
having a fast enough algorithm/processor that the dynamic
situation can be treated as static?

(I am assuming that individual units can be given simple commands
(eg 'Shoot that' or 'Move there') that they can carry out without
continual strategic direction.)

Steve Hodsdon

unread,
May 22, 1995, 3:00:00 AM5/22/95
to

In article <3pd743$l...@theopolis.orl.mmc.com> wood...@escmail.orl.mmc.com writes:

>
> Andrae Muys (cca...@dingo.cc.uq.oz.au) wrote:
>
> : BTW: does anyone know if there is a e-text version of The Art of War
> : anywhere?
>

> Good question...I'd like to know myself.
>

I don't know of one. I do have the Shambhala editions of _The Art
of War_ and _Mastering The Art of War_. I'd like to use Sun Tzu's
philosophy in a wargame although I doubt that there would be much
interest in the game. Can you imagine it? Winning battles without
fighting? How boring! :)

Another book that you folks may find interesting is _The Art of
Maneuver_ by Robert Leonhard. (Subtitled "Maneuver-Warfare Theory and
AirLand Battle"). ISBN 0-89141-532-7, Presidio Press, 1991. I just
picked this one up a few days ago so I'm not going to post an in-depth
review. However, from what I've read so far, the "Maneuver-Warfare
Theory" section falls in with what I've read in this thread.

For example, in chess, what is the center of gravity? At first you
may think that it's the queen. After all, it's the strongest piece.
Lose the queen and you suffer a terrible reduction in your "warfighting
capabilities." But this isn't true. Think about it some more. The
enemy's center of gravity is not his source of strength, it's his
*critical vulnerability*. Therefore, in chess, the COG is the king.
Neutralize this piece and the war is over.

Steve
--

Whoops, Gotta run. | shod...@netis.mv.com
The cat's caught in the printer! |

Satrapa / Alexander Marc (ISE)

unread,
May 23, 1995, 3:00:00 AM5/23/95