Research portable Memory game | Исследовать портируемую игру Память
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

main.cpp 1.9KB

3ヶ月前
4ヶ月前
4ヶ月前
3ヶ月前
3ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. #include <iostream>
  2. #include <string>
  3. #include <vector>
  4. #include "ctx_test2.h"
  5. #include "main.h"
  6. #include "memory_Context.h"
  7. int main() {
  8. std::cout
  9. << test_ctx_Controller_executeFunctions_set()
  10. << std::endl
  11. << test_ctx_Controller_processQueue()
  12. << std::endl
  13. << llm_test_isDigit_digit()
  14. << std::endl
  15. << llm_test_isDigit_notDigit()
  16. << std::endl
  17. << llm_test_strToInt()
  18. << std::endl
  19. ;
  20. std::cout
  21. << memory_test_detectMismatchedItems()
  22. << std::endl
  23. << memory_test_detectMismatchedItems_itemTwice()
  24. << std::endl
  25. << memory_test_detectVictory()
  26. << std::endl
  27. << memory_test_generateConstPlayfield()
  28. << std::endl
  29. << memory_test_hideMatchingItems()
  30. << std::endl
  31. << memory_test_selectItem_1x()
  32. << std::endl
  33. << memory_test_selectItem_2x()
  34. << std::endl
  35. << memory_test_selectItem_3x()
  36. << std::endl
  37. ;
  38. std::cout
  39. << cli_test_exit_e()
  40. << std::endl
  41. << cli_test_exit_exit()
  42. << std::endl
  43. << cli_test_exit_victory()
  44. << std::endl
  45. << cli_test_exit_q()
  46. << std::endl
  47. << cli_test_exit_quit()
  48. << std::endl
  49. << cli_test_goOn()
  50. << std::endl
  51. << cli_test_greetUser()
  52. << std::endl
  53. << cli_test_showHelp_h()
  54. << std::endl
  55. << cli_test_showHelp_help()
  56. << std::endl
  57. << cli_test_selectItem()
  58. << std::endl
  59. << cli_test_promptSecondItemSelection()
  60. << std::endl
  61. << cli_test_reportMatchedItems()
  62. << std::endl
  63. << cli_test_reportMismatchedItems()
  64. << std::endl
  65. << cli_test_reportVictory()
  66. << std::endl
  67. ;
  68. /*
  69. auto c = shell_createContext();
  70. c.cCLI = cli_createContext();
  71. c = shell_launch(c);
  72. std::cout << c.output << std::endl;
  73. while (true) {
  74. std::string line;
  75. getline(std::cin, line);
  76. c.input = line;
  77. c = shell_processInput(c);
  78. if (c.exit) {
  79. break;
  80. }
  81. std::cout << c.output << std::endl;
  82. }
  83. */
  84. }