main.cc 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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. // Unidimensional array for tiles
  20. int* w;
  21. public:
  22. // Constructor
  23. World(unsigned int l, unsigned int h, double p)
  24. {
  25. this->l = l;
  26. this->h = h;
  27. this->w = new int[l*h]();
  28. // Add walls to the first and last columns
  29. for (unsigned int i = 0; i < h; i++)
  30. {
  31. this->w[i * l] = 1;
  32. this->w[i * l + l - 1] = 1;
  33. }
  34. // Add walls to the first and last lines
  35. for (unsigned int j = 0; j < l; j++)
  36. {
  37. this->w[j] = 1;
  38. this->w[(h - 1) * l + j] = 1;
  39. }
  40. for (unsigned int i = 0; i < h; i++)
  41. {
  42. for (unsigned int j = 0; j < l; j++)
  43. {
  44. // add a wall in this tile with probability p and provided that it is neither
  45. // the starting tile nor the goal tile
  46. if ((double) rand() / RAND_MAX < p && !(i == 1 && j == 1) && !(i == h - 2 && j == l - 2))
  47. {
  48. this->w[i * l + j] = 1;
  49. }
  50. }
  51. }
  52. }
  53. // Display the world
  54. void display()
  55. {
  56. for (unsigned int i = 0; i < h; i++)
  57. {
  58. for (unsigned int j = 0; j < l; j++)
  59. {
  60. switch (this->w[i * l + j])
  61. {
  62. case 0:
  63. cout << " ";
  64. break;
  65. case 1:
  66. cout << "#";
  67. break;
  68. }
  69. }
  70. cout << endl;
  71. }
  72. }
  73. // compute the successors of tile number i in world w
  74. // we return the number n of valid successors
  75. // the actual list is in array r where only the first n
  76. // elements are significant
  77. unsigned int successors(unsigned int i, unsigned int r[4])
  78. {
  79. unsigned int n = 0;
  80. if (i >= 0 && i < this->l * this->h && this->w[i] != 1)
  81. {
  82. // if i is a correct tile number (inside the array and not on a wall)
  83. // look in the four adjacent tiles and keep only those with no wall
  84. const unsigned int moves[] = { i - 1, i + 1, i - l, i + l};
  85. for (unsigned int k = 0; k < 4; k++)
  86. {
  87. if (this->w[moves[k]] != 1)
  88. {
  89. r[n] = moves[k];
  90. n++;
  91. }
  92. }
  93. }
  94. return n;
  95. }
  96. // Depth-first search
  97. // starting from tile number s0, find a path to tile number t
  98. // return true if such a path exists, false otherwise
  99. // if it exists the path is given in variable path (hence the reference &)
  100. bool dfs(unsigned int s0, unsigned int t, list<unsigned int>& path)
  101. {
  102. bool r = false;
  103. // ... Complete here ...
  104. return r;
  105. }
  106. };
  107. int main()
  108. {
  109. // Initialise the random number generator
  110. srand(time(0));
  111. // Create a world
  112. World w(20, 10, 0.2);
  113. // Display it
  114. w.display();
  115. // Print the tile numbers of the successors of the starting tile (1, 1)
  116. unsigned int succs[4];
  117. unsigned int n = w.successors(21, succs);
  118. for (unsigned int k = 0; k < n; k++)
  119. {
  120. cout << succs[k] << " ";
  121. }
  122. cout << endl;
  123. return 0;
  124. }