فهرست منبع

Encapsulate cursor movement

DricomDragon 5 سال پیش
والد
کامیت
25e9ba9d0f
1فایلهای تغییر یافته به همراه6 افزوده شده و 2 حذف شده
  1. 6 2
      main.cc

+ 6 - 2
main.cc

@@ -34,6 +34,10 @@ unsigned int identifyTile(unsigned int y, unsigned int x, unsigned int l) {
 	return y * l + x;
 }
 
+unsigned int moveCursorUp(const unsigned int& h) {
+	cout << "\033[" << h << 'A';
+}
+
 
 class World
 {
@@ -322,7 +326,7 @@ class World
 				markOne(tile, DISCOVERED);
 				display();
 				usleep(DEFAULT_ANIMATION_DELAY);
-				cout << "\033[" << h << 'A';
+				moveCursorUp(h);
 			}
 
 			if (exitFound)
@@ -330,7 +334,7 @@ class World
 					markOne(tile, TRACE);
 					display();
 					usleep(DEFAULT_ANIMATION_DELAY);
-					cout << "\033[" << h << 'A';
+					moveCursorUp(h);
 				}
 		}