GamePage.dart 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  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: ListView(
  90. children: [
  91. Center(
  92. child: Column(
  93. mainAxisAlignment: MainAxisAlignment.center,
  94. crossAxisAlignment: CrossAxisAlignment.center,
  95. mainAxisSize: MainAxisSize.max,
  96. children: <Widget>[
  97. Padding(
  98. padding: EdgeInsets.only(top: 14, bottom: 30),
  99. child: Text(
  100. _viewModel.state,
  101. style: TextStyle(color: Colors.white),
  102. ),
  103. ),
  104. GestureDetector(
  105. onTapDown: (topDownDetails) {
  106. var position = topDownDetails.localPosition;
  107. Chess chess = _viewModel.play(currentShape == circle);
  108. setState(() {
  109. ChessPainter._position =
  110. Position(position.dx, position.dy, chess);
  111. });
  112. },
  113. child: Stack(
  114. children: [
  115. CustomPaint(
  116. size: Size(width, width),
  117. painter: CheckerBoardPainter(),
  118. ),
  119. CustomPaint(
  120. size: Size(width, width),
  121. painter: ChessPainter(turnAi),
  122. )
  123. ],
  124. )),
  125. Padding(
  126. padding: const EdgeInsets.only(top: 16.0),
  127. child: Row(
  128. mainAxisAlignment: MainAxisAlignment.center,
  129. children: [
  130. IconButton(
  131. onPressed: () {
  132. if (_viewModel.undo()) {
  133. _originator.undo();
  134. Ai.getInstance().init();
  135. for (Position po in _originator.state) {
  136. Ai.getInstance().addChessman(
  137. po.dx ~/ (width / 15),
  138. po.dy ~/ (width / 15),
  139. po.chess is WhiteChess ? 1 : -1);
  140. }
  141. setState(() {});
  142. } else {
  143. TipsDialog.show(context, "提示", "现阶段不能悔棋");
  144. }
  145. },
  146. icon: Icon(Icons.undo)),
  147. IconButton(
  148. onPressed: () {
  149. if (_viewModel.surrender()) {
  150. TipsDialog.showByChoose(
  151. context, "提示", "是否要投降并重新开局?", "是", "否",
  152. (value) {
  153. if (value) {
  154. setState(() {
  155. ChessPainter._position = null;
  156. _originator.clean();
  157. _viewModel.reset();
  158. Ai.getInstance().init();
  159. });
  160. }
  161. Navigator.pop(context);
  162. });
  163. } else {
  164. TipsDialog.show(context, "提示", "现阶段不能投降");
  165. }
  166. },
  167. icon: Icon(
  168. Icons.sports_handball,
  169. color: Colors.deepPurple,
  170. )),
  171. IconButton(
  172. onPressed: () {
  173. TipsDialog.showByChoose(
  174. context, "提示", "是否重新开局?", "是", "否",
  175. (value) {
  176. if (value) {
  177. setState(() {
  178. ChessPainter._position = null;
  179. _originator.clean();
  180. _viewModel.reset();
  181. Ai.getInstance().init();
  182. });
  183. }
  184. Navigator.pop(context);
  185. });
  186. },
  187. icon: Icon(
  188. Icons.restart_alt,
  189. color: Colors.indigo,
  190. )),
  191. ],
  192. ),
  193. ),
  194. ]),
  195. ),
  196. ],
  197. ),
  198. ),
  199. );
  200. }
  201. /// Ai 下棋
  202. void turnAi() {
  203. // print("Ai下棋");
  204. if (ChessPainter._position!.chess is WhiteChess &&
  205. Ai.getInstance().isWin(ChessPainter._position!.dx ~/ (width / 15),
  206. ChessPainter._position!.dy ~/ (width / 15), 1)) {
  207. TipsDialog.show(context, "恭喜", "您打败了决策树算法");
  208. }
  209. // 获取Ai下棋地址
  210. Ai ai = Ai.getInstance();
  211. ChessPainter._position = ai.searchPosition();
  212. // 设置棋子外观
  213. ChessPainter._position!.chess.chessShape = CircleShape();
  214. // 加入决策中
  215. Ai.getInstance().addChessman(ChessPainter._position!.dx.toInt(),
  216. ChessPainter._position!.dy.toInt(), -1);
  217. if (ChessPainter._position!.chess is BlackChess &&
  218. Ai.getInstance().isWin(ChessPainter._position!.dx.toInt(),
  219. ChessPainter._position!.dy.toInt(), -1)) {
  220. TipsDialog.show(context, "很遗憾", "决策树算法打败了您");
  221. }
  222. setState(() {
  223. ChessPainter._position!.dx = ChessPainter._position!.dx * (width / 15);
  224. ChessPainter._position!.dy = ChessPainter._position!.dy * (width / 15);
  225. });
  226. }
  227. }
  228. class ChessPainter extends CustomPainter {
  229. static int _state = 0;
  230. static Position? _position;
  231. final Function _function;
  232. Checkerboard _originator = Checkerboard.getInstance();
  233. ChessPainter(Function f) : _function = f;
  234. @override
  235. void paint(Canvas canvas, Size size) {
  236. if (_position == null) {
  237. return;
  238. }
  239. bool add = false;
  240. double mWidth = size.width / 15;
  241. double mHeight = size.height / 15;
  242. var mPaint = Paint();
  243. //求两个点之间的距离,让棋子正确的显示在坐标轴上面
  244. var dx = _position!.dx;
  245. var dy = _position!.dy;
  246. for (int i = 0; i < CheckerBoardPainter._crossOverBeanList.length; i++) {
  247. var absX =
  248. (dx - CheckerBoardPainter._crossOverBeanList[i]._dx).abs(); //两个点的x轴距离
  249. var absY =
  250. (dy - CheckerBoardPainter._crossOverBeanList[i]._dy).abs(); //两个点的y轴距离
  251. var s = sqrt(absX * absX +
  252. absY * absY); //利用直角三角形求斜边公式(a的平方 + b的平方 = c的平方)来计算出两点间的距离
  253. if (s <= mWidth / 2 - 2) {
  254. // 触摸点到棋盘坐标坐标点距离小于等于棋子半径,那么
  255. //找到离触摸点最近的棋盘坐标点并记录保存下来
  256. _position!.dx = CheckerBoardPainter._crossOverBeanList[i]._dx;
  257. _position!.dy = CheckerBoardPainter._crossOverBeanList[i]._dy;
  258. _originator.add(_position!);
  259. add = true;
  260. if (_position!.chess is WhiteChess) {
  261. Ai.getInstance().addChessman(
  262. _position!.dx ~/ (width / 15), _position!.dy ~/ (width / 15), 1);
  263. }
  264. // flag = false; //白子下完了,该黑子下了
  265. break;
  266. }
  267. }
  268. //画子
  269. mPaint..style = PaintingStyle.fill;
  270. if (_originator.state.isNotEmpty) {
  271. for (int i = 0; i < _originator.state.length; i++) {
  272. mPaint..color = _originator.state[i].chess.color;
  273. if (_originator.state[i].chess.chessShape.shape == 1) {
  274. canvas.drawCircle(
  275. Offset(_originator.state[i].dx, _originator.state[i].dy),
  276. min(mWidth / 2, mHeight / 2) - 2,
  277. mPaint);
  278. }
  279. if (_originator.state[i].chess.chessShape.shape == 2) {
  280. Rect rect = Rect.fromCircle(
  281. center: Offset(_originator.state[i].dx, _originator.state[i].dy),
  282. radius: min(mWidth / 2, mHeight / 2) - 2);
  283. canvas.drawRect(rect, mPaint);
  284. }
  285. }
  286. }
  287. WidgetsBinding.instance!.addPostFrameCallback((_) {
  288. if (add && _position!.chess is WhiteChess) {
  289. _function();
  290. }
  291. });
  292. }
  293. //在实际场景中正确利用此回调可以避免重绘开销,本示例我们简单的返回true
  294. @override
  295. bool shouldRepaint(CustomPainter oldDelegate) {
  296. return true;
  297. }
  298. }
  299. class CheckerBoardPainter extends CustomPainter {
  300. static List<CrossOverBean> _crossOverBeanList = [];
  301. static int _state = 0;
  302. @override
  303. void paint(Canvas canvas, Size size) {
  304. double mWidth = size.width / 15;
  305. double mHeight = size.height / 15;
  306. var mPaint = Paint();
  307. _crossOverBeanList.clear();
  308. //重绘下整个界面的画布北京颜色
  309. //设置画笔,画棋盘背景
  310. mPaint
  311. ..isAntiAlias = true //抗锯齿
  312. ..style = PaintingStyle.fill //填充
  313. ..color = Color(0x77cdb175); //背景为纸黄色
  314. canvas.drawRect(
  315. Rect.fromCenter(
  316. center: Offset(size.width / 2, size.height / 2),
  317. width: size.width,
  318. height: size.height),
  319. mPaint);
  320. //画棋盘网格
  321. mPaint
  322. ..style = PaintingStyle.stroke
  323. ..color = CupertinoColors.systemGrey6
  324. ..strokeWidth = 1.0;
  325. for (var i = 0; i <= 15; i++) {
  326. //画横线
  327. canvas.drawLine(
  328. Offset(0, mHeight * i), Offset(size.width, mHeight * i), mPaint);
  329. }
  330. for (var i = 0; i <= 15; i++) {
  331. //画竖线
  332. canvas.drawLine(
  333. Offset(mWidth * i, 0), Offset(mWidth * i, size.height), mPaint);
  334. }
  335. //记录横竖线所有的交叉点
  336. for (int i = 0; i <= 15; i++) {
  337. for (int j = 0; j <= 15; j++) {
  338. _crossOverBeanList.add(CrossOverBean(mWidth * j, mHeight * i));
  339. }
  340. }
  341. }
  342. //在实际场景中正确利用此回调可以避免重绘开销,本示例我们简单的返回true
  343. @override
  344. bool shouldRepaint(CustomPainter oldDelegate) {
  345. return false;
  346. }
  347. }
  348. ///记录棋盘上横竖线的交叉点
  349. class CrossOverBean {
  350. double _dx;
  351. double _dy;
  352. CrossOverBean(this._dx, this._dy);
  353. }