Git Product home page Git Product logo

piezas's Introduction

Build Status Coverage Status

Piezas

Associated Enumerated Types

Piece has four possible values: X,O,Invalid, and Blank

Member Variables

board

board is a 2D vector of Pieces that represents the playing board


Piece turn

turn represents whose turn it is to place a piece (defaults to X)

Public Functions

Piezas()

Constructor sets an empty board (3 rows, 4 columns) and specifies it is X's turn first


void reset();

Resets each board location to the Blank Piece value, with a board of the same size as previously specified

Piece dropPiece(int column)

Places a piece of the current turn on the board, returns what piece is placed, and toggles which Piece's turn it is. dropPiece does NOT allow to place a piece in a location where a column is full. In that case, placePiece returns Piece Blank value Out of bounds coordinates return the Piece Invalid value. Trying to drop a piece where it cannot be placed loses the player's turn


Piece pieceAt(int row, int column)

Returns what piece is at the provided coordinates, or Blank if there are no pieces there, or Invalid if the coordinates are out of bounds


Piece gameState()

Returns which Piece has won, if there is a winner, Invalid if the game is not over, or Blank if the board is filled and no one has won ("tie"). For a game to be over, all locations on the board must be filled with X's and O's (i.e. no remaining Blank spaces). The winner is which player has the most adjacent pieces in a single line. Lines can go either vertically or horizontally. If both X's and O's have the same max number of pieces in a line, it is a tie.

piezas's People

Contributors

bolson10 avatar kbuffardi avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.