aboutsummaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2009-01-26 19:14:44 +0000
committerSimon Tatham <anakin@pobox.com>2009-01-26 19:14:44 +0000
commitcc0f957d8206833b09e44e639da078fe0d9278d5 (patch)
tree53ab2933f30ee428dd8f5c9716b6e0a575f004da /misc.c
parentd2b0d8cf3fe5dd6c379300e791a24493fac2bb76 (diff)
downloadpuzzles-cc0f957d8206833b09e44e639da078fe0d9278d5.zip
puzzles-cc0f957d8206833b09e44e639da078fe0d9278d5.tar.gz
puzzles-cc0f957d8206833b09e44e639da078fe0d9278d5.tar.bz2
puzzles-cc0f957d8206833b09e44e639da078fe0d9278d5.tar.xz
Patch from James H to add keyboard control in Sixteen and Netslide
(and also belatedly document the keyboard support in Unequal). [originally from svn r8432]
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/misc.c b/misc.c
index 81aa011..11c842c 100644
--- a/misc.c
+++ b/misc.c
@@ -280,6 +280,35 @@ int c2pos(int w, int h, int cx, int cy)
return -1; /* not reached */
}
+int c2diff(int w, int h, int cx, int cy, int button)
+{
+ int diff = 0;
+
+ assert(IS_CURSOR_MOVE(button));
+
+ /* Obvious moves around edge. */
+ if (cy == -1)
+ diff = (button == CURSOR_RIGHT) ? +1 : (button == CURSOR_LEFT) ? -1 : diff;
+ if (cy == h)
+ diff = (button == CURSOR_RIGHT) ? -1 : (button == CURSOR_LEFT) ? +1 : diff;
+ if (cx == -1)
+ diff = (button == CURSOR_UP) ? +1 : (button == CURSOR_DOWN) ? -1 : diff;
+ if (cx == w)
+ diff = (button == CURSOR_UP) ? -1 : (button == CURSOR_DOWN) ? +1 : diff;
+
+ if (button == CURSOR_LEFT && cx == w && (cy == 0 || cy == h-1))
+ diff = (cy == 0) ? -1 : +1;
+ if (button == CURSOR_RIGHT && cx == -1 && (cy == 0 || cy == h-1))
+ diff = (cy == 0) ? +1 : -1;
+ if (button == CURSOR_DOWN && cy == -1 && (cx == 0 || cx == w-1))
+ diff = (cx == 0) ? -1 : +1;
+ if (button == CURSOR_UP && cy == h && (cx == 0 || cx == w-1))
+ diff = (cx == 0) ? +1 : -1;
+
+ debug(("cx,cy = %d,%d; w%d h%d, diff = %d", cx, cy, w, h, diff));
+ return diff;
+}
+
void pos2c(int w, int h, int pos, int *cx, int *cy)
{
int max = w+h+w+h;