d4bbfb8738d705f03971a0a692ebc66541025fc4
[gnushogi.git] / TODO
1 Known bugs:
2
3 - some positions show problem in the evaluation algorithm
4 - minishogi repetition rule, different from standard shogi, is
5   not implemented
6 - with no piece on board, computer generates invalid move
7
8 Target for v1.5:
9
10 - use ~/.gnushogi for binary book and hash file
11
12 - make minishogi a run-time option rather than a compile-time one,
13   using the "variant" mechanism of the xboard protocol
14
15 Generic cleanups
16
17 - switch cli parsing to getopt
18 - hunt for extern's and prototypes spread all over the source
19 - hunt for more hardcoded variant-specific constants
20   - position of captured pieces in curses mode
21   - compile with bound-checker
22 - add autosave mode to ease hunt for segfaults ?
23 - ? use 2D array for the board, get rid of the (i)nunmap stuff
24 - fixup build procedure to support parallel make runs
25 - investigate those preexisting "overflow in implicit constant
26   conversion" warnings
27
28 Minishogi-related stuff
29
30 - minishogi patterns
31 - tune difficulty levels
32 - other tunings to investigate
33   * PromotionZoneDistanceBonus
34   * OPENING_HINT
35 - add minishogi stuff to the doc
36 - use valid minishogi moves in online help
37
38 Improvements
39
40 - find out why the engine is so weak
41   - make it battle against Mutz-era gnushogi, and other engines, and
42     compare their evaluation results
43   - see what needs updating in book
44 - express available commands as display-dependant, instead of using if(XSHOGI)
45   - make "help" list commands available for current display
46 - make X and raw two different display drivers