Browse Source

Show discovery rate

DricomDragon 5 years ago
parent
commit
c487570e17
1 changed files with 4 additions and 3 deletions
  1. 4 3
      main.cc

+ 4 - 3
main.cc

@@ -56,7 +56,7 @@ class World
 	public:
 		// Constructor
 		World(unsigned int l_, unsigned int h_, double p)
-			:l(l_), h(h_), size(l_ * h_), tileQuantity(size)
+			:l(l_), h(h_), size(l_ * h_), tileQuantity(l_ * h_)
 		{
 			board = new int[size]();
 
@@ -93,7 +93,7 @@ class World
 
 		// Copy constructor
 		World(const World& other)
-			:l(other.l), h(other.h), size(other.size)
+			:l(other.l), h(other.h), size(other.size), tileQuantity(other.tileQuantity)
 		{
 			board = new int[size]();
 
@@ -353,7 +353,8 @@ class World
 			else
 				cout << "FAILURE ..." << endl;
 
-			cout << discovered.size() << " tiles discovered;" << endl;
+			const unsigned int discoveryRate(100 * discovered.size() / tileQuantity);
+			cout << discovered.size() << " tiles discovered (" << discoveryRate << "%);" << endl;
 			cout << path.size() << " path length." << endl;
 		}