LUDĘ is built in different conceptual layers, in order to achieve the required modularity for meta-game learning. This next diagram shows some of the working modules
Graphical User Interface
Academy
Tournament Players Game Libraries
|
![]() |
Academy
|
||||||||||||
![]() |
Arena
|
||||||||||||
![]() |
Game
|
||||||||||||
![]() |
Player
|
//
where the nasty stuff really happens...
:-) Game game // what game are we talking about Player[] players // the set of players Tournament tournament // what kind of tournament are we using Selection selector // how player generations are created |
//
define a set of contests (e.g., round-robin, pools, Swiss
system, // direct elimination... Arena arena // to which arena this tournament belongs Result[][] results // the actual table of results start() // reset and start 1st contest report() // report last contest to ACADEMY next() // start next contest pause() // pause tournament continue() // continue tournament toString() // actual tournament state in a string |
// a specific game
contest between two players Tournament tournament // to which tournament it belongs Player player1 Player player2 bool nextPlayer // TRUE = Player1, FALSE = Player2 Board[] positions Board getPos( n ) // returns
nth position (relative position, if n<0) |
Arena
arena // to which arena this
selection belongs Player[] reset() // create a new set of players Player[] next( Result[][] results) // evolve a new generation |
int
id string type // the player's type string name // the player's name (e.g., White, Black, Left, ...) abstract Board nextMove() |
|
|
string name Game game // which game are we talking Tactic[] features // the feature set defining the evaluation function float[] weights // the relevance of each feature search() // the search game tree algorithm (alpha-beta, ...) analyze() // optimize strategy (if analysis is available) learn() // optimize strategy (if learning is available) |
// a
specific point of view for evaluate a certain game position string type // expert, genetic, HOYLE-like,, neural, whatever... float evaluation( Board position ) // the positional credit assignment |
string name |
Cell(
String id, int maxLinks ) String id char piece // empty, Black soldier, White soldier, ... char state // cell state Links[] links // the set of connections (defined by maxLinks) Cell
next( char direction ) //
next cell in that direction |
Link(
char direction, char state, Cell toCell ) // we will use one letter direction (to use chars instead of Strings) // // m n o u -> up // \|/ d -> down // w--c--e x -> diagonal // /|\ + -> orthogonal // r s t * -> x and + // // other symbols may be used to extra directions! char direction // the actual direction char state // link state Cell toCell // to what cell setDirection( char direction ) char getDirection() setState( char value ) char getState() setCell( Cell cell ) Cell getCell() |
// a sector is a sub-area of the board (e.g., a promotion zone) Sector( String name, int maxCells ) String name
add(
Cell cell ) |
Cell[]
position
// keeps the actual board
position bool equals( Board other ) // this == other? Board clone() // make a copy // automatic creation of regular topologies, // using the following coordinate system for cell naming // // 4 5 6 // 6 . . . . . . 3 . . . // 5 . . . . . . 2 . . . . // 4 . . . . . . 1 . . . . . // 3 . . . . . . . . . . . . // 2 . . . . . . a . . . . . // 1 . . . . . . b . . . . // a b c d e f c d e f // abstract createGrid() // auxiliary
methods to ease the construction of Game.validMoves() |
|
|