aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2022-12-11 16:26:11 +0100
committerJavier <dev.git@javispedro.com>2022-12-11 16:26:11 +0100
commit7e3679f7c06cee1bd5ca76c6efdebc8ce367f587 (patch)
tree2f76a37476b235cc9d2d804ca7d345d6f851b060
parent5fc2534453bfadb0ec0075d38980a0423137ab26 (diff)
downloadvbados-7e3679f7c06cee1bd5ca76c6efdebc8ce367f587.tar.gz
vbados-7e3679f7c06cee1bd5ca76c6efdebc8ce367f587.zip
do not allow the show cursor counter to go above 0
-rw-r--r--int33.h3
-rw-r--r--mousetsr.c26
-rw-r--r--mousetsr.h16
3 files changed, 24 insertions, 21 deletions
diff --git a/int33.h b/int33.h
index 10816f0..ebe9476 100644
--- a/int33.h
+++ b/int33.h
@@ -28,7 +28,8 @@ enum INT33_API {
* On return, ax = 0xFFFF, bx = number of buttons. */
INT33_RESET_MOUSE = 0,
- /** Increment the cursor visible counter. The cursor is shown when the counter is >= 0. */
+ /** Increment the cursor visible counter. The cursor is shown when the counter is >= 0.
+ * Note: the internal cursor counter is always <= 0. */
INT33_SHOW_CURSOR = 1,
/** Decrement the cursor visible counter. The cursor is shown when the counter is >= 0. */
INT33_HIDE_CURSOR = 2,
diff --git a/mousetsr.c b/mousetsr.c
index 8fed8cb..5b68ca4 100644
--- a/mousetsr.c
+++ b/mousetsr.c
@@ -311,7 +311,7 @@ static void show_graphic_cursor(void)
/** Refreshes cursor position and visibility. */
static void refresh_cursor(void)
{
- bool should_show = data.visible_count >= 0;
+ bool should_show = data.hidden_count == 0;
bool pos_changed, needs_refresh;
#if USE_WIN386
@@ -1011,7 +1011,7 @@ static void reset_mouse_settings()
data.max.x = data.screen_max.x;
data.min.y = 0;
data.max.y = data.screen_max.y;
- data.visible_count = -1;
+ data.hidden_count = 1;
data.cursor_text_type = 0;
data.cursor_text_and_mask = 0xFFFFU;
data.cursor_text_xor_mask = 0x7700U;
@@ -1104,21 +1104,21 @@ static void int33_handler(union INTPACK r)
r.w.bx = NUM_BUTTONS;
break;
case INT33_SHOW_CURSOR:
-#if TRACE_EVENTS
- dputs("Mouse show cursor");
+ if (data.hidden_count > 0) data.hidden_count--;
+#if TRACE_CALLS
+ dprintf("Mouse show cursor (hidden count=%u)\n", data.hidden_count);
#endif
- data.visible_count++;
refresh_cursor();
break;
case INT33_HIDE_CURSOR:
-#if TRACE_EVENTS
- dputs("Mouse hide cursor");
+ if (data.hidden_count < UINT8_MAX) data.hidden_count++;
+#if TRACE_CALLS
+ dprintf("Mouse hide cursor (hidden count=%u)\n", data.hidden_count);
#endif
- data.visible_count--;
refresh_cursor();
break;
case INT33_GET_MOUSE_POSITION:
-#if TRACE_EVENTS
+#if TRACE_CALLS
dputs("Mouse get position");
#endif
r.w.cx = snap_to_grid(data.pos.x, data.screen_granularity.x);
@@ -1132,7 +1132,7 @@ static void int33_handler(union INTPACK r)
#endif
break;
case INT33_SET_MOUSE_POSITION:
-#if TRACE_EVENTS
+#if TRACE_CALLS
dputs("Mouse set position");
#endif
data.pos.x = r.w.cx;
@@ -1146,7 +1146,7 @@ static void int33_handler(union INTPACK r)
bound_position_to_window();
break;
case INT33_GET_BUTTON_PRESSED_COUNTER:
-#if TRACE_EVENTS
+#if TRACE_CALLS
dputs("Mouse get button pressed counter");
#endif
r.w.ax = data.buttons;
@@ -1165,7 +1165,7 @@ static void int33_handler(union INTPACK r)
&data.button[MIN(r.w.bx, NUM_BUTTONS - 1)].pressed);
break;
case INT33_GET_BUTTON_RELEASED_COUNTER:
-#if TRACE_EVENTS
+#if TRACE_CALLS
dputs("Mouse get button released counter");
#endif
r.w.ax = data.buttons;
@@ -1215,7 +1215,7 @@ static void int33_handler(union INTPACK r)
refresh_cursor();
break;
case INT33_GET_MOUSE_MOTION:
-#if TRACE_EVENTS
+#if TRACE_CALLS
dputs("Mouse get motion");
#endif
r.w.cx = data.delta.x;
diff --git a/mousetsr.h b/mousetsr.h
index 181e949..c37c751 100644
--- a/mousetsr.h
+++ b/mousetsr.h
@@ -28,18 +28,20 @@
// User customizable defines
-/** Enable the VirtualBox integration */
+/** Enable VirtualBox integration. */
#define USE_VIRTUALBOX 1
-/** Enable the VMware integration */
+/** Enable VMware integration. */
#define USE_VMWARE 1
-/** Enable the Windows 386/protected mode integration */
+/** Enable Windows 386/protected mode integration .*/
#define USE_WIN386 1
/** Enable the wheel. */
#define USE_WHEEL 1
-/** Trace events verbosily */
+/** Trace mouse events verbosily. */
#define TRACE_EVENTS 0
+/** Trace (noisy) API calls. */
+#define TRACE_CALLS 1
-/** The report MS MOUSE compatible version to programs who ask for it. */
+/** The reported MS MOUSE compatible version to programs who ask for it. */
#define REPORTED_VERSION_MAJOR 6
#define REPORTED_VERSION_MINOR 0x30
@@ -130,8 +132,8 @@ typedef struct tsrdata {
struct point min;
/** Current window max coordinates. */
struct point max;
- /** Current cursor visible counter. If >= 0, cursor should be shown. */
- int16_t visible_count;
+ /** If N > 0, cursor has been hidden N times, and will require N show calls to unhide. */
+ uint8_t hidden_count;
/** For text cursor, whether this is a software or hardware cursor. */
uint8_t cursor_text_type;
/** Masks for the text cursor. */