GameViewModel.dart 779 B

1234567891011121314151617181920212223242526272829303132333435
  1. import 'package:gobang/bridge/ChessShape.dart';
  2. import 'package:gobang/flyweight/Chess.dart';
  3. import 'package:gobang/flyweight/ChessFlyweightFactory.dart';
  4. import 'package:gobang/state/UserContext.dart';
  5. class GameViewModel {
  6. GameViewModel._();
  7. static GameViewModel? _gameViewModel;
  8. static getInstance() {
  9. if (_gameViewModel == null) {
  10. _gameViewModel = GameViewModel._();
  11. }
  12. return _gameViewModel;
  13. }
  14. UserContext _userContext = UserContext();
  15. Chess play() {
  16. _userContext.play();
  17. Chess chess;
  18. /// 设置棋子外观
  19. ChessShape shape = RectShape();
  20. chess = ChessFlyweightFactory.getInstance().getChess("white");
  21. chess.chessShape = shape;
  22. return chess;
  23. }
  24. bool undo() {
  25. return _userContext.regretChess();
  26. }
  27. }