Subversion Repositories Kolibri OS

Rev

Rev 9692 | Rev 9910 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2288 clevermous 1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;                                                              ;;
8866 rgimad 3
;; Copyright (C) KolibriOS team 2004-2021. All rights reserved. ;;
2288 clevermous 4
;; Copyright (C) MenuetOS 2000-2004 Ville Mikael Turjanmaa      ;;
5
;; Distributed under terms of the GNU General Public License    ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7
 
8
$Revision: 9709 $
9
 
10
WINDOW_MOVE_AND_RESIZE_FLAGS = \
11
  mouse.WINDOW_RESIZE_N_FLAG + \
12
  mouse.WINDOW_RESIZE_W_FLAG + \
13
  mouse.WINDOW_RESIZE_S_FLAG + \
14
  mouse.WINDOW_RESIZE_E_FLAG + \
15
  mouse.WINDOW_MOVE_FLAG
16
 
17
uglobal
18
align 4
19
  event_start   dd ?
20
  event_end     dd ?
21
  event_uid     dd 0
22
endg
23
EV_SPACE   = 512
8053 rgimad 24
FreeEvents = event_start-EVENT.fd    ; "virtual" event, only following field used:
25
                                     ;  FreeEvents.fd=event_start and FreeEvents.bk=event_end
2513 mario79 26
;-----------------------------------------------------------------------------
2288 clevermous 27
align 4
28
init_events:                                       ;; used from kernel.asm
2384 hidnplayr 29
        stdcall kernel_alloc, EV_SPACE*sizeof.EVENT
2288 clevermous 30
        or      eax, eax
31
        jz      .fail
8053 rgimad 32
      ; eax - current event, ebx - previous event below
2288 clevermous 33
        mov     ecx, EV_SPACE        ; current - in allocated space
8053 rgimad 34
        mov     ebx, FreeEvents      ; previous - list beginning
35
        push    ebx                  ; it will be the end later
2513 mario79 36
;--------------------------------------
37
align 4
38
@@:
2288 clevermous 39
        mov     [ebx+EVENT.fd], eax
40
        mov     [eax+EVENT.bk], ebx
41
        mov     ebx, eax             ; previos <- current
2384 hidnplayr 42
        add     eax, sizeof.EVENT    ; new current
2288 clevermous 43
        loop    @b
8053 rgimad 44
        pop     eax                  ; here it became the end
2288 clevermous 45
        mov     [ebx+EVENT.fd], eax
46
        mov     [eax+EVENT.bk], ebx
2513 mario79 47
;--------------------------------------
48
align 4
2288 clevermous 49
.fail:
50
        ret
2513 mario79 51
;-----------------------------------------------------------------------------
7136 dunkaist 52
EVENT_WATCHED    = 0x10000000 ; bit 28
53
EVENT_SIGNALED   = 0x20000000 ; bit 29
54
MANUAL_RESET     = 0x40000000 ; bit 30
55
MANUAL_DESTROY   = 0x80000000 ; bit 31
2513 mario79 56
;-----------------------------------------------------------------------------
2288 clevermous 57
align 4
58
create_event:                                      ;; EXPORT use
59
;info:
8053 rgimad 60
;   Move EVENT from the FreeEvents list to the ObjList list of the current slot;
61
;   EVENT.state is set from ecx, EVENT.code indirectly from esi (if esi <> 0)
2288 clevermous 62
;param:
63
;   esi - event data
64
;   ecx - flags
65
;retval:
66
;   eax - event (=0 => fail)
67
;   edx - uid
68
;scratched: ebx,ecx,esi,edi
69
        mov     ebx, [current_slot]
70
        add     ebx, APP_OBJ_OFFSET
9692 Doczom 71
        mov     edx, [current_slot]
72
        mov     edx, [edx+APPDATA.tid]
2288 clevermous 73
        pushfd
74
        cli
2513 mario79 75
;--------------------------------------
76
align 4
2288 clevermous 77
set_event:                                         ;; INTERNAL use !!! don't use for Call
78
;info:
8053 rgimad 79
;   We take a new event from FreeEvents, fill its fields from ecx, edx, esi
80
;   and add it to the list, which specified in ebx.
81
;   Return event (to eax), and it's uid (to edx)
2288 clevermous 82
;param:
83
;   ebx - start-chain "virtual" event for entry new event Right of him
84
;   ecx - flags      (copied to EVENT.state)
85
;   edx - pid        (copied to EVENT.pid)
86
;   esi - event data (copied to EVENT.code indirect, =0 => skip)
87
;retval:
88
;   eax - event (=0 => fail)
89
;   edx - uid
90
;scratched: ebx,ecx,esi,edi
91
        mov     eax, FreeEvents
92
        cmp     eax, [eax+EVENT.fd]
93
        jne     @f  ; not empty ???
94
        pushad
95
        call    init_events
96
        popad
97
        jz      RemoveEventTo.break ; POPF+RET
2513 mario79 98
;--------------------------------------
99
align 4
100
@@:
2288 clevermous 101
        mov     eax, [eax+EVENT.fd]
102
        mov     [eax+EVENT.magic], 'EVNT'
103
        mov     [eax+EVENT.destroy], destroy_event.internal
104
        mov     [eax+EVENT.state], ecx
105
        mov     [eax+EVENT.pid], edx
106
        inc     [event_uid]
5788 serge 107
        mov     edx, [event_uid]
108
        mov     [eax+EVENT.id], edx
2288 clevermous 109
        or      esi, esi
110
        jz      RemoveEventTo
111
        lea     edi, [eax+EVENT.code]
2384 hidnplayr 112
        mov     ecx, (sizeof.EVENT -EVENT.code)/4
2288 clevermous 113
        cld
114
        rep movsd
2513 mario79 115
;--------------------------------------
116
align 4
2288 clevermous 117
RemoveEventTo:                                     ;; INTERNAL use !!! don't use for Call
118
;param:
8053 rgimad 119
;   eax - pointer to event, WHICH we will insert
120
;   ebx - pointer to event, AFTER which we will insert
2288 clevermous 121
;scratched: ebx,ecx
122
        mov     ecx, eax             ; ecx=eax=Self,      ebx=NewLeft
123
        xchg    ecx, [ebx+EVENT.fd]  ; NewLeft.fd=Self,   ecx=NewRight
8053 rgimad 124
        cmp     eax, ecx             ; stop, I think...
125
        je      .break               ; - am I not a fool?
2288 clevermous 126
        mov     [ecx+EVENT.bk], eax  ; NewRight.bk=Self
127
        xchg    ebx, [eax+EVENT.bk]  ; Self.bk=NewLeft,   ebx=OldLeft
128
        xchg    ecx, [eax+EVENT.fd]  ; Self.fd=NewRight,  ecx=OldRight
129
        mov     [ebx+EVENT.fd], ecx  ; OldLeft.fd=OldRight
130
        mov     [ecx+EVENT.bk], ebx  ; OldRight.bk=OldLeft
2513 mario79 131
;--------------------------------------
132
align 4
2288 clevermous 133
.break:
134
        popfd
135
        ret
2513 mario79 136
;-----------------------------------------------------------------------------
2288 clevermous 137
align 4
138
NotDummyTest:                                      ;; INTERNAL use (not returned for fail !!!)
139
        pop     edi
140
        call    DummyTest ; not returned for fail !!!
141
        mov     ebx, eax
142
        mov     eax, [ebx+EVENT.pid]
143
        push    edi
2513 mario79 144
;--------------------------------------
145
align 4
8053 rgimad 146
.small: ; somehow ugly...
2288 clevermous 147
        pop     edi
148
        pushfd
149
        cli
150
        call    pid_to_slot ; saved all registers (eax - retval)
151
        shl     eax, 8
152
        jz      RemoveEventTo.break ; POPF+RET
8053 rgimad 153
        jmp     edi ; normal return
2513 mario79 154
;-----------------------------------------------------------------------------
2288 clevermous 155
align 4
156
raise_event:                                       ;; EXPORT use
157
;info:
8053 rgimad 158
;   Setting up EVENT.code data
159
;   If is has flag EVENT_SIGNALED activated - nothing else
160
;   Otherwise: activate this flag, except when the EVENT_WATCHED flag is present in edx
161
;   In this case EVENT_SIGNALED will activated only if EVENT_WATCHED presents in the event itself
2288 clevermous 162
;param:
163
;   eax - event
164
;   ebx - uid (for Dummy testing)
165
;   edx - flags
166
;   esi - event data (=0 => skip)
167
;scratched: ebx,ecx,esi,edi
168
        call    NotDummyTest ; not returned for fail !!!
169
        or      esi, esi
170
        jz      @f
171
        lea     edi, [ebx+EVENT.code]
2384 hidnplayr 172
        mov     ecx, (sizeof.EVENT -EVENT.code)/4
2288 clevermous 173
        cld
174
        rep movsd
2513 mario79 175
;--------------------------------------
176
align 4
177
@@:
2288 clevermous 178
        test    byte[ebx+EVENT.state+3], EVENT_SIGNALED shr 24
179
        jnz     RemoveEventTo.break  ; POPF+RET
180
        bt      edx, 28 ;EVENT_WATCHED
181
        jnc     @f
182
        test    byte[ebx+EVENT.state+3], EVENT_WATCHED shr 24
183
        jz      RemoveEventTo.break  ; POPF+RET
2513 mario79 184
;--------------------------------------
185
align 4
186
@@:
2288 clevermous 187
        or      byte[ebx+EVENT.state+3], EVENT_SIGNALED shr 24
188
        add     eax, SLOT_BASE+APP_EV_OFFSET
189
        xchg    eax, ebx
190
        jmp     RemoveEventTo
2513 mario79 191
;-----------------------------------------------------------------------------
2288 clevermous 192
align 4
193
clear_event:                                       ;; EXPORT use
194
;info:
195
;
196
;param:
197
;   eax - event
198
;   ebx - uid (for Dummy testing)
199
;scratched: ebx,ecx
200
        call    NotDummyTest ; not returned for fail !!!
201
        add     eax, SLOT_BASE+APP_OBJ_OFFSET
202
        and     byte[ebx+EVENT.state+3], not((EVENT_SIGNALED+EVENT_WATCHED)shr 24)
203
        xchg    eax, ebx
204
        jmp     RemoveEventTo
2513 mario79 205
;-----------------------------------------------------------------------------
2288 clevermous 206
align 4
207
send_event:                                        ;; EXPORT use
208
;info:
8053 rgimad 209
;   Creates a new EVENT (pulls from the FreeEvents list) in the EventList list
210
;   of target slot (eax=pid), with data from esi indirectly, and state=EVENT_SIGNALED
2288 clevermous 211
;param:
212
;   eax - slots pid, to sending new event
213
;   esi - pointer to sending data (in code field of new event)
214
;retval:
215
;   eax - event (=0 => fail)
216
;   edx - uid
217
;warning:
218
;   may be used as CDECL with such prefix...
219
;       mov     esi,[esp+8]
220
;       mov     eax,[esp+4]
221
;   but not as STDCALL :(
222
;scratched: ebx,ecx,esi,edi
223
        mov     edx, eax
224
        call    NotDummyTest.small ; not returned for fail !!!
225
        lea     ebx, [eax+SLOT_BASE+APP_EV_OFFSET]
226
        mov     ecx, EVENT_SIGNALED
227
        jmp     set_event
2513 mario79 228
;-----------------------------------------------------------------------------
2288 clevermous 229
align 4
230
DummyTest:                                         ;; INTERNAL use (not returned for fail !!!)
231
;param:
232
;   eax - event
233
;   ebx - uid (for Dummy testing)
234
        cmp     [eax+EVENT.magic], 'EVNT'
235
        jne     @f
236
        cmp     [eax+EVENT.id], ebx
237
        je      .ret
2513 mario79 238
;--------------------------------------
239
align 4
240
@@:
2288 clevermous 241
        pop     eax
242
        xor     eax, eax
2513 mario79 243
;--------------------------------------
244
align 4
2288 clevermous 245
.ret:
246
        ret
2513 mario79 247
;-----------------------------------------------------------------------------
2288 clevermous 248
align 4
249
Wait_events:
250
        or      ebx, -1; infinite timeout
2513 mario79 251
;--------------------------------------
252
align 4
2288 clevermous 253
Wait_events_ex:
254
;info:
8053 rgimad 255
;   Waiting for an "abstract" event by moving the slot to the 5th position.
256
;   Abstractness lies in the fact, that the fact of an event is determined by the APPDATA.wait_test function,
257
;   which is set by the client and can be actually anything.
258
;   This allows the shed to reliably determine the fact of the event, and not make "idle" switches,
259
;   intended for showdowns like "friend / foe" within the problem.
2288 clevermous 260
;param:
8053 rgimad 261
;   edx - wait_test, client testing function (code address)
262
;   ecx - wait_param, additional parameter, possibly needed for [wait_test]
2288 clevermous 263
;   ebx - wait_timeout
264
;retval:
8053 rgimad 265
;   eax - call result [wait_test] (=0 => timeout)
2288 clevermous 266
;scratched: esi
267
        mov     esi, [current_slot]
268
        mov     [esi+APPDATA.wait_param], ecx
269
        pushad
8053 rgimad 270
        mov     ebx, esi  ;now this is a question, what where to put..........
271
        pushfd  ; this is a consequence of the general concept: let the test function have
272
        cli     ; the right to hope to disable interrupts, as when called from shed
2288 clevermous 273
        call    edx
274
        popfd
275
        mov     [esp+28], eax
276
        popad
277
        or      eax, eax
278
        jnz     @f   ;RET
279
        mov     [esi+APPDATA.wait_test], edx
280
        mov     [esi+APPDATA.wait_timeout], ebx
5788 serge 281
        mov     eax, [timer_ticks]
282
        mov     [esi+APPDATA.wait_begin], eax
9709 Doczom 283
        mov     [esi + APPDATA.state], TSTATE_WAITING
2288 clevermous 284
        call    change_task
285
        mov     eax, [esi+APPDATA.wait_param]
2513 mario79 286
;--------------------------------------
287
align 4
288
@@:
2288 clevermous 289
        ret
2513 mario79 290
;-----------------------------------------------------------------------------
2288 clevermous 291
align 4
292
wait_event:                                        ;; EXPORT use
293
;info:
8053 rgimad 294
;   Waiting for the EVENT_SIGNALED flag in a very specific Event
295
;   (set, presumably, via raise_event)
296
;   When the MANUAL_RESET flag is active, nothing else
297
;   Otherwise: the flags EVENT_SIGNALED and EVENT_WATCHED for the received event are cleared,
298
;   and, if MANUAL_DESTROY is active, it moves to the ObjList list of the current slot,
299
;   and if not active, it is destroyed normally (destroy_event.internal)
2288 clevermous 300
;param:
301
;   eax - event
302
;   ebx - uid (for Dummy testing)
303
;scratched: ecx,edx,esi
304
        call    DummyTest
305
        mov     ecx, eax             ; wait_param
306
        mov     edx, get_event_alone ; wait_test
307
        call    Wait_events          ; timeout ignored
308
        jmp     wait_finish
2513 mario79 309
;-----------------------------------------------------------------------------
2288 clevermous 310
align 4
3390 Serge 311
wait_event_timeout:
312
;param:
313
;   eax - event
314
;   ebx - uid (for Dummy testing)
315
;   ecx - timeout in timer ticks
316
;retval:
317
;   eax - EVENT handle or 0 if timeout
318
        call    DummyTest
319
        mov     ebx, ecx
320
        mov     ecx, eax             ; wait_param
321
        mov     edx, get_event_alone ; wait_test
322
        call    Wait_events_ex
3396 clevermous 323
        test    eax, eax
324
        jnz     wait_finish
325
        ret
3390 Serge 326
;-----------------------------------------------------------------------------
327
align 4
2288 clevermous 328
get_event_ex:                                      ;; f68:14
329
;info:
8053 rgimad 330
;   Waiting for any event in the EventList of the current slot
331
;   Code event data - copied to application memory (indirectly by edi)
332
;   When the MANUAL_RESET flag is active, nothing else
333
;   Otherwise: the flags EVENT_SIGNALED and EVENT_WATCHED for the received event are cleared,
334
;   and, if MANUAL_DESTROY is active, it moves to the ObjList list of the current slot,
335
;   and if not active, it is destroyed normally (destroy_event.internal)
2288 clevermous 336
;param:
8053 rgimad 337
;   edi - address in the application code to copy data from EVENT.code
2288 clevermous 338
;retval:
8053 rgimad 339
;   eax - EVENT itself (we will call it a handle)
2288 clevermous 340
;scratched: ebx,ecx,edx,esi,edi
341
        mov     edx, get_event_queue ; wait_test
342
        call    Wait_events          ; timeout ignored
343
        lea     esi, [eax+EVENT.code]
2384 hidnplayr 344
        mov     ecx, (sizeof.EVENT-EVENT.code)/4
2288 clevermous 345
        cld
346
        rep movsd
2384 hidnplayr 347
        mov     byte[edi-(sizeof.EVENT-EVENT.code)+2], cl;clear priority field
2513 mario79 348
;--------------------------------------
349
align 4
2288 clevermous 350
wait_finish:
351
        test    byte[eax+EVENT.state+3], MANUAL_RESET shr 24
352
        jnz     get_event_queue.ret  ; RET
353
        and     byte[eax+EVENT.state+3], not((EVENT_SIGNALED+EVENT_WATCHED)shr 24)
354
        test    byte[eax+EVENT.state+3], MANUAL_DESTROY shr 24
355
        jz      destroy_event.internal
356
        mov     ebx, [current_slot]
357
        add     ebx, APP_OBJ_OFFSET
358
        pushfd
359
        cli
360
        jmp     RemoveEventTo
2513 mario79 361
;-----------------------------------------------------------------------------
2288 clevermous 362
align 4
363
destroy_event:                                     ;; EXPORT use
364
;info:
8053 rgimad 365
;   Move EVENT to the FreeEvents list, clear the magic, destroy, pid, id fields
2288 clevermous 366
;param:
367
;   eax - event
368
;   ebx - uid (for Dummy testing)
369
;retval:
8053 rgimad 370
;   eax - address of EVENT object (=0 => fail)
2288 clevermous 371
;scratched: ebx,ecx
372
        call    DummyTest ; not returned for fail !!!
2513 mario79 373
;--------------------------------------
374
align 4
2288 clevermous 375
.internal:
376
        xor     ecx, ecx  ; clear common header
377
        pushfd
378
        cli
379
        mov     [eax+EVENT.magic], ecx
380
        mov     [eax+EVENT.destroy], ecx
381
        mov     [eax+EVENT.pid], ecx
382
        mov     [eax+EVENT.id], ecx
383
        mov     ebx, FreeEvents
384
        jmp     RemoveEventTo
2513 mario79 385
;-----------------------------------------------------------------------------
2288 clevermous 386
align 4
387
get_event_queue:
388
;info:
8053 rgimad 389
;   client testing function for get_event_ex
2288 clevermous 390
;warning:
8869 rgimad 391
;  -don't use [TASK_BASE],[current_slot],[current_slot_idx] - it is not for your slot
2288 clevermous 392
;  -may be assumed, that interrupt are disabled
393
;  -it is not restriction for scratched registers
394
;param:
8053 rgimad 395
;   ebx - APPDATA address of testing slot
2288 clevermous 396
;retval:
8053 rgimad 397
;   eax - address of EVENT object (=0 => fail)
2288 clevermous 398
        add     ebx, APP_EV_OFFSET
8053 rgimad 399
        mov     eax, [ebx+APPOBJ.bk] ; we choose from the end, according to the FIFO principle
2288 clevermous 400
        cmp     eax, ebx ; empty ???
401
        je      get_event_alone.ret0
2513 mario79 402
;--------------------------------------
403
align 4
2288 clevermous 404
.ret:
405
        ret
2513 mario79 406
;-----------------------------------------------------------------------------
2288 clevermous 407
align 4
408
get_event_alone:
409
;info:
8053 rgimad 410
;   client testing function for wait_event
2288 clevermous 411
;warning:
8869 rgimad 412
;  -don't use [TASK_BASE],[current_slot],[current_slot_idx] - it is not for your slot
2288 clevermous 413
;  -may be assumed, that interrupt are disabled
414
;  -it is not restriction for scratched registers
415
;param:
8053 rgimad 416
;   ebx - APPDATA address of testing slot
2288 clevermous 417
;retval:
8053 rgimad 418
;   eax - address of EVENT object (=0 => fail)
2288 clevermous 419
        mov     eax, [ebx+APPDATA.wait_param]
420
        test    byte[eax+EVENT.state+3], EVENT_SIGNALED shr 24
421
        jnz     .ret
422
        or      byte[eax+EVENT.state+3], EVENT_WATCHED shr 24
2513 mario79 423
;--------------------------------------
424
align 4
2288 clevermous 425
.ret0:
426
        xor     eax, eax; NO event!!!
2513 mario79 427
;--------------------------------------
428
align 4
2288 clevermous 429
.ret:
430
        ret
2513 mario79 431
;-----------------------------------------------------------------------------
2288 clevermous 432
align 4
433
sys_sendwindowmsg:                                 ;; f72
434
        dec     ebx
435
        jnz     .ret ;subfunction==1 ?
2508 mario79 436
        pushfd
2288 clevermous 437
        cli
438
        sub     ecx, 2
439
        je      .sendkey
440
        dec     ecx
441
        jnz     .retf
2513 mario79 442
;--------------------------------------
443
align 4
2288 clevermous 444
.sendbtn:
445
        cmp     byte[BTN_COUNT], 1
446
        jae     .result ;overflow
447
        inc     byte[BTN_COUNT]
448
        shl     edx, 8
449
        mov     [BTN_BUFF], edx
450
        jmp     .result
2513 mario79 451
;--------------------------------------
452
align 4
2288 clevermous 453
.sendkey:
454
        movzx   eax, byte[KEY_COUNT]
455
        cmp     al, 120
456
        jae     .result ;overflow
457
        inc     byte[KEY_COUNT]
4588 mario79 458
        mov     [KEY_BUFF+eax], dl
459
; store empty scancode
460
        add     eax, 120+2
461
        mov     [KEY_BUFF+eax], byte 0
462
        sub     eax, 120+2
2513 mario79 463
;--------------------------------------
464
align 4
2288 clevermous 465
.result:
8053 rgimad 466
        setae   byte[esp+32+4] ;we consider that initially was: dword[esp+32+4]==72
2513 mario79 467
;--------------------------------------
468
align 4
2508 mario79 469
.retf:
470
        popfd
2513 mario79 471
;--------------------------------------
472
align 4
2288 clevermous 473
.ret:
474
        ret
2513 mario79 475
;-----------------------------------------------------------------------------
2288 clevermous 476
align 4
477
sys_getevent:                                      ;; f11
8053 rgimad 478
        mov     ebx, [current_slot]  ;now this is a question, what where to put......
479
        pushfd  ; this is a consequence of the general concept: let the test function have
480
        cli     ; the right to hope to disable interrupts, as when called from shed
2288 clevermous 481
        call    get_event_for_app
482
        popfd
483
        mov     [esp+32], eax
484
        ret
2513 mario79 485
;-----------------------------------------------------------------------------
2288 clevermous 486
align 4
487
sys_waitforevent:                                  ;; f10
488
        or      ebx, -1; infinite timeout
2513 mario79 489
;--------------------------------------
490
align 4
2288 clevermous 491
sys_wait_event_timeout:                            ;; f23
3303 clevermous 492
        call    unprotect_from_terminate
2288 clevermous 493
        mov     edx, get_event_for_app; wait_test
494
        call    Wait_events_ex        ; ebx - timeout
495
        mov     [esp+32], eax
3303 clevermous 496
        call    protect_from_terminate
2288 clevermous 497
        ret
2513 mario79 498
;-----------------------------------------------------------------------------
2288 clevermous 499
align 4
500
get_event_for_app:                                 ;; used from f10,f11,f23
501
;info:
8053 rgimad 502
;   client testing function for applications (f10,f23)
2288 clevermous 503
;warning:
8869 rgimad 504
;  -don't use [TASK_BASE],[current_slot],[current_slot_idx] - it is not for your slot
2288 clevermous 505
;  -may be assumed, that interrupt are disabled
506
;  -it is not restriction for scratched registers
507
;param:
8053 rgimad 508
;   ebx - APPDATA address of testing slot
2288 clevermous 509
;retval:
8053 rgimad 510
;   eax - event number (=0 => no events)
8869 rgimad 511
        movzx   edi, bh               ; bh  is assumed as [current_slot_idx]
9614 Doczom 512
        mov     ecx, [ebx+APPDATA.event_mask]
2288 clevermous 513
        shl     edi, 5
9709 Doczom 514
        add     edi, window_data
2411 Serge 515
        and     ecx, 0x7FFFFFFF
2513 mario79 516
;--------------------------------------
517
align 4
8053 rgimad 518
.loop: ; until we run out all the bits of the mask
519
        bsr     eax, ecx       ; find a non-zero bit of the mask (31 -> 0)
520
        jz      .no_events     ; ran out all the bits of the mask but found nothing ???
521
        btr     ecx, eax       ; clear the current checking bit of the mask
522
       ; go to the handler of this (eax) bit
3545 hidnplayr 523
        cmp     eax, 10
3565 hidnplayr 524
        jae     .loop          ; eax=[10..31], ignored (event 11...32)
2534 mario79 525
 
2288 clevermous 526
        cmp     eax, 3
2534 mario79 527
        je      .loop          ; eax=3, ignored (event 4)
528
 
529
        cmp     eax, 4
530
        je      .FlagAutoReset  ; eax=4, retvals=eax+1 (event 5)
531
 
532
        cmp     eax, 5
533
        je      .mouse_check  ; eax=5, retvals=eax+1 (event 6)
534
 
3545 hidnplayr 535
        ja      .FlagAutoReset ; eax=[6..9], retvals=eax+1 (event 7...10)
2534 mario79 536
 
2288 clevermous 537
        cmp     eax, 1
2534 mario79 538
        jae     .BtKy          ; eax=[1,2],  retvals=eax+1 (event 2,3)
2513 mario79 539
;--------------------------------------
540
align 4
2288 clevermous 541
.WndRedraw:                    ; eax=0, retval WndRedraw=1
9709 Doczom 542
        cmp     [edi + WDATA.fl_redraw], al;al==0
2288 clevermous 543
        jne     .result
544
        jmp     .loop
2513 mario79 545
;--------------------------------------
546
align 4
547
.no_events:
2288 clevermous 548
        xor     eax, eax
549
        ret
2513 mario79 550
;--------------------------------------
551
align 4
2534 mario79 552
.mouse_check:    ; Mouse 5+1=6
2424 mario79 553
        push    eax
9614 Doczom 554
        mov     eax, [current_slot]
555
        mov     eax, [eax + APPDATA.event_mask]
2426 mario79 556
        test    eax, 0x80000000 ; bit 31: active/inactive filter f.40
557
        jz      @f
558
        pop     eax
2534 mario79 559
        jmp     .FlagAutoReset
2513 mario79 560
;--------------------------------------
561
align 4
2426 mario79 562
@@:
2288 clevermous 563
; If the window is captured and moved by the user, then no mouse events!!!
2424 mario79 564
        mov     al, [mouse.active_sys_window.action]
565
        and     al, WINDOW_MOVE_AND_RESIZE_FLAGS
566
        test    al, al
567
        pop     eax
568
        jnz     .loop
2513 mario79 569
;--------------------------------------
570
align 4
2534 mario79 571
.FlagAutoReset: ; retvals: BgrRedraw=5, IPC=7, Stack=8, Debug=9
8867 rgimad 572
        btr     [ebx+APPDATA.occurred_events], eax
2288 clevermous 573
        jnc     .loop
2513 mario79 574
;--------------------------------------
575
align 4
576
.result:      ; retval = eax+1
2288 clevermous 577
        inc     eax
578
        ret
2513 mario79 579
;--------------------------------------
580
align 4
581
.BtKy:
2288 clevermous 582
        movzx   edx, bh
583
        movzx   edx, word[WIN_STACK+edx*2]
584
        je      .Keys          ; eax=1, retval Keys=2
2513 mario79 585
;--------------------------------------
586
align 4
2288 clevermous 587
.Buttons:                      ; eax=2, retval Buttons=3
588
        cmp     byte[BTN_COUNT], 0
589
        je      .loop          ; empty ???
8866 rgimad 590
        cmp     edx, [thread_count]
2288 clevermous 591
        jne     .loop          ; not Top ???
592
        mov     edx, [BTN_BUFF]
593
        shr     edx, 8
594
        cmp     edx, 0xFFFF    ;-ID for Minimize-Button of Form
595
        jne     .result
596
        mov     [window_minimize], 1
3534 clevermous 597
        call    wakeup_osloop
2288 clevermous 598
        dec     byte[BTN_COUNT]
599
        jmp     .loop
2513 mario79 600
;--------------------------------------
601
align 4
2288 clevermous 602
.Keys:    ; eax==1
8866 rgimad 603
        cmp     edx, [thread_count]
2288 clevermous 604
        jne     @f             ; not Top ???
605
        cmp     [KEY_COUNT], al; al==1
606
        jae     .result        ; not empty ???
2513 mario79 607
;--------------------------------------
608
align 4
609
@@:
2288 clevermous 610
        mov     edx, hotkey_buffer
2513 mario79 611
;--------------------------------------
612
align 4
613
@@:
2288 clevermous 614
        cmp     [edx], bh      ; bh - slot for testing
615
        je      .result
616
        add     edx, 8
617
        cmp     edx, hotkey_buffer+120*8
618
        jb      @b
619
        jmp     .loop
620
;end.
3390 Serge 621
;-----------------------------------------------------------------------------