main.cc 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. // Example of world building, display, and successor computation for the artificial
  2. // intelligence path-finding lab
  3. //
  4. // Author: Didier LIME
  5. // Adapted by : Jovian HERSEMEULE
  6. // Date: 2018-10-03
  7. #include <iostream>
  8. #include <list>
  9. #include <cstdlib>
  10. #include <ctime>
  11. using namespace std;
  12. class World
  13. {
  14. private:
  15. // Number of columns
  16. unsigned int l;
  17. // Number of lines
  18. unsigned int h;
  19. // Size of the array
  20. const unsigned int size;
  21. // Unidimensional array for tiles
  22. int* board;
  23. public:
  24. // Constructor
  25. World(unsigned int l_, unsigned int h_, double p)
  26. :l(l_), h(h_), size(l_ * h_)
  27. {
  28. board = new int[size]();
  29. // Add walls to the first and last columns
  30. for (unsigned int i = 0; i < h; i++)
  31. {
  32. board[i * l] = 1;
  33. board[i * l + l - 1] = 1;
  34. }
  35. // Add walls to the first and last lines
  36. for (unsigned int j = 0; j < l; j++)
  37. {
  38. board[j] = 1;
  39. board[(h - 1) * l + j] = 1;
  40. }
  41. for (unsigned int i = 0; i < h; i++)
  42. {
  43. for (unsigned int j = 0; j < l; j++)
  44. {
  45. // add a wall in this tile with probability p and provided that it is neither
  46. // the starting tile nor the goal tile
  47. if ((double) rand() / RAND_MAX < p && !(i == 1 && j == 1) && !(i == h - 2 && j == l - 2))
  48. {
  49. board[i * l + j] = 1;
  50. }
  51. }
  52. }
  53. }
  54. // Display the world
  55. void display()
  56. {
  57. for (unsigned int i = 0; i < h; i++)
  58. {
  59. for (unsigned int j = 0; j < l; j++)
  60. {
  61. switch (board[i * l + j])
  62. {
  63. case 0:
  64. cout << " ";
  65. break;
  66. case 1:
  67. cout << "#";
  68. break;
  69. }
  70. }
  71. cout << endl;
  72. }
  73. }
  74. // compute the successors of tile number i in world w
  75. // we return the number n of valid successors
  76. // the actual list is in array r where only the first n
  77. // elements are significant
  78. unsigned int successors(unsigned int i, unsigned int r[4])
  79. {
  80. unsigned int n = 0;
  81. if (i >= 0 && i < size && board[i] != 1)
  82. {
  83. // if i is a correct tile number (inside the array and not on a wall)
  84. // look in the four adjacent tiles and keep only those with no wall
  85. const unsigned int moves[] = { i - 1, i + 1, i - l, i + l};
  86. for (unsigned int k = 0; k < 4; k++)
  87. {
  88. if (board[moves[k]] != 1)
  89. {
  90. r[n] = moves[k];
  91. n++;
  92. }
  93. }
  94. }
  95. return n;
  96. }
  97. // Depth-first search
  98. // starting from tile number s0, find a path to tile number t
  99. // return true if such a path exists, false otherwise
  100. // if it exists the path is given in variable path (hence the reference &)
  101. bool dfs(unsigned int s0, unsigned int t, list<unsigned int>& path)
  102. {
  103. bool r = false;
  104. int current = s0;
  105. bool explored[size];
  106. stack<unsigned int> open;
  107. for (unsigned int k(0); k < size; k ++)
  108. explored[k] = false;
  109. explored[s0] = true;
  110. do {
  111. // todo ...
  112. } while (!r && !open.empty());
  113. return r;
  114. }
  115. };
  116. int main()
  117. {
  118. // Initialise the random number generator
  119. srand(time(0));
  120. // Create a world
  121. World w(20, 10, 0.2);
  122. // Display it
  123. w.display();
  124. // Print the tile numbers of the successors of the starting tile (1, 1)
  125. unsigned int succs[4];
  126. unsigned int n = w.successors(21, succs);
  127. for (unsigned int k = 0; k < n; k++)
  128. {
  129. cout << succs[k] << " ";
  130. }
  131. cout << endl;
  132. return 0;
  133. }