Ejemplo n.º 1
0
 public bool Play(byte row, byte col)
 {
     if (!BoardUtil.CheckBounds(_size, row, col))
     {
         return(false);
     }
     if (_currentStatus.Board.Get(row, col) != WColor.EMPTY)
     {
         return(false);
     }
     else
     {
         BoardStatus temptNew = _currentStatus;
         if (!MoveUtils.Move(ref temptNew, row, col))
         {
             return(false);
         }
         if (!boardHistory.Contains(temptNew.ToString()))
         {
             boardHistory.Add(temptNew.ToString());
             _currentStatus = temptNew;
             _LatestMove    = new Tuple <byte, byte>(row, col);
             _numMoves++;
             return(true);
         }
         return(false);
     }
 }
Ejemplo n.º 2
0
 public void Reset()
 {
     boardHistory.Clear();
     _LatestMove     = null;
     _currentStatus  = new BoardStatus(_size);
     _currentRecMove = 0;
     boardHistory.Add(_currentStatus.ToString());
     _numMoves = 0;
 }
Ejemplo n.º 3
0
 public AGame(byte size) : this()
 {
     _size               = size;
     _LatestMove         = null;
     _currentStatus      = new BoardStatus(_size);
     _currentStatus.Turn = WColor.BLACK;
     _numMoves           = 0;
     _currentRecMove     = 0;
     boardHistory.Add(_currentStatus.ToString());
 }
Ejemplo n.º 4
0
 public AGame(string fileName)
 {
     _gameRecord     = SGFParser.GetGameRecord(fileName);
     boardHistory    = new SortedSet <string>();
     _LatestMove     = null;
     _size           = _gameRecord.Size;
     _currentStatus  = new BoardStatus(_size);
     _numMoves       = 0;
     _currentRecMove = 0;
     boardHistory.Add(_currentStatus.ToString());
 }
Ejemplo n.º 5
0
 public AGame(Stream stream)
 {
     using (StreamReader reader = new StreamReader(stream))
     {
         string buffer = reader.ReadToEnd();
         _gameRecord = SGFParser.ParseGameRecord(buffer);
     }
     boardHistory    = new SortedSet <string>();
     _LatestMove     = null;
     _size           = _gameRecord.Size;
     _currentStatus  = new BoardStatus(_size);
     _numMoves       = 0;
     _currentRecMove = 0;
     boardHistory.Add(_currentStatus.ToString());
 }