-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsudoku.c
121 lines (99 loc) · 3.2 KB
/
sudoku.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/******************************************************************************
* Program: sudoku.c
*
* Purpose: To implement a sudoku application, with assistant functions to help
* user solve sudoku puzzles
*
* Developer: Philip Ormand
*
* Date: 5/13/16
*
****************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "sudoku_board.h"
#include "sudoku_commands.h"
#include "sudoku_test_digits.h"
#include "sudoku_utility.h"
/*
* ======= SUDOKU SEMANTICS ======= (AKA, my chosen definitions for terms in variable names, etc.)
* 'board': the sudoku puzzle space. The actual matrix that makes up a given puzzle or solution.
* 'square': individual space for a digit on a sudoku board. A sudoku board is 9 squares by 9 squares.
* 'row' / 'column': self-explanitory. A horizontal or vertical row of squares on the sudoku board.
* 'block' : the 9 3x3 blocks of squares that must each contain the digits 1-9 on the sudoku board.
*
* Which block is which?
* +---+---+---+
* | 1 | 2 | 3 |
* +---+---+---+
* | 4 | 5 | 6 |
* +---+---+---+
* | 7 | 8 | 9 |
* +---+---+---+
*/
int main(int argc, char* argv[])
{
bool running = true;
struct SudokuBoard board = { 0 };
struct SudokuCommandInput commandInput = { 0 };
const struct SudokuCommand *command = NULL;
SudokuCommandResult status = SUDOKU_COMMAND_SUCCESS;
initializeSudokuBoard(&board);
initializeString(&commandInput.string);
puts("========== Sudoku Game ==========");
puts(showAllCommandsPrompt);
putchar('\n');
// if one argument was provided, go ahead and load sudoku board from textfile
if (argc > 1)
{
// if filename provided by argument cannot be found/read, loadSudokuBoard will
// print an error statement, and execution will continue with a blank board
loadSudokuBoard(argv[1], &board);
}
printSudokuBoard(&board);
while (running)
{
// put extra space between previous output and command prompt
putchar('\n');
command = getCommand(&commandInput);
status = command->commandFunction(&board, &commandInput);
if (status == SUDOKU_COMMAND_USAGE)
{
printf("Usage: '%s'\n", command->usagePrompt);
}
else if (status == SUDOKU_COMMAND_EXIT)
{
running = false;
}
}
freeHistory(&board.history);
return 0;
}
/*
int main(int argc, char **argv)
{
char *fileName = "sudoku_text_file.txt";
FILE *sudokuTextFile;
struct SudokuBoard board;
if (argc == 2)
{
// if an argument was provided
fileName = argv[1];
}
initializeSudokuBoard(&board);
if ( (sudokuTextFile = fopen(fileName, "r")) == NULL )
{
terminate("ERROR: couldn't open sudoku file");
}
if ( !readSudokuBoard(sudokuTextFile, &board) )
{
exit(EXIT_FAILURE); // error message printed by readSudokuBoard
}
printSudokuBoard(&board);
putchar('\n');
puts("Evaluating solution:");
evaluateDigitsPresent(&board);
exit(EXIT_SUCCESS);
}
*/