]> git.saurik.com Git - cycript.git/commitdiff
Work around missing column_address with left/right.
authorJay Freeman (saurik) <saurik@saurik.com>
Thu, 13 Sep 2012 06:50:42 +0000 (23:50 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Thu, 13 Sep 2012 06:50:42 +0000 (23:50 -0700)
Display.cpp

index 5e45c458a16f91c574ce77954024039304ab8323..1881ccd89e737bbd123ef58739a0a0f3c618c56d 100644 (file)
@@ -94,15 +94,23 @@ CYCursor CYDisplayOutput(int (*put)(int), int width, const char *data, ssize_t o
     return point;
 }
 
-void CYDisplayMove(CYCursor target) {
-    int offset(target.real() - current_.real());
-
+void CYDisplayMove_(char *negative, char *positive, int offset) {
     if (offset < 0)
-        putp(tparm(parm_up_cursor, -offset));
+        putp(tparm(negative, -offset));
     else if (offset > 0)
-        putp(tparm(parm_down_cursor, offset));
+        putp(tparm(positive, offset));
+}
+
+void CYDisplayMove(CYCursor target) {
+    CYCursor offset(target - current_);
+
+    CYDisplayMove_(parm_up_cursor, parm_down_cursor, offset.real());
+
+    if (char *parm = tparm(column_address, target.imag()))
+        putp(parm);
+    else
+        CYDisplayMove_(parm_left_cursor, parm_right_cursor, offset.imag());
 
-    putp(tparm(column_address, target.imag()));
     current_ = target;
 }