main.rs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. use clap::{arg, command, value_parser, ArgAction};
  2. use std::path::PathBuf;
  3. // https://docs.rs/clap/latest/clap/_tutorial/chapter_0/index.html
  4. use sudoku::ksudoku::{load_ksudoku, save_ksudoku};
  5. use sudoku::sudoku::*;
  6. fn main() {
  7. let mut s = Sudoku::new();
  8. let args = command!()
  9. .arg(
  10. arg!(-f --file <FILE> "Filename to load")
  11. .required(false)
  12. .value_parser(value_parser!(PathBuf)),
  13. )
  14. .arg(
  15. arg!(
  16. -m --make ... "Make a new sudoku puzzle"
  17. )
  18. .action(ArgAction::SetTrue),
  19. )
  20. .arg(arg!(-b --brute ... "Brute Force solver").action(ArgAction::SetTrue))
  21. .arg(arg!(-d --debug ... "Debug output").action(ArgAction::SetTrue))
  22. .get_matches();
  23. let mut debug: bool = false;
  24. if args.get_flag("debug") {
  25. debug = true;
  26. }
  27. if args.get_flag("make") {
  28. s.make();
  29. let mut p = s.clone();
  30. // Ok, get working on the puzzle.
  31. for _x in 0..81 {
  32. while p.remove() {
  33. print!("-");
  34. }
  35. }
  36. println!("");
  37. p.display();
  38. println!("Solution:");
  39. s.display();
  40. if let Some(filename) = args.get_one::<PathBuf>("file") {
  41. let puz = p.save_to_tld('b', '_');
  42. let sol = s.save_to_tld('b', '_');
  43. let r = save_ksudoku(filename.to_path_buf(), &puz, &sol);
  44. if r.is_ok() {
  45. println!("Saved!");
  46. }
  47. }
  48. return;
  49. }
  50. if let Some(filename) = args.get_one::<PathBuf>("file") {
  51. let puzzle = load_ksudoku(filename.to_path_buf()).unwrap();
  52. // Ksudoku is stored TLD.
  53. s.load_from_tld('b', '_', puzzle.as_str());
  54. s.display();
  55. if args.get_flag("brute") {
  56. println!("Solutions: {}", s.bruteforce_solver());
  57. } else {
  58. if debug {
  59. s.display_possible();
  60. }
  61. while s.solve(debug) {
  62. println!("Try it again...");
  63. if debug {
  64. s.display();
  65. s.display_possible();
  66. }
  67. }
  68. if !s.puzzle_complete() {
  69. println!("Failed to solve by logic alone. Trying bruteforce.");
  70. println!("Bruteforce solutions: {}", s.bruteforce_solver());
  71. }
  72. if !debug {
  73. s.display();
  74. }
  75. }
  76. }
  77. }