AI 算法写在前端
cd client && npm run serve
AI 算法用 golang 实现,通过接口返回给前端走法,请先准备 golang 开发环境。
cd server && go run main.go
修改 client/src/chess/Game.ts 为:
return new Player(
color,
type,
// new Bridge({ depth: (level as number) + 2, board: board as Board, color, aiType: 'minimax', workerPath })
new ProxyAi()
)然后在 client 目录下启动前端服务:
npm run serve
