LordDarkula/chess_py

View on GitHub
chess_py/core/algebraic/notation_const.py

Summary

Maintainability
A
0 mins
Test Coverage
# -*- coding: utf-8 -*-

"""
Class stores integer values for various types of moves in algebraic notation.

Copyright © 2016 Aubhro Sengupta. All rights reserved.
"""


MOVEMENT = 0

CAPTURE = 1

KING_SIDE_CASTLE = 2

QUEEN_SIDE_CASTLE = 3

EN_PASSANT = 4

PROMOTE = 5

CAPTURE_AND_PROMOTE = 6

NOT_IMPLEMENTED = 7

LONG_ALG = 8