Learning Haskell with Chess
From HaskellWiki
(Difference between revisions)
(ouletorelc) |
|||
| (3 intermediate revisions not shown.) | |||
| Line 1: | Line 1: | ||
| + | olodom | ||
| + | [[Category:Education]] | ||
This page is about learning Haskell using the board game Chess as a running example. The complete code can be found at http://www.steffen-mazanek.de/dateien/projekte/hsChess.zip. | This page is about learning Haskell using the board game Chess as a running example. The complete code can be found at http://www.steffen-mazanek.de/dateien/projekte/hsChess.zip. | ||
| Line 25: | Line 27: | ||
*stepwise refinement | *stepwise refinement | ||
===Tasks=== | ===Tasks=== | ||
| + | *Define a function <hask>movePos::Pos->Pos->Board->Board</hask> such that <hask>movePos p1 p2 b</hask> moves the piece at p1 to p2 (overwrite the square at p2 with the square at p1 and delete p1). Do not check whether the move is valid at this stage. Hint: Define a function <hask>updateBoard</hask> first. On top of this further define a function <hask>deleteSquare</hask>. Its much simpler to have these functions at hand. | ||
| + | *Implement a function <hask>colorPos::PieceColor->Board->[Pos]</hask> whose result is the list of the positions of the pieces of a certain color. | ||
| + | *Define <hask>moves::PieceType->[(Int,Int)]</hask> that returns the base moving vectors for a particular piece (return empty list for pawns here, because their vector depends on the color). | ||
| + | *Implement <hask>genMoves::Board->Pos->[Board]</hask>, it takes a board b and a position p and results in the list of all boards that may follow if you move the piece at p on board b. | ||
| + | *Combine <hask>colorPos</hask> and <hask>genMoves</hask> to a function <hask>nextStates::State->[State]</hask> that returns all possible successor states. | ||
==Exercise 3 - gametree generation and minimax algorithm== | ==Exercise 3 - gametree generation and minimax algorithm== | ||
Current revision
olodom This page is about learning Haskell using the board game Chess as a running example. The complete code can be found at http://www.steffen-mazanek.de/dateien/projekte/hsChess.zip.
@German Haskellers: You may also have a look at the tex-files used for our student exercises, http://www.steffen-mazanek.de/dateien/projekte/hsChess-teaching-german.zip.
Contents |
1 Exercise 1 - data types
1.1 Learning targets
- recapitulate Haskell types (keywords andtype, product and sum types)data
- Helium: equality and show functions (pattern matching)
- Haskell: type classes (,Show,Eq)deriving
- list handling (boards will be represented by lists of lists)
- special character ,'\n'putStr::String->IO ()
1.2 Tasks
- Define data types that represent boards (), squares (Board), positions (Square), pieces (Pos, supported byPieceandPieceColor) and game states (PieceType).State
- Helium: Implement suited eq and show functions.
- Haskell: Define/derive instances of andShowEq
- Implement a function , that transforms a board into a clearly arranged string representation (human readable :-)). Support this function with auxiliary functions that pretty print pieces, squares, ...prettyBoard::Board->String
- Define the initial board (), testinitialBoard::BoardwithprettyBoard.initialBoard
- Implement a simple evaluation function as the difference of material on board, for this purpose define a functionevalBoard::Board->Intthat maps pieces to their values (pawn->1, knight and bishop->3, queen->9, rook->5, king->"infinity"=1000).valuePiece
2 Exercise 2 - move generator
2.1 Learning targets
- list comprehension
- stepwise refinement
2.2 Tasks
- Define a function such thatmovePos::Pos->Pos->Board->Boardmoves the piece at p1 to p2 (overwrite the square at p2 with the square at p1 and delete p1). Do not check whether the move is valid at this stage. Hint: Define a functionmovePos p1 p2 bfirst. On top of this further define a functionupdateBoard. Its much simpler to have these functions at hand.deleteSquare
- Implement a function whose result is the list of the positions of the pieces of a certain color.colorPos::PieceColor->Board->[Pos]
- Define that returns the base moving vectors for a particular piece (return empty list for pawns here, because their vector depends on the color).moves::PieceType->[(Int,Int)]
- Implement , it takes a board b and a position p and results in the list of all boards that may follow if you move the piece at p on board b.genMoves::Board->Pos->[Board]
- Combine andcolorPosto a functiongenMovesthat returns all possible successor states.nextStates::State->[State]
3 Exercise 3 - gametree generation and minimax algorithm
3.1 Learning targets
- break code in modules
- complexity
- recursive data structures -> recursive algorithms
3.2 Tasks
- Define a data type that represents a game tree ().GameTree
- Roughly estimate the number of nodes of the gametree with depth 4.
- Define a function , that computes the value of a given game tree using the minimax Algorithm.play::Gametree->Int
- Implement the function , that choses the (best) next state.doMove::State->State
