GamePage.dart 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. import 'dart:math';
  2. import 'package:flutter/cupertino.dart';
  3. import 'package:flutter/material.dart';
  4. import 'package:gobang/ai/Ai.dart';
  5. import 'package:gobang/bridge/ChessShape.dart';
  6. import 'package:gobang/factory/ThemeFactory.dart';
  7. import 'package:gobang/flyweight/Chess.dart';
  8. import 'package:gobang/flyweight/ChessFlyweightFactory.dart';
  9. import 'package:gobang/memorandum/Originator.dart';
  10. import 'package:gobang/state/UserContext.dart';
  11. import 'package:gobang/utils/TipsDialog.dart';
  12. import 'package:gobang/viewModel/GameViewModel.dart';
  13. import 'flyweight/Position.dart';
  14. var width = 0.0;
  15. ///简单的实现五子棋效果
  16. class GamePage extends StatefulWidget {
  17. @override
  18. State<StatefulWidget> createState() => GamePageState();
  19. }
  20. class GamePageState extends State<GamePage> {
  21. ThemeFactory? _themeFactory;
  22. GameViewModel _viewModel = GameViewModel.getInstance();
  23. Originator _originator = Originator.getInstance();
  24. @override
  25. void initState() {
  26. _themeFactory = AiThemeFactory();
  27. super.initState();
  28. }
  29. @override
  30. Widget build(BuildContext context) {
  31. width = MediaQuery.of(context).size.width * 0.8;
  32. return Scaffold(
  33. appBar: AppBar(
  34. elevation: 0,
  35. backgroundColor: _themeFactory!.getTheme().getThemeColor(),
  36. title: Text("南瓜五子棋"),
  37. actions: [
  38. IconButton(
  39. onPressed: () {
  40. if (_viewModel.undo()) {
  41. _originator.undo();
  42. Ai.getInstance().init();
  43. for (Position po in _originator.state) {
  44. Ai.getInstance().addChessman(po.dx ~/ (width / 15),
  45. po.dy ~/ (width / 15), po.chess is WhiteChess ? 1 : -1);
  46. }
  47. setState(() {});
  48. } else {
  49. TipsDialog.show(context, "提示", "现阶段不能悔棋");
  50. }
  51. },
  52. icon: Icon(Icons.undo)),
  53. IconButton(
  54. onPressed: () {
  55. TipsDialog.showByChoose(context, "提示", "是否要投降并重新开局?","是","否",(value){
  56. if(value){
  57. setState(() {
  58. ChessPainter._position = null;
  59. _originator.clean();
  60. _viewModel.reset();
  61. Ai.getInstance().init();
  62. });
  63. }
  64. Navigator.pop(context);
  65. });
  66. },
  67. icon: Icon(Icons.sports_handball)),
  68. IconButton(
  69. onPressed: () {
  70. TipsDialog.showByChoose(context, "提示", "是否重新开局?","是","否",(value){
  71. if(value){
  72. setState(() {
  73. ChessPainter._position = null;
  74. _originator.clean();
  75. _viewModel.reset();
  76. Ai.getInstance().init();
  77. });
  78. }
  79. Navigator.pop(context);
  80. });
  81. },
  82. icon: Icon(Icons.restart_alt)),
  83. ],
  84. ),
  85. body: Container(
  86. decoration: new BoxDecoration(
  87. gradient: new LinearGradient(
  88. colors: [
  89. _themeFactory!.getTheme().getThemeColor(),
  90. Colors.white,
  91. ],
  92. stops: [
  93. 0.0,
  94. 1
  95. ],
  96. begin: FractionalOffset.topCenter,
  97. end: FractionalOffset.bottomCenter,
  98. tileMode: TileMode.repeated)),
  99. child: ListView(
  100. children: [
  101. Center(
  102. child: Column(
  103. mainAxisAlignment: MainAxisAlignment.center,
  104. crossAxisAlignment: CrossAxisAlignment.center,
  105. mainAxisSize: MainAxisSize.max,
  106. children: <Widget>[
  107. Padding (
  108. padding: EdgeInsets.only(top:14,bottom: 30),
  109. child: Text(_viewModel.state,style: TextStyle(color: Colors.white),),
  110. ),
  111. GestureDetector(
  112. onTapDown: (topDownDetails) {
  113. var position = topDownDetails.localPosition;
  114. Chess chess = _viewModel.play();
  115. setState(() {
  116. ChessPainter._position =
  117. Position(position.dx, position.dy, chess);
  118. });
  119. },
  120. child: Stack(
  121. children: [
  122. CustomPaint(
  123. size: Size(width, width),
  124. painter: CheckerBoardPainter(),
  125. ),
  126. CustomPaint(
  127. size: Size(width, width),
  128. painter: ChessPainter(turnAi),
  129. )
  130. ],
  131. ))
  132. ]),
  133. ),
  134. ],
  135. ),
  136. ),
  137. );
  138. }
  139. /// Ai 下棋
  140. void turnAi() {
  141. // print("Ai下棋");
  142. if (ChessPainter._position!.chess is WhiteChess &&
  143. Ai.getInstance().isWin(ChessPainter._position!.dx ~/ (width / 15),
  144. ChessPainter._position!.dy ~/ (width / 15), 1)) {
  145. TipsDialog.show(context, "恭喜", "您打败了决策树算法");
  146. }
  147. // 获取Ai下棋地址
  148. Ai ai = Ai.getInstance();
  149. ChessPainter._position = ai.searchPosition();
  150. // 设置棋子外观
  151. ChessPainter._position!.chess.chessShape = CircleShape();
  152. // 加入决策中
  153. Ai.getInstance().addChessman(ChessPainter._position!.dx.toInt(),
  154. ChessPainter._position!.dy.toInt(), -1);
  155. if (ChessPainter._position!.chess is BlackChess &&
  156. Ai.getInstance().isWin(ChessPainter._position!.dx.toInt(),
  157. ChessPainter._position!.dy.toInt(), -1)) {
  158. TipsDialog.show(context, "很遗憾", "决策树算法打败了您");
  159. }
  160. setState(() {
  161. ChessPainter._position!.dx = ChessPainter._position!.dx * (width / 15);
  162. ChessPainter._position!.dy = ChessPainter._position!.dy * (width / 15);
  163. });
  164. }
  165. }
  166. class ChessPainter extends CustomPainter {
  167. static int _state = 0;
  168. static Position? _position;
  169. final Function _function;
  170. Originator _originator = Originator.getInstance();
  171. ChessPainter(Function f) : _function = f;
  172. @override
  173. void paint(Canvas canvas, Size size) {
  174. if (_position == null) {
  175. return;
  176. }
  177. bool add = false;
  178. double mWidth = size.width / 15;
  179. double mHeight = size.height / 15;
  180. var mPaint = Paint();
  181. //求两个点之间的距离,让棋子正确的显示在坐标轴上面
  182. var dx = _position!.dx;
  183. var dy = _position!.dy;
  184. for (int i = 0; i < CheckerBoardPainter._crossOverBeanList.length; i++) {
  185. var absX =
  186. (dx - CheckerBoardPainter._crossOverBeanList[i]._dx).abs(); //两个点的x轴距离
  187. var absY =
  188. (dy - CheckerBoardPainter._crossOverBeanList[i]._dy).abs(); //两个点的y轴距离
  189. var s = sqrt(absX * absX +
  190. absY * absY); //利用直角三角形求斜边公式(a的平方 + b的平方 = c的平方)来计算出两点间的距离
  191. if (s <= mWidth / 2 - 2) {
  192. // 触摸点到棋盘坐标坐标点距离小于等于棋子半径,那么
  193. //找到离触摸点最近的棋盘坐标点并记录保存下来
  194. _position!.dx = CheckerBoardPainter._crossOverBeanList[i]._dx;
  195. _position!.dy = CheckerBoardPainter._crossOverBeanList[i]._dy;
  196. _originator.add(_position!);
  197. add = true;
  198. if (_position!.chess is WhiteChess) {
  199. Ai.getInstance().addChessman(
  200. _position!.dx ~/ (width / 15), _position!.dy ~/ (width / 15), 1);
  201. }
  202. // flag = false; //白子下完了,该黑子下了
  203. break;
  204. }
  205. }
  206. //画子
  207. mPaint..style = PaintingStyle.fill;
  208. if (_originator.state.isNotEmpty) {
  209. for (int i = 0; i < _originator.state.length; i++) {
  210. mPaint..color = _originator.state[i].chess.color;
  211. if (_originator.state[i].chess.chessShape.shape == 1) {
  212. canvas.drawCircle(
  213. Offset(_originator.state[i].dx, _originator.state[i].dy),
  214. min(mWidth / 2, mHeight / 2) - 2,
  215. mPaint);
  216. }
  217. if (_originator.state[i].chess.chessShape.shape == 2) {
  218. Rect rect = Rect.fromCircle(
  219. center: Offset(_originator.state[i].dx, _originator.state[i].dy),
  220. radius: min(mWidth / 2, mHeight / 2) - 2);
  221. canvas.drawRect(rect, mPaint);
  222. }
  223. }
  224. }
  225. WidgetsBinding.instance!.addPostFrameCallback((_) {
  226. if (add && _position!.chess is WhiteChess) {
  227. _function();
  228. }
  229. });
  230. }
  231. //在实际场景中正确利用此回调可以避免重绘开销,本示例我们简单的返回true
  232. @override
  233. bool shouldRepaint(CustomPainter oldDelegate) {
  234. return true;
  235. }
  236. }
  237. class CheckerBoardPainter extends CustomPainter {
  238. static List<CrossOverBean> _crossOverBeanList = [];
  239. static int _state = 0;
  240. @override
  241. void paint(Canvas canvas, Size size) {
  242. double mWidth = size.width / 15;
  243. double mHeight = size.height / 15;
  244. var mPaint = Paint();
  245. _crossOverBeanList.clear();
  246. //重绘下整个界面的画布北京颜色
  247. //设置画笔,画棋盘背景
  248. mPaint
  249. ..isAntiAlias = true //抗锯齿
  250. ..style = PaintingStyle.fill //填充
  251. ..color = Color(0x77cdb175); //背景为纸黄色
  252. canvas.drawRect(
  253. Rect.fromCenter(
  254. center: Offset(size.width / 2, size.height / 2),
  255. width: size.width,
  256. height: size.height),
  257. mPaint);
  258. //画棋盘网格
  259. mPaint
  260. ..style = PaintingStyle.stroke
  261. ..color = CupertinoColors.systemGrey6
  262. ..strokeWidth = 1.0;
  263. for (var i = 0; i <= 15; i++) {
  264. //画横线
  265. canvas.drawLine(
  266. Offset(0, mHeight * i), Offset(size.width, mHeight * i), mPaint);
  267. }
  268. for (var i = 0; i <= 15; i++) {
  269. //画竖线
  270. canvas.drawLine(
  271. Offset(mWidth * i, 0), Offset(mWidth * i, size.height), mPaint);
  272. }
  273. //记录横竖线所有的交叉点
  274. for (int i = 0; i <= 15; i++) {
  275. for (int j = 0; j <= 15; j++) {
  276. _crossOverBeanList.add(CrossOverBean(mWidth * j, mHeight * i));
  277. }
  278. }
  279. }
  280. //在实际场景中正确利用此回调可以避免重绘开销,本示例我们简单的返回true
  281. @override
  282. bool shouldRepaint(CustomPainter oldDelegate) {
  283. return false;
  284. }
  285. }
  286. ///记录棋盘上横竖线的交叉点
  287. class CrossOverBean {
  288. double _dx;
  289. double _dy;
  290. CrossOverBean(this._dx, this._dy);
  291. }