Implemented the State component for chess.
commit7d83fdd01faafe762af4064daf091b6dde506aa3
authorPaolo Capriotti <p.capriotti@gmail.com>
Tue, 6 Nov 2007 18:38:52 +0000 (6 19:38 +0100)
committerPaolo Capriotti <p.capriotti@gmail.com>
Fri, 9 Nov 2007 21:45:52 +0000 (9 22:45 +0100)
treee2eca8f59f71f1f7bcbb249765896f94f810098c
parentc22e79cbe1278a4556b929db312452c0f8180f6e
Implemented the State component for chess.
36 files changed:
src/CMakeLists.txt
src/core/CMakeLists.txt
src/core/board.h
src/core/color.cpp [copied from src/core/types/king.cpp with 54% similarity]
src/core/color.h [new file with mode: 0644]
src/core/component.cpp [copied from src/core/taguaobject.cpp with 65% similarity]
src/core/component.h
src/core/defaultstate.h
src/core/move.cpp
src/core/move.h
src/core/piece.cpp
src/core/piece.h
src/core/point.cpp
src/core/state.h
src/core/taguaobject.cpp
src/core/taguaobject.h
src/core/type.h
src/core/types/bishop.cpp
src/core/types/bishop.h
src/core/types/king.cpp
src/core/types/king.h
src/core/types/knight.cpp
src/core/types/knight.h
src/core/types/pawn.cpp
src/core/types/pawn.h
src/core/types/queen.cpp
src/core/types/queen.h
src/core/types/rook.cpp
src/core/types/rook.h
src/variants/CMakeLists.txt [new file with mode: 0644]
src/variants/chess/CMakeLists.txt [new file with mode: 0644]
src/variants/chess/colors.cpp [copied from src/core/taguaobject.cpp with 65% similarity]
src/variants/chess/colors.h [copied from src/core/taguaobject.cpp with 65% similarity]
src/variants/chess/state.cpp [new file with mode: 0644]
src/variants/chess/state.h [new file with mode: 0644]
src/variants/chess/types.h [copied from src/core/component.h with 58% similarity]