联系方式

  • QQ:99515681
  • 邮箱:99515681@qq.com
  • 工作时间:8:00-23:00
  • 微信:codinghelp

您当前位置:首页 >> Java编程Java编程

日期:2020-09-04 11:06

Example

Example Design Document for CSSE2310 Assignment X - tictactoe++

Data structures

Due to the fixed size of the game board (3x3), I am using a 3x3 array of integers to store the

game state. To avoid using global variables, I have encapsulated this into a type, supported by

an enum to capture player identities. PLAYER NONE indicates an empty space.

enum player {PLAYER_NONE = 0, PLAYER_X = 1, PLAYER_O = 2);

typedef struct gameState {

enum player board[3][3]; // Contents of board

enum player who; // Whose turn is it?

} gameState;

Game logic

The game logic is pretty simple, my main loop just keeps track of whose turn it is, reading the

next move for that player. Handling of game saving and loading is done in the getInput()

function. After each valid move, the function checkWinner() is called to see if anybody has

won the game. checkWinner() it a wrapper function around several other functions that are

used to check for rows, columns or diagonals filled by the same player marker. I could have

probably done this more efficiently.

File handling

My program was required to read several different kinds of files, although there were some

things in common. Files could have comment lines starting with ’#’ so I wrote a function

called readLineWithComments() to handle this.

Using this as a building block, I wrote functions to handle each of the possible file types I

had to read.

Display

Encapsulating the game state into a struct made it really easy for me to write a function

displayBoard() which I could update as required. In particular, the requirement to print row

and column headers, and separator characters between player markers was something I could

just implement in displayBoard() without changing the underlying gameState data type. I

really feel like I learned something about data type abstraction in this assignment.

Error handling

The specification defines a large number of possible error conditions, some of which might

possibly occur in the same run. A clarification was posted to the course Piazza which said that

only one error cnodition would be tested at a time, which means that the relative priority of

error states and the order of checking is not critical.

My approach to error handling is by printing a hard-coded string and calling exit() with

a hard-coded error code, as shown below:

if (something bad happened) {

printf("SOMETHING BAD HAPPENED\n");

exit(15);

}

Given that there are about 10 possible error codes, this means I have exit() calls scattered

all around my program. On reflection, this approach made it quite painful for me when the

spec changed and updated some error messages and codes. I might think about doing this

differently next time. It also made it difficult to debug my program.

1


版权所有:留学生编程辅导网 2020 All Rights Reserved 联系方式:QQ:99515681 微信:codinghelp 电子信箱:99515681@qq.com
免责声明:本站部分内容从网络整理而来,只供参考!如有版权问题可联系本站删除。 站长地图

python代写
微信客服:codinghelp