2 * Copyright (c) 1991-1997 Søren Schmidt
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer
10 * in this position and unchanged.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 * $FreeBSD: src/lib/libvgl/mouse.c,v 1.3 1999/11/08 11:37:39 yokota Exp $
29 * $DragonFly: src/lib/libvgl/mouse.c,v 1.3 2008/09/30 16:57:06 swildner Exp $
33 #include <sys/types.h>
34 #include <sys/ioctl.h>
35 #include <sys/signal.h>
36 #include <machine/console.h>
40 static byte StdAndMask
[MOUSE_IMG_SIZE
*MOUSE_IMG_SIZE
] = {
41 X
,X
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
42 X
,X
,X
,0,0,0,0,0,0,0,0,0,0,0,0,0,
43 X
,X
,X
,X
,0,0,0,0,0,0,0,0,0,0,0,0,
44 X
,X
,X
,X
,X
,0,0,0,0,0,0,0,0,0,0,0,
45 X
,X
,X
,X
,X
,X
,0,0,0,0,0,0,0,0,0,0,
46 X
,X
,X
,X
,X
,X
,X
,0,0,0,0,0,0,0,0,0,
47 X
,X
,X
,X
,X
,X
,X
,X
,0,0,0,0,0,0,0,0,
48 X
,X
,X
,X
,X
,X
,X
,X
,X
,0,0,0,0,0,0,0,
49 X
,X
,X
,X
,X
,X
,X
,0,0,0,0,0,0,0,0,0,
50 0,0,0,X
,X
,X
,X
,0,0,0,0,0,0,0,0,0,
51 0,0,0,X
,X
,X
,X
,X
,0,0,0,0,0,0,0,0,
52 0,0,0,0,X
,X
,X
,X
,0,0,0,0,0,0,0,0,
53 0,0,0,0,X
,X
,X
,X
,0,0,0,0,0,0,0,0,
54 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
55 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
56 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
58 static byte StdOrMask
[MOUSE_IMG_SIZE
*MOUSE_IMG_SIZE
] = {
59 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
60 0,X
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
61 0,X
,X
,0,0,0,0,0,0,0,0,0,0,0,0,0,
62 0,X
,X
,X
,0,0,0,0,0,0,0,0,0,0,0,0,
63 0,X
,X
,X
,X
,0,0,0,0,0,0,0,0,0,0,0,
64 0,X
,X
,X
,X
,X
,0,0,0,0,0,0,0,0,0,0,
65 0,X
,X
,X
,X
,X
,X
,0,0,0,0,0,0,0,0,0,
66 0,X
,X
,0,X
,0,0,0,0,0,0,0,0,0,0,0,
67 0,0,0,0,X
,X
,0,0,0,0,0,0,0,0,0,0,
68 0,0,0,0,X
,X
,0,0,0,0,0,0,0,0,0,0,
69 0,0,0,0,0,X
,X
,0,0,0,0,0,0,0,0,0,
70 0,0,0,0,0,X
,X
,0,0,0,0,0,0,0,0,0,
71 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
72 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
73 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
74 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
77 static VGLBitmap VGLMouseStdAndMask
=
78 VGLBITMAP_INITIALIZER(MEMBUF
, MOUSE_IMG_SIZE
, MOUSE_IMG_SIZE
, StdAndMask
);
79 static VGLBitmap VGLMouseStdOrMask
=
80 VGLBITMAP_INITIALIZER(MEMBUF
, MOUSE_IMG_SIZE
, MOUSE_IMG_SIZE
, StdOrMask
);
81 static VGLBitmap
*VGLMouseAndMask
, *VGLMouseOrMask
;
82 static byte map
[MOUSE_IMG_SIZE
*MOUSE_IMG_SIZE
];
83 static VGLBitmap VGLMouseSave
=
84 VGLBITMAP_INITIALIZER(MEMBUF
, MOUSE_IMG_SIZE
, MOUSE_IMG_SIZE
, map
);
85 static int VGLMouseVisible
= 0;
86 static int VGLMouseFrozen
= 0;
87 static int VGLMouseShown
= 0;
88 static int VGLMouseXpos
= 0;
89 static int VGLMouseYpos
= 0;
90 static int VGLMouseButtons
= 0;
93 VGLMousePointerShow(void)
95 byte buf
[MOUSE_IMG_SIZE
*MOUSE_IMG_SIZE
];
97 VGLBITMAP_INITIALIZER(MEMBUF
, MOUSE_IMG_SIZE
, MOUSE_IMG_SIZE
, buf
);
98 byte crtcidx
, crtcval
, gdcidx
, gdcval
;
101 if (!VGLMouseVisible
) {
103 crtcidx
= inb(0x3c4);
104 crtcval
= inb(0x3c5);
107 __VGLBitmapCopy(VGLDisplay
, VGLMouseXpos
, VGLMouseYpos
,
108 &VGLMouseSave
, 0, 0, MOUSE_IMG_SIZE
, MOUSE_IMG_SIZE
);
109 bcopy(VGLMouseSave
.Bitmap
, buffer
.Bitmap
, MOUSE_IMG_SIZE
*MOUSE_IMG_SIZE
);
110 for (pos
= 0; pos
< MOUSE_IMG_SIZE
*MOUSE_IMG_SIZE
; pos
++)
111 buffer
.Bitmap
[pos
]=(buffer
.Bitmap
[pos
]&~(VGLMouseAndMask
->Bitmap
[pos
])) |
112 VGLMouseOrMask
->Bitmap
[pos
];
113 __VGLBitmapCopy(&buffer
, 0, 0, VGLDisplay
,
114 VGLMouseXpos
, VGLMouseYpos
, MOUSE_IMG_SIZE
, MOUSE_IMG_SIZE
);
115 outb(0x3c4, crtcidx
);
116 outb(0x3c5, crtcval
);
123 VGLMousePointerHide(void)
125 byte crtcidx
, crtcval
, gdcidx
, gdcval
;
127 if (VGLMouseVisible
) {
129 crtcidx
= inb(0x3c4);
130 crtcval
= inb(0x3c5);
133 __VGLBitmapCopy(&VGLMouseSave
, 0, 0, VGLDisplay
,
134 VGLMouseXpos
, VGLMouseYpos
, MOUSE_IMG_SIZE
, MOUSE_IMG_SIZE
);
135 outb(0x3c4, crtcidx
);
136 outb(0x3c5, crtcval
);
143 VGLMouseMode(int mode
)
145 if (mode
== VGL_MOUSESHOW
) {
146 if (VGLMouseShown
== VGL_MOUSEHIDE
) {
147 VGLMousePointerShow();
148 VGLMouseShown
= VGL_MOUSESHOW
;
152 if (VGLMouseShown
== VGL_MOUSESHOW
) {
153 VGLMousePointerHide();
154 VGLMouseShown
= VGL_MOUSEHIDE
;
160 VGLMouseAction(int dummy
)
162 struct mouse_info mouseinfo
;
164 if (VGLMouseFrozen
) {
168 mouseinfo
.operation
= MOUSE_GETINFO
;
169 ioctl(0, CONS_MOUSECTL
, &mouseinfo
);
170 if (VGLMouseShown
== VGL_MOUSESHOW
)
171 VGLMousePointerHide();
172 VGLMouseXpos
= mouseinfo
.u
.data
.x
;
173 VGLMouseYpos
= mouseinfo
.u
.data
.y
;
174 VGLMouseButtons
= mouseinfo
.u
.data
.buttons
;
175 if (VGLMouseShown
== VGL_MOUSESHOW
)
176 VGLMousePointerShow();
180 VGLMouseSetImage(VGLBitmap
*AndMask
, VGLBitmap
*OrMask
)
182 if (VGLMouseShown
== VGL_MOUSESHOW
)
183 VGLMousePointerHide();
184 VGLMouseAndMask
= AndMask
;
185 VGLMouseOrMask
= OrMask
;
186 if (VGLMouseShown
== VGL_MOUSESHOW
)
187 VGLMousePointerShow();
191 VGLMouseSetStdImage(void)
193 if (VGLMouseShown
== VGL_MOUSESHOW
)
194 VGLMousePointerHide();
195 VGLMouseAndMask
= &VGLMouseStdAndMask
;
196 VGLMouseOrMask
= &VGLMouseStdOrMask
;
197 if (VGLMouseShown
== VGL_MOUSESHOW
)
198 VGLMousePointerShow();
202 VGLMouseInit(int mode
)
204 struct mouse_info mouseinfo
;
207 VGLMouseSetStdImage();
208 mouseinfo
.operation
= MOUSE_MODE
;
209 mouseinfo
.u
.mode
.signal
= SIGUSR2
;
210 if ((error
= ioctl(0, CONS_MOUSECTL
, &mouseinfo
)))
212 signal(SIGUSR2
, VGLMouseAction
);
213 mouseinfo
.operation
= MOUSE_GETINFO
;
214 ioctl(0, CONS_MOUSECTL
, &mouseinfo
);
215 VGLMouseXpos
= mouseinfo
.u
.data
.x
;
216 VGLMouseYpos
= mouseinfo
.u
.data
.y
;
217 VGLMouseButtons
= mouseinfo
.u
.data
.buttons
;
223 VGLMouseStatus(int *x
, int *y
, char *buttons
)
225 signal(SIGUSR2
, SIG_IGN
);
228 *buttons
= VGLMouseButtons
;
229 signal(SIGUSR2
, VGLMouseAction
);
230 return VGLMouseShown
;
234 VGLMouseFreeze(int x
, int y
, int width
, int hight
, byte color
)
236 if (!VGLMouseFrozen
) {
238 if (width
> 1 || hight
> 1) { /* bitmap */
239 if (VGLMouseShown
== 1) {
242 if (x
> VGLMouseXpos
)
243 overlap
= (VGLMouseXpos
+ MOUSE_IMG_SIZE
) - x
;
245 overlap
= (x
+ width
) - VGLMouseXpos
;
247 if (y
> VGLMouseYpos
)
248 overlap
= (VGLMouseYpos
+ MOUSE_IMG_SIZE
) - y
;
250 overlap
= (y
+ hight
) - VGLMouseYpos
;
252 VGLMousePointerHide();
258 x
>= VGLMouseXpos
&& x
< VGLMouseXpos
+ MOUSE_IMG_SIZE
&&
259 y
>= VGLMouseYpos
&& y
< VGLMouseYpos
+ MOUSE_IMG_SIZE
) {
260 VGLMouseSave
.Bitmap
[(y
-VGLMouseYpos
)*MOUSE_IMG_SIZE
+(x
-VGLMouseXpos
)] =
262 if (VGLMouseAndMask
->Bitmap
263 [(y
-VGLMouseYpos
)*MOUSE_IMG_SIZE
+(x
-VGLMouseXpos
)]) {
273 VGLMouseUnFreeze(void)
275 if (VGLMouseFrozen
> 1) {
281 if (VGLMouseShown
== VGL_MOUSESHOW
&& !VGLMouseVisible
)
282 VGLMousePointerShow();