2006-12-29 15:50:24 +01:00
|
|
|
;---------------------------------------------
|
|
|
|
;-----------panel BUTTONS---------------------
|
|
|
|
;---------------------------------------------
|
|
|
|
buttons:
|
|
|
|
|
|
|
|
cmp [Current_instrument],21
|
2016-03-21 18:29:30 +01:00
|
|
|
jne @f
|
2006-12-29 15:50:24 +01:00
|
|
|
cmp [instrument_used],1
|
2016-03-21 18:29:30 +01:00
|
|
|
jne @f
|
2006-12-29 15:50:24 +01:00
|
|
|
cmp [Activate_instrument],0
|
2016-03-21 18:29:30 +01:00
|
|
|
jne @f
|
2016-03-28 21:48:24 +02:00
|
|
|
;mov [crossing],2
|
2016-03-21 18:29:30 +01:00
|
|
|
call TakeButtonInstruments
|
2016-03-22 15:12:51 +01:00
|
|
|
jmp still
|
2016-03-21 18:29:30 +01:00
|
|
|
@@:
|
2006-12-29 15:50:24 +01:00
|
|
|
|
2016-03-21 18:29:30 +01:00
|
|
|
mcall SF_GET_BUTTON
|
2006-12-29 15:50:24 +01:00
|
|
|
|
|
|
|
shr eax,8
|
|
|
|
|
|
|
|
cmp eax,1
|
|
|
|
jne no_exit
|
2016-03-21 18:29:30 +01:00
|
|
|
mov eax,CursorsID
|
|
|
|
call delete_cursors
|
|
|
|
mcall SF_TERMINATE_PROCESS
|
2006-12-29 15:50:24 +01:00
|
|
|
no_exit:
|
|
|
|
|
|
|
|
mov [Current_instrument],eax
|
2016-03-21 18:29:30 +01:00
|
|
|
call button_handler_main_menu
|
2006-12-29 15:50:24 +01:00
|
|
|
|
|
|
|
cmp eax,10
|
|
|
|
jl still
|
|
|
|
|
|
|
|
;save instrumnets 10-40
|
|
|
|
cmp eax,40
|
2016-03-28 21:48:24 +02:00
|
|
|
jae @f
|
|
|
|
mov [Last_instrument],eax
|
|
|
|
@@:
|
2006-12-29 15:50:24 +01:00
|
|
|
|
|
|
|
cmp eax,10
|
|
|
|
je still
|
|
|
|
|
|
|
|
cmp eax,14
|
|
|
|
je still
|
|
|
|
|
|
|
|
cmp eax,11
|
|
|
|
je still
|
|
|
|
|
|
|
|
cmp eax,13
|
|
|
|
je still
|
|
|
|
|
|
|
|
cmp eax,12
|
|
|
|
je still
|
|
|
|
|
|
|
|
cmp eax,51
|
2016-03-28 21:48:24 +02:00
|
|
|
jne @f
|
|
|
|
call TakeButtonInstruments
|
|
|
|
jmp still
|
|
|
|
@@:
|
2006-12-29 15:50:24 +01:00
|
|
|
|
|
|
|
cmp eax,17
|
|
|
|
je still
|
|
|
|
|
|
|
|
cmp eax,21
|
2016-03-28 21:48:24 +02:00
|
|
|
je still
|
2006-12-29 15:50:24 +01:00
|
|
|
|
|
|
|
cmp eax,20
|
2016-03-28 21:48:24 +02:00
|
|
|
jne @f
|
|
|
|
and [instrument_used],0
|
|
|
|
jmp still
|
|
|
|
@@:
|
2006-12-29 15:50:24 +01:00
|
|
|
|
|
|
|
call TakeButtonInstruments
|
|
|
|
jmp still
|