From 64ba2097da775d24bb7d0e6269abef45370757c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20B=C3=BChler?= Date: Thu, 12 Feb 2009 12:18:39 +0100 Subject: [PATCH] Feature list --- README | 16 +++++++++++++++- media/Readme.txt | 2 ++ src/optiondlg.h | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/README b/README index 8ac40b2..d59c321 100644 --- a/README +++ b/README @@ -1 +1,15 @@ -Sky textures are from http://mikepan.homeip.net/resources/earth: "these high resolution sky boxes can be used for any non-commercial purposes with or without credit." + +Done: + * Documented public member functions (unless they are trivial) + * Game logic complete (detects end of a game in case of check mate, knows valid moves) + * AI complete + * board has textures for the fields + * Torus view + * Skybox in torus view (sphere) + * 3d view + * 2d figures (rendering svgs on buffers) + * Fogging (Depth Cueing) in 3d view + +Uncomplete/not done: + * Loading 3ds meshes + * 3d figures diff --git a/media/Readme.txt b/media/Readme.txt index 59d78d1..4038198 100644 --- a/media/Readme.txt +++ b/media/Readme.txt @@ -1,3 +1,5 @@ Images are from wikipedia; "Permission: GFDL & BSD & GPL" (author: http://en.wikipedia.org/wiki/User:Cburnett) * http://en.wikipedia.org/wiki/Chess_piece * http://en.wikipedia.org/wiki/File:Chess_klt45.svg + +Sky textures are from http://mikepan.homeip.net/resources/earth: "these high resolution sky boxes can be used for any non-commercial purposes with or without credit." diff --git a/src/optiondlg.h b/src/optiondlg.h index 064482a..71f811c 100644 --- a/src/optiondlg.h +++ b/src/optiondlg.h @@ -33,7 +33,7 @@ namespace toruschess { typedef enum { VIEW_2D, VIEW_3D, VIEW_TORUS } ViewMode; /** Option Dialog - * Game options are set directly (so one dialog contols only one game instance) + * Game options are set directly (so one dialog controls only one game instance) * The view mode option is handled via signal/slot (default is VIEW_2D) */ class OptionDlg : public QDialog, private Ui::OptionDlg {