当前位置: 首页>>代码示例>>Python>>正文


Python Position.get_move_from_san方法代码示例

本文整理汇总了Python中position.Position.get_move_from_san方法的典型用法代码示例。如果您正苦于以下问题:Python Position.get_move_from_san方法的具体用法?Python Position.get_move_from_san怎么用?Python Position.get_move_from_san使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在position.Position的用法示例。


在下文中一共展示了Position.get_move_from_san方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_pawn_captures

# 需要导入模块: from position import Position [as 别名]
# 或者: from position.Position import get_move_from_san [as 别名]
    def test_pawn_captures(self):
        """Tests pawn captures in the kings gambit."""
        pos = Position()
        pos.make_move(pos.get_move_from_san("e4"))
        pos.make_move(pos.get_move_from_san("e5"))
        pos.make_move(pos.get_move_from_san("f4"))

        accepted = pos.copy()
        self.assertTrue(Move.from_uci("e5f4") in accepted.get_pseudo_legal_moves())
        self.assertTrue(Move.from_uci("e5f4") in accepted.get_legal_moves())
        accepted.make_move(accepted.get_move_from_san("exf4"))

        wierd_declined = pos.copy()
        wierd_declined.make_move(wierd_declined.get_move_from_san("d5"))
        wierd_declined.make_move(wierd_declined.get_move_from_san("exd5"))
开发者ID:arthurfait,项目名称:kivy-chess,代码行数:17,代码来源:old_test_position.py

示例2: test_san_moves

# 需要导入模块: from position import Position [as 别名]
# 或者: from position.Position import get_move_from_san [as 别名]
    def test_san_moves(self):
        """Tests making moves from SANs."""
        pos = Position()

        pos.make_move(pos.get_move_from_san('Nc3'))
        pos.make_move(pos.get_move_from_san('c5'))

        pos.make_move(pos.get_move_from_san('e4'))
        pos.make_move(pos.get_move_from_san('g6'))

        pos.make_move(pos.get_move_from_san('Nge2'))
        pos.make_move(pos.get_move_from_san('Bg7'))

        pos.make_move(pos.get_move_from_san('d3'))
        pos.make_move(pos.get_move_from_san('Bxc3'))

        pos.make_move(pos.get_move_from_san('bxc3'))

        self.assertEqual(pos.fen, 'rnbqk1nr/pp1ppp1p/6p1/2p5/4P3/2PP4/P1P1NPPP/R1BQKB1R b KQkq - 0 5')
开发者ID:arthurfait,项目名称:kivy-chess,代码行数:21,代码来源:old_test_position.py


注:本文中的position.Position.get_move_from_san方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。