GamePage.dart 13 KB

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