AA/AF enhancements

Doomtrooper said:
A Bishop Attacks diagonally , a rook attacks in a 'L' pattern ;)
Hmm not quite. Rooks move and attack in straight lines: i.e. along ranks and files.
Code:
....X...
....X...
....X...
XXXXRXXX
....X...
....X...
....X...
....X...

Knights move and attack in an L pattern like so:
Code:
.X.X.
X...X
..N..
X...X
.X.X.
Pawns move like so:
Code:
.X.
.X.
.P.
...
however they can only move two squares on their first move. They capture like this:
Code:
X.X
.P.
...
Bishops move and attack diagonally like so:
Code:
.X.....X
..X...X.
...X.X..
....B...
...X.X..
..X...X.
.X.....X
X.......
Queens move and attack as a rook or bishop:
Code:
.X..X..X
..X.X.X.
...XXX..
....Q...
...XXX..
..X.X.X.
.X..X..X
X...X...
Kings are like queens, but can only move one square at a time. Also, a king can never get closer than 2 squares away from another king.
My money is on Opengl guy :D
Mine too! :D

(Legend: . = empty square. N = knight, R = rook, Q = queen, B = bishop, P = pawn, X = "legal' move. "Legal" because there are restrictions: Rooks/bishops/queens/pawns cannot jump over other pieces and must land on an unoccupied square unless capturing an opposing piece. Knights may jump over pieces but must land on an empty square unless capturing an opposing piece.)
 
Doomtrooper said:
A Bishop Attacks diagonally , a rook attacks in a 'L' pattern ;)

My money is on Opengl guy :D
GAH!
ANOTHER GEEK WHO DOESNT KNOW!!!

The only reason i know about the FIDE rules is that my friends and i used to play with them by our sides to rule on any disputes...
OpenGl guy, nice ascii art, but if yoiu follow my link, its has actual images that show the same thing! : :p
 
Althornin said:
The only reason i know about the FIDE rules is that my friends and i used to play with them by our sides to rule on any disputes...
OpenGl guy, nice ascii art, but if yoiu follow my link, its has actual images that show the same thing! : :p
Now you tell me :D
 
OpenGL guy said:
Queens move and attack as a rook or bishop:
Code:
.X..X..X
..X.X.X.
...XXX..
....Q...
...XXX..
..X.X.X.
.X..X..X
X...X...

Minor correction for the queen:

Code:
.X..X..X
..X.X.X.
...XXX..
XXXXQXXX
...XXX..
..X.X.X.
.X..X..X
X...X...
 
Humus said:
OpenGL guy said:
Queens move and attack as a rook or bishop:
Code:
.X..X..X
..X.X.X.
...XXX..
....Q...
...XXX..
..X.X.X.
.X..X..X
X...X...

Minor correction for the queen:

Code:
.X..X..X
..X.X.X.
...XXX..
XXXXQXXX
...XXX..
..X.X.X.
.X..X..X
X...X...
Doh! I knew I shoulda just said take the union of the rook and bishop moves :p

Thanks.
 
Back
Top