Browse Source

Add a function to print world in console

DricomDragon 4 years ago
parent
commit
fc40c1ebbb
1 changed files with 13 additions and 0 deletions
  1. 13 0
      main.cpp

+ 13 - 0
main.cpp

@@ -38,6 +38,17 @@ void drawWorld(float world[HEIGHT][WIDTH][BLOC_TOTAL], SDL_Surface* tileSet[], S
 		}
 }
 
+void printWorld(float world[HEIGHT][WIDTH][BLOC_TOTAL]) {
+	for (int k(0); k < BLOC_TOTAL; k++) {
+		std::cout << k << ":" << std::endl;
+		for (int j(0); j < HEIGHT; j++) {
+			for (int i(0); i < WIDTH; i++)
+				std::cout << world[j][i][k];
+			std::cout << std::endl;
+		}
+	}
+}
+
 int main()
 {
 	/// [1] Start
@@ -162,6 +173,8 @@ int main()
 
 	SDL_FreeSurface(screen);
 
+	printWorld(world);
+
 	std::cout << "No error caught." << std::endl;
 	return 0;
 }