4个版本
0.1.3 | 2020年5月26日 |
---|---|
0.1.2 | 2020年5月26日 |
0.1.1 | 2020年5月26日 |
0.1.0 | 2020年5月26日 |
#752 in 游戏
21KB
301 行
Tic Tac Rust
一个用Rust构建并作为npm包打包为WebAssembly的井字棋游戏管理器 wasm-pack 包
什么是井字棋
见 维基百科
井字棋(美式英语),圈叉(英式英语),或X和O是一种两人纸笔游戏,X和O轮流在3x3网格中标记空格。第一个在水平、垂直或对角线上成功放置三个标记的玩家赢得游戏。
安装
$npm install tic-tac-rust
- 在你的js/ts
const { State } = await import('tic-tac-rust');
使用方法
创建新的游戏状态
const gameState = State.new(difficulty);
// difficulty is 0 (Easy), 1 (Normal) or 2 (Computer will be unbeatable)
更新棋盘
gameState.update_board(index, character)
// index is 0 - 8 starting top left, character is 'x', 'o' or '0'
检查胜负平
您可以使用is_win函数检查胜负
const xWon = gameState.is_win('x'); // xWon would be true if x won
const oWon = gameState.is_win('o'); // oWon would be true if o won
或检查平局
const isTie = gameState.is_tie() // isTie is true if it is a tie
请求电脑的下一步操作
这基于创建状态时使用的难度
const index = gameState.next_move(x_or_o)
// x_or_o is 'x' if computer is 'x' and 'o' if computer is 'o'
使用技术
- Rust ❤️
- wasm-bindgen
- Rand
贡献
这是一个我在学习WebAssembly时快速完成的副项目(这很快就会出现在我的个人网站上!)。如果有人最终使用了它并希望做出贡献,请随意创建PR 😁
依赖项
~11–20MB
~287K SLoC