mirror of
https://github.com/maaslalani/gambit.git
synced 2024-11-24 08:22:12 +02:00
57 lines
1.3 KiB
Go
57 lines
1.3 KiB
Go
package fen
|
|
|
|
import (
|
|
"fmt"
|
|
"regexp"
|
|
"strings"
|
|
)
|
|
|
|
var fenRegex = regexp.MustCompile(`\s*([rnbqkpRNBQKP1-8]+\/){7}([rnbqkpRNBQKP1-8]+)\s[bw-]\s(([a-hkqA-HKQ]{1,4})|(-))\s(([a-h][36])|(-))\s\d+\s\d+\s*`)
|
|
|
|
// IsValid returns whether a FEN string is valid by checking a naive regular expression
|
|
func IsValid(fen string) bool {
|
|
return fenRegex.MatchString(fen)
|
|
}
|
|
|
|
// Tokens returns the (6) tokens of a FEN string
|
|
//
|
|
// [Pieces, Turn, Castling, En passant, Halfmove Clock, Fullmove number]
|
|
func Tokens(fen string) []string {
|
|
return strings.Split(fen, " ")
|
|
}
|
|
|
|
// Ranks returns a slice of ranks from the first token of a FEN string
|
|
func Ranks(fen string) []string {
|
|
return strings.Split(Tokens(fen)[0], "/")
|
|
}
|
|
|
|
// Grid returns a 8x8 grid of the board represented by the FEN string
|
|
func Grid(fen string) [8][8]string {
|
|
var grid [8][8]string
|
|
for r, rank := range Ranks(fen) {
|
|
var row [8]string
|
|
c := 0
|
|
for _, col := range rank {
|
|
skip := 1
|
|
if isNumeric(col) {
|
|
skip = runeToInt(col)
|
|
} else {
|
|
row[c] = fmt.Sprintf("%c", col)
|
|
}
|
|
c += skip
|
|
}
|
|
grid[r] = row
|
|
}
|
|
return grid
|
|
}
|
|
|
|
// isNumeric returns whether a rune is a number
|
|
func isNumeric(r rune) bool {
|
|
return r >= '0' && r <= '9'
|
|
}
|
|
|
|
// runeToInt converts a rune to an integer
|
|
func runeToInt(r rune) int {
|
|
return int(r - '0')
|
|
}
|