|
@@ -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);
|
|
|
}
|
|
|
}
|
|
|
|