2016-10-07 19:11:07 +02:00
|
|
|
SYS_COL = 0xe6e6e6
|
|
|
|
BT_COL = 0xcccccc
|
|
|
|
STR_COL = 0x595959 ;0x000000
|
|
|
|
|
2018-10-14 20:05:52 +02:00
|
|
|
WIN_X = 320
|
|
|
|
WIN_Y = 300
|
|
|
|
WIN_W = 390
|
|
|
|
WIN_H = 230
|
|
|
|
|
|
|
|
pad = 28 ; padding between editboxes
|
|
|
|
|
2016-10-07 19:11:07 +02:00
|
|
|
;;================================================================================================;;
|
|
|
|
login_gui: ;//////////////////////////////////////////////////////////////////////////////////////;;
|
|
|
|
;;------------------------------------------------------------------------------------------------;;
|
|
|
|
;? Login GUI-specific functions ;;
|
|
|
|
;;------------------------------------------------------------------------------------------------;;
|
|
|
|
;> none ;;
|
|
|
|
;;------------------------------------------------------------------------------------------------;;
|
|
|
|
;< none ;;
|
|
|
|
;;================================================================================================;;
|
|
|
|
|
|
|
|
; TODO: print error strings (wrong user, pass, etc.)
|
|
|
|
|
|
|
|
.server_addr:
|
|
|
|
mov [initial_login], 1
|
|
|
|
|
|
|
|
.get_username:
|
|
|
|
; in case of error when either login_gui.server_addr or
|
|
|
|
; login_gui.get_username is called, should resize window
|
2018-10-14 20:05:52 +02:00
|
|
|
mcall 67, WIN_X, WIN_Y, WIN_W, WIN_H ; resize to login gui window size
|
2016-10-07 19:11:07 +02:00
|
|
|
|
|
|
|
.redraw:
|
|
|
|
call .draw
|
|
|
|
jmp .still
|
|
|
|
|
|
|
|
|
|
|
|
align 4
|
|
|
|
.draw:
|
|
|
|
mcall 12, 1
|
2018-10-14 20:05:52 +02:00
|
|
|
mcall 0, <WIN_X,WIN_W>, <WIN_Y,WIN_H>, 0x34000000+SYS_COL, 0x805080DD, str_title
|
2016-10-07 19:11:07 +02:00
|
|
|
|
|
|
|
stdcall [edit_box_draw], edit_usr
|
|
|
|
stdcall [edit_box_draw], edit_pass
|
|
|
|
stdcall [edit_box_draw], edit_server
|
|
|
|
stdcall [edit_box_draw], edit_port
|
|
|
|
stdcall [edit_box_draw], edit_path
|
|
|
|
|
|
|
|
; draw "connect" button
|
2018-10-14 20:05:52 +02:00
|
|
|
mcall 8, <162,65>, <150,25>, 2, BT_COL
|
2016-10-07 19:11:07 +02:00
|
|
|
|
|
|
|
; draw strings
|
2018-10-14 20:05:52 +02:00
|
|
|
mcall 4, <3, 8>, 0xb0000000, gui_str_usr
|
|
|
|
mcall , <3,pad*1+8>, , gui_str_pass
|
|
|
|
mcall , <3,pad*2+8>, , gui_str_server
|
|
|
|
mcall , <3,pad*3+8>, , gui_str_port
|
|
|
|
mcall , <3,pad*4+8>, , gui_str_path
|
|
|
|
mcall , <167,155>, 0xb0000000+STR_COL, gui_str_connect
|
|
|
|
mcall , <3,115>, 0xb0ff0000, [str_error_addr]
|
2016-10-07 19:11:07 +02:00
|
|
|
mov [str_error_addr], gui_str_null ; reset error string address
|
|
|
|
|
|
|
|
mcall 12, 2
|
|
|
|
ret
|
|
|
|
|
|
|
|
align 4
|
|
|
|
.still:
|
|
|
|
mcall 10 ; wait for event
|
|
|
|
dec eax
|
|
|
|
jz .redraw
|
|
|
|
dec eax
|
|
|
|
jz .key
|
|
|
|
dec eax
|
|
|
|
jz .button
|
|
|
|
|
|
|
|
stdcall [edit_box_mouse], edit_usr
|
|
|
|
stdcall [edit_box_mouse], edit_pass
|
|
|
|
stdcall [edit_box_mouse], edit_server
|
|
|
|
stdcall [edit_box_mouse], edit_port
|
|
|
|
stdcall [edit_box_mouse], edit_path
|
|
|
|
|
|
|
|
jmp .still
|
|
|
|
|
|
|
|
.button:
|
|
|
|
mcall 17
|
|
|
|
|
|
|
|
dec ah
|
|
|
|
jz .exit
|
|
|
|
|
|
|
|
dec ah ; 'Connect' button clicked
|
|
|
|
jz gui.main
|
|
|
|
|
|
|
|
jmp .still
|
|
|
|
|
|
|
|
.key:
|
|
|
|
mcall 2
|
|
|
|
|
2018-10-14 20:05:52 +02:00
|
|
|
cmp ah,13
|
|
|
|
je gui.main
|
|
|
|
|
|
|
|
cmp ah,9
|
|
|
|
je .tab
|
|
|
|
|
2016-10-07 19:11:07 +02:00
|
|
|
stdcall [edit_box_key], edit_usr
|
|
|
|
stdcall [edit_box_key], edit_pass
|
|
|
|
stdcall [edit_box_key], edit_server
|
|
|
|
stdcall [edit_box_key], edit_port
|
|
|
|
stdcall [edit_box_key], edit_path
|
|
|
|
|
|
|
|
jmp .still
|
|
|
|
|
|
|
|
.error:
|
|
|
|
mov [str_error_addr], gui_str_error
|
|
|
|
jmp .server_addr
|
|
|
|
|
|
|
|
.exit:
|
|
|
|
jmp gui.exit
|
|
|
|
|
2018-10-14 20:05:52 +02:00
|
|
|
.tab:
|
|
|
|
;TODO
|
|
|
|
jmp .still
|
|
|
|
|
2016-10-07 19:11:07 +02:00
|
|
|
|
|
|
|
gui_str_connect db 'Connect',0
|
|
|
|
gui_str_usr db 'Username:',0
|
|
|
|
gui_str_pass db 'Password:',0
|
|
|
|
gui_str_server db 'Server:',0
|
|
|
|
gui_str_port db 'Port:',0
|
|
|
|
gui_str_path db 'Path:',0
|
|
|
|
gui_str_error db 'ERROR! Check log file for details',0
|
|
|
|
gui_str_null db ' ',0
|
|
|
|
|
|
|
|
str_error_addr dd gui_str_null
|
|
|
|
|
|
|
|
; login window components
|
2018-10-14 20:05:52 +02:00
|
|
|
edit_usr edit_box 300,75,5, 0xffffff,0x94AECE,0,0xAABBCC,0x10000000,99,param_user,mouse_dd,ed_focus
|
|
|
|
edit_pass edit_box 300,75,pad+5, 0xffffff,0x94AECE,0,0xAABBCC,0x10000000,99,param_password,mouse_dd,ed_pass
|
|
|
|
edit_server edit_box 300,75,pad*2+5,0xffffff,0x94AECE,0,0xAABBCC,0x10000000,99,param_server_addr,mouse_dd,0
|
|
|
|
edit_port edit_box 50, 75,pad*3+5,0xffffff,0x94AECE,0,0xAABBCC,0x10000000,99,param_port,mouse_dd,ed_figure_only
|
|
|
|
edit_path edit_box 300,75,pad*4+5,0xffffff,0x94AECE,0,0xAABBCC,0x10000000,99,param_path,mouse_dd,0
|
2016-10-07 19:11:07 +02:00
|
|
|
|
|
|
|
mouse_dd rd 1
|