main.rs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. use serde_derive::{Deserialize, Serialize};
  2. use serde_xml_rs::{from_reader, from_str, to_string};
  3. use std::fs::File;
  4. #[derive(Debug, Serialize, Deserialize, PartialEq)]
  5. struct Graph {
  6. order: i32,
  7. #[serde(rename = "type")]
  8. game_type: String,
  9. #[serde(rename = "specific-type")]
  10. specific_type: String,
  11. }
  12. #[derive(Debug, Serialize, Deserialize, PartialEq)]
  13. struct Puzzle {
  14. graph: Graph,
  15. values: String,
  16. solution: String,
  17. }
  18. #[derive(Debug, Serialize, Deserialize, PartialEq)]
  19. struct Game {
  20. #[serde(rename = "had-help")]
  21. help: i16,
  22. #[serde(rename = "msecs-elapsed")]
  23. elapsed: u32,
  24. puzzle: Puzzle,
  25. }
  26. #[derive(Debug, Serialize, Deserialize, PartialEq)]
  27. struct Ksudoku {
  28. game: Game,
  29. }
  30. const SIZE: u8 = 9;
  31. const MAX_SIZE: u8 = 81;
  32. #[derive(Debug)]
  33. struct Sudoku {
  34. board: [u8; MAX_SIZE as usize],
  35. }
  36. const fn pos(x: u8, y: u8) -> u8 {
  37. x + (y * SIZE as u8)
  38. }
  39. impl Sudoku {
  40. fn new() -> Self {
  41. let s = Sudoku {
  42. board: [0; MAX_SIZE as usize],
  43. };
  44. s
  45. }
  46. fn clear(&mut self) {
  47. for x in 0..MAX_SIZE {
  48. self.board[x as usize] = 0;
  49. }
  50. }
  51. fn load_xsudoku(&mut self, s: &str) {
  52. self.clear();
  53. let mut x: u8 = 0;
  54. let mut y: u8 = 0;
  55. for ch in s.chars() {
  56. if ch >= 'b' {
  57. self.board[pos(x, y) as usize] = ch as u8 - 'a' as u8;
  58. };
  59. y += 1;
  60. if y >= SIZE {
  61. y = 0;
  62. x += 1;
  63. }
  64. }
  65. }
  66. fn display(&self) {
  67. println!("╔═══╦═══╦═══╗");
  68. for y in 0..SIZE {
  69. print!("║");
  70. for x in 0..SIZE {
  71. let item = self.board[pos(x as u8, y as u8) as usize];
  72. if item == 0 {
  73. print!(" ");
  74. } else if (item >= 1) && (item <= 9) {
  75. print!("{}", item);
  76. }
  77. if x % 3 == 2 {
  78. print!("║");
  79. }
  80. }
  81. println!("");
  82. if y % 3 == 2 {
  83. if (y + 1 == SIZE) {
  84. println!("╚═══╩═══╩═══╝");
  85. } else {
  86. println!("╠═══╬═══╬═══╣");
  87. }
  88. }
  89. }
  90. }
  91. }
  92. /*
  93. const InRow: [u8; 81] = [1, 2, 3, 4, 5, 6, 7, 8, 9,
  94. 1, 2, 3, 4, 5, 6, 7, 8, 9,
  95. 1, 2, 3, 4, 5, 6, 7, 8, 9,
  96. 1, 2, 3, 4, 5, 6, 7, 8, 9,
  97. 1, 2, 3, 4, 5, 6, 7, 8, 9,
  98. 1, 2, 3, 4, 5, 6, 7, 8, 9,
  99. 1, 2, 3, 4, 5, 6, 7, 8, 9,
  100. 1, 2, 3, 4, 5, 6, 7, 8, 9,
  101. ];
  102. */
  103. // rows, columns, and cells ? (maybe?)
  104. // With the ability to know what RCC each item belongs?
  105. #[derive(Debug)]
  106. struct OnlyOne {
  107. positions: [u8; SIZE as usize],
  108. }
  109. const CELLS: [OnlyOne; 3] = [
  110. OnlyOne {
  111. positions: [
  112. pos(1, 1),
  113. pos(1, 2),
  114. pos(1, 3),
  115. pos(1, 4),
  116. pos(1, 5),
  117. pos(1, 6),
  118. pos(1, 7),
  119. pos(1, 8),
  120. pos(1, 9),
  121. ],
  122. },
  123. OnlyOne {
  124. positions: [
  125. pos(2, 1),
  126. pos(2, 2),
  127. pos(2, 3),
  128. pos(2, 4),
  129. pos(2, 5),
  130. pos(2, 6),
  131. pos(2, 7),
  132. pos(2, 8),
  133. pos(2, 9),
  134. ],
  135. },
  136. OnlyOne {
  137. positions: [
  138. pos(3, 1),
  139. pos(3, 2),
  140. pos(3, 3),
  141. pos(3, 4),
  142. pos(3, 5),
  143. pos(3, 6),
  144. pos(3, 7),
  145. pos(3, 8),
  146. pos(3, 9),
  147. ],
  148. },
  149. ];
  150. const POS1: OnlyOne = OnlyOne {
  151. positions: [0, 1, 2, 3, 4, 5, 6, 7, 8],
  152. };
  153. fn main() {
  154. let filename = "../puzzle1";
  155. let fh = File::open(filename).unwrap();
  156. let puzzle: Ksudoku = from_reader(fh).unwrap();
  157. println!("Puzzle: {:?}", puzzle);
  158. println!("CELLS: {:?}", CELLS);
  159. let mut s = Sudoku::new();
  160. s.load_xsudoku(&puzzle.game.puzzle.values);
  161. s.display();
  162. }