Preliminary port of Shogi to the component API.master/shogi
commit07f7431f961e06f2683da19ee5589fcdf1f0228e
authorYann Dirson <ydirson@altern.org>
Sun, 20 Apr 2008 19:52:42 +0000 (20 21:52 +0200)
committerYann Dirson <ydirson@altern.org>
Sun, 20 Apr 2008 19:52:42 +0000 (20 21:52 +0200)
treeff94e1b542c61838c760db909efc205fc3b0b84a
parent408e61013437be201aa18c1728022c18b760a164
Preliminary port of Shogi to the component API.
51 files changed:
TODO_shogi
data/themes/pieces/ShogiTTF/theme.lua
debian/.gitignore
debian/control
debian/tagua-variant-shogi.files [new file with mode: 0644]
src/variantfactories/builtinvariants.cpp
src/variants/CMakeLists.txt
src/variants/shogi/CMakeLists.txt [new file with mode: 0644]
src/variants/shogi/behaviour.cpp [new file with mode: 0644]
src/variants/shogi/behaviour.h [new file with mode: 0644]
src/variants/shogi/colors.cpp [new file with mode: 0644]
src/variants/shogi/colors.h [new file with mode: 0644]
src/variants/shogi/moveserializer.cpp [new file with mode: 0644]
src/variants/shogi/moveserializer.h [new file with mode: 0644]
src/variants/shogi/shogi.cpp [new file with mode: 0644]
src/variants/shogi/state.cpp [new file with mode: 0644]
src/variants/shogi/state.h [new file with mode: 0644]
src/variants/shogi/tagua-shogi.desktop [new file with mode: 0644]
src/variants/shogi/type.cpp [new file with mode: 0644]
src/variants/shogi/type.h [new file with mode: 0644]
src/variants/shogi/types.h [new file with mode: 0644]
src/variants/shogi/types/bishop.cpp [new file with mode: 0644]
src/variants/shogi/types/bishop.h [new file with mode: 0644]
src/variants/shogi/types/dragonhorse.cpp [new file with mode: 0644]
src/variants/shogi/types/dragonhorse.h [new file with mode: 0644]
src/variants/shogi/types/dragonking.cpp [new file with mode: 0644]
src/variants/shogi/types/dragonking.h [new file with mode: 0644]
src/variants/shogi/types/gold.cpp [new file with mode: 0644]
src/variants/shogi/types/gold.h [new file with mode: 0644]
src/variants/shogi/types/king.cpp [new file with mode: 0644]
src/variants/shogi/types/king.h [new file with mode: 0644]
src/variants/shogi/types/knight.cpp [new file with mode: 0644]
src/variants/shogi/types/knight.h [new file with mode: 0644]
src/variants/shogi/types/lance.cpp [new file with mode: 0644]
src/variants/shogi/types/lance.h [new file with mode: 0644]
src/variants/shogi/types/narigin.cpp [new file with mode: 0644]
src/variants/shogi/types/narigin.h [new file with mode: 0644]
src/variants/shogi/types/narikei.cpp [new file with mode: 0644]
src/variants/shogi/types/narikei.h [new file with mode: 0644]
src/variants/shogi/types/narikyo.cpp [new file with mode: 0644]
src/variants/shogi/types/narikyo.h [new file with mode: 0644]
src/variants/shogi/types/pawn.cpp [new file with mode: 0644]
src/variants/shogi/types/pawn.h [new file with mode: 0644]
src/variants/shogi/types/rook.cpp [new file with mode: 0644]
src/variants/shogi/types/rook.h [new file with mode: 0644]
src/variants/shogi/types/silver.cpp [new file with mode: 0644]
src/variants/shogi/types/silver.h [new file with mode: 0644]
src/variants/shogi/types/tokin.cpp [new file with mode: 0644]
src/variants/shogi/types/tokin.h [new file with mode: 0644]
src/variants/shogi/validator.cpp [new file with mode: 0644]
src/variants/shogi/validator.h [new file with mode: 0644]