ActionScript 3 的国际象棋走法验证库
您知道 ActionScript 3 的国际象棋走法验证库吗? 我在谷歌搜索过,但找不到任何东西。 如果你知道请告诉我。
如果没有任何库,我想我必须从Java移植到AS3。
Do you know any chess move validation library for ActionScript 3 ?
I have searched in google but I can not find anything.
Please tell me if you know.
If there isn't any library, I think that I have to port from Java to AS3.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想我只是写它,因为它最终将与你的游戏/位置表示紧密结合。
想一想:必须是合法的走法,或者游戏环境中的走法验证(50 步规则、3 次重复位置、en-passant、升级棋子、易位可用性……?)。
您甚至可能必须传递游戏的整个移动历史记录。
如果你仔细想想,这并不算什么工作。
I think I'd just write it because it is going to end up very tightly bound to your game/position representation.
Think about it: ust legal moves, or move validation in game context (50-move rule, 3-time repeated position, en-passant, promoted pieces, castling availability...?).
You might even have to pass the entire move history for the game.
It is not that much work if you think about it.
http://code.google.com/p/osas3cf/updates/list
该代码包含国际象棋移动验证器的代码。一探究竟
http://code.google.com/p/osas3cf/updates/list
That one has code included for a chess move validator. Check it out