diff --git a/programs/network_old/browser/browser.asm b/programs/network_old/browser/browser.asm deleted file mode 100644 index dfc464910c..0000000000 --- a/programs/network_old/browser/browser.asm +++ /dev/null @@ -1,321 +0,0 @@ -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -; ; -; BROWSER for KolibriOS ; -; ; -; Compile with FASM ; -; ; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -; It's a work in progress but I (esevece) commit it, because if I don't continue developing it someone can continue. -; Please, keep the code clean - -; The header - -use32 ; Tell compiler to use 32 bit instructions - -org 0x0 ; the base address of code, always 0x0 - -db 'MENUET01' -dd 0x01 -dd START -dd I_END -dd 0x100000 -dd 0x7fff0 -dd 0, 0 - -; The code area - -;include 'macros.inc' - -START: ; start of execution - call draw_window ; draw the window - -; After the window is drawn, it's practical to have the main loop. -; Events are distributed from here. - -event_wait: - mov eax, 10 ; function 10 : wait until event - int 0x40 ; event type is returned in eax - - cmp eax, 1 ; Event redraw request ? - je redraw ; Expl.: there has been activity on screen and - ; parts of the applications has to be redrawn. - - cmp eax, 2 ; Event key in buffer ? - je key ; Expl.: User has pressed a key while the - ; app is at the top of the window stack. - - cmp eax, 3 ; Event button in buffer ? - je button ; Expl.: User has pressed one of the - ; applications buttons. - - jmp event_wait - -; The next section reads the event and processes data. - -redraw: ; Redraw event handler - call draw_window ; We call the window_draw function and - jmp event_wait ; jump back to event_wait - -key: ; Keypress event handler - mov eax, 2 ; The key is returned in ah. The key must be - int 0x40 ; read and cleared from the system queue. - jmp event_wait ; Just read the key, ignore it and jump to event_wait. - -button: ; Buttonpress event handler - mov eax,17 ; The button number defined in window_draw - int 0x40 ; is returned to ah. - - cmp ah,1 ; button id=1 ? - jne noclose - mov eax,-1 ; Function -1 : close this program - int 0x40 - -noclose: - cmp ah, 2 ; call fetch_thread - jne no_fetch_thread - call fetch_thread - jmp event_wait ; This is for ignored events, useful at development - -no_fetch_thread: - jmp event_wait - - -; FETCHER -FETCH: - mov ecx, 1000 -get_free_port: - inc ecx - mov eax, 53 - mov ebx, 9 - int 0x40 - cmp eax, 0 ; is port used? - jz get_free_port -open_socket: - mov eax, 53 - mov ebx, 5 - mov edx, 80 - mov esi, 0x0417042E ; 46.4.23.4 (kolibrios.org), only for try - mov edi, 1 - int 0x40 - mov [socket], eax - cmp [socket], -1 ; error? - jne status_socket - ret -status_socket: - mov eax, 53 - mov ebx, 6 - mov ecx, [socket] - int 0x40 - cmp eax, 4 ; connected? - jne status_socket -send_request: -.concat_request: - mov edi, request - mov ebx, 0 ; request_length - mov esi, request_first_line -._first_line: - movsb - inc ebx ; request_length - cmp byte [edi], 0 - jne ._first_line - mov esi, request_second_line -._second_line: - movsb - inc ebx ; request_length - cmp byte [edi], 0 - jne ._second_line - mov esi, host -._second_line_host: - movsb - inc ebx ; request_length - cmp byte [edi], 0 - jne ._second_line_host - mov esi, request_third_line -._third_line: - movsb - inc ebx ; request_length - cmp byte [edi], 0 - jne ._third_line - mov [request_length], ebx -.write_to_socket: - mov eax, 53 - mov ebx, 7 - mov ecx, [socket] - mov edx, [request_length] - mov esi, request - int 0x40 - cmp eax, -1 ; error? - je .write_to_socket -.poll_socket: - mov eax, 53 - mov ebx, 2 - mov ecx, [socket] - int 0x40 - cmp eax, 0 - jne .read_socket - ; only for test purposes - mov eax, 63 - mov ebx, 1 - mov cl, 's' - int 0x40 -.status_socket: - mov eax, 53 - mov ebx, 6 - mov ecx, [socket] - int 0x40 - cmp eax, 4 - jne end_of_request -.read_socket: - mov eax, 53 - mov ebx, 11 - mov ecx, [socket] - mov edx, [buffer] - mov esi, 4096 - int 0x40 - ; only for test purposes - mov eax, 63 - mov ebx, 1 - mov cl, 'p' - int 0x40 - jmp .poll_socket -end_of_request: -.close_socket: - mov eax, 53 - mov ebx, 8 - mov ecx, [socket] - int 0x40 - ; only for test purposes - mov eax, 63 - mov ebx, 1 - mov cl, 'b' - int 0x40 - jmp terminate_thread - -fetch_thread: - cmp [thread_id], 0 - jne terminate_thread - mov eax, 51 - mov ebx, 1 - mov ecx, FETCH - mov edx, [thread_stack] - int 0x40 - jmp event_wait - -no_new_thread: - ret - -terminate_thread: - mov eax, 18 - mov ebx, 18 - mov ecx, [thread_id] - int 0x40 - cmp eax, 0 - jne terminate_thread - mov [thread_id], 0 - ret - -thread_stack dd 0x80000 -thread_id dd 0x0 - - -; ********************************************* -; ****** WINDOW DEFINITIONS AND DRAW ******** -; ********************************************* -; -; The static window parts are drawn in this function. The window canvas can -; be accessed later from any parts of this code (thread) for displaying -; processes or recorded data, for example. -; -; The static parts *must* be placed within the fn 12 , ebx = 1 and ebx = 2. - -draw_window: - mov eax, 12 ; function 12: tell os about windowdraw - mov ebx, 1 ; 1, start of draw - int 0x40 - - mov eax, 0 ; function 0 : define and draw window - mov ebx, 100 * 65536 + 300 ; [x start] *65536 + [x size] - mov ecx, 100 * 65536 + 120 ; [y start] *65536 + [y size] - mov edx, 0x14ffffff ; color of work area RRGGBB - ; 0x02000000 = window type 4 (fixed size, skinned window) - mov esi, 0x808899ff ; color of grab bar RRGGBB - ; 0x80000000 = color glide - mov edi, title - int 0x40 - - ; Fetch button - mov eax, 8 - mov ebx, 25 * 65536 + 128 - mov ecx, 88 * 65536 + 20 - mov edx, 2 - mov esi, 0x6677cc - int 0x40 - - mov ebx, 25 * 65536 + 35 ; draw info text with function 4 - mov ecx, 0x224466 - mov edx, text - mov esi, 40 - mov eax, 4 - - .newline: ; text from the DATA AREA - int 0x40 - add ebx, 10 - add edx, 40 - cmp byte[edx], 0 - jne .newline - - mov eax, 12 ; function 12:tell os about windowdraw - mov ebx, 2 ; 2, end of draw - int 0x40 - - ret - -; ********************************************* -; ************* DATA AREA ***************** -; ********************************************* -; -; Data can be freely mixed with code to any parts of the image. -; Only the header information is required at the beginning of the image. - -text db "It look's like you have just compiled " - db "your first program for KolibriOS. " - db " " - db "Congratulations! ", 0 - -title db "KolibriOS Browser", 0 - -socket dd 0 -socket_status dd 0 -server_ip db 046,004,023,004 -server_port db 0,0 -request_first_line db 'GET / HTTP/1.1',0 -request_second_line db 13,10,'Host: ',0 -request_third_line db 13,10,'Connection: close',13,10,13,10,0 -request db 0 -request_length dd 0 -host db 'kolibrios.org',0 -buffer dd 0 - -I_END: - -; The area after I_END is free for use as the application memory, -; just avoid the stack. -; -; Application memory structure, according to the used header, 1 Mb. -; -; 0x00000 - Start of compiled image -; I_END - End of compiled image -; -; + Free for use in the application -; -; 0x7ff00 - Start of stack area -; 0x7fff0 - End of stack area - defined in the header -; -; + Free for use in the application -; -; 0xFFFFF - End of freely useable memory - defined in the header -; -; All of the the areas can be modified within the application with a -; direct reference. -; For example, mov [0x80000],byte 1 moves a byte above the stack area. diff --git a/programs/network_old/browser/build.bat b/programs/network_old/browser/build.bat deleted file mode 100755 index c67ddfc7fa..0000000000 --- a/programs/network_old/browser/build.bat +++ /dev/null @@ -1,6 +0,0 @@ -@erase lang.inc -@echo lang fix en >lang.inc -@fasm browser.asm browser -@kpack browser -@erase lang.inc -@pause diff --git a/programs/network_old/browser/build.sh b/programs/network_old/browser/build.sh deleted file mode 100755 index 79e9b3bef0..0000000000 --- a/programs/network_old/browser/build.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash -# This script does for linux the same as build.bat for DOS, -# it compiles the KoOS kernel, hopefully ;-) - - echo "lang fix en" - echo "lang fix en" > lang.inc - fasm -m 16384 browser.asm browser - rm -f lang.inc - exit 0 - - - - diff --git a/programs/network_old/chess/trunk/build_en.bat b/programs/network_old/chess/trunk/build_en.bat deleted file mode 100644 index 10211f8dfb..0000000000 --- a/programs/network_old/chess/trunk/build_en.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix en >lang.inc -@fasm chess.asm chess -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/chess/trunk/build_ru.bat b/programs/network_old/chess/trunk/build_ru.bat deleted file mode 100644 index 6fa2b3f71b..0000000000 --- a/programs/network_old/chess/trunk/build_ru.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix ru >lang.inc -@fasm chess.asm chess -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/chess/trunk/chess.asm b/programs/network_old/chess/trunk/chess.asm deleted file mode 100644 index 2cc5eb3697..0000000000 --- a/programs/network_old/chess/trunk/chess.asm +++ /dev/null @@ -1,1301 +0,0 @@ -; -; CHESS CLIENT for CHESSCLUB.COM (VT) -; -; Compile with FASM for Menuet -; - -appname equ 'Chess Client for Chessclub.com ' -version equ '0.2' - -use32 - org 0x0 - db 'MENUET01' ; header - dd 0x01 ; header version - dd START ; entry point - dd I_END ; image size - dd 0x100000 ; required memory - dd 0x100000 ; esp - dd 0x0 , 0x0 ; I_Param , I_Path - -include 'lang.inc' -include '..\..\..\macros.inc' - -pawn_color: - - dd 0x000000 - dd 0x222222 - dd 0x444444 - dd 0xf0f0f0 - dd 0xc0c0c0 - dd 0xa0a0a0 - dd 0xa0a0a0 - dd 0x707070 - dd 0xb0b0b0 - dd 0xc0c0c0 - dd 0xd0d0d0 - dd 0xd8d8d8 - dd 0xe0e0e0 - dd 0xe8e8e8 - dd 0x00ff00 - dd 0xffffff - - - -texts equ board_old+80*30 - -text equ texts+80*32*4 - - -START: ; start of execution - - mov esi,chess_bmp - mov edi,0x10000+18*3 - - mov ebx,0 - mov ecx,0 - - newp: - - xor eax,eax - mov al,[esi] - and al,0xf0 - shr al,4 - shl eax,2 - mov eax,[pawn_color+eax] - mov [edi+0],eax - - xor eax,eax - mov al,[esi] - and al,0x0f - shl eax,2 - mov eax,[pawn_color+eax] - mov [edi+3],eax - - add edi,6 - add esi,1 - - inc ebx - cmp ebx,23 - jbe newp - - sub edi,12 - - mov ebx,0 - - inc ecx - cmp ecx,279 - jb newp - - ; Clear the screen memory - mov eax, ' ' - mov edi,text - mov ecx,80*30 /4 - cld - rep stosd - - - call draw_window - -still: - - call check_for_board - - call board_changed - - call draw_board - - ; check connection status - mov eax,53 - mov ebx,6 - mov ecx,[socket] - mcall - - mov ebx, [socket_status] - mov [socket_status], eax - - cmp eax, ebx - je waitev - - call display_status - -waitev: - mov eax,23 ; wait here for event - mov ebx,20 - mcall - - cmp eax,1 ; redraw request ? - je red - cmp eax,2 ; key in buffer ? - je key - cmp eax,3 ; button in buffer ? - je button - - ; any data from the socket? - - mov eax, 53 - mov ebx, 2 - mov ecx, [socket] - mcall - cmp eax, 0 - jne read_input - - jmp still - - -read_input: - - push ecx - mov eax, 53 - mov ebx, 3 - mov ecx, [socket] - mcall - pop ecx - - call handle_data - - push ecx - mov eax, 53 - mov ebx, 2 - mov ecx, [socket] - mcall - pop ecx - cmp eax, 0 - - - jne read_input - call draw_text - jmp still - - - -check_for_board: - - pusha - - mov esi,text-80 - news: - add esi,80 - cmp esi,text+80*10 - je board_not_found - cmp [esi+12],dword '----' - je cfb1 - jmp news - cfb1: - cmp [esi+16*80+12],dword '----' - je cfb2 - jmp news - cfb2: - cmp [esi+2*80+12],dword '+---' - jne news - - cmp [esi+4*80+12],dword '+---' - jne news - - board_found: - - mov edi,chess_board - mov ecx,80*18 - cld - rep movsb - - board_not_found: - - popa - - ret - - -yst dd 150 -textx equ 10 -ysts equ 410 - -boardx dd 45 -boardy dd 45 - -boardxs dd 44 -boardys dd 44 - -conx equ 420 -cony equ 118 - -dconx equ 420 -dcony equ 148 - -statusx equ 420 -statusy equ 178 - - -drsq: - - push eax ebx - - mov ecx,ebx - mov ebx,eax - - mov eax,ebx - add eax,ecx - - imul ebx,[boardxs] - add ebx,[boardx] - shl ebx,16 - imul ecx,[boardys] - add ecx,[boardy] - shl ecx,16 - - add ebx,[boardxs] - add ecx,[boardys] - - mov edx,[sq_black] - test eax,1 - jnz dbl22 - mov edx,[sq_white] - dbl22: - - mov eax,13 - mcall - - pop ebx eax - - ret - - - -draw_pawn: - -; edi,0 ; white / black -; esi,0 ; from position 2 , 20 square -; eax,2 ; board x -; ebx,0 ; board y - - pusha - - call drsq - - cmp esi,20 - jne no_sqd - - popa - ret - - no_sqd: - - imul eax,[boardxs] - imul ebx,[boardys] - - add eax,[boardx] - add ebx,[boardy] - - imul esi,44*45*3 - add esi,0x10000+18*3 - - mov ecx,43 - - dp0: - - pusha - - mov ecx,44 - - ldp1: - - pusha - - mov ecx,ebx - mov ebx,eax - - mov edx,[esi] - and edx,0xffffff - mov eax,1 - cmp edx,0x00ff00 - je nowp - cmp edi,1 - jne nobl - shr edx,1 - and edx,0x7f7f7f - nobl: - mcall - nowp: - - popa - - add esi,3 - add eax,1 - - dec ecx - jnz ldp1 - - popa - - add ebx,1 - add esi,3*44 - - dec ecx - jnz dp0 - - popa - - ret - - -board_changed: - - pusha - - mov eax,0 - mov esi,chess_board - bcl1: - add eax,[esi] - add esi,4 - cmp esi,chess_board+19*80 - jb bcl1 - - cmp eax,[checksum] - je bcl2 - mov [changed],1 - bcl2: - mov [checksum],eax - - popa - - ret - - - -checksum dd 0 - -changed db 1 - -draw_board: - - pusha - - cmp [changed],1 - jne no_change_in_board - - mov [changed],0 - - mov eax,0 - mov ebx,0 - scan_board: - - push eax ebx - - mov esi,ebx - imul esi,2 - imul esi,80 - add esi,80 - - imul eax,4 - add eax,10 - - add esi,eax - - movzx edx,word [chess_board+esi] - cmp dx,[board_old+esi] - je empty_slot - - mov ecx,13 - newseek2: - mov edi,ecx - imul edi,8 - sub edi,8 - cmp dx,[edi+nappulat] - je foundnappula2 - loop newseek2 - - jmp empty_slot - - foundnappula2: - - mov esi,[edi+nappulat+4] - mov edi,0 - cmp dl,'*' - jne nnbb - mov edi,1 - nnbb: - mov eax,[esp+4] - mov ebx,[esp] - call draw_pawn - - empty_slot: - - pop ebx eax - - inc eax - cmp eax,8 - jb scan_board - mov eax,0 - inc ebx - cmp ebx,8 - jb scan_board - - mov esi,chess_board - mov edi,board_old - mov ecx,80*19 - cld - rep movsb - - mov eax,13 - mov ebx,[boardx] - sub ebx,14 - shl ebx,16 - add ebx,8 - mov ecx,[boardy] - shl ecx,16 - add ecx,46*8 - mov edx,[wcolor] - mcall - - mov eax,4 ; numbers at left - mov ebx,[boardx] - sub ebx,14 - shl ebx,16 - add ebx,[boardy] - add ebx,18 - mov ecx,[tcolor] - mov edx,chess_board+80+5 - mov esi,3 - db1: - mcall - add edx,80*2 - add ebx,[boardxs] - cmp edx,chess_board+80*16 - jb db1 - - mov eax,13 - mov ebx,[boardx] - shl ebx,16 - add ebx,8*46 - mov ecx,[boardys] - imul ecx,8 - add ecx,[boardy] - add ecx,8 - shl ecx,16 - add ecx,10 - mov edx,[wcolor] - mcall - - mov eax,4 ; letters at bottom - mov ebx,[boardx] - add ebx,3 - shl ebx,16 - mov bx,word [boardys] - imul bx,8 - add ebx,[boardy] - add ebx,8 - mov ecx,[tcolor] - mov edx,chess_board+80*17+8 - mov esi,4 - db3: - mcall - mov edi,[boardxs] - shl edi,16 - add ebx,edi - add edx,4 - cmp edx,chess_board+80*17+8+4*8 - jb db3 - - ; print player times - - mov edi,74 - cmp [chess_board+80+5],byte '1' - jne nowww2 - mov edi,371 - nowww2: - - mov eax,13 - mov ebx,(conx)*65536+100 - mov ecx,edi - shl ecx,16 - add ecx,10 - mov edx,[wcolor] - mcall - - mov eax,4 - mov ebx,(conx)*65536 - add ebx,edi - mov ecx,[tcolor] - mov edx,chess_board+80*7+59-1 - mov esi,20 - mcall - - mov edi,74 - cmp [chess_board+80+5],byte '1' - je nowww - mov edi,371 - nowww: - - mov eax,13 - mov ebx,(conx)*65536+100 - mov ecx,edi - shl ecx,16 - add ecx,10 - mov edx,[wcolor] - mcall - - mov eax,4 - mov ebx,(conx)*65536 - add ebx,edi - mov ecx,[tcolor] - mov edx,chess_board+80*9+59-1 - mov esi,20 - mcall - - ; move # - - mov eax,13 - mov ebx,conx*65536+120 - mov ecx,200*65536+10 - mov edx,[wcolor] - mcall - - mov eax,4 - mov ebx,conx*65536 - add ebx,200 - mov ecx,[tcolor] - mov edx,chess_board+80*1+46 - mov esi,30 - mcall - - no_change_in_board: - - popa - - ret - - -handle_data: - ; Telnet servers will want to negotiate options about our terminal window - ; just reject them all. - ; Telnet options start with the byte 0xff and are 3 bytes long. - - mov al, [telnetstate] - cmp al, 0 - je state0 - cmp al, 1 - je state1 - cmp al, 2 - je state2 - jmp hd001 - -state0: - cmp bl, 255 - jne hd001 - mov al, 1 - mov [telnetstate], al - ret - -state1: - mov al, 2 - mov [telnetstate], al - ret - -state2: - mov al, 0 - mov [telnetstate], al - mov [telnetrep+2], bl - - mov edx, 3 - mov eax,53 - mov ebx,7 - mov ecx,[socket] - mov esi, telnetrep - mcall - ret - -hd001: - cmp bl,13 ; BEGINNING OF LINE - jne nobol - mov ecx,[pos] - add ecx,1 - boll1: - sub ecx,1 - mov eax,ecx - xor edx,edx - mov ebx,80 - div ebx - cmp edx,0 - jne boll1 - mov [pos],ecx - - call check_for_board - - jmp newdata - nobol: - - cmp bl,10 ; LINE DOWN - jne nolf - addx1: - add [pos],dword 1 - mov eax,[pos] - xor edx,edx - mov ecx,80 - div ecx - cmp edx,0 - jnz addx1 - mov eax,[pos] - jmp cm1 - nolf: - - cmp bl,9 ; TAB - jne notab - add [pos],dword 8 - jmp newdata - notab: - - cmp bl,8 ; BACKSPACE - jne nobasp - mov eax,[pos] - dec eax - mov [pos],eax - mov [eax+text],byte 32 - mov [eax+text+60*80],byte 0 - jmp newdata - nobasp: - - cmp bl,15 ; CHARACTER - jbe newdata - mov eax,[pos] - mov [eax+text],bl - mov eax,[pos] - add eax,1 - cm1: - mov ebx,[scroll+4] - imul ebx,80 - cmp eax,ebx - jb noeaxz - mov esi,text+80 - mov edi,text - mov ecx,ebx - cld - rep movsb - mov eax,ebx - sub eax,80 - noeaxz: - mov [pos],eax - newdata: - ret - - - red: ; REDRAW WINDOW - call draw_window - jmp still - - key: ; KEY - mov eax,2 ; send to modem - mcall - - mov ebx, [socket_status] - cmp ebx, 4 ; connection open? - jne still ; no, so ignore key - - shr eax,8 - cmp eax,178 ; ARROW KEYS - jne noaup - mov al,'A' - call arrow - jmp still - noaup: - cmp eax,177 - jne noadown - mov al,'B' - call arrow - jmp still - noadown: - cmp eax,179 - jne noaright - mov al,'C' - call arrow - jmp still - noaright: - cmp eax,176 - jne noaleft - mov al,'D' - call arrow - jmp still - noaleft: - modem_out: - - call to_modem - - jmp still - - button: ; BUTTON - mov eax,17 - mcall - cmp ah,1 ; CLOSE PROGRAM - jne noclose - - mov eax,53 - mov ebx,8 - mov ecx,[socket] - mcall - - mov eax,-1 - mcall - noclose: - - cmp ah, 4 ; connect - jne notcon - - mov eax, [socket_status] - cmp eax, 4 - je still - call connect - - jmp still - -notcon: - cmp ah,5 ; disconnect - jne notdiscon - - call disconnect - jmp still - - notdiscon: - - jmp still - -arrow: - - push eax - mov al,27 - call to_modem - mov al,'[' - call to_modem - pop eax - call to_modem - - ret - - -to_modem: - pusha - push ax - mov [tx_buff], al - mov edx, 1 - cmp al, 13 - jne tm_000 - mov edx, 2 -tm_000: - mov eax,53 - mov ebx,7 - mov ecx,[socket] - mov esi, tx_buff - mcall - pop bx - mov al, [echo] - cmp al, 0 - je tm_001 - - push bx - call handle_data - pop bx - - cmp bl, 13 - jne tm_002 - - mov bl, 10 - call handle_data - -tm_002: - call draw_text - -tm_001: - popa - ret - - - -disconnect: - mov eax,53 - mov ebx,8 - mov ecx,[socket] - mcall - ret - - - -connect: - pusha - - mov ecx, 1000 ; local port starting at 1000 - -getlp: - inc ecx - push ecx - mov eax, 53 - mov ebx, 9 - mcall - pop ecx - cmp eax, 0 ; is this local port in use? - jz getlp ; yes - so try next - - mov eax,53 - mov ebx,5 - mov dl, [ip_address + 3] - shl edx, 8 - mov dl, [ip_address + 2] - shl edx, 8 - mov dl, [ip_address + 1] - shl edx, 8 - mov dl, [ip_address] - mov esi, edx - movzx edx, word [port] ; telnet port id - mov edi,1 ; active open - mcall - mov [socket], eax - - popa - - ret - - - -; ********************************************* -; ******* WINDOW DEFINITIONS AND DRAW ******** -; ********************************************* - - -draw_window: - - pusha - - mov eax,12 - mov ebx,1 - mcall - - mov eax,14 - mcall - - mov ebx,eax - mov ecx,eax - - shr ebx,16 - and ebx,0xffff - and ecx,0xffff - - shr ebx,1 - shr ecx,1 - - sub ebx,275 - sub ecx,235 - - shl ebx,16 - shl ecx,16 - - mov eax,0 ; DRAW WINDOW - mov bx,550 - mov cx,470 - mov edx,[wcolor] - add edx,0x14000000 - mov edi,title - mcall - - call display_status - - mov eax,8 ; BUTTON 4: Connect - mov ebx,conx*65536+80 - mov ecx,cony*65536+15 - mov esi,[wbutton] - mov edx,4 - mcall - mov eax,4 ; Button text - mov ebx,(conx+4)*65536+cony+4 - mov ecx,0xffffff - mov edx,cont - mov esi,conlen-cont - mcall - - - mov eax,8 ; BUTTON 5: disconnect - mov ebx,dconx*65536+80 - mov ecx,dcony*65536+15 - mov edx,5 - mov esi,[wbutton] - mcall - mov eax,4 ; Button text - mov ebx,(dconx+4)*65536+dcony+4 - mov ecx,0x00ffffff - mov edx,dist - mov esi,dislen-dist - mcall - - - xor eax,eax - mov edi,text+80*30 - mov ecx,80*30 /4 - cld - rep stosd - - call draw_text - - mov [changed],1 - - mov edi,board_old - mov ecx,80*19 - mov al,0 - cld - rep stosb - - mov eax,4 - mov ebx,conx*65536+52 - mov ecx,[tcolor] - mov edx,quick_start - mov esi,30 - - prqs: - - mcall - add ebx,10 - add edx,30 - cmp [edx],byte 'x' - jne prqs - - mov eax,12 - mov ebx,2 - mcall - - popa - - ret - - -display_status: - - pusha - - ; draw status bar - mov eax, 13 - mov ebx, statusx*65536+80 - mov ecx, statusy*65536 + 16 - mov edx, [wcolor] - mcall - - mov esi,contlen-contt ; display connected status - mov edx, contt - mov eax, [socket_status] - cmp eax, 4 ; 4 is connected - je pcon - mov esi,discontlen-discontt - mov edx, discontt - pcon: - mov eax,4 ; status text - mov ebx,statusx*65536+statusy+2 - mov ecx,[tcolor] - mcall - - popa - ret - - -nappulat: - - dd '*P ',5 - dd '*K ',3 - dd '*Q ',4 - dd '*R ',0 - dd '*N ',1 - dd '*B ',2 - - dd ' ',20 - - dd 'P ',5 - dd 'K ',3 - dd 'Q ',4 - dd 'R ',0 - dd 'N ',1 - dd 'B ',2 - - -row dd 0x0 -col dd 0x0 - - - -draw_text: - - mov esi,text+80*24 - mov edi,texts+80*3 - - dtl1: - - cmp [esi],dword 'logi' - je add_text - cmp [esi],dword 'aics' - je add_text - cmp [esi],dword 'You ' - je add_text - cmp [esi],dword 'Your' - je add_text - cmp [esi],dword 'Game' - je add_text - cmp [esi],dword 'Ille' - je add_text - cmp [esi],dword 'No s' - je add_text - - sub esi,80 - cmp esi,text - jge dtl1 - - dtl2: - - mov eax,13 - mov ebx,10*65536+532 - mov ecx,420*65536+40 - mov edx,[wtcom] - mcall - - mov eax,4 - mov ebx,10*65536+420 - mov ecx,[wtxt] - mov edx,texts - mov esi,80 - - dtl3: - - mcall - add edx,80 - add ebx,10 - cmp edx,texts+4*80 - jb dtl3 - - ret - - add_text: - - pusha - - cld - mov ecx,80 - rep movsb - - popa - - - sub esi,80 - sub edi,80 - - cmp edi,texts - jb dtl2 - - jmp dtl1 - - -read_string: - - mov edi,string - mov eax,'_' - mov ecx,[string_length] - inc ecx - cld - rep stosb - call print_text - - mov edi,string - f11: - mov eax,10 - mcall - cmp eax,2 - jne read_done - mov eax,2 - mcall - shr eax,8 - cmp eax,13 - je read_done - cmp eax,8 - jnz nobsl - cmp edi,string - jz f11 - sub edi,1 - mov [edi],byte '_' - call print_text - jmp f11 - nobsl: - cmp eax,dword 31 - jbe f11 - cmp eax,dword 95 - jb keyok - sub eax,32 - keyok: - mov [edi],al - call print_text - - inc edi - mov esi,string - add esi,[string_length] - cmp esi,edi - jnz f11 - - read_done: - - call print_text - - ret - - -print_text: - - pusha - - mov eax,13 - mov ebx,[string_x] - shl ebx,16 - add ebx,[string_length] - imul bx,6 - mov ecx,[string_y] - shl ecx,16 - mov cx,8 - mov edx,[wcolor] - mcall - - mov eax,4 - mov ebx,[string_x] - shl ebx,16 - add ebx,[string_y] - mov ecx,[tcolor] - mov edx,string - mov esi,[string_length] - mcall - - popa - ret - - - - -; DATA AREA - -telnetrep db 0xff,0xfc,0x00 -telnetstate db 0 - -string_length dd 16 -string_x dd 200 -string_y dd 60 - -string db '________________' - -tx_buff db 0, 10 -ip_address db 204,178,125,65 -port dw 5051 ; 0,0 -echo db 1 -socket dd 0x0 -socket_status dd 0x0 -pos dd 80 * 22 -scroll dd 1 - dd 24 - -wbutton dd 0x336688 - -wtcom dd 0x336688 ; 0x666666 -wtxt dd 0xffffff - -wcolor dd 0xe0e0e0 -tcolor dd 0x000000 - -sq_black dd 0x336688 ; 666666 -sq_white dd 0xffffff - -title db appname,version,0 - -setipt db ' . . .' -setiplen: -setportt db ' ' -setportlen: -cont db 'Connect' -conlen: -dist db 'Disconnect' -dislen: -contt db 'Connected' -contlen: -discontt db 'Disconnected' -discontlen: -echot db 'Echo On' -echolen: -echoot db 'Echo Off' -echoolen: - -quick_start: - - db '( OPPONENT ) ' - - times 16 db ' 1' - - db 'Quick start: ' - db ' ' - db '1 Connect ' - db '2 login: "guest" ' - db '3 aics% "seek 10 0" ' - db ' (for a player) ' - db ' (wait) ' - db '4 Play eg. "e7e5" ' - db ' or "d2d4" ' - db '5 aics% "resign" ' - db ' (quit game) ' - db '6 Disconnect ' - - times 5 db ' ' - - db '( YOU ) ' - - db 'x' - - -chess_board: - - times 80 db 0 - - db ' 8 *R *N *B *Q *K *B *N *R' - db ' ' - - times 80 db 0 - - db ' 7 *P *P *P *P *P *P *P *P' - db ' ' - - times 80 db 0 - - db ' 6 ' - db ' ' - - times 80 db 0 - - db ' 5 ' - db ' ' - - times 80 db 0 - - db ' 4 ' - db ' ' - - times 80 db 0 - - db ' 3 ' - db ' ' - - times 80 db 0 - - db ' 2 P P P P P P P P ' - db ' ' - - times 80 db 0 - - db ' 1 R N B Q K B N R ' - db ' ' - - times 80 db 0 - - db ' a b c d e f g h ' - db ' ' - - - times 80*20 db 0 - -chess_bmp: - file 'chess.bmp':22*3+4+24*2 - -board_old: - - -I_END: diff --git a/programs/network_old/chess/trunk/chess.bmp b/programs/network_old/chess/trunk/chess.bmp deleted file mode 100644 index 2905974048..0000000000 Binary files a/programs/network_old/chess/trunk/chess.bmp and /dev/null differ diff --git a/programs/network_old/https/trunk/build_en.bat b/programs/network_old/https/trunk/build_en.bat deleted file mode 100644 index 1997419176..0000000000 --- a/programs/network_old/https/trunk/build_en.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix en >lang.inc -@fasm https.asm https -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/https/trunk/build_ru.bat b/programs/network_old/https/trunk/build_ru.bat deleted file mode 100644 index 1415b5a823..0000000000 --- a/programs/network_old/https/trunk/build_ru.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix ru >lang.inc -@fasm https.asm https -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/https/trunk/https.asm b/programs/network_old/https/trunk/https.asm deleted file mode 100644 index 9ae60e8037..0000000000 --- a/programs/network_old/https/trunk/https.asm +++ /dev/null @@ -1,1362 +0,0 @@ -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -; ; -; Tiny HTTP Server v 0.5 for KolibriOS ; -; ; -; License GPL / See file COPYING for details. ; -; Copyright 2003 Ville Turjanmaa ; -; ; -; Compile with FASM for Menuet/KolibriOS ; -; ; -; Request /TinyStat for server statistics ; -; Request /TinyBoard for server message board ; -; ; -; Special version for KoOS by Hex && Heavyiron ; -; ; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -appname equ 'Kolibri HTTP Server ' -version equ '0.6' - -use32 - - org 0x0 - - db 'MENUET01' ; 8 byte id - dd 0x01 ; required os - dd START ; program start - dd I_END ; program image size - dd 0x400000 ; required amount of memory - dd 0x20000 - dd 0,0 ; reserved=no extended header - -include "macros.inc" - -; 0x0+ - program image -; 0x1ffff - stack -; 0x20000+ - message board -; 0x100000+ - requested file - -filel: - dd 0 - dd 0 - dd 0 - dd 50000 - dd 0x20000 - db '/sys/board.htm',0 - -files: - dd 2 - dd 0 - dd 0 - dd 0 - dd 0x20000 - db '/sys/board.htm',0 - - -START: ; start of execution - - mov eax,70 - mov ebx,filel - mcall - mov [board_size],ebx - cmp eax,0 - je board_found - - mov [board_size],board_end-board - mov esi,board - mov edi,0x20000 - mov ecx,[board_size] - cld - rep movsb - - board_found: - - mov eax,70 - mov ebx,files - mov ecx,[board_size] - mov [files+12],ecx - mcall - - mov [status],-1 - mov [last_status],-2 - call clear_input -red: - call draw_window ; at first, draw the window - -still: - - call check_status - cmp [status],4 - je start_transmission - - cmp [status],0 - jne nnn - cmp [server_active],1 - jne nnn - call ops - nnn: - - mov eax,5 - mov ebx,1 - mcall - - mov eax,11 - mcall - call check_events - - jmp still - -last_status dd 0x0 - -check_events: - - cmp eax,1 ; redraw request ? - jz red - cmp eax,2 ; key in buffer ? - jz key - cmp eax,3 ; button in buffer ? - jz button - - ret - -key: ; Keys are not valid at this part of the - mov al,2 ; loop. Just read it and ignore - mcall - ret - -button: ; button - - mov al,17 ; get id - mcall - - cmp ah,1 ; close - jnz tst2 - mov eax,53 - mov ebx,8 - mov ecx,[socket] - mcall - mov eax,-1 - mcall - tst2: - - cmp ah,2 ; button id=2 ? - jnz tst3 - ; open socket - ops: - mov eax,53 - mov ebx,5 - mov ecx,80 ; local port # - http - mov edx,0 ; no remote port specified - mov esi,0 ; no remote ip specified - mov edi,0 ; PASSIVE open - mcall - mov [socket], eax - mov [posy],1 - mov [posx],0 - call check_for_incoming_data - call clear_input - call draw_data - mov [server_active],1 - call check_status - ret - tst3: - cmp ah,4 ; button id=4 ? - jnz no4 - mov [server_active],0 - close_socket: - mov eax,53 - mov ebx,8 - mov ecx,[socket] - mcall - mov eax,5 - mov ebx,2 - mcall - mov eax,53 - mov ebx,8 - mov ecx,[socket] - mcall - - cmp [server_active],1 - jne no_re_open - mov eax,53 - mov ebx,5 - mov ecx,80 ; local port # - http - mov edx,0 ; no remote port specified - mov esi,0 ; no remote ip specified - mov edi,0 ; PASSIVE open - mcall - mov [socket], eax - no_re_open: - - mov edi,input_text+256*15+1 - mov [edi+2],dword ': :' - call set_time - mov edi,input_text+256*16+1 - mov [edi+2],dword '. .' - call set_date - - mov eax,[documents_served] - mov ecx,9 - mov edi,input_text+256*15+12 - call set_value - - mov eax,[bytes_transferred] - mov ecx,9 - mov edi,input_text+256*16+12 - call set_value - - call draw_data - - mov esp,0x1ffff - jmp still - no4: - - cmp ah,6 ; read directory - je read_string - - ret - - -clear_input: - - mov edi,input_text - mov eax,0 - mov ecx,256*30 - cld - rep stosb - - ret - - -retries dd 50 - -start_transmission: - - mov [posy],1 - mov [posx],0 - call clear_input - mov [retries],50 - - wait_for_data: - call check_for_incoming_data - cmp [input_text+256+1],dword 'GET ' - je data_received - cmp [input_text+256+1],dword 'POST' - je data_received - mov eax,5 - mov ebx,1 - mcall - dec [retries] - jnz wait_for_data - jmp no_http_request - data_received: - - mov eax,0x100000 - mov ebx,0x2f0000 / 512 - call read_file - - call wait_for_empty_slot - call send_header - - mov [filepos],0x100000 - mov [fileadd],700 - - call check_status - call draw_data - - newblock: - - call wait_for_empty_slot - - mov edx,[fileadd] - cmp edx,[file_left] - jbe file_size_ok - mov edx,[file_left] - file_size_ok: - sub [file_left],edx - - ; write to socket - mov eax,53 - mov ebx,7 - mov ecx,[socket] - mov esi,[filepos] - mcall - - mov eax,esi - add eax,edx - sub eax,0x100000 - call display_progress - - mov edx,[fileadd] - add [filepos],edx - - cmp [file_left],0 - jg newblock - - no_http_request: - - jmp close_socket - - -filepos dd 0x100000 -fileadd dd 0x1 -filesize dd 0x0 -file_left dd 0x0 - - -wait_for_empty_slot: - - pusha - - wait_more: - - mov eax,5 - mov ebx,1 - mcall - - mov eax,11 - mcall - call check_events - - mov eax,53 - mov ebx,255 - mov ecx,103 - mcall - - cmp eax,0 - je no_wait_more - - jmp wait_more - - no_wait_more: - - popa - ret - - - - -display_progress: - - pusha - - mov edi,eax - - mov eax,13 - mov ebx,115*65536+8*6 - mov ecx,178*65536+10 - mov edx,0xffffff - mcall - - mov eax,47 - mov ebx,8*65536 - mov ecx,edi - mov edx,115*65536+178 - mov esi,0x000000 - mcall - - popa - ret - - -send_header: - - pusha - - mov eax,53 ; send response and file length - mov ebx,7 - mov ecx,[socket] - mov edx,h_len-html_header - mov esi,html_header - mcall - - mov eax,53 ; send file type - mov ebx,7 - mov ecx,[socket] - mov edx,[type_len] - mov esi,[file_type] - mcall - - popa - ret - -fileinfo dd 0 - dd 0 - dd 0 - dd 512 - dd 0x100000 -getf db '/sys/' - times 50 db 0 -wanted_file: times 100 db 0 - -getflen dd 6 - -make_room: - - pusha - - mov edx,ecx - - mov esi,0x20000 - add esi,[board_size] - mov edi,esi - add edi,edx - mov ecx,[board_size] - sub ecx,board1-board - inc ecx - std - rep movsb - cld - - popa - ret - - -from_i dd 0x0 -from_len dd 0x0 - -message dd 0x0 -message_len dd 0x0 - -read_file: ; start of execution - - mov [fileinfo+16],eax - shl ebx, 9 - mov [fileinfo+12],ebx - mov [file_type],unk - mov [type_len],unkl-unk - mov [filename+40*2+6],dword 'UNK ' - - cmp [input_text+256+1],dword 'POST' - je yes_new_message - - cmp [input_text+256+11],dword 'oard' ; server board message - jne no_server_message_2 - - yes_new_message: - - mov eax,70 - mov ebx,filel - mcall - mov [board_size],ebx - - cmp [input_text+256+1],dword 'POST' - jne no_new_message - - mov edi,bsmt - call set_time - mov edi,bsmd - call set_date - - call check_for_incoming_data - - mov esi,input_text+256 ; from - newfroms: - inc esi - cmp esi,input_text+256*20 - je no_server_message_2 - cmp [esi],dword 'from' - jne newfroms - - add esi,5 - mov [from_i],esi - - mov edx,0 - name_new_len: - cmp [esi+edx],byte 13 - je name_found_len - cmp [esi+edx],byte '&' - je name_found_len - cmp edx,1000 - je name_found_len - inc edx - jmp name_new_len - - name_found_len: - - mov [from_len],edx - - mov esi,input_text+256 - newmessages: - inc esi - cmp esi,input_text+256*20 - je no_server_message_2 - cmp [esi],dword 'sage' - jne newmessages - - add esi,5 - mov [message],esi - - mov edx,0 - new_len: - inc edx - cmp [esi+edx],byte ' ' - je found_len - cmp [esi+edx],byte 13 - jbe found_len - cmp edx,input_text+5000 - je found_len - jmp new_len - found_len: - mov [message_len],edx - - - mov edx,0 - - change_letters: - - cmp [esi+edx],byte '+' - jne no_space - mov [esi+edx],byte ' ' - no_space: - - cmp [esi+edx+1],word '0D' - jne no_br - mov [esi+edx],dword '
' - mov [esi+edx+4],word ' ' - no_br: - - cmp [esi+edx],byte '%' - jne no_ascii - movzx eax,byte [esi+edx+2] - sub eax,48 - cmp eax,9 - jbe eax_ok - sub eax,7 - eax_ok: - movzx ebx,byte [esi+edx+1] - sub ebx,48 - cmp ebx,9 - jbe ebx_ok - sub ebx,7 - ebx_ok: - imul ebx,16 - add ebx,eax - mov [esi+edx],bl - mov [esi+edx+1],word '' - add edx,2 - no_ascii: - - inc edx - cmp edx,[message_len] - jbe change_letters - - - mov edx,board1e-board1 + board2e-board2 + board3e-board3 - add edx,[from_len] - add edx,[message_len] - - add [board_size],edx - - mov ecx,edx - call make_room - - - mov esi,board1 ; first part - mov edi,0x20000 - add edi,board1-board - mov ecx,edx - cld - rep movsb - - mov esi,[from_i] ; name - mov edi,0x20000 - add edi,board1-board - add edi,board1e-board1 - mov ecx,[from_len] - cld - rep movsb - - mov esi,board2 ; middle part - mov edi,0x20000 - add edi,board1-board + board1e-board1 - add edi,[from_len] - mov ecx,board2e-board2 - cld - rep movsb - - mov esi,[message] ; message - mov edi,0x20000 - add edi,board1-board + board1e-board1 + board2e-board2 - add edi,[from_len] - mov ecx,[message_len] - cld - rep movsb - - mov esi,board3 ; end part - mov edi,0x20000 - add edi,board1-board + board1e-board1 + board2e-board2 - add edi,[from_len] - add edi,[message_len] - mov ecx,board3e-board3 - cld - rep movsb - - inc [board_messages] - - mov eax,[board_size] - mov [files+12],eax - - mov eax,70 - mov ebx,files - mcall - - no_new_message: - mov esi,0x20000 - mov edi,0x100000 - mov ecx,[board_size] - cld - rep movsb - mov ebx,[board_size] - - mov [file_type],htm - mov [type_len],html-htm - mov [filename+40*2+6],dword 'HTM ' - - jmp file_loaded - no_server_message_2: - - cmp [input_text+256+9],dword 'ySta' ; server message - jne no_server_message_1 - mov edi,smt - call set_time - mov edi,smd - call set_date - mov eax,[documents_served] - mov ecx,9 - mov edi,sms+21 - call set_value - mov eax,[bytes_transferred] - mov ecx,9 - mov edi,smb+21 - call set_value - mov eax,[board_messages] - mov ecx,9 - mov edi,smm+21 - call set_value - mov eax,[board_size] - mov ecx,9 - mov edi,smz+21 - call set_value - mov esi,sm - mov edi,0x100000 - mov ecx,sme-sm - cld - rep movsb - mov ebx,sme-sm - - mov [file_type],htm - mov [type_len],html-htm - mov [filename+40*2+6],dword 'HTM ' - - jmp file_loaded - no_server_message_1: - - mov esi,input_text+256+6 - cmp [input_text+256+1],dword 'GET ' - jne no_new_let - mov edi,wanted_file - cld - new_let: - cmp [esi],byte ' ' - je no_new_let - cmp edi,wanted_file+30 - jge no_new_let - movsb - jmp new_let - no_new_let: - mov [edi+0],dword 0 - mov [edi+4],dword 0 - mov [edi+8],dword 0 - - cmp esi,input_text+256+6 - jne no_index - mov edi,wanted_file - mov [edi+0],dword 'inde' - mov [edi+4],dword 'x.ht' - mov [edi+8],byte 'm' - mov [edi+9],byte 0 - add edi,9 - - mov [file_type],htm - mov [type_len],html-htm - mov [filename+40*2+6],dword 'HTM ' - - jmp html_file - no_index: - - cmp [edi-3],dword 'htm'+0 - je htm_header - cmp [edi-3],dword 'HTM'+0 - je htm_header - jmp no_htm_header - htm_header: - mov [file_type],htm - mov [type_len],html-htm - mov [filename+40*2+6],dword 'HTM ' - jmp found_file_type - no_htm_header: - - cmp [edi-3],dword 'png'+0 - je png_header - cmp [edi-3],dword 'PNG'+0 - je png_header - jmp no_png_header - png_header: - mov [file_type],png - mov [type_len],pngl-png - mov [filename+40*2+6],dword 'PNG ' - jmp found_file_type - no_png_header: - - cmp [edi-3],dword 'gif'+0 - je gif_header - cmp [edi-3],dword 'GIF'+0 - je gif_header - jmp no_gif_header - gif_header: - mov [file_type],gif - mov [type_len],gifl-gif - mov [filename+40*2+6],dword 'GIF ' - jmp found_file_type - no_gif_header: - - cmp [edi-3],dword 'jpg'+0 - je jpg_header - cmp [edi-3],dword 'JPG'+0 - je jpg_header - jmp no_jpg_header - jpg_header: - mov [file_type],jpg - mov [type_len],jpgl-jpg - mov [filename+40*2+6],dword 'JPG ' - jmp found_file_type - no_jpg_header: - - cmp [edi-3],dword 'asm'+0 - je txt_header - cmp [edi-3],dword 'ASM'+0 - je txt_header - cmp [edi-3],dword 'txt'+0 - je txt_header - cmp [edi-3],dword 'TXT'+0 - je txt_header - jmp no_txt_header - txt_header: - mov [file_type],txt - mov [type_len],txtl-txt - mov [filename+40*2+6],dword 'TXT ' - jmp found_file_type - no_txt_header: - - html_file: - - found_file_type: - - mov edi,getf - add edi,[getflen] - mov esi,wanted_file - mov ecx,40 - cld - rep movsb - - mov esi,getf - mov edi,filename - mov ecx,35 - cld - rep movsb - - mov [fileinfo+12],dword 1 ; file exists ? - mov eax,70 - mov ebx,fileinfo - mcall - - cmp eax,0 ; file not found - message - je file_found - mov edi,et - call set_time - mov edi,ed - call set_date - mov esi,fnf - mov edi,0x100000 - mov ecx,fnfe-fnf - cld - rep movsb - mov ebx,fnfe-fnf - - mov [file_type],htm - mov [type_len],html-htm - mov [filename+40*2+6],dword 'HTM ' - - jmp file_not_found - - file_found: - - mov [fileinfo+12],dword 0x2f0000 ; read all of file - mov eax,70 - mov ebx,fileinfo - mcall - - file_not_found: - file_loaded: - - and ebx,0x3fffff - mov [filesize],ebx - mov [file_left],ebx - - mov eax,ebx - mov edi,c_l+5 - mov ebx,10 - newl: - xor edx,edx - div ebx - mov ecx,edx - add cl,48 - mov [edi],cl - dec edi - cmp edi,c_l - jge newl - - mov esi,c_l - mov edi,filename+46 - mov ecx,7 - cld - rep movsb - - inc [documents_served] - mov eax,[filesize] - add [bytes_transferred],eax - - call draw_data - - ret - - -set_value: - - pusha - - add edi,ecx - mov ebx,10 - new_value: - xor edx,edx - div ebx - add dl,48 - mov [edi],dl - dec edi - loop new_value - - popa - ret - - -set_time: - - pusha - - mov eax,3 - mcall - - mov ecx,3 - new_time_digit: - mov ebx,eax - and ebx,0xff - shl ebx,4 - shr bl,4 - add bx,48*256+48 - mov [edi],bh - mov [edi+1],bl - add edi,3 - shr eax,8 - loop new_time_digit - - popa - ret - - - -set_date: - - pusha - - mov eax,29 - mcall - - mov ecx,3 - add edi,6 - new_date_digit: - mov ebx,eax - and ebx,0xff - shl ebx,4 - shr bl,4 - add bx,48*256+48 - mov [edi],bh - mov [edi+1],bl - sub edi,3 - shr eax,8 - loop new_date_digit - - popa - ret - - - -check_for_incoming_data: - - pusha - - check: - - mov eax, 53 - mov ebx, 2 - mov ecx, [socket] - mcall - - cmp eax,0 - je _ret_now - - new_data: - - mov eax,53 - mov ebx,2 - mov ecx,[socket] - mcall - - cmp eax,0 - je _ret - - mov eax,53 - mov ebx,3 - mov ecx,[socket] - mcall - - cmp bl,10 - jne no_lf - inc [posy] - mov [posx],0 - jmp new_data - no_lf: - - cmp bl,20 - jb new_data - - inc [posx] - cmp [posy],20 - jbe yok - mov [posy],1 - yok: - - mov eax,[posy] - imul eax,256 - add eax,[posx] - - mov [input_text+eax],bl - - jmp new_data - - _ret: - - call draw_data - - mov eax,5 - mov ebx,1 - cmp [input_text+256+1],dword 'POST' - jne no_ld - mov ebx,50 - no_ld: - mcall - - jmp check - - _ret_now: - - popa - ret - - -posy dd 1 -posx dd 0 - - -check_status: - - pusha - - mov eax,53 - mov ebx,6 - mov ecx,[socket] - mcall - - cmp eax,[status] - je c_ret - mov [status],eax - add al,48 - mov [text+12],al - call draw_data - c_ret: - - popa - ret - - -addr dd 0x0 -ya dd 0x0 - -filename2: times 100 db 32 - -read_string: - - mov [addr],dword getf - mov [ya],dword 139 - - mov edi,[addr] - mov eax,0 - mov ecx,30 - cld - rep stosb - - call print_text - - mov edi,[addr] - - f11: - mov eax,10 - mcall - cmp eax,2 - jne read_done - mov eax,2 - mcall - shr eax,8 - cmp eax,13 - je read_done - cmp eax,8 - jnz nobsl - cmp edi,[addr] - jz f11 - sub edi,1 - mov [edi],byte 32 - call print_text - jmp f11 - nobsl: - mov [edi],al - - call print_text - - add edi,1 - mov esi,[addr] - add esi,30 - cmp esi,edi - jnz f11 - - read_done: - - push edi - - mov ecx,40 - mov eax,32 - cld - rep stosb - - call print_text - - pop edi - sub edi,[addr] - mov [getflen],edi - - mov esi,getf - mov edi,dirp+12 - mov ecx,28 - cld - rep movsb - - jmp still - - -print_text: - - pusha - - mov eax,4 - mov edx,[addr] - mov ebx,97*65536 - add ebx,[ya] - mov ecx,0x40000000 - mov esi,23 - mov edi,0xffffff - mcall - - popa - ret - - -; ********************************************* -; ******* WINDOW DEFINITIONS AND DRAW ******** -; ********************************************* - - -draw_window: - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,1 ; 1, start of draw - mcall - - ; DRAW WINDOW - mov eax,0 ; function 0 : define and draw window - mov ebx,100*65536+480 ; [x start] *65536 + [x size] - mov ecx,100*65536+215 ; [y start] *65536 + [y size] - mov edx,0x14ffffff ; color of work area RRGGBB - mov edi,title ; WINDOW LABEL - mcall - - mov eax,8 ; function 8 : define and draw button - mov ebx,(40)*65536+20 ; [x start] *65536 + [x size] - mov ecx,59*65536+9 ; [y start] *65536 + [y size] - mov edx,2 ; button id - mov esi,0x66aa66 ; button color RRGGBB - mcall - - ; function 8 : define and draw button - mov ebx,(40)*65536+20 ; [x start] *65536 + [x size] - mov ecx,72*65536+9 ; [y start] *65536 + [y size] - mov edx,4 ; button id - mov esi,0xaa6666 ; button color RRGGBB - mcall - - ; Enter directory - mov ebx,(25)*65536+66 - mov ecx,135*65536+15 - mov edx,6 - mov esi,0x3388dd - mcall - - mov eax,38 - mov ebx,240*65536+240 - mov ecx,22*65536+210 - mov edx,0x6699cc ; 002288 - mcall - - - mov ebx,241*65536+241 - mov ecx,22*65536+210 - mov edx,0x336699 ; 002288 - mcall - - call draw_data - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,2 ; 2, end of draw - mcall - - ret - - -draw_data: - - pusha - - mov ebx,25*65536+35 ; draw info text with function 4 - mov ecx,0x000000 - mov edx,text - mov esi,35 - newline: - pusha - cmp ebx,25*65536+61 - je now - cmp ebx,25*65536+74 - je now - cmp ebx,25*65536+74+13*5 - je now - mov ecx,ebx - mov bx,35*6 - shl ecx,16 - mov cx,9 - mov edx,0xffffff - mov eax,13 - mcall - now: - popa - mov eax,4 - mcall - add ebx,13 - add edx,40 - cmp [edx],byte 'x' - jnz newline - - mov [input_text+0],dword 'RECE' - mov [input_text+4],dword 'IVED' - mov [input_text+8],dword ': ' - - mov ebx,255*65536+35 ; draw info text with function 4 - mov ecx,0x000000 - mov edx,input_text - mov esi,35 - mov edi,17 - newline2: - pusha - mov ecx,ebx - mov bx,35*6 - shl ecx,16 - mov cx,9 - mov eax,13 - mov edx,0xffffff - mcall - popa - mov eax,4 - mcall - add ebx,10 - add edx,256 - dec edi - jnz newline2 - - popa - - ret - - -; DATA AREA - -status dd 0x0 - -text: - db 'TCB status: x ' - db ' ' - db ' Activate server ' - db ' Stop server ' - db ' ' - db 'Requests: /TinyStat -statistics ' - db ' /TinyBoard -message board ' - db ' ' -dirp: - db ' Files: /sys/ ' - db ' ' -filename: - db ' ' - db 'Size: ------- ' - db 'Type: --- ' - db 'x' ; <- END MARKER, DONT DELETE - - -html_header: - - db 'HTTP/1.0 200 OK',13,10 - db 'Server: KolibriOS HTTP Server',13,10 - db 'Content-Length: ' -c_l: db '000000',13,10 - -h_len: - -fnf: - db '' - db '
'
-     db  "HTTP-Сервер v ",version," для KolibriOS",13,10,13,10
-     db  "

Error 404 - File not found

",13,10,13,10 - db "Для получения статистики выполните запрос /TinyStat",13,10,13,10 -et: db "xx:xx:xx",13,10 -ed: db "xx.xx.xx",13,10 - db "
" -fnfe: - - -sm: - db '' - db '
'
-     db  "HTTP-Сервер v ",version," для KolibriOS",13,10,13,10
-     db  "Статистика: (после данного запроса)",13,10,13,10
-sms: db  "- Документов принято: xxxxxxxxx",13,10
-smb: db  "- Байт переданно    : xxxxxxxxx",13,10
-     db  "- Местонахождение   : Статистика",13,10,13,10
-     db  "Гостевая:",13,10,13,10
-smm: db  "- Сообщений         : xxxxxxxxx",13,10
-smz: db  "- Размер в байтах   : xxxxxxxxx",13,10
-     db  "- Местонахождение   : Гостевая",13,10,13,10
-smt: db  "xx:xx:xx",13,10
-smd: db  "xx.xx.xx",13,10
-     db  '
' -sme: - -documents_served dd 0x0 -bytes_transferred dd 0x0 - -file_type dd 0 -type_len dd 0 - -htm: db 'Content-Type: text/html',13,10,13,10 -html: -txt: db 'Content-Type: text/plain',13,10,13,10 -txtl: -png: db 'Content-Type: image/png',13,10,13,10 -pngl: -gif: db 'Content-Type: image/gif',13,10,13,10 -gifl: -jpg: db 'Content-Type: image/jpeg',13,10,13,10 -jpgl: -unk: db 'Content-Type: unknown/unknown',13,10,13,10 -unkl: - - -title db appname,version,0 - -socket dd 0x0 -server_active db 0x0 - -board: - -db "INTKolibriOS - /Гостевая/",13,10 -db "
",13,10 -db "
",13,10 -db "" -db 13,10 -db "
",13,10 -db "Гостевая сервера INTKolibriOS

",13,10 -db "" -db 13,10,13,10 - -board1: - -db "",13,10 -db "",13,10 -db "",13,10,13,10 -board3e: - -boardadd: - -db "

",13,10 -db "",13,10 -board1e: -db "Hex",13,10 -board2: -db "",13,10 -db "


",13,10 -db "



",13,10 -bsmt: -db "15.23.45
",13,10 -bsmd: -db "22.03.06",13,10 -db "

",13,10 -board2e: -db "Добро пожаловать в гостевую сервера INTKolibriOS! (-:
" -db 13,10 -board3: -db "

",13,10 -db "
",13,10 -db "" -db 13,10 -db "",13,10 -db "",13,10 -db "

",13,10 -db "

",13,10 -db "Имя:

",13,10 -db "Сообщение:

",13,10 -db "
",13,10 -db "
",13,10 -db "",13,10 -db "",13,10 - -board_end: - -board_size dd 0x0 -board_messages dd 0x0 - -input_text: - -I_END: \ No newline at end of file diff --git a/programs/network_old/icq/trunk/2000.inc b/programs/network_old/icq/trunk/2000.inc deleted file mode 100644 index 7ee68a2423..0000000000 --- a/programs/network_old/icq/trunk/2000.inc +++ /dev/null @@ -1,160 +0,0 @@ -; constants -FLAP_HEAD_SIZE = 6 -SNAC_HEAD_SIZE = 10 - -;AUTH_MESSAGE = 0008h -;USER_ADDED_MESS = 000Ch -;AUTH_REQ_MESS = 0006h -;URL_MESS = 0004h -;WEB_MESS = 000dh -;EMAIL_MESS = 000eh -;MASS_MESS_MASK = 8000h -;MRURL_MESS = 8004h -;NORM_MESS = 0001h -;MRNORM_MESS = 8001h -;CONTACT_MESS = 0013h -;MRCONTACT_MESS = 8013h -; -; -; -;CAP_PRECAP = "\x09\x46\x13" -;CAP_PRERTF = "\x97\xb1\x27" -;CAP_POSCAP = "\x4c\x7f\x11\xd1\x82\x22\x44\x45\x53\x54\x00\x00" -;CAP_POSRTF = "\x24\x3c\x43\x34\xad\x22\xd6\xab\xf7\x3f\x14\x92" - -; -;Fingerprinting Capabilities -; -;CAP_M2001 = "\x2e\x7a\x64" "\x75" "\xfa\xdf\x4d\xc8\x88\x6f\xea\x35\x95\xfd\xb6\xdf" -;CAP_M2001_2 = "\xa0\xe9\x3f" "\x37" "\x4f\xe9\xd3\x11\xbc\xd2\x00\x04\xac\x96\xdd\x96" -;CAP_M2002 = "\x10\xcf\x40" "\xd1" "\x4f\xe9\xd3\x11\xbc\xd2\x00\x04\xac\x96\xdd\x96" -;CAP_MLITE = "\x56\x3f\xc8" "\x09" "\x0b\x6f\x41\xbd\x9f\x79\x42\x26\x09\xdf\xa2\xf3" -;CAP_SIMICQ = "\x97\xb1\x27" "\x51" "\x24\x3c\x43\x34\xad\x22\xd6\xab\xf7\x3f\x14\x48" -;CAP_MICQ = "mICQ \xa9 R.K. \x00\x00\x00\x00" -;CAP_TRILL_NORM = "\x97\xb1\x27" "\x51" "\x24\x3c\x43\x34\xad\x22\xd6\xab\xf7\x3f\x14\x09" -;CAP_TRILL_CRYPT= "\xf2\xe7\xc7" "\xf4" "\xfe\xad\x4d\xfb\xb2\x35\x36\x79\x8b\xdf\x00\x00" -;CAP_LICQ = "\x09\x49\x13" - -; -;DC Packet Types -; -;PEER_INIT = 0ffh -;PEER_INITACK = 01h -;PEER_MSG = 02h -;PEER_INIT2 = 03h -;PEER_FILE_INIT = 00h -;PEER_FILE_INIT_ACK = 01h -;PEER_FILE_START = 02h -;PEER_FILE_START_ACK = 03h -;PEER_FILE_STOP = 04h -;PEER_FILE_SPEED = 05h -;PEER_FILE_DATA = 06h - - -ICQ_PORT = 5190 -; -; FLAP transport -; -FLAP_ID = 02ah - -struc FLAP_head -{ - .bId db FLAP_ID ;id byte - .bCh db ? ;channel - .wSn dw ? ;seq number - .wDs dw ? ;data size -} -; -; Channels ID -; - -NEW_CONNECTION = 01h -SNAC_DATA = 02h -FLAP_ERROR = 03h -CLOSE_CONNECTION = 04h -KEEP_ALIVE = 05h - -; -; SNAC -; -struc SNAC_head -{ - .wFid dw ?; Family id - .wSid dw ?; subtype id - .wDf dw ?; SNAC flags - .dRi dd ?; SNAC Request id -} - -; -; -; Familes/SNACs list -; - -GENERIC_SN = 0001h -LOCATION_SN = 0002h -BUDDY_LIST_SN = 0003h -ICBM_SN = 0004h -PRIVACY_SN = 0009h -BUDDY_ICONS_SN = 0010h -SSI_SN = 0013h -AUTH_REG_SN = 0017h - -; -; TLV -; -struc TLV_head -{ - .wTn dw ?; TLV type number - .wLv dw ?; TLV length value -} - -; -; userinfo block -; -struc UI_head -{ - .bUinLength db 0 ; UIN/screenname length - .bUin db 11 dup 0 ; string - .wWl dw 0 ; Warning level - .dUserClass dd 0 - .dCreateTime dd 0 - .dSignonTime dd 0 - .wIdleTime dw 0 - .dCreationTime dd 0 - .dUserStatus dd 0 - .dIpAddress dd 0 - .dOnlineTime dd 0 - -} - -; -;Roasting array -; -ROASTING_ARRAY db 0F3h, 026h, 081h, 0C4h, 039h, 086h, 0DBh, 092h, 071h, 0A3h, 0B9h, 0E6h, 053h, 07Ah, 095h, 07Ch - -; -; Status flags -; -; - - STATUS_WEBAWARE = 0x0001 ;Status webaware flag - STATUS_SHOWIP = 0x0002 ;Status show ip flag - STATUS_BIRTHDAY = 0x0008 ;User birthday flag - STATUS_WEBFRONT = 0x0020 ;User active webfront flag - STATUS_DCDISABLED = 0x0100 ;Direct connection not supported - STATUS_DCAUTH = 0x1000 ;Direct connection upon authorization - STATUS_DCCONT = 0x2000 ;DC only with contact users - -; -; Status -; - - STATUS_ONLINE = 0x0000 ;Status is online - STATUS_AWAY = 0x0001 ;Status is away - STATUS_DND = 0x0002 ;Status is no not disturb (DND) - STATUS_NA = 0x0004 ;Status is not available (N/A) - STATUS_OCCUPIED = 0x0010 ;Status is occupied (BISY) - STATUS_FREE4CHAT = 0x0020 ;Status is free for chat - STATUS_INVISIBLE = 0x0100 ;Status is invisible - - diff --git a/programs/network_old/icq/trunk/README.TXT b/programs/network_old/icq/trunk/README.TXT deleted file mode 100644 index 43b096303d..0000000000 --- a/programs/network_old/icq/trunk/README.TXT +++ /dev/null @@ -1,37 +0,0 @@ -v 0.01 - - -Версия тестовая, поэтому много недоработок -и выводятся отладочные сообщения - -Поддерживается: -* Серверный КЛ -* передача/прием сообщений plain-text -* Перекодировка CP866<->CP1251 -* Прием offline сообщений -* Отправка сообщения пользователю не в контакт-листе - /UIN Сообщение - -Недоработки: Много :-) -* Отключено закрытие сокетов - ядро виснет, при - попытке закрыть сокет - -* Все сообщения от разных юзеров в одном поле вывода -* Нельзя сменить статус -* Нельзя отключится, опять же из-за закрытия сокетов -* Не поддерживается UTF-8 и RTF сообщения -* Из информации о юзере доступен только ник -* editbox иногда ведет себя странно :-) -* .......... - - - -Выражаю благодарность всем разработчикам OS Kolibri -за прекрасные инструменты и документацию, без которой я бы -ничего не написал :-), а также проекту iserverd.khstu.ru, -сервер и описания протоколов которого я использовал. - - - -если у вас есть какие-нибудь предложения, присылайте на lv4evil@yandex.ru - diff --git a/programs/network_old/icq/trunk/SSI_INFO.txt b/programs/network_old/icq/trunk/SSI_INFO.txt deleted file mode 100644 index 4357350721..0000000000 --- a/programs/network_old/icq/trunk/SSI_INFO.txt +++ /dev/null @@ -1,56 +0,0 @@ -00 00 08 00 07 36 32 31 38 38 39 37 0A 1E 43 18 .....6218897..C. -^^ byte Version number of SSI protocol (currently 0x00) - ^^ ^^ word Number of items in this snac - ^^ ^^ word Length of the item name - ^^ ^^ ^^ ^^ ^^ ^^ ^^ string Item name string - ^^ ^^ word Group ID# - ^^ ^^ word Item ID# - - - -00 00 00 0A 01 31 00 06 46 75 6E 42 6F 6F 00 09 .....1..FunBoo.. -^^ ^^ word Type of item flag (see list bellow) - ^^ ^^ word Length of the additional data - ^^ ^^ word TLV.Type (TLV #1) - ^^ ^^ word TLV.Length - ^^ ^^ ^^ ^^ ^^ ^^ TLV.Value - - - - - - -31 37 36 33 33 33 30 37 38 17 B7 2A 18 00 00 00 176333078..*.... -09 01 31 00 05 45 2E 53 2E 56 00 07 36 32 31 38 ..1..E.S.V..6218 -38 39 38 23 8C 12 A1 00 00 00 09 01 31 00 05 74 898#........1..t -68 6F 72 64 00 07 46 72 69 65 6E 64 73 7F ED 00 hord..Friends... -00 00 01 00 00 00 0A 43 6F 2D 57 6F 72 6B 65 72 .......Co-Worker -73 55 7F 00 00 00 01 00 00 00 07 36 32 31 38 38 sU.........62188 -39 35 23 8C 08 80 00 00 00 0D 01 31 00 09 52 65 95#........1..Re -67 72 65 73 73 6F 72 00 07 36 32 35 31 37 32 33 gressor..6251723 -23 8C 05 83 00 00 00 0D 01 31 00 05 47 68 6F 73 #........1..Ghos -74 00 66 00 00 00 07 36 32 31 33 39 34 39 23 8C t.f....6213949#. -26 9A 00 00 00 0D 01 31 00 05 6D 69 63 6B 79 00 &......1..micky. -66 00 00 3B B7 4B 7D - - - - - - 0x0000 Buddy record (name: uin for ICQ and screenname for AIM) - 0x0001 Group record - 0x0002 Permit record ("Allow" list in AIM, and "Visible" list in ICQ) - 0x0003 Deny record ("Block" list in AIM, and "Invisible" list in ICQ) - 0x0004 Permit/deny settings or/and bitmask of the AIM classes - 0x0005 Presence info (if others can see your idle status, etc) - 0x0009 Unknown. ICQ2k shortcut bar items ? - 0x000E Ignore list record. - 0x000F Last update date (name: "LastUpdateDate"). - 0x0010 Non-ICQ contact (to send SMS). Name: 1#EXT, 2#EXT, etc - 0x0013 Item that contain roster import time (name: "Import time") - 0x0014 Own icon (avatar) info. Name is an avatar id number as text - - - - -[TLV(0x0131), itype 0x00, size XX] - This stores the name that the contact should show up as in the contact list. It should initially be set to the contact's nick name, and can be changed to anything by the client. \ No newline at end of file diff --git a/programs/network_old/icq/trunk/STDCALL.INC b/programs/network_old/icq/trunk/STDCALL.INC deleted file mode 100644 index 1ba36da275..0000000000 Binary files a/programs/network_old/icq/trunk/STDCALL.INC and /dev/null differ diff --git a/programs/network_old/icq/trunk/build_en.bat b/programs/network_old/icq/trunk/build_en.bat deleted file mode 100644 index 4dbfc75028..0000000000 --- a/programs/network_old/icq/trunk/build_en.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix en >lang.inc -@fasm ki.asm ki -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/icq/trunk/build_ru.bat b/programs/network_old/icq/trunk/build_ru.bat deleted file mode 100644 index 348c888209..0000000000 --- a/programs/network_old/icq/trunk/build_ru.bat +++ /dev/null @@ -1,2 +0,0 @@ -@fasm ki.asm ki - diff --git a/programs/network_old/icq/trunk/cmdipc.inc b/programs/network_old/icq/trunk/cmdipc.inc deleted file mode 100644 index 03db8bfeab..0000000000 --- a/programs/network_old/icq/trunk/cmdipc.inc +++ /dev/null @@ -1,221 +0,0 @@ -include "MACROS.INC" - -initipc: - mov eax,9 - mov ebx,prc - mov ecx,-1 - int 0x40 - - mov ecx,eax -loop1: - push ecx - - mov eax,9 - mov ebx,prc - int 0x40 - - cmp word [prc+10],'CM' - jne no_cmd - cmp byte [prc+12],'D' - jne no_cmd - - mov ebx,[prc+30] - mov dword [cmdpid],ebx - - mov dword [cmdnumb],ecx - -no_cmd: - pop ecx - loop loop1 - - cmp dword [cmdpid],0 - jne no_exit - - jmp exit - -no_exit: - mov eax,60 - mov ebx,2 - mov ecx,dword [cmdpid] - mov edx,printf - mov esi,4 - int 0x40 - - call initcmd - -waitcmdinit: - mov eax,40 - mov ebx,01000000b - int 0x40 - - mov eax,23 - mov ebx,100 - int 0x40 - - cmp eax,7 - je cmd_ok - - jmp exit - -cmd_ok: - cmp byte [ipcb+16],'.' - jne exit - - mov eax,18 - mov ebx,3 - mov ecx,dword [cmdnumb] - int 0x40 - - ret - -pause1: - mov eax,5 - mov ebx,1 - int 0x40 - ret - -exit: - mov eax,-1 - int 0x40 - -cls: - mov eax,60 - mov ebx,2 - mov ecx,dword [cmdpid] - mov edx,ipccls - mov esi,4 - int 0x40 - - call pause1 - - ret - -print: - mov ecx,84 -loopprt: - mov edi,stripc - add edi,ecx - mov esi,fill_symbol - movsb - - loop loopprt - - cld - mov ecx,4 - mov edi,stripc - mov esi,printf - rep movsb - - cld - mov edx,79 - sub edx,eax - mov ecx,79 - sub ecx,edx - mov edi,stripc+4 - mov esi,ebx - rep movsb - - mov eax,60 - mov ebx,2 - mov ecx,dword [cmdpid] - mov edx,stripc - mov esi,84 - int 0x40 - - call pause1 - - ret - -eol: - mov eax,60 - mov ebx,2 - mov ecx,dword [cmdpid] - mov edx,ipceol - mov esi,4 - int 0x40 - - call pause1 - - ret - -initcmd: - mov eax,60 - mov ebx,2 - mov ecx,dword [cmdpid] - mov edx,ipckey - mov esi,4 - int 0x40 - - mov eax,60 - mov ebx,1 - mov ecx,ipcb - mov edx,28 - int 0x40 - - cld - mov ecx,28 - mov edi,ipcb - mov esi,ipcc - rep movsb - - ret - -getkey: - call initcmd - -waitagain: - mov eax,40 - mov ebx,01000000b - int 0x40 - - mov eax,10 - int 0x40 - - cmp eax,7 - jne waitagain - - mov edi,key - mov esi,ipcb+16 - movsb - - ret - -endipc: - mov eax,60 - mov ebx,2 - mov ecx,dword [cmdpid] - mov edx,ipcend - mov esi,4 - int 0x40 - - jmp exit - -cmdpid dd 0 -cmdnumb dd 0 - -printf db '~ppp' -ipceol db '~lll' -ipcend db '~eee' -ipccls db '~ccc' -ipckey db '~kkk' - -key db 0 - -ipcb: - db 0 - db 0,0,0 - dd 8 -times 20 db 0 - -ipcc: - db 0 - db 0,0,0 - dd 8 -times 20 db 0 - -stripc: times 84 db 0 - -fill_symbol db 0 - -prc: times 52 db 0 - diff --git a/programs/network_old/icq/trunk/comp.inc b/programs/network_old/icq/trunk/comp.inc deleted file mode 100644 index 9a7df2128a..0000000000 --- a/programs/network_old/icq/trunk/comp.inc +++ /dev/null @@ -1,972 +0,0 @@ -; -; ­ аЁб®ў вм Їаאַ㣮«м­ЁЄ -; x1,y1 ---------| -; | | -; | | -; |-------------x2,y2 -; - macro rect x1, y1, x2, y2, color - { - pushad - - ;mov edx, color - ; ------------ - ;mov eax, 38 - mov ebx, x1 - shl ebx, 16 - add ebx, x2 - mov ecx, y1 - shl ecx, 16 - add ecx, y1 - ;int 40h - mcall 38, ebx, ecx, color - - ; ------------ - ;mov eax, 38 - mov ebx, x1 - shl ebx, 16 - add ebx, x2 - mov ecx, y2 - shl ecx, 16 - add ecx, y2 - ;int 40h - mcall 38, ebx, ecx, color - ; | - ; | - ; | - ;mov eax, 38 - mov ebx, x1 - shl ebx, 16 - add ebx, x1 - mov ecx, y1 - shl ecx, 16 - add ecx, y2 - ;int 40h - mcall 38, ebx, ecx, color - ; | - ; | - ; | - ;mov eax, 38 - mov ebx, x2 - shl ebx, 16 - add ebx, x2 - mov ecx, y1 - shl ecx, 16 - add ecx, y2 - ;int 40h - mcall 38, ebx, ecx, color - - popad - } - -; -; ‚лў®¤ ­  нЄа ­ ЎгдҐа  б® бва®Є ¬Ё -; - -scbuff db 80*41 dup 0 -; 60 - ¤«Ё­  бва®ЄЁ -; 41 - Є®«ЁзҐбвў® бва®Є -; -ind db 0 ; ’ҐЄгйЁ© Ё­¤ҐЄб -; -; -x_s dw 15 ; Љ®®а¤Ё­ вл «Ґў®Ј® ўҐае­ҐЈ® гЈ«  FIXIT -y_s dw 38 ; - -; ‚лб®в  бва®ЄЁ -SH = 10 - -xlen dw 80 ; ¤«Ё­  бва®ЄЁ -;ylen dw 128 ; Є®«ЁзҐбвў® бва®Є -ylen dw 40 - -;Џ®б«Ґ¤­ЁҐ 4 Ў ©в  ў бва®ЄҐ ®Ў®§­ з ов 梥в - - printbuff: - pushad - - ; - ; Ќ аЁб㥬 ЎҐ«л© Їаאַ㣮«м­ЁЄ - ; - ;mov eax, 13 - ;mov ebx, 15*65536+480 - ;mov ecx, 31*65536+418 - ;mov edx, 0FFFFFFh - ;int 40h - mcall 13, (15 * 65536 + 480), (31 * 65536 + 418), 0x00FFFFFF - - - - xor ecx, ecx ; ‘зҐвзЁЄ - ;xor eax, eax - xor ebx, ebx - ;xor edx, edx - - pb_loop: - xor edx, edx - xor eax, eax - mov dl, [ind] ; €­¤ҐЄб - mov ax, [ylen] - ;mul edx - cmp ecx, eax - ja pr_end - ; - ; - add edx, ecx ;ЏаЁЎ ўЁ¬ бзҐвзЁЄ - xor eax, eax - mov ax, [ylen] - cmp edx, eax ;€­¤ҐЄб ¬Ґ­миҐ Є®«ЁзҐбвў  бва®Є - jna @f ;<= - sub edx, eax ;…б«Ё Ў®«миҐ, бзЁв Ґ¬ б ­ з «  - dec edx - @@: - ; - mov bx, [x_s] ; Љ®®а¤Ё­ в  X - shl ebx, 16 ; - push ecx - mov eax, SH ; ‚лзЁб«пҐ¬ ¬Ґбв®Ї®«®¦Ґ­ЁҐ бва®ЄЁ - imul eax, ecx ; - ;mov ecx, eax - ;xor eax, eax - - ;mov ax , [x_s] - xor ecx, ecx - mov cx, [y_s] - add ecx, eax - add ebx, ecx ; Љ®®а¤Ё­ в  Y - ; - xor eax, eax - mov ax, [xlen] ;¤«Ё­  бва®ЄЁ - imul edx, eax ;“¬­®¦ Ґ¬ бзҐвзЁЄ ­  ¤«Ё­г бва®ЄЁ, Ї®«гз Ґ¬ ᬥ饭ЁҐ ®в­®бЁвҐ«м­® ­ з «  ЎгдҐа  - ;mov edx, eax - add edx, scbuff - - xor eax, eax - mov ax, [xlen] - sub eax, 4 - xor ecx, ecx - mov ecx, dword [edx+eax] ; Џ®б«Ґ¤­ЁҐ 4 Ѓ ©в  б 梥⮬ - or ecx, 0x80000000 ; ‚лў®¤Ёвм ASCIIZ - ;mov eax, 4 - ;mov esi, -1 ; For Menuet - ;int 40h - mcall 4, ebx, ecx, edx - pop ecx - inc ecx - jmp pb_loop - - - pr_end: - popad - ret - -; -; Ћв« ¤®з­лҐ б®®ЎйҐ­Ёп -; - macro write_debug str - { - local ..string, ..label, ..end, ..loop, ..fin, ..n_inc - jmp ..label - - ..string db str, 0 - - ..label: - pushad - xor eax, eax - xor ebx, ebx - xor ecx, ecx - xor edx, edx - - mov bl, [ind] - mov ax, [xlen] - imul ebx, eax - add ebx, scbuff - - ; - ; —Ґа­л© 梥⠢뢮¤  - ; - mov edx, ebx - lea edx, [edx+eax] - sub edx, 4 ;4 Ў ©в  б 梥⮬ - mov dword [edx], dword 0 - xor edx, edx - - - ..loop: - mov dl, [..string+ecx] - cmp dl, 0 - jz ..end - mov [ebx+ecx], dl - inc ecx - jmp ..loop - - ..end: - mov [ebx+ecx], dl - xor ebx, ebx - mov bl, [ind] - cmp bx, [ylen] - jz ..n_inc - inc bl - jmp ..fin - ..n_inc: - xor bl, bl - - ..fin: - mov [ind], bl - call printbuff - ;call draw_window - popad - } - -; -; Љ­®ЇЄ  -; - macro draw_button x, y, xlen, ylen, id, str - { - pushad - local ..string, ..label - jmp ..label - ..string db str, 0 - - ..label: - - mcall 8, (x*65536+xlen), (y*65536+ylen), id, 0x4466aa - - mcall 4, ((x+5)*65536+y+ylen/2-3), 0x80FFFFFF, ..string - - popad - } - -; -; Ћв« ¤®з­л© ўлў®¤ ¤ ­­ле -; - macro data_debug str, rg - { - pushad - local ..string, ..end, ..loop, ..strend, ..fin, ..label, ..n_inc - jmp ..label - ..string db str, 20h, 0, 0, 0, 0, 0, 0, 0, 0, 0 - ..strend: - - ..label: - ;xor eax, eax - ;xor ebx, ebx - xor ecx, ecx - xor edx, edx - - mov eax, rg - lea ebx, [..strend-9] - call int2str - - xor eax, eax - xor ebx, ebx - - mov bl, [ind] - mov ax, [xlen] - imul ebx, eax - add ebx, scbuff - - ; - ; —Ґа­л© 梥⠢뢮¤  - ; - mov edx, ebx - lea edx, [edx+eax] - sub edx, 4 ;4 Ў ©в  б 梥⮬ - mov dword [edx], dword 0 - xor edx, edx - - ..loop: - mov dl, [..string+ecx] - cmp dl, 0 - jz ..end - mov [ebx+ecx], dl - inc ecx - jmp ..loop - - ..end: - mov [ebx+ecx], dl - xor ebx, ebx - mov bl, [ind] - cmp bx, [ylen] - jz ..n_inc - inc bl - jmp ..fin - ..n_inc: - xor bl, bl - - ..fin: - mov [ind], bl - - - - call printbuff - ;call draw_window - - popad - } - -; <--EAX -; -->[ebx] -; - int2str: - pushf - ;push ebx - push ecx - push edx - push esi - - ;xor ebx, ebx - xor ecx, ecx - - i_loop: - mov edx, eax - push ecx - shl ecx, 2 - mov esi, 28 - sub esi, ecx - mov ecx, esi - shr edx, cl - pop ecx - and dl, 0fh ;Ћв¤Ґ«Ёвм ¬« ¤иЁҐ 4 ЎЁв  - cmp dl, 0Ah ;ЃгЄў  - jnc @f - or dl, 0x30 - jmp i_n1 - - @@: - sub dl, 9 - or dl, 0x40 - i_n1: - mov [ebx+ecx], dl - inc ecx - cmp ecx, 8 - jnz i_loop - - - pop esi - pop edx - pop ecx - ;pop ebx - popf - ret - - - -; -; „«п ўлў®¤  б®®ЎйҐ­Ё© -; [eax] <-- null-terminated string -; ebx <-- color -; - writemsg: - pushad - xor edi, edi - - - wm_loop: - xor esi, esi ; …б«Ё 1 - Ґбвм ҐйҐ бЁ¬ў®«л ў бва®ЄҐ - lea eax, [eax+edi] - - push ebx - push eax - - xor eax, eax - xor ebx, ebx - - - mov bl, [ind] - mov ax, [xlen] - imul ebx, eax - add ebx, scbuff - - - - - ; - ; ђ §ЎЁў Ґ¬ бва®Єг б®®ЎйҐ­Ёп ­  ­ҐбЄ®«мЄ® бва®Є Ї® xlen-4 (в.Є ў Є®­жҐ ¤ў®©­®Ґ б«®ў® - 梥в бва®ЄЁ) - ; - - - pop eax - mov edx, eax - call strlen - - movzx ecx, [xlen] - cmp eax, ecx - jc @f ;< - - movzx edi, [xlen] - lea edi, [edi-4] - - mov ecx, eax - inc esi - - - @@: - - - mov eax, edx - call strcpy - - mov [ebx+ecx], byte 0x00 - - xor eax, eax - mov ax, [xlen] - sub eax, 4 - pop ecx - mov dword [ebx+eax], ecx ; Џ®б«Ґ¤­ЁҐ 4 Ѓ ©в  б 梥⮬ - - - xor eax, eax - mov al, [ind] - cmp ax, [ylen] - jz @f - inc al - jmp ..fin - @@: - xor al, al - - ..fin: - mov [ind], al - mov ebx, ecx ; 梥в - mov eax, edx ; гЄ § вҐ«м ­  бва®Єг - - cmp esi, 0 - jnz wm_loop - - - call printbuff - - popad - ret - -; -; - - - -; <--EAX ЏҐаҐў®¤ Ё§ 16 ў 10 д®а¬г -; -->[ebx] бва®Є  -; --> eax ¤«Ё­  - int2strd: - pushf - ;push ebx - push ecx - push edx - push esi - ;push edi - - ;xor ebx, ebx - xor ecx, ecx - mov esi, 10 - - - id_loop: - xor edx, edx - - div esi - - and dl, 0fh ;Ћв¤Ґ«Ёвм ¬« ¤иЁҐ 4 ЎЁв  - or dl, 0x30 - - mov [ebx+ecx], dl - cmp eax, 10 - inc ecx - jnc id_loop - - and al, 0fh ;Ћв¤Ґ«Ёвм ¬« ¤иЁҐ 4 ЎЁв  - or al, 0x30 - - mov [ebx+ecx], al - ;mov [ebx+ecx+1], byte 0 - inc ecx - mov eax, ecx - ; ЇҐаҐўҐа­гвм Ї®«г祭­го бва®Єг - ; - ;xor edx, edx - - ;mov esi, 2 - ;div esi - shr eax, 1 - - xor edx, edx - - id_loop2: - cmp eax, 0 - jz id_end - - - mov dl, [ebx+eax-1] - lea esi, [ebx+ecx] - sub esi, eax - mov dh, [esi] - - mov [ebx+eax-1], dh - mov [esi], dl - - dec eax - jmp id_loop2 - - - - - id_end: - mov eax, ecx - - ;pop edi - pop esi - pop edx - pop ecx - ;pop ebx - popf - ret - -; -; -; -x_bb dw 550 ; Љ®®а¤Ё­ вл «Ґў®Ј® ўҐае­ҐЈ® гЈ«  -y_bb dw 30 ; -; -bb_width dw 100 ; ЁаЁ­  Є­®Ї®Є -bb_height dw 12 ; ўлб®в  Є­®Ї®Є -; -bb_dist dw 6 ; ђ ббв®п­ЁҐ ¬Ґ¦¤г Є­®ЇЄ ¬Ё - -; €¤Ґ­вЁдЁЄ в®ал Є­®Ї®Є ­ зЁ­ п б 100 -; -; „«п Љ‹ -; -; - buttonbox: - pushad - pushf - - xor ecx, ecx - xor eax, eax - xor ebx, ebx - - bb_loop: - - ; Џа®ўҐа塞 ЇҐаўл© Ў ©в гЁ­ , Ґб«Ё 0, Є­®ЇЄг аЁб®ў вм ­Ґ ­ ¤® - ;mov ebx, NAME_LEN - ;imul ebx, ecx - - ;mov al, [names+ebx] - ;cmp al, 0 - ;jz bb_end - - mov ebx, UIN_LEN - imul ebx, ecx - - mov al, [uins + ebx] - cmp al, 0 - jz bb_end - - - - - ; аЁб㥬 Є­®ЇЄг - ; –ўҐв § ўЁбЁв ®в бв вгб  UIN - mov ebx, 4 - imul ebx, ecx - mov eax, [stats+ebx] ; ‚ бв а襬 б«®ўҐ ¤®Ї®«­ЁвҐ«м­л© бв вгб - cmp ax, -1 - jz bb_offline - cmp ax, 1 - jz bb_away - cmp ax, 2 - jz bb_dnd - cmp ax, 4 - jz bb_na - cmp ax, 10h - jz bb_bisy - cmp ax, 20h - jz bb_free4chat - cmp ax, 100h - jz bb_invis - ; Online - mov esi, 0x4466AA - jmp bb_dr - - bb_offline: - mov esi, 0xBEBEBE - jmp bb_dr - - bb_away: - mov esi, 0x14dcc3 - jmp bb_dr - - bb_dnd: - mov esi, 0x14dcc3 - jmp bb_dr - - bb_na: - mov esi, 0x14dcc3 - jmp bb_dr - - bb_bisy: - mov esi, 0x14dcc3 - jmp bb_dr - - bb_free4chat: - mov esi, 0x2233FF - jmp bb_dr - - bb_invis: - mov esi, 0xD0D0D0 - - bb_dr: - - mov bx, [x_bb] - shl ebx, 16 - mov bx, [bb_width] - ;push ecx - mov edx, ecx - lea edx, [edx+100] ; ID - mov edi, ecx - mov cx, [y_bb] - movzx eax, [bb_height] - add ax, [bb_dist] - imul eax, edi - add ecx, eax - shl ecx, 16 - mov cx, [bb_height] - mov eax, 8 - int 40h - - ; - ; Ќ ¤ЇЁбм ­  Є­®ЇЄҐ - ; - add ebx, 50000h ; ‘¬ҐйҐ­ЁҐ ®в «Ґў®Ј® Єа п - shr ecx, 16 - movzx eax, [bb_height] - shr eax, 1 ; /2 - sub eax, 3 ; ᬥ饭ЁҐ ўўҐае ®в 業ва  - add ecx, eax ; + Ї®«®ўЁ­  а §¬Ґа  Є­®ЇЄЁ - mov bx, cx - mov ecx, 0x80FFFFFF ; –ўҐв - mov edx, names - mov esi, NAME_LEN - imul esi, edi - add edx, esi - ;mov esi, -1 - mov eax, 4 - int 40h - - mov ecx, edi - inc ecx - cmp ecx, UINS - ja bb_end - jmp bb_loop - - - bb_end: - popf - popad - ret -; -; Њ ббЁў б UIN -; -UIN_LEN = 11 ; „«Ё­  -UINS = 22 ; Љ®«ЁзҐбвў® -; -uins db UIN_LEN*UINS dup 0 -; -; ¬ ббЁў б® бв вгб ¬Ё -; -stats dd UINS dup -1 -; -; Њ ббЁў б Ё¬Ґ­ ¬Ё -; -NAME_LEN = 30 - -names db NAME_LEN*UINS dup 0 - -; -; -U1 db '405577261',0 -U2 db '455395049',0 -U3 db '488118046',0 -; -; ‡ Јаг§Є  ¬ ббЁў  UIN -; -; FIXME Ўг¤Ґв г¤ «Ґ­  - loaduin: - pushad - mov eax, U1 - mov ebx, uins - mov ecx, 9 - call strcpy - - mov ebx, names - call strcpy - - mov eax, U2 - mov ebx, uins+UIN_LEN - mov ecx, 9 - call strcpy - - mov ebx, names+NAME_LEN - call strcpy - - mov eax, U3 - mov ebx, uins+UIN_LEN*2 - mov ecx, 9 - call strcpy - - mov ebx, names+NAME_LEN*2 - call strcpy - - - popad - ret - -; -; ”г­ЄжЁп ¤«п § Јаг§ЄЁ Љ‹ ­ЁЄ ¬Ё Ё бв вгб ¬Ё -; eax <-- Ќ®¬Ґа гЁ­  Ї® Ї®ап¤Єг ў ¬ ббЁўҐ uins, ­ зЁ­ п б 0 -; [ebx] <-- гЄ § вҐ«м ­  null-terminated бва®Єг б ­®ўл¬ Ё¬Ґ­Ґ¬ -; ecx <-- Ќ®ўл© бв вгб -; - loadbb: - pushad - pushf - ; - ; Џа®ўҐа塞 ­®¬Ґа - ; - cmp eax, UINS - jnc loadbb_end ;>= - - - ; - ; “¤ «пҐ¬ Є­®ЇЄг - ; - push ecx - push ebx - push eax - - lea edx, [eax+100] - or edx, 0x80000000 - mov eax, 8 - int 40h - - ; - ; ‘®е࠭塞 ­®ўл© бв вгб ў ¬ ббЁўҐ бв вгб®ў - ; - pop eax - mov edx, 4 ; DWORD - imul edx, eax - mov [stats+edx], ecx - ; - ; ‘®е࠭塞 ­®ў®Ґ Ё¬п - ; - mov edi, eax ; edi <-- Uin number - pop eax ; <-- offset of string - mov ebx, eax - call strlen - mov ecx, eax ; Len - - - mov eax, ebx ;Source - mov edx, NAME_LEN - imul edx, edi - lea ebx, [names+edx] ; Dest - call strcpy - mov [names+edx+ecx], byte 0 - - xchg edi, eax ; eax - бзҐвЁЄ, edi - гЄ § вҐ«м ­  бва®Єг - - pop ecx - push edi - ; аЁб㥬 Є­®ЇЄг - ; –ўҐв § ўЁбЁв ®в бв вгб  UIN - - cmp cx, -1 - jz l_offline - cmp cx, 1 - jz l_away - cmp cx, 2 - jz l_dnd - cmp cx, 4 - jz l_na - cmp cx, 10h - jz l_bisy - cmp cx, 20h - jz l_free4chat - cmp cx, 100h - jz l_invis - ; Online - mov esi, 0x4466AA - jmp l_dr - - l_offline: - mov esi, 0xBEBEBE - jmp l_dr - - l_away: - mov esi, 0x14dcc3 - jmp l_dr - - l_dnd: - mov esi, 0x14dcc3 - jmp l_dr - - l_na: - mov esi, 0x14dcc3 - jmp l_dr - - l_bisy: - mov esi, 0x14dcc3 - jmp l_dr - - l_free4chat: - mov esi, 0x2233FF - jmp l_dr - - l_invis: - mov esi, 0xD0D0D0 - - l_dr: - - mov bx, [x_bb] - shl ebx, 16 - mov bx, [bb_width] - ;push ecx - mov edx, eax - lea edx, [edx+100] ; ID - mov edi, eax - mov cx, [y_bb] - movzx eax, [bb_height] - add ax, [bb_dist] - imul eax, edi - add ecx, eax - shl ecx, 16 - mov cx, [bb_height] - mov eax, 8 - int 40h - - ; - ; Ќ ¤ЇЁбм ­  Є­®ЇЄҐ - ; - add ebx, 50000h ; ‘¬ҐйҐ­ЁҐ ®в «Ґў®Ј® Єа п - shr ecx, 16 - movzx eax, [bb_height] - shr eax, 1 ; /2 - sub eax, 3 ; ᬥ饭ЁҐ ўўҐае ®в 業ва  - add ecx, eax ; + Ї®«®ўЁ­  а §¬Ґа  Є­®ЇЄЁ - mov bx, cx - mov ecx, 0x80FFFFFF ; –ўҐв - pop edx - mov esi, -1 - mov eax, 4 - int 40h - - - - loadbb_end: - - popf - popad - ret - -; -; -; Ћв« ¤®з­ п дг­ЄжЁп - ўлў®¤Ёв ®Ў« бвм Ї ¬пвЁ -; EAX - гЄ § вҐ«м ­  ®Ў« бвм -; EBX - Є®«ЁзҐбвў® Ў ©в -; - - print_mem: - push eax - push ebx - push ecx - push edx - push esi - - xor ecx, ecx - xor esi, esi - - - pm_loop: - cmp ecx, ebx - jz pm_exit - - - mov dl, [eax + ecx] - shr dl, 4 ;‘¤ўЁ­гвм ­  4 а §ап¤  ўЇа ў® - - cmp dl, 0x0A - jnb pm_chars - - or dl, 0x30 - jmp pm_write - - pm_chars: - add dl, 0x37 - - pm_write: - mov [membuff + esi], dl - inc esi - ; - ; - - mov dl, [eax + ecx] - and dl, 0x0F - - cmp dl, 0x0A - jnb pm_chars2 - - or dl, 0x30 - jmp pm_write2 - - pm_chars2: - add dl, 0x37 - - pm_write2: - mov [membuff + esi], dl - inc esi - - - mov [membuff + esi], 0x20 - inc esi - - cmp esi, MEMBUFF_SIZE - 2 - jb pm_nwrite - ; - ; ўлўҐбвЁ ЎгдҐа - mov [membuff + esi], byte 0 - - push eax - push ebx - - mov eax, membuff - xor ebx, ebx - xor esi, esi - - call writemsg - - pop ebx - pop eax - - pm_nwrite: - - inc ecx - jmp pm_loop - - - - pm_exit: - - mov [membuff + esi], byte 0 - - - mov eax, membuff - xor ebx, ebx - xor esi, esi - - call writemsg - - pop esi - pop edx - pop ecx - pop ebx - pop eax - ret diff --git a/programs/network_old/icq/trunk/comp_data.inc b/programs/network_old/icq/trunk/comp_data.inc deleted file mode 100644 index 19adca49d0..0000000000 --- a/programs/network_old/icq/trunk/comp_data.inc +++ /dev/null @@ -1,3 +0,0 @@ -MEMBUFF_SIZE = (16 * 3 + 1) - -membuff db MEMBUFF_SIZE dup 0 \ No newline at end of file diff --git a/programs/network_old/icq/trunk/config.inc b/programs/network_old/icq/trunk/config.inc deleted file mode 100644 index dc70bf9760..0000000000 --- a/programs/network_old/icq/trunk/config.inc +++ /dev/null @@ -1 +0,0 @@ -__CPU_type fix p5 diff --git a/programs/network_old/icq/trunk/dialogs1.inc b/programs/network_old/icq/trunk/dialogs1.inc deleted file mode 100644 index d4e3abb482..0000000000 --- a/programs/network_old/icq/trunk/dialogs1.inc +++ /dev/null @@ -1,597 +0,0 @@ -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -; ; -; DIALOGS1.INC ; -; ; -; COMPILE WITH FASM for MENUET ; -; ; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - - -menus dd 3 ; number of menus -m_x dd 0x5 ; x start -m_y dd 20 ; y start -m_xs dd 290 ; x size -m_ys dd 14 ; y size -g_stack dd 0xf000 ; thread stack - required - - -menu:; AB C D E F G - - db '*D FILE +Save File +Load File +- +Quit ' - db '*B EDIT +Copy +Paste ' - db '*B HELP +Setup +About.. ' - db '@' ; end mark - -; A : Data type '*' -> New menu , '+' -> menu selection -; B : Number of selections in menu (A+) -; C : Menu header text -; D-G : Menu selection text - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -; -; DATA BELOW IS FOR DIALOGS1.INC INTERNALS - -menu_action dd '----' - -window_on db 0 - -g_n dd -1 -g_x dd 0x0 -g_t dd 0x0 -g_1 dd 0x0 -g_l dd 0x0 -closet db 0 - -table: times 1024 db 0 - -last_mouse dd 0x0 - -mo_x dd 0x0 -mo_y dd 0x0 - - -check_mouse: - - pusha - - cmp [window_on],1 - je no_open - - mov eax,37 - mov ebx,2 - int 0x40 - - cmp [window_on],0 - jne openw2 - - cmp eax,0 - je no_open - - openw2: - - waitformouse: - - mov eax,23 - mov ebx,2 - int 0x40 - - cmp eax,0 - jne no_open - - mov eax,37 - mov ebx,2 - int 0x40 - - cmp eax,0 - jne waitformouse - - - mov eax,37 - mov ebx,1 - int 0x40 - - mov esi,eax - - shr eax,16 - xor edx,edx - mov ebx,50 - div ebx - mov edx,eax - cmp edx,[g_n] - je no_open - cmp edx,[menus] - jge no_open - mov eax,esi - - and eax,0xffff - - mov ebx,[m_y] - cmp eax,ebx - jbe no_open - add ebx,[m_ys] - cmp eax,ebx - jge no_open - - cmp [window_on],0 - je noww - - mov [closet],1 - mov ecx,100 - waitm: - mov eax,5 - mov ebx,1 - int 0x40 - dec ecx - jz no_open - cmp [window_on],0 - jne waitm - noww: - - mov eax,edx - jmp cll - - no_open: - - mov [last_mouse],esi - - popa - - ret - - cll: - - mov [window_on],2 - - mov [g_n],eax - mov [g_x],96 - mov [g_t],0 - mov [g_1],1 - - mov eax,9 - mov ebx,table - mov ecx,-1 - int 0x40 - - mov eax,[table+34] - mov [mo_x],eax - mov eax,[table+38] - mov [mo_y],eax - - mov eax,51 - mov ebx,1 - mov ecx,alert_entry - mov edx,[g_stack] - int 0x40 - - mov [esp+28],dword 0 ; clear button entry - - mov [menu_action],'MD ' - - check_gr: - - popa - - ret - - -draw_menu: - - mov eax,9 - mov ebx,table - mov ecx,-1 - int 0x40 - - cmp [table+46],dword 30 - jb drmr - - mov eax,13 ; white background - mov ebx,[m_x] - shl ebx,16 - add ebx,[m_xs] - inc ebx - mov ecx,[m_y] - shl ecx,16 - add ecx,[m_ys] - mov edx,0xf0f8ff - int 0x40 - - mov eax,38 ; egde lines - mov ebx,[m_x] - shl ebx,16 - add ebx,[m_x] - add ebx,[m_xs] - mov ecx,[m_y] - shl ecx,16 - add ecx,[m_y] - mov edx,0x000000 - int 0x40 - mov eax,38 - mov ecx,[m_y] - add ecx,[m_ys] - shl ecx,16 - add ecx,[m_y] - add ecx,[m_ys] - int 0x40 - - mov esi,menu-1 - mov edi,[m_x] - mov ebp,1 - new_menu: - inc esi - - cmp [esi],byte '*' - jne drmnl1 - push esi - mov eax,4 - mov ebx,edi - shl ebx,16 - add ebx,[m_y] - add ebx,0x00050004 - mov ecx,0x000000 - mov edx,esi - add edx,3 - mov esi,12 - int 0x40 ; draw text - pop esi - add esi,2 - add edi,50 - inc ebp - - drmnl1: - cmp [esi],byte '@' - jne new_menu - - drmr: - - ret - -alert_box: - - ; eax : x size - min 200 - ; ebx : pointer to ASCIIZ - max 128 character text - ; ecx : button 1 id ( OK or YES ) - ; edx : button 2 id or zero ( NO ) - - - cmp [window_on],0 - jne alert_box_return - - mov [window_on],1 - - cmp eax,100 - jg size_ok - mov eax,100 - size_ok: - - mov [g_x],eax - mov [g_t],ebx - mov [g_1],ecx - - mov ecx,0 - new_search: - cmp [ebx],byte 0 - je found_len - inc ebx - inc ecx - cmp ecx,128 - jbe new_search - found_len: - mov [g_l],ecx - - mov eax,51 - mov ebx,1 - mov ecx,alert_entry - mov edx,[g_stack] - int 0x40 - - mov [menu_action],'MA ' - - alert_box_return: - - ret - -alert_entry: - - call alert_draw_window - -alert_still: - - mov eax,23 ; wait here for event - mov ebx,1 - int 0x40 - - cmp eax,1 ; redraw request ? - je alert_red - cmp eax,2 ; key in buffer ? - je alert_key - cmp eax,3 ; button in buffer ? - je alert_button - - cmp [closet],0 - jne ccc - - mov eax,9 - mov ebx,table - mov ecx,-1 - int 0x40 - - cmp ax,[table+4] - je no_close - ccc: - mov [closet],0 - mov [g_n],-1 - mov [menu_action],'----' - mov [window_on],0 - mov eax,-1 - int 0x40 - no_close: - - jmp alert_still - - alert_red: ; redraw - call alert_draw_window - jmp alert_still - - alert_key: ; key - mov eax,2 ; just read it and ignore - int 0x40 - jmp alert_still - - alert_button: ; button - mov eax,17 ; get id - int 0x40 - - shr eax,8 - cmp eax,3 - jg no_action1 - dec eax - shl eax,2 - mov eax,dword [eax+rtext] - mov [menu_action],eax - jmp action_done - no_action1: - sub eax,16 - add eax,65 - shl eax,8 - mov ebx,[g_n] - add ebx,65 - add eax,ebx - mov [menu_action],eax - - action_done: - - mov [closet],0 - mov [g_n],-1 - mov [window_on],0 - mov eax,-1 ; close this program - int 0x40 - - rtext db 'NO YES OK ' - - jmp alert_still - - -; ********************************************* -; ******* WINDOW DEFINITIONS AND DRAW ******** -; ********************************************* - - -alert_draw_window: - - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,1 ; 1, start of draw - int 0x40 - - cmp [window_on],2 - jne no_win_type_2 - - mov edx,menu-1 - mov ecx,[g_n] - add ecx,1 - find_menu: - inc edx - cmp [edx],byte '*' - je menu_loop - jmp find_menu - menu_loop: - loop find_menu - movzx ebp,byte [edx+1] - sub ebp,64 - push edx - ; DRAW WINDOW - mov eax,0 ; function 0 : define and draw window - mov ebx,[g_n] - imul ebx,50 - add ebx,[mo_x] - add ebx,[m_x] - shl ebx,16 - add ebx,[g_x] - mov ecx,[mo_y] - add ecx,[m_y] - add ecx,[m_ys] - shl ecx,16 - mov edx,14 - imul edx,ebp - add edx,7 - add ecx,edx - mov edx,0x00ffffff ; color of work area RRGGBB,8->color gl - mov esi,0x00ffffff ; color of grab bar RRGGBB,8->color gl - mov edi,0x000000cc ; color of frames RRGGBB - int 0x40 - - pop edx - - mov ebx,5*65536+7 ; draw info text with function 4 - mov ecx,0x10000000 - mov esi,12 - mov ebp,16 - no_d_found: - inc edx - cmp [edx],byte '*' - je d_drawed - cmp [edx],byte '@' - je d_drawed - cmp [edx],byte '+' - jne no_d_found - inc edx - pusha ; draw button - mov eax,8 - mov ecx,ebx - mov ebx,[g_x] - add ebx,0x0000fffe - shl ecx,16 - add ecx,0xfffc0000+14 - mov edx,0x40000000 - add edx,ebp - mov esi,0 - int 0x40 - popa - mov eax,4 ; draw text - int 0x40 - inc ebp - add ebx,14 - jmp no_d_found - d_drawed: - - no_win_type_2: - - - cmp [window_on],1 - jne no_win_1 - - mov eax,14 ; to middle of screen - int 0x40 - mov ecx,eax - and ecx,0xffff - shr ecx,1 - shr eax,1 - mov ebx,[g_x] - shr ebx,1 - shl ebx,16 - sub eax,ebx - mov ebx,eax - - mov eax,0 ; function 0 : define and draw window - mov bx,word [g_x] - sub ecx,80 - shl ecx,16 - mov cx,110 ; [y start] *65536 + [y size] - mov edx,0x02ffffff ; color of work area RRGGBB,8->color gl - mov esi,0x80d05050 ; color of grab bar RRGGBB,8->color gl - mov edi,0x00d05050 ; color of frames RRGGBB - int 0x40 - - - mov eax,4 ; label - mov ebx,8*65536+8 - mov ecx,0x10ddeeff - mov edx,alert_labelt1 - mov esi,alert_label1len-alert_labelt1 - int 0x40 - - mov eax,4 - mov ebx,10*65536+43 - mov ecx,0x10000000 - mov edx,[g_t] - mov esi,[g_l] - int 0x40 - - cmp [g_1],1 - jne gadgets_no_1 - - mov eax,8 - mov ebx,[g_x] - sub ebx,100 - shr ebx,1 - shl ebx,16 - add ebx,30*65536+40 - mov ecx,75*65536+16 - mov edx,3 - mov esi,0x446688 - int 0x40 - - mov eax,4 - mov ebx,[g_x] - sub ebx,100 - shr ebx,1 - shl ebx,16 - add ebx,31*65536+80 - mov ecx,0x10ffffff - mov edx,alert_t2 - mov esi,alert_t2len-alert_t2 - int 0x40 - - gadgets_no_1: - - cmp [g_1],2 - jne gadgets_no_2 - - mov eax,8 - mov ebx,[g_x] - sub ebx,100 - shr ebx,1 - shl ebx,16 - add ebx,0*65536+40 - mov ecx,75*65536+16 - mov edx,1 - mov esi,0x446688 - int 0x40 - - mov eax,8 - mov ebx,[g_x] - sub ebx,100 - shr ebx,1 - shl ebx,16 - add ebx,57*65536+40 - mov ecx,75*65536+16 - mov edx,2 - mov esi,0x446688 - int 0x40 - - mov eax,4 - mov ebx,[g_x] - sub ebx,100 - shr ebx,1 - shl ebx,16 - add ebx,1*65536+80 - mov ecx,0x10ffffff - mov edx,alert_t1 - mov esi,alert_t1len-alert_t1 - int 0x40 - - gadgets_no_2: - - no_win_1: - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,2 ; 2, end of draw - int 0x40 - - ret - - -; DATA AREA - - -alert_t1: - db ' No Yes' -alert_t1len: - - -alert_t2: - db ' OK' -alert_t2len: - - -alert_labelt1: - db 'ALERT' -alert_label1len: - - - - - - - - diff --git a/programs/network_old/icq/trunk/dos2win.inc b/programs/network_old/icq/trunk/dos2win.inc deleted file mode 100644 index e0c8c1f010..0000000000 --- a/programs/network_old/icq/trunk/dos2win.inc +++ /dev/null @@ -1,121 +0,0 @@ -; -; -CP866 db 'ЂЃ‚ѓ„…†‡€‰Љ‹ЊЌЋЏђ‘’“”•–—™љ›њќћџ ЎўЈ¤Ґ¦§Ё©Є«¬­®Їабвгдежзийклмноп' - -; -; ЏҐаҐЄ®¤Ёа®ўЄ  Ё§ cp1251 ў cp866 -; -; [eax] <-- Null-terminated string -; - - win2dos: - pushad - pushf - - xor ebx, ebx - xor ecx, ecx - ;xor edx, edx - - w2d_loop: - mov bl, [eax+ecx] - cmp bl, 0 - jz w2d_end - cmp bl, 0A8h ; р - jz w2d_yo1 - cmp bl, 0B8h ; с - jz w2d_yo2 - cmp bl, 0C0h ; ђгббЄ п ЎгЄў  - jnc w2d_rchar - inc ecx - jmp w2d_loop - - w2d_yo1: - mov [eax+ecx], byte 0F0h - inc ecx - jmp w2d_loop - - w2d_yo2: - mov [eax+ecx], byte 0F1h - inc ecx - jmp w2d_loop - - w2d_rchar: - sub bl, 0C0h - mov bl, [CP866+ebx] - mov [eax+ecx], bl - inc ecx - jmp w2d_loop - - - w2d_end: - - popf - popad - ret - - -CP1251 db 'АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя' - -; -; ЏҐаҐЄ®¤Ёа®ўЄ  Ё§ CP866 ў CP1251 -; [eax] <-- Null termainated string -; - - dos2win: - pushf - pushad - - xor ebx, ebx - xor ecx, ecx - - dec ecx - - d2w_loop: - inc ecx - mov bl, [eax+ecx] - cmp bl, 0 - jz d2w_end - cmp bl, 80h - jnc d2w_rchar - - ;inc ecx - jmp d2w_loop - - d2w_yo1: - mov byte [eax+ecx], 0A8h - ;inc ecx - jmp d2w_loop - - d2w_yo2: - mov byte [eax+ecx], 0B8h - ;inc ecx - jmp d2w_loop - - d2w_rchar: - cmp bl, 0B0h - jnc d2w_rchar2 - - sub bl, 80h - mov bl, [CP1251+ebx] - mov [eax+ecx], bl - jmp d2w_loop - - d2w_rchar2: - cmp bl, 0E0h - jc d2w_loop - cmp bl, 0F0h - jz d2w_yo1 - cmp bl, 0F1h - jz d2w_yo2 - cmp bl, 0F2h - jnc d2w_loop - add bl, 10h - mov [eax+ecx], bl - jmp d2w_loop - - - d2w_end: - - popad - popf - ret diff --git a/programs/network_old/icq/trunk/editbox.inc b/programs/network_old/icq/trunk/editbox.inc deleted file mode 100644 index 72be561e47..0000000000 --- a/programs/network_old/icq/trunk/editbox.inc +++ /dev/null @@ -1,275 +0,0 @@ -; SEE YOU File FAQ.txt and HISTORY. Good Like! -;;;;;;;;;;;;;;;;;; -include 'editbox.mac' ;¬ Єа®б Є®в®ал© ¤®«¦Ґ­ ®Ў«ҐЈзЁвм ¦Ё§­м :) бЇҐжЁ «м­® ¤«п editbox -;;;;;;;;;;;;;;;;;; -macro use_edit_box procinfo,scr_h,scr_w -{ -edit_box: -ed_width equ [edi] ;иЁаЁ­  Є®¬Ї®­Ґ­в  -ed_left equ [edi+4] ;Ї®«®¦Ґ­ЁҐ Ї® ®бЁ е -ed_top equ [edi+8] ;Ї®«®¦Ґ­ЁҐ Ї® ®бЁ г -ed_color equ [edi+12] ;梥в д®­  Є®¬Ї®­Ґ­в  -shift_color equ [edi+16] ;=0x6a9480 -ed_focus_border_color equ [edi+20] ;梥в а ¬ЄЁ Є®¬Ї®­Ґ­в  -ed_blur_border_color equ [edi+24] ;梥⠭Ґ  ЄвЁў­®Ј® Є®¬Ї®­Ґ­в  -ed_text_color equ [edi+28] ;梥в ⥪бв  -ed_max equ [edi+32] ;Є®«-ў® бЁ¬ў®«®ў Є®в®алҐ ¬®¦­® ¬ ЄбЁ¬ «м­® ўўҐбвЁ -ed_text equ [edi+36] ;гЄ § вҐ«м ­  ЎгдҐа -ed_flags equ [edi+40] ;д« ЈЁ -ed_size equ [edi+42] ;Є®«-ў® бЁ¬ў®«®ў -ed_pos equ [edi+46] ;Ї®§ЁжЁп Єгаб®а  -ed_offset equ [edi+50] ;ᬥ饭ЁҐ -cl_curs_x equ [edi+54] ;ЇаҐ¤л¤г饥 Є®®а¤Ё­ в  Єгаб®а  Ї® е -cl_curs_y equ [edi+58] ;ЇаҐ¤л¤г饥 Є®®а¤Ё­ в  Єгаб®а  Ї® г -ed_shift_pos equ [edi+62] ;Ї®«®¦Ґ­ЁҐ Єгаб®а  -ed_shift_pos_old equ [edi+66] ;бв а®Ґ Ї®«®¦Ґ­ЁҐ Єгаб®а  -;========================================================== -;=== Їа®жҐ¤га  Їа®аЁб®ўЄЁ ================================= -;========================================================== -.draw: -pusha -;--- аЁб㥬 а ¬Єг --- - call .draw_border ; ”г­ЄжЁп бв ЎЁ«м­  -.draw_bg_cursor_text: -;--- Ё§¬Ґ­пҐ¬ ᬥ饭ЁҐ, Ґб«Ё ­ ¤® --- - call .check_offset ;ўлзЁб«Ґ­ЁҐ Ї®§ЁжЁЁ Єгаб®а  бв ЎЁ«м­  -;--- аЁб㥬 ў­гв७­оо ®Ў« бвм --- - call .draw_bg ;­ аЁб®ў вм Їаאַ㣮«м­ЁЄ а Ў®зҐ© ®Ў« бвЁ -;---- аЁб㥬 ўл¤Ґ«Ґ­ЁҐ, Ї® shift Ґб«Ё Ґбвм - call .draw_shift -.draw_cursor_text: -;--- аЁб㥬 Єгаб®а --- - ;--- ¬®¦Ґв ҐЈ® ­Ґ ­ ¤® аЁб®ў вм ---- - test word ed_flags,ed_focus - je @f - call .draw_cursor -@@: - call .draw_text -;;;;;;;;;;;;;;;;;;;;;;;;;; -;ЋЎйЁ© ўл室 Ё§ editbox ¤«п ўбҐе дг­ЄжЁ© Ё Ї®бв ®Ўа Ў®взЁЄ®ў -;;;;;;;;;;;;;;;;;;;;;;;;;; -.editbox_exit: -edit_ex -;========================================================== -;=== ®Ўа Ў®вЄ  Є« ўЁ вгал ================================= -;========================================================== -.key: -pusha - test word ed_flags,ed_focus ; Ґб«Ё ­Ґ ў д®ЄгбҐ, ўл室Ё¬ - je .editbox_exit -;Џа®ўҐаЄ  ­ ¦ в shift ? - call .check_shift -;---------------------------------------------------------- -;--- Їа®ўҐа塞, зв® ­ ¦ в® -------------------------------- -;---------------------------------------------------------- -use_key_process backspase,delete,left,right,home,end,insert -;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;‡ Ј«гиЄ  ­  ®Ўа Ў®вЄг Є« ўЁи ўўҐае Ё ў­Ё§ в.Ґ. ЇаЁ ®Ў­ а㦥­ЁЁ нвЁе Є®¤®ў Їа®Ёб室Ёв ўл室 Ё§ ®Ўа Ў®взЁЄ  -;;;;;;;;;;;;;;;;;;;;;;;;;;;; -use_key_no_process up,down,esc -;--- ­ ¦ в  ¤агЈ п Є« ўЁи  --- -;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;Џа®ўҐаЄ  гбв ­®ў«Ґ­ «Ё д« Ј ЇаЁ Є®в®а®¬ ­г¦­® ўлў®¤Ёвм в®«мЄ® жЁдал ў ­г¦­®¬ Ў®ЄбҐ Ґб«Ё в Є®©­Ґ®Ўе®¤Ё¬®бвЁ ­Ґв ­г¦­® § Є®¬Ґ­вЁа®ў вм ¬ Єа®б -;;;;;;;;;;;;;;;;;;;;;;;;;;;; -use_key_figures_only -;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;Їа®ўҐаЄ  ­  shift Ўл« «Ё ­ ¦ в -;;;;;;;;;;;;;;;;;;;;;;;;;;;; -are_key_shift_press -;;;;;;;;;;;;;;;;;;;;;;;;;;;; -; Їа®ўҐа塞, ­ е®¤Ёвбп «Ё Єгаб®а ў Є®­жҐ + ¤ «м­Ґ©и п ®Ўа Ў®вЄ  -;;;;;;;;;;;;;;;;;;;;;;;;;;;; -are_key_cur_end -;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;ЋЎа Ў®вЄ  Є« ўЁи insert,delete.backspase,home,end,left,right -;;;;;;;;;;;;;;;;;;;;;;;;;;;; -use_work_key -;========================================================== -;=== ®Ўа Ў®вЄ  ¬лиЁ ======================================= -;========================================================== -.mouse: -pusha -;debug -;---------------------------------------------------------- -;--- Ї®«гз Ґ¬ б®бв®п­ЁҐ Є­®Ї®Є ¬лиЁ ----------------------- -;---------------------------------------------------------- - mcall 37,2 -;---------------------------------------------------------- -;--- Їа®ўҐа塞 б®бв®п­ЁҐ ---------------------------------- -;---------------------------------------------------------- - test eax,1 - jnz .mouse_left_button - and word ed_flags,ed_mouse_on_off - xor ebx,ebx - mov dword [mouse_flag],ebx - jmp .editbox_exit -.mouse_left_button: -;---------------------------------------------------------- -;--- Ў«®ЄЁа®ўЄ  ®в д®ЄгбЁа®ўЄЁ ў ¤агЈЁе Ў®Єб е ЇаЁ Ї®Ї ¤ ­ЁЁ ­  ­Ёе Єгаб®а  -;---------------------------------------------------------- - mov eax,dword [mouse_flag] - test eax,eax - jz @f - cmp eax,edi - je @f - jmp ._blur -;---------------------------------------------------------- -;--- Ї®«гз Ґ¬ Є®®а¤Ё­ вл ¬лиЁ ®в­®бЁвҐ«м­® 0 в.Ґ ўбҐ© ®Ў« бвЁ нЄа ­  -;---------------------------------------------------------- -@@: mcall 37,0 -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;”г­ЄжЁп ®Ўа Ў®вЄЁ ¬лиЄЁ Ї®«г祭ЁҐ Є®®а¤Ё­ в Ё Їа®ўҐаЄ  Ёе + ўл¤Ґ«Ґ­Ёп -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -use_work_mause scr_h,scr_w -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;ЋЎйЁҐ дг­ЄжЁЁ ®Ўа Ў®вЄЁ -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -use_general_func -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;”г­ЄжЁЁ ¤«п а Ў®вл б key -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -use_key_func -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;”г­ЄжЁЁ ¤«п а Ў®вл б mouse -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -use_mouse_func scr_w -} -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;Bit mask from editbox -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -ed_figure_only= 1000000000000000b ;®¤­Ё бЁ¬ў®«л -ed_always_focus= 100000000000000b -ed_focus= 10b ;д®Єгб ЇаЁ«®¦Ґ­Ёп -ed_shift_on= 1000b ;Ґб«Ё ­Ґ гбв ­®ў«Ґ­ -§­ зЁв ўЇҐаўлҐ ­ ¦ в shift,Ґб«Ё Ўл« гбв ­®ў«Ґ­, §­ зЁв ¬л 㦥 зв® - в® ¤Ґ« «Ё 㤥নў п shift -ed_shift_on_off=1111111111110111b -ed_shift= 100b ;ўЄ«оз Ґвбп ЇаЁ ­ ¦ вЁЁ ­  shift в.Ґ. Ґб«Ё ­ ¦Ё¬ о -ed_shift_off= 1111111111111011b -ed_shift_bac= 10000b ;ЎЁв ¤«п ®зЁбвЄЁ ўл¤Ґ«Ґ­®Ј® shift в.Ґ. ЇаЁ гбв ­®ўЄҐ Ј®ў®аЁв зв® Ґбвм ўл¤Ґ«Ґ­ЁҐ -ed_shift_bac_cl=1111111111101111b ;®зЁбвЄ  ЇаЁ г¤ «Ґ­ЁЁ ўл¤Ґ«Ґ­Ёп -ed_shift_cl= 1111111111100011b -ed_shift_mcl= 1111111111111011b -ed_left_fl= 100000b -ed_right_fl= 1111111111011111b -ed_offset_fl= 1000000b -ed_offset_cl= 1111111110111111b -ed_insert= 10000000b -ed_insert_cl= 1111111101111111b -ed_mouse_on = 100000000b -ed_mous_adn_b= 100011000b -ed_mouse_on_off=1111111011111111b -ed_height=14 ; ўлб®в  -macro draw_edit_boxes start,_end,use_f9,procinfo -{ -if use_f9 eq -else - mcall 9,procinfo,-1 -end if - mov edi,start - mov ecx,((_end-start)/ed_struc_size) -@@: - call edit_box.draw - add edi,ed_struc_size - loop @b -} - -macro mouse_edit_boxes start,_end -{ - mov edi,start - mov ecx,((_end-start)/ed_struc_size) -@@: - call edit_box.mouse - add edi,ed_struc_size - loop @b -} - -macro key_edit_boxes start,end -{ - mov edi,start - mov ecx,((end-start)/ed_struc_size) -@@: - call edit_box.key - add edi,ed_struc_size - loop @b -} -ed_struc_size=70 -struc edit_box width,left,top,color,shift_color,focus_border_color,\ - blur_border_color,text_color,max,text,flags,size,pos -{ -.width dd width -.left dd left -.top dd top -.color dd color -.shift_color dd shift_color -.focus_border_color dd focus_border_color -.blur_border_color dd blur_border_color -.text_color dd text_color -.max dd max -.text dd text -.flags dw flags+0 -.size dd size+0 -.pos dd pos+0 -.offset dd 0 -.cl_curs_x dd 0 -.cl_curs_y dd 0 -.shift dd 0 -.shift_old dd 0 -} - - -macro edit_boxes_set_sys_color start,end,color_table -{ - mov edi,start - mov ecx,((end-start)/ed_struc_size) - mov esi,color_table -@@: - mov eax,[esi+36] - mov ebx,[esi+20] - mov ed_focus_border_color,eax - shr bh,1 - shr bl,1 - shr ah,1 - shr al,1 - add ah,bh - add al,bl - ror eax,16 - ror ebx,16 - shr bl,1 - shr al,1 - add al,bl - ror eax,16 - mov ed_blur_border_color,eax - add edi,ed_struc_size - loop @b -} - -macro draw_edit_box ed_ptr,use_f9,procinfo -{ -if use_f9 eq -else - mcall 9,procinfo,-1 -end if - mov edi,ed_ptr - call edit_box.draw -} - -macro mouse_edit_box ed_ptr -{ - mov edi,ed_ptr - call edit_box.mouse -} - -macro key_edit_box ed_ptr -{ - mov edi,ed_ptr - call edit_box.key -} -macro default_box ed_ptr -{ -pusha -; xor eax,eax -; mov ed_shift_pos,eax -; mov ed_shift_pos_old,eax - and word ed_flags,ed_shift_cl -; mov ed_offset,eax -popa -} \ No newline at end of file diff --git a/programs/network_old/icq/trunk/editbox.mac b/programs/network_old/icq/trunk/editbox.mac deleted file mode 100644 index 0f628fe0ed..0000000000 --- a/programs/network_old/icq/trunk/editbox.mac +++ /dev/null @@ -1,1129 +0,0 @@ -;Њ Єа®б ¤«п ўлў®¤  ®б­®ў­ле дг­ЄжЁ© Є®в®алҐ ЁбЇ«м§говбп Ў®Єб®¬ -macro use_general_func -{ -;debug_func -;---------------------------------------------------------- -;--- Їа®жҐ¤га  Їа®аЁб®ўЄЁ ўл¤Ґ«Ґ­®© з бвЁ ----------------- -;---------------------------------------------------------- -.draw_shift: - test word ed_flags,ed_shift_bac ;гбв ­®ўЄ  д« Ј , ўл¤Ґ«Ґ­­®© ®Ў« бвЁ - jz @f - mov ebp,shift_color - mov ebx,dword ed_shift_pos - call .sh_cl_ -@@: ret -;---------------------------------------------------------- -;--- Їа®жҐ¤га  Їа®аЁб®ўЄЁ ⥪бв  -------------------------- -;---------------------------------------------------------- -.draw_text: -;--- ўлзЁб«пҐ¬, бЄ®«мЄ® Ї®¬Ґй Ґвбп бЁ¬ў®«®ў --- -;--- зв®Ўл ¬гб®а ­Ґ аЁб®ў вм --- - call .get_n - mov esi,ed_size - mov ebx,ed_offset - sub esi,ebx - cmp eax,esi - jae @F - mov esi,eax ;зв®Ўл ­Ґ ўл室Ёвм §  ЇаҐ¤Ґ«л нЄа ­  -;--- аЁб㥬 ⥪бв --- -@@: mov eax,4 - mov ebx,ed_left - mov edx,ed_offset - add ebx,2 - shl ebx,16 - add ebx,ed_top - mov ecx,ed_text_color - add ebx,4 - add edx,ed_text - mcall -ret -;---------------------------------------------------------- -;--- Їа®жҐ¤га  Їа®аЁб®ўЄЁ д®­  ---------------------------- -;ўе®¤­лҐ ¤ ­­лҐ -;eax -;edx - color -;---------------------------------------------------------- -;ўе®¤ в®«мЄ® 梥в edx -.draw_bg: - mov ebx,ed_left - add ebx,1 - mov edx,ed_color - shl ebx,16 - add ebx,ed_width - sub ebx,1 -.draw_bg_eax: - mov ecx,ed_top - mov eax,13 - add ecx,1 - shl ecx,16 - add ecx,ed_height - dec ecx - mcall -ret -;---------------------------------------------------------- -;--- Їа®жҐ¤га  Ї®«г祭Ёп Є®«ЁзҐбвў  бЁ¬ў®«®ў ў ⥪г饩 йЁаЁ­Ґ Є®¬Ї®­Ґ­в  -;---------------------------------------------------------- -.get_n: - mov eax,ed_width ;Ї®«г祬 иЁаЁ­г Є®¬Ї®­Ґ­в  - xor edx,edx ;१г«мв в а бЇ®«®Ј Ґвбп ў Ї аҐ edx:eax ў eax - ®бв в®Є - sub eax,4 ;ўлзвЁ¬ 4 - mov ebx,6 ;§ Ја㧬Ё ¤Ґ«ЁвҐ«м - div ebx ;а §¬¤Ґ«Ё¬ ­  6 -ret -;---------------------------------------------------------- -;--- Їа®жҐ¤га  аЁб®ў ­Ёп Єгаб®а  -------------------------- -;---------------------------------------------------------- -;ўе®¤­лҐ ebp- 梥в -.clear_cursor: - mov edx,ebp - mov ebx,cl_curs_x - mov ecx,cl_curs_y - jmp .draw_curs -.draw_cursor: - mov edx,ed_text_color - mov ebx,ed_pos - mov ecx,ed_offset - sub ebx,ecx - - lea ebx,[ebx*2+ebx] - shl ebx,1 - ;imul ebx,6 - add ebx,ed_left - mov ecx,ed_top - inc ebx - add ecx,2 - mov ebp,ebx - shl ebx,16 - mov bx,bp - mov ebp,ecx - - shl ecx,16 - mov cx,bp - add ecx,ed_height-4 - - mov cl_curs_x,ebx - mov cl_curs_y,ecx -.draw_curs: - mcall 38 -ret -;---------------------------------------------------------- -;--- Їа®жҐ¤га  аЁб®ў ­Ёп а ¬ЄЁ ---------------------------- -;---------------------------------------------------------- -.draw_border: -;--- 梥в а ¬ЄЁ --- - test word ed_flags,ed_focus - mov edx,ed_focus_border_color - jne @f - mov edx,ed_blur_border_color -@@: -;--- ᢥаег --- - mov eax,38 - mov ebx,ed_left - mov ecx,ebx - shl ebx,16 - mov bx,cx - add ebx,ed_width - mov ecx,ed_top - mov esi,ecx - shl ecx,16 - mov cx,si - mcall -;--- б­Ё§г --- - mov esi,ecx - add ecx,ed_height - mov ebp,ecx - shl ecx,16 - mov cx,bp - mcall -;--- б«Ґў  --- - mov cx,si - mov ebp,ebx - sub ebx,ed_width - mcall -;--- бЇа ў  --- - mov ebx,ebp - shl ebx,16 - mov bx,bp - mcall -ret -;---------------------------------------------------------- -;--- Їа®ўҐаЄ , § иҐ« «Ё Єгаб®а §  Ја ­Ёжл Ё, Ґб«Ё ­ ¤®, --- -;--- Ё§¬Ґ­пҐ¬ ᬥ饭ЁҐ ------------------------------------ -;--- Ґб«Ё ᬥ饭ЁҐ Ўл«® гбв ­®ўЄ  д« Ј  ed_offset_cl Ё­ зҐ -; Ґб«Ё ­ЁзҐЈ® ­Ґ Ё§¬Ґ­Ё«®бм в® ўлбв ў«Ґ­ЁҐ ed_offset_fl -; ў ®ЎйҐ© ЎЁв®ў®© ¬ ааЁжҐ б®бв®п­Ёп Є®¬Ї®­Ґ­в®ў word ed_flags -;---------------------------------------------------------- -.check_offset: -pusha - mov ecx,ed_pos - mov ebx,ed_offset - cmp ebx,ecx - ja .sub_8 - - push ebx - call .get_n ;Ї®«гзЁ¬ Є®«-ў® бЁ¬ў®«®ў ў Ї аҐ ॣЁбва®ў edx:eax - pop ebx - mov edx,ebx - add edx,eax ;ed_offset+width editbox - inc edx ;­Ґ®Ўе®¤Ё¬® ¤«п ­®¬ «м­®Ј® Ї®«®¦Ґ­Ёп Єгаб®а  ў Єа ©­Ґ© «Ґў®© Ї®§ЁжЁЁ - cmp edx,ecx - ja @f - - mov edx,ed_size - cmp edx,ecx - je .add_end - - sub edx,ecx - cmp edx,8 - jbe .add_8 - add ebx,8 - jmp .chk_d - -.sub_8: cmp ecx,0 - je .sub_min - cmp ebx,8 - jbe .sub_min - sub ebx,8 ;ebx=ed_offset - jmp .chk_d -.sub_min: - xor ebx,ebx - jmp .chk_d - -.add_end:sub edx,eax - mov ebx,edx - jmp .chk_d -.add_8: add ebx,edx -.chk_d: mov ed_offset,ebx - call .draw_bg - and word ed_flags,ed_offset_cl -edit_ex -@@: - or word ed_flags,ed_offset_fl -edit_ex -} - -macro use_key_func -{ -;ЋЎа Ў®вЄ  Shift ¤«п б­пвЁп ўл¤Ґ«Ґ­Ёп ­ҐЁ§ўҐбв­®© ®Ў« бвЁ -.shift: ;;;;;;;SHIFT - test word ed_flags,ed_shift - je .f_exit - -@@: mov ebp,shift_color - or word ed_flags,ed_shift_bac ;гбв ­®ўЄ  д« Ј , ўл¤Ґ«Ґ­­®© ®Ў« бвЁ - mov ebx,dword ed_shift_pos - call .sh_cl_ - jmp .draw_cursor_text -;;;;;;;;;;;;;;;;;;;;; -.f_exit:call .check_offset - and word ed_flags,ed_shift_cl - call .enable_null - jmp .draw_cursor_text -.sh_cl_: -;;;;;;SHIFT end -;®Ўа Ў®вЄ  ®зЁбвЄЁ, ЇаЁ «Ґў®¬ - Їа ў®¬ ¤ўЁ¦Ґ­ЁЁ ўл¤Ґ«Ґ­Ёп -;¤«п ®Ўа Ў®вЄЁ б­пвЁп ўл¤Ґ«Ґ­Ёп -;ўе®¤­лҐ Ї а ¬Ґвал ebp=color ebx=ed_shift_pos - mov eax,dword ed_pos - cmp eax,ebx - - jae .sh_n - push eax ;¬Ґ­м襥 ў eax - push ebx ;Ў®«м襥 - jmp .sh_n1 - ;Ґб«Ё Ё­ зҐ -.sh_n: push ebx - push eax -.sh_n1: - call .check_offset - call .get_n - mov edx,eax ;size of ed_box - mov ecx,ed_offset - add eax,ecx ;eax = w_off= ed_offset+width - mov edx,eax ;save - pop ebx ;Ў®«м襥 - pop eax ;¬Ґ­м襥 - - cmp eax,ecx ;ба ў­Ґ­ЁҐ б ¬Ґ­м襣® б offset. - jae .f_f ;Ґб«Ё Ў®«миҐ - xor eax,eax - cmp edx,ebx ;cа ў­Ё¬ а §¬Ґа w_off б Ў®«миЁ¬ - jb @f - sub ebx,ecx - jmp .nxt_f -@@: mov ebx,edx - sub ebx,ecx - jmp .nxt_f -.f_f: - sub eax,ecx - cmp edx,ebx ;cа ў­Ё¬ а §¬Ґа w_off б Ў®«миЁ¬ - jle @f - sub ebx,ecx - sub ebx,eax - jmp .nxt_f -@@: - mov ebx,edx - sub ebx,ecx - sub ebx,eax -.nxt_f: - mov edx,ebx - lea ebx,[eax*2+eax] - shl ebx,1 - add ebx,ed_left - inc ebx - shl ebx,16 - lea ecx,[edx*2+edx] - shl ecx,1 - mov bx,cx - inc ebx - mov edx,ebp;shift_color - - call .draw_bg_eax -@@: call .enable_null - ret -;;;;;;;;;;;;;;;;;;;;; -;“бв ­®ўЄ - б­пвЁҐ ўл¤Ґ«Ґ­Ёп ў ®¤Ё­ бЁ¬ў®« -;;;;;;;;;;;;;;;;;;;;; -.drw_sim: - mov eax,dword ed_pos - call .draw_rectangle ;­ аЁб®ў вм Їаאַ㣮«м­ЁЄ б § ¤ ­­л¬ 梥⮬ - jmp @b -;;;;;;;;;;;;;;;;;;;;; -;”гЄжЁп гбв ­®ўЄЁ ўл¤Ґ«Ґ­Ёп ЇаЁ ¤ўЁ¦Ґ­Ёп ў«Ґў® Ё ўЇа ў® Ё ­ ¦ вЁЁ shift -;‹®ЈЁЄ : -;;;;;;;;;; -.draw_wigwag: -;дг­ЄжЁп гбв ­®ўЄЁ ЇҐаҐ¬Ґ­­ле - mov ebp,shift_color - call .clear_cursor - - or word ed_flags,ed_shift_bac ;гбв ­®ўЄ  д« Ј , ўл¤Ґ«Ґ­­®© ®Ў« бвЁ - mov ebp,shift_color - mov eax,dword ed_pos - test word ed_flags,ed_left_fl - jz .low - jmp @f -;;;;;;;;;; -;”гЄжЁп г¤ «Ґ­Ёп ўл¤Ґ«Ґ­Ёп ЇаЁ ¤ўЁ¦Ґ­Ёп ў«Ґў® Ё ўЇа ў® Ё ­ ¦ вЁЁ shift -;‹®ЈЁЄ : -;;;;;;;;;; -.draw_wigwag_cl: -;дг­ЄжЁп гбв ­®ўЄЁ ЇҐаҐ¬Ґ­­ле - mov ebp,ed_color - call .clear_cursor - - mov ebp,ed_color - mov eax,dword ed_pos - test word ed_flags,ed_left_fl - jz .low -@@: call .draw_rectangle ;­ аЁб®ў вм Їаאַ㣮«м­ЁЄ § Єа иЁў Ґ¬®© ®Ў« бвЁ - ret -.low: dec eax - jmp @b -;ўе®¤­®© Ї а ¬Ґва ebx - ed_pos -.sh_first_sh: - test word ed_flags,ed_shift - je @f - mov dword ed_shift_pos_old,ebx - test word ed_flags,ed_shift_on - jne @f - mov dword ed_shift_pos,ebx - or word ed_flags,ed_shift_on -@@: ret -;ЋЎа Ў®вЄ  Єа ©­Ёе Ї®«®¦Ґ­Ё© ў editbox ЇаЁ ­ ¦ в®¬ shift -;Їа®Ё§ў®¤Ёв б­пвЁҐ ўл¤Ґ«Ґ­ЁҐ, Ґб«Ё ­Ґв shift -;Ё­ зҐ ў®®ЎйҐ ўл室Ёв -.sh_st_of: - test word ed_flags,ed_shift - jne @f - test word ed_flags,ed_shift_bac - je @f - mov ebp,ed_color - mov ebx,dword ed_shift_pos - call .sh_cl_ ;®зЁбвЄ  ўл¤Ґ«Ґ­®Ј® да Ј¬Ґ­в  - and word ed_flags,ed_shift_cl ; ®зЁбвЄ  ®в в®Ј® зв® гЎа «Ё ўл¤Ґ«Ґ­ЁҐ - jmp .draw_cursor_text -@@: - and word ed_flags,ed_shift_off -edit_ex -;Їа®ўҐаЄ  б®бв®п­Ёп shift Ўл« «Ё ®­ ­ ¦ в а ­миҐ? -.sh_enable: - test word ed_flags,ed_shift - jne .sh_ext_en ;­ аЁб®ў вм § Єа иҐ­л© Їаאַ㣮«м­ЁЄ - - test word ed_flags,ed_shift_bac - je @f - call .check_offset - - mov ebp,ed_color - mov ebx,dword ed_shift_pos - call .sh_cl_ ;®зЁбвЄ  ўл¤Ґ«Ґ­®Ј® да Ј¬Ґ­в  - call .draw_wigwag_cl - and word ed_flags,ed_shift_cl ; 1ў а ­Ґ ­г¦­® - ret - -@@: mov ebp,ed_color - call .clear_cursor - call .check_offset - ret -.sh_ext_en: - call .check_offset - test word ed_flags,ed_offset_fl - je @f -;ђЁб®ў ­ЁҐ § Єа иҐ­ле Їаאַ㣮«м­ЁЄ®ў Ё ®зЁбвЄ  Ёе - mov eax,dword ed_shift_pos - mov ebx,dword ed_pos - mov ecx,dword ed_shift_pos_old -;Їа®ўҐаЄ  Ё аЁб®ў ­ЁҐ § Єа иҐ­ле ®Ў« б⥩ - cmp eax,ecx - je .1_shem - jb .smaller - cmp ecx,ebx - ja .1_shem - call .draw_wigwag_cl ;clear - jmp .sh_e_end -.smaller: - cmp ecx,ebx - jb .1_shem - call .draw_wigwag_cl ;clear - jmp .sh_e_end -;alike = -.1_shem: call .draw_wigwag -.sh_e_end: and word ed_flags,ed_shift_off - ret -@@: mov ebp,shift_color - mov ebx,dword ed_shift_pos - call .sh_cl_ - jmp .sh_e_end -;дг­ЄжЁп ¤«п ®Ўа Ў®вЄЁ shift ЇаЁ ­ ¦ вЁЁ home and end -.sh_home_end: - mov ebp,ed_color - call .clear_cursor - test word ed_flags,ed_shift_bac - je @f - mov ebp,ed_color - mov ebx,dword ed_shift_pos_old - call .sh_cl_ - -@@: test word ed_flags,ed_shift - je .sh_exit_ ;ўл©вЁ - mov ebp,shift_color - mov ebx,dword ed_shift_pos - call .sh_cl_ - or word ed_flags,ed_shift_bac ;гбв ­®ўЄ  д« Ј , ўл¤Ґ«Ґ­­®© ®Ў« бвЁ - jmp .sh_e_end -.sh_exit_: call .check_offset - ret -;дг­ЄжЁп ў­ҐбҐ­Ёп 0 Ї®  ¤аҐбг ed_size+1 -.enable_null: - pusha - mov eax,ed_size - mov ebx,ed_text - test eax,eax - add eax,ebx - jne @f - inc eax -@@: xor ebx,ebx - mov [eax],bl -edit_ex -;- г¤ «Ґ­ЁҐ бЁ¬ў®«  -;‚室­лҐ ¤ ­­лҐ edx=ed_size;ecx=ed_pos -.del_char: - mov esi,ed_text - test word ed_flags,ed_shift_on - je @f - mov eax,dword ed_shift_pos - mov ebx,esi - cmp eax,ecx - jae .dh_n - - mov ed_pos,eax ;зв® Ўл ­Ґ Ўл«® гЎҐЈ ­Ёп Єгаб®а  - mov ebp,ecx - sub ebp,eax - add ebx,eax ;eax ¬Ґ­миҐ - sub edx,ecx - add esi,ecx - - mov dword ed_shift_pos,ebp - jmp .del_ch_sh - ;Ґб«Ё Ё­ зҐ -.dh_n: - mov ebp,eax - sub ebp,ecx - add ebx,ecx - sub edx,eax - add esi,eax - mov dword ed_shift_pos,ebp - jmp .del_ch_sh - -@@: add esi,ecx ;гЄ § вҐ«м + ᬥ饭ЁҐ Є ॠ«м­®¬г ЎгддҐаг - mov ebx,esi - inc esi - cld - - sub edx,ecx -.del_ch_sh: - - push edi - mov edi,ebx -@@: - lodsb - stosb - dec edx - jns @b - - pop edi - ret -;ўлзЁб«Ёвм § Єа иЁў Ґ¬го ®Ў« бвм -;б®Ј« иҐ­ЁҐ ў ebp - ЇҐаҐ¤ Ґвбп ed_size -.clear_bg: - call .get_n ;Ї®«гзЁвм а §¬Ґа ў бЁ¬ў®« е иЁаЁ­л Є®¬Ї®­Ґ­в  - push eax - mov ebx,ed_offset - add eax,ebx ;eax = w_off= ed_offset+width - mov ebx,ebp ;ed_size - - cmp eax,ebx - jb @f - mov eax,ed_pos - sub ebx,eax - mov ecx,ed_offset - sub eax,ecx - jmp .nxt -@@: mov ebx,ed_pos - push ebx - sub eax,ebx - mov ebx,eax ;It is don't optimal - - pop eax ;ed_pos - mov ecx,ed_offset - sub eax,ecx -.nxt: - mov ebp,eax ;Їа®ўҐаЄ  ­  ўл室 § Єа иЁў Ґ¬®© ®Ў« бвЁ §  ЇаҐ¤Ґ«л ¤«Ё­л - add ebp,ebx - pop edx - cmp ebp,edx - je @f - inc ebx - -@@: mov edx,ebx - lea ebx,[eax*2+eax] - shl ebx,1 - add ebx,ed_left - inc ebx - shl ebx,16 - lea ecx,[edx*2+edx] - shl ecx,1 - mov bx,cx - mov edx,ed_color - call .draw_bg_eax - ret -;;;;;;;;;;;;;;;;;;; -;;; ЋЎа Ў®вЄ  ЇаЁ¬ЁвЁў®ў -;;;;;;;;;;;;;;;;;;;; -;Ќ аЁб®ў вм Їаאַ㣮«м­ЁЄ, 梥⠯ҐаҐ¤ Ґвбп ў ebp -;ўе®¤­лҐ Ї а ¬Ґвал: -;eax=dword ed_pos -;ebp=-梥в ed_color or shift_color -.draw_rectangle: - mov ecx,dword ed_offset - sub eax,ecx - lea ebx,[eax*2+eax] - shl ebx,1 - inc ebx - add ebx,ed_left - shl ebx,16 - add ebx,6 - mov edx,ebp - call .draw_bg_eax - ret -;;;;;;;;;;;;;;;;;; -;;Џа®ўҐаЄ  ­ ¦ в «Ё shift -;;;;;;;;;;;;;;;;;; -.check_shift: -pusha ;б®еа ­Ё¬ ўбҐ ॣЁбвал - mcall 66,3,1 - test al,0x03 - je @f - or word ed_flags,ed_shift ;гбв ­®ўЁ¬ д« Ј -@@:edit_ex -} -;¬ Єа®б Є« ўЁи ­  Є®в®алҐ Їа®Ёб室Ёв ॠЄжЁп -macro use_key_process backspase,delete,left,right,home,end,insert -{ -if backspase eq -else - cmp ah,8 - jz .backspace -end if -if delete eq -else - cmp ah,0xb6 - jz .delete -end if -if left eq -else - cmp ah,176 - jz .left -end if -if right eq -else - cmp ah,179 - jz .right -end if -if home eq -else - cmp ah,180 - jz .home -end if -if home eq -else - cmp ah,181 - jz .end -end if -if insert eq -else - cmp ah,185 ;insert - jz .insert -end if -} -macro use_key_no_process up,down,esc -{ -if up eq -else - cmp ah,177 - jz .editbox_exit -end if -if down eq -else - cmp ah,178 - jz .editbox_exit -end if -if esc eq -else - cmp ah,27 ;ESC - Є« ўЁи  )) - jz .editbox_exit -end if -} - -macro use_key_figures_only -{ - test word ed_flags,ed_figure_only ; в®«мЄ® жЁдал ? - jz @f - cmp ah,'0' - jb .editbox_exit - cmp ah,'9' - ja .editbox_exit -@@: -} -macro are_key_shift_press -{ - test word ed_flags,ed_shift_on - je @f - ;‚室­лҐ ¤ ­­лҐ edx=ed_size;ecx=ed_pos - push eax - mov edx,ed_size - mov ecx, ed_pos - pusha -;;;;;;;;;;;;;;;;;;;;; -;clear input arrea - mov ebp,ed_color - mov ebx,dword ed_shift_pos - call .sh_cl_ - mov ebp,ed_size - call .clear_bg -;;;;;;;;;;;;;;;;;;;;; - popa - call .del_char -;;;; - mov eax,dword ed_shift_pos - mov ebx,ed_size - sub ebx,eax - mov ed_size,ebx - pop eax -@@: -} -macro are_key_cur_end -{ - mov ecx,ed_size - mov edx, ed_max - test word ed_flags,ed_insert - jne @f - cmp ecx,edx - jae .editbox_exit -@@: mov ebx, ed_pos - cmp ebx,edx - jl @f ; Ґб«Ё ¬Ґ­миҐ Ё«Ё а ў­® - jmp .editbox_exit - -@@: ; б¤ўЁЈ Ґ¬ бЁ¬ў®«л Ї®б«Ґ Єгаб®а  ўЇа ў® - mov ecx,ed_size - push edi eax - mov ebp,edi - mov esi,ed_text ; “Є § вҐ«м ­  ЎгдҐа - ;Ѓг¤Ґ¬ а Ў®в вм б® бва®Є®© - add esi,ecx ;add ed_size ¤®Ў ўЁ¬ max size - mov edi,esi - - cmp ecx,ebx ;…б«Ё г ­ б Ї®§ЁжЁп Єгаб®а  = ⥪г饬г а §¬Ґаг ­ ЇҐз в ­­ле бЁ¬ў®«®ў в.Ґ. Єгаб®а бв®Ёв ў Є®­жҐ - je .In_k - - test word [ebp+40],ed_insert ;IF insert is enable в.Є. edi Ё§¬Ґ­Ґ­  ¤аҐб㥬 зҐаҐ§ ebp - jne .ins_v -;clear -pusha - mov edi,ebp - mov ebp,ed_size - call .clear_bg -popa - sub ecx,ebx ;Ќ ©¤Ґ¬ Є®«-ў® бЁ¬ў®«®ў ¤«п ЇҐаҐ¤ўЁ¦Ґ­Ёп. - inc edi ;‘¬ҐбвЁ¬ ­ иЁ бЁ¬ў®«л ў Їа ў® - std - inc ecx - @@: - ;-------- - lodsb - stosb - ;-------- - loop @b -.In_k: cld - pop eax - mov al,ah - stosb - pop edi -; ўбв ў«пҐ¬ Є®¤ Є« ўЁиЁ вг¤ , Ј¤Ґ Єгаб®а - ; 㢥«ЁзЁў Ґ¬ §­ зҐ­ЁҐ а §¬Ґа  Ё Ї®§ЁжЁЁ - inc dword ed_size - inc dword ed_pos - call .draw_all2 - jmp .shift -} -macro use_work_key -{ -.insert: test word ed_flags,ed_insert ;not word ed_insert - je @f - and word ed_flags,ed_insert_cl - jmp .editbox_exit -@@: - or word ed_flags,ed_insert - jmp .editbox_exit -.ins_v: - dec dword [ebp+42];ed_size ;processing is insert - sub esi,ecx - add esi,ebx - mov edi,esi -;clear -pusha - mov edi,ebp - mov ebp,ed_pos - call .clear_bg -popa - jmp .In_k -;;;;;;;;;;;;;;;;;;;;;;;;;;;; -.delete: - mov edx,ed_size - mov ecx,ed_pos - cmp edx,ecx - jg .bac_del - test word ed_flags,ed_shift_on - jne .del_bac -edit_ex -.bac_del: - call .del_char - jmp .draw_all -;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;--- ­ ¦ в  Є« ўЁи  backspace --- -.backspace: - ; Їа®ўҐа塞, Єгаб®а г «Ґў®Ј® Єа п ? - mov ecx,ed_pos - test ecx,ecx - jnz .del_bac - test word ed_flags,ed_shift_on - jne .bac_del - -edit_ex -.del_bac: - mov edx,ed_size - cmp edx,ecx ;if ed_pos=ed_size - je @f - dec ecx - call .del_char -@@: test word ed_flags,ed_shift_on - jne .bac_del - dec dword ed_pos -.draw_all: - push .shift;.draw_cursor_text;eax - - test word ed_flags,ed_shift_on - je @f - mov eax,dword ed_shift_pos - mov ebx,ed_size - sub ebx,eax - mov ed_size,ebx - - mov ebp,ed_color - call .clear_cursor - call .check_offset - call .draw_bg - ret -@@: dec dword ed_size - -.draw_all2: - and word ed_flags,ed_shift_cl - mov ebp,ed_color - call .clear_cursor - call .check_offset - mov ebp,ed_size - call .clear_bg - ret -;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;--- ­ ¦ в  Є« ўЁи  left --- -.left: mov ebx,ed_pos - test ebx,ebx - jz .sh_st_of - or word ed_flags,ed_left_fl - call .sh_first_sh - dec dword ed_pos - call .sh_enable - jmp .draw_cursor_text -;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;--- ­ ¦ в  Є« ўЁи  right --- -.right: mov ebx,ed_pos - cmp ebx,ed_size - je .sh_st_of - and word ed_flags,ed_right_fl - call .sh_first_sh - inc dword ed_pos - call .sh_enable - jmp .draw_cursor_text -;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -.home: - mov ebx,ed_pos - test ebx,ebx - jz .sh_st_of - call .sh_first_sh - xor eax,eax - mov ed_pos,eax - call .sh_home_end - jmp .draw_cursor_text -;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -.end: - mov ebx,ed_pos - cmp ebx,dword ed_size - je .sh_st_of - call .sh_first_sh - mov eax,ed_size - mov ed_pos,eax - call .sh_home_end - jmp .draw_cursor_text -} - -macro use_mouse_func scr_w -{ -;---------------------------------------------------------- -;--- ЋЎа Ў®вЄ  .mouse_wigwag -;---------------------------------------------------------- -.mouse_wigwag: - shr eax,16 - or word ed_flags,ed_shift_bac+ed_shift_on+ed_shift -;;;;;;;;;;;;;;;;;; -;;Їа®жҐ¤га  ®Ўа Ў®вЄЁ Ї®«®¦Ґ­Ёп ўл¤Ґ«Ґ­­®Ј® ⥪бв , Є®Ј¤  Їа®Ёб室Ёв ўл室 §  ЇаҐ¤Ґ«л editbox -;;;;;;;;;;;;;;;;;; - mov ebx,[procinfo.box.left] - add ebx,ed_left -if scr_w eq -else - add ebx,dword scr_w -end if - cmp eax,ebx - jb .mleft - - add ebx,ed_width - cmp eax,ebx - ja .mright - - sub ebx,ed_width - - xor edx,edx - sub eax,ebx ; ўлзвЁ¬ Ё§ Є®®а¤Ё­ в ¬лиЄЁ Ї® ®бЁ е Є®®а¤Ё­ вл ¤® editbox Ї® ®бЁ е - mov ebx,6 - div ebx -;;;;;;;;;;;;;;;;;; -;;Їа®жҐ¤га  ®Ўа Ў®вЄЁ Ї®«®¦Ґ­Ёп ўл¤Ґ«Ґ­­®Ј® ⥪бв , ў ЇаҐ¤Ґ« е ®Ў« бвЁ editbox -;;;;;;;;;;;;;;;;;; -;Џ®«гзЁ«Ё Є®®а¤Ё­ вл ў eax ¬лиЄЁ, в.Ґ. Єг¤  ®­  ЇҐаҐ¬ҐбвЁ« бм -;ђЁб®ў ­ЁҐ § Єа иҐ­ле Їаאַ㣮«м­ЁЄ®ў Ё ®зЁбвЄ  Ёе - add eax,ed_offset ;¤®Ў ўЁ¬ ᬥ饭ЁҐ - cmp eax,dword ed_size ;Ґб«Ё ўли«Ё §  ЇаҐ¤Ґ«л, в® ­ЁзҐЈ® ­Ґ ¤Ґ« вм - ja .mwigvag -.mdraw: - mov dword ed_pos,eax ;б®еа ­Ё¬ ­®ў®Ґ §­ зҐ­ЁҐ -;ђЁб®ў ­ЁҐ § Єа иҐ­ле Їаאַ㣮«м­ЁЄ®ў Ё ®зЁбвЄ  Ёе - mov ecx,dword ed_shift_pos - mov ebx,dword ed_shift_pos_old - mov dword ed_shift_pos_old,eax ;ў­ҐбҐ¬ ­®ў®Ґ §­ зҐ­ЁҐ бв а®© Ї®§ЁжЁЁ Єгаб®а  -;Їа®ўҐаЄ  Ё аЁб®ў ­ЁҐ § Єа иҐ­ле ®Ў« б⥩ - cmp ecx,ebx ;ўлпб­пҐ¬ Єг¤  Ўл«® ¤ўЁ¦Ґ­ЁҐ ­  ®¤Ё­ и Ј ­ § ¤ - je .m1_shem ;¤ўЁ¦Ґ­Ёп ­Ґ Ўл«® а ­ҐҐ - jb .msmaller ;¤ўЁ¦Ґ­ЁҐ Ўл«® -> - cmp ebx,eax ;¤ўЁ¦Ґ­ЁҐ Ўл«® ¤® нв®Ј® <- Ё вгв ¬л Їа®ўҐа塞 ᥩз б Єг¤  ¤ўЁ¦Ґ­ЁҐ Їа®Ёб室Ёв - ja .m1_shem ;Ґб«Ё Ўл«® ¤ўЁ¦Ґ­ЁҐ <- в® ­г¦­® § Єа бЁвм ®Ў« бвм - je .mwigvag ;Ґб«Ё Ё§¬Ґ­Ґ­Ёп ­Ґ Ўл«®, в® ­ЁзҐЈ® ­Ґ ¤Ґ« вм - mov ebp,ed_color ;вгв ­г¦­® ®зЁбвЁвм ®Ў« бвм c ed_pos ed_shift_pos_old -;ўе®¤­лҐ Ї а ¬Ґвал ebp=color ebx=ed_shift_pos - call .sh_cl_ - jmp .mwigvag -.msmaller: - cmp ebx,eax - jb .m1_shem - mov ebp,ed_color -;ўе®¤­лҐ Ї а ¬Ґвал ebp=color ebx=ed_shift_pos - call .sh_cl_ - jmp .mwigvag -;alike = -.m1_shem: - mov ebp,shift_color -;ўе®¤­лҐ Ї а ¬Ґвал ebp=color ebx=ed_shift_pos - mov ebx,ecx - call .sh_cl_ - jmp .mwigvag -.mwigvag: - and word ed_flags,ed_shift_mcl - jmp .draw_cursor_text -; popa -; ret -.mleft: - mov eax,ed_pos - cmp eax,0 - jbe .mwigvag - dec eax - call .check_offset - push eax - mov ebx,ed_shift_pos - mov ebp,shift_color - call .sh_cl_ - pop eax - jmp .mdraw -.mright: - mov eax,ed_pos - mov ebx,ed_size - cmp eax,ebx - jae .mwigvag - inc eax - call .check_offset - mov ebx,ed_shift_pos - mov ebp,shift_color - push eax - call .sh_cl_ - pop eax - jmp .mdraw -} - -macro use_work_mause scr_h,scr_w -;---------------------------------------------------------- -;--- Ђ ­Ґ 㤥নў Ґ¬ «Ё ¬л Є« ўЁиг ¬лиЄЁ, ЇҐаҐ¬Ґй п Єгаб®а, ў® ўбҐ а §­лҐ бв®а®­л? -;---------------------------------------------------------- -{ - test word ed_flags,ed_mouse_on - jne .mouse_wigwag -;---------------------------------------------------------- -;--- Їа®ўҐа塞, Ї®Ї ¤ Ґв «Ё Єгаб®а ў edit box ------------- -;---------------------------------------------------------- - mov ebx,[procinfo.box.top] - add ebx,ed_top -if scr_h eq -else - add ebx,scr_h -end if - cmp ax,bx - jl ._blur;.mouse_end_no_focus - - add ebx,ed_height - cmp ax,bx - jg ._blur;.mouse_end_no_focus - - shr eax,16 - - mov ebx,[procinfo.box.left] - add ebx,ed_left -if scr_w eq -else - add ebx,scr_w -end if - cmp ax,bx - jl ._blur;.mouse_end_no_focus - - add ebx,ed_width - cmp ax,bx - jg ._blur;.mouse_end_no_focus -;--- Ё§¬Ґ­пҐ¬ Ї®§ЁжЁо Єгаб®а  --- - push eax - mov ebp,ed_color - call .clear_cursor - pop eax -._mvpos: - mov ebx,dword [procinfo.box.left] - xor edx,edx - sub eax,ed_left - sub eax,ebx -if scr_w eq -else - add ebx,scr_w - sub eax,2 -end if - mov ebx,6 - div bx - add eax,ed_offset - cmp eax,ed_size - jna ._mshift - mov eax,ed_size -._mshift: -;;;;;;; -;;‘ҐЄжЁп ®Ўа Ў®вЄЁ shift Ё ўл¤Ґ«Ґ­Ёп Ї® shift -;;;;;;; - test word ed_flags,ed_shift_bac - je @f - mov ebp,dword ed_color - mov ebx,dword ed_shift_pos - push eax - call .sh_cl_ - and word ed_flags,ed_shift_bac_cl - pop eax -@@: - test word ed_flags,ed_mouse_on - jne @f - - mov dword ed_shift_pos,eax - or word ed_flags,ed_mouse_on - mov dword ed_pos,eax - mov dword [mouse_flag],edi ;гбв ­®ўЁ¬ Ё¤Ґ­вЁдЁЄ в®а - bts word ed_flags,1 ;гбв ­®ўЄ  д®Єгб  - jmp .m_sh -@@: - cmp eax,dword ed_shift_pos ;Ґб«Ё Ї®§ЁжЁЁ ­Ґ Ё§¬Ґ­Ё«Ёбм - je .editbox_exit - mov ed_pos,eax - mov ebp,dword shift_color - mov ebx,dword ed_shift_pos - call .sh_cl_ - or word ed_flags,ed_mous_adn_b ;гбв ­®ўЁ¬ ЎЁв зв® ¬л ўл¤Ґ«Ё«Ё +shift_on + -.m_sh: call .draw_text - call .draw_cursor -;---------------------------------------------------------- -;--- Їа®жҐ¤га  гбв ­®ўЄЁ д®Єгб  --------------------------- -;---------------------------------------------------------- - jmp .drc -._blur: - test word ed_flags,ed_always_focus - jne .editbox_exit - btr word ed_flags,1 ; Ґб«Ё ­Ґ ў д®ЄгбҐ, ўл室Ё¬ - jnc .editbox_exit - - mov ebp,ed_color - call .clear_cursor -.drc: call .draw_border - jmp .editbox_exit -} - - -; Њ Єа®б ўл室  -macro edit_ex -{ -popa -ret -} -macro debug -{ - ;----------- ®в« ¤Є  - pushad -; mov dword [ed_buffer.2],0 -; mov eax,edi - mov eax,dword [ed_buffer.2] - mov edi,ed_buffer.3 - call .str - ;аЁб®ў ­ЁҐ д®­  - mov eax,13 - mov ebx,178*65536+70 - mov ecx,28*65536+10 - xor edx,edx - int 0x40 - ;ўлў®¤ §­ зҐ­Ёп ­  нЄа ­ - mov eax,4 - mov ebx,180*65536+30 - mov ecx,0x10DDBBCC - mov edx,ed_buffer.3 - mov esi,8 - int 0x40 - popad - ;----------- ®в« ¤Є  -} -macro debug_func -{ -.str: - mov ecx,0x0a ;§ ¤ Ґвбп бЁб⥬  бзЁб«Ґ­Ёп Ё§¬Ґ­повбп ॣЁбвал ebx,eax,ecx,edx ўе®¤­лҐ Ї а ¬Ґвал eax - зЁб«® - ;ЇаҐаҐў®¤ зЁб«  ў ASCII бва®Єг ў§®¤­лҐ ¤ ­­лҐ ecx=бЁб⥬  бзЁб«Ґ­п edi  ¤аҐб Єг¤  § ЇЁблў вм, Ўг¤Ґ¬ бва®Єг, ЇаЁзҐ¬ Є®­Ґж ЇҐаҐ¬Ґ­­®© - cmp eax,ecx ;ба ў­Ёвм Ґб«Ё ў eax ¬Ґ­миҐ зҐ¬ ў ecx в® ЇҐаҐ©вЁ ­  @@-1 в.Ґ. ­  pop eax - jb @f - xor edx,edx ;®зЁбвЁвм edx - div ecx ;а §¤Ґ«Ёвм - ®бв в®Є ў edx - push edx ;Ї®«®¦Ёвм ў б⥪ - ;dec edi ;ᬥ饭ЁҐ ­Ґ®Ўе®¤Ё¬®Ґ ¤«п § ЇЁбЁ б Є®­ж  бва®ЄЁ - call .str;ЇҐаҐ©вЁ ­  б ¬г ᥡп в.Ґ. ўл§ў вм б ¬г бҐЎп Ё в Є ¤® в®Ј® ¬®¬Ґ­в  Ї®Є  ў eax ­Ґ бв ­Ґв ¬Ґ­миҐ зҐ¬ ў ecx - pop eax - @@: ;cmp al,10 ;Їа®ўҐаЁвм ­Ґ ¬Ґ­миҐ «Ё §­ зҐ­ЁҐ ў al 祬 10 (¤«п бЁб⥬л бзЁб«Ґ­п 10 ¤ ­­ п Є®¬ ­¤  - «Ёи­ п)) - ;sbb al,$69 ;- зҐбв­® ¤ ­­ п Ё­бвагЄжЁп ¬Ґ­п § бв ў«пҐв § ¤г¬ вмбп в.Ґ. п ­Ґ §­ о Є Є нв® а Ў®в Ґв - ;das ;Ї®б«Ґ ¤ ­­®© Є®¬ ­¤л Є Є Ўл Їа®Ёб室Ёв 㬥­м襭ЁҐ al ­  66h (ў Є­ЁЈҐ ­ ЇЁб ­® ¤агЈ®Ґ) - or al,0x30 ;¤ ­­ п Є®¬ ­¤  Є®а®зҐ 祬 ¤ўҐ ўлиҐ - stosb ;§ ЇЁб вм н«Ґ¬Ґ­в Ё§ ॣЁбва  al ў п祪㠯 ¬пвЁ es:edi - - ret ;ўҐа­гвмбп зҐ­м Ё­вҐаҐб­л© 室 в.Є. Ї®Є  ў б⥪Ґ еа ­Ёвмбп Є®«-ў® ўл§®ў®ў в® бв®«мЄ® а § ¬л Ё Ўг¤Ґ¬ ўл§лў вмбп -} - -;;;;;;;;;;;;;;; -;For LibGui -;;;;;;;;;;;;;;; -macro srt_ed_libgui -{ -ed_width equ [EditBox.ed_width] ;иЁаЁ­  Є®¬Ї®­Ґ­в  -ed_left equ [EditBox.ed_left] ;Ї®«®¦Ґ­ЁҐ Ї® ®бЁ е -ed_top equ [EditBox.ed_top] ;Ї®«®¦Ґ­ЁҐ Ї® ®бЁ г -ed_color equ [EditBox.ed_color] ;梥в д®­  Є®¬Ї®­Ґ­в  -shift_color equ [EditBox.shift_color] ;=0x6a9480 -ed_focus_border_color equ [EditBox.ed_focus_border_color] ;梥в а ¬ЄЁ Є®¬Ї®­Ґ­в  -ed_blur_border_color equ [EditBox.ed_blur_border_color] ;梥⠭Ґ  ЄвЁў­®Ј® Є®¬Ї®­Ґ­в  -ed_text_color equ [EditBox.ed_text_color] ;梥в ⥪бв  -ed_max equ [EditBox.ed_max] ;Є®«-ў® бЁ¬ў®«®ў Є®в®алҐ ¬®¦­® ¬ ЄбЁ¬ «м­® ўўҐбвЁ -ed_text equ [EditBox.ed_text] ;гЄ § вҐ«м ­  ЎгдҐа -ed_flags equ [EditBox.ed_flags] ;д« ЈЁ -ed_size equ [EditBox.ed_size] ;Є®«-ў® бЁ¬ў®«®ў -ed_pos equ [EditBox.ed_poz] ;Ї®§ЁжЁп Єгаб®а  -ed_offset equ [EditBox.ed_offset] ;ᬥ饭ЁҐ -cl_curs_x equ [EditBox.cl_curs_x] ;ЇаҐ¤л¤г饥 Є®®а¤Ё­ в  Єгаб®а  Ї® е -cl_curs_y equ [EditBox.cl_curs_y] ;ЇаҐ¤л¤г饥 Є®®а¤Ё­ в  Єгаб®а  Ї® г -ed_shift_pos equ [EditBox.ed_shift_pos] ;Ї®«®¦Ґ­ЁҐ Єгаб®а  -ed_shift_pos_old equ [EditBox.ed_shift_pos_old] ;бв а®Ґ Ї®«®¦Ґ­ЁҐ Єгаб®а  -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;Bit mask from editbox -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -ed_figure_only= 1000000000000000b ;®¤­Ё бЁ¬ў®«л -ed_always_focus= 100000000000000b -ed_focus= 10b ;д®Єгб ЇаЁ«®¦Ґ­Ёп -ed_shift_on= 1000b ;Ґб«Ё ­Ґ гбв ­®ў«Ґ­ -§­ зЁв ўЇҐаўлҐ ­ ¦ в shift,Ґб«Ё Ўл« гбв ­®ў«Ґ­, §­ зЁв ¬л 㦥 зв® - в® ¤Ґ« «Ё 㤥নў п shift -ed_shift_on_off=1111111111110111b -ed_shift= 100b ;ўЄ«оз Ґвбп ЇаЁ ­ ¦ вЁЁ ­  shift в.Ґ. Ґб«Ё ­ ¦Ё¬ о -ed_shift_off= 1111111111111011b -ed_shift_bac= 10000b ;ЎЁв ¤«п ®зЁбвЄЁ ўл¤Ґ«Ґ­®Ј® shift в.Ґ. ЇаЁ гбв ­®ўЄҐ Ј®ў®аЁв зв® Ґбвм ўл¤Ґ«Ґ­ЁҐ -ed_shift_bac_cl=1111111111101111b ;®зЁбвЄ  ЇаЁ г¤ «Ґ­ЁЁ ўл¤Ґ«Ґ­Ёп -ed_shift_cl= 1111111111100011b -ed_shift_mcl= 1111111111111011b -ed_left_fl= 100000b -ed_right_fl= 1111111111011111b -ed_offset_fl= 1000000b -ed_offset_cl= 1111111110111111b -ed_insert= 10000000b -ed_insert_cl= 1111111101111111b -ed_mouse_on = 100000000b -ed_mous_adn_b= 100011000b -ed_mouse_on_off=1111111011111111b -ed_height=14 ; ўлб®в  -} \ No newline at end of file diff --git a/programs/network_old/icq/trunk/icons.inc b/programs/network_old/icq/trunk/icons.inc deleted file mode 100644 index da17c64bbe..0000000000 --- a/programs/network_old/icq/trunk/icons.inc +++ /dev/null @@ -1,64 +0,0 @@ - - - -redicq: - - -db 0,0,0,0,0,0,0,0,0,0 -db 0,0,0,0,128,0,0,128,0,0,128,0,0,0,0,0 -db 128,0,0,128,0,0,128 -db 0,0,0,0,0,0 -db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -db 0,128,0,0,179,0,0,179,0,0,179,0,0,128,0,0 -db 179,0,0,179,0,0,179,0,0,128 -db 0,0,0 -db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -db 0,128,0,0,230,0,0,202,0,0,179,0,0,128,0,0 -db 230,0,0,202,0,0,179,0,0,128 -db 0,0,0 -db 0,0,0,0,0,0,0,0,0,0,0,128,0,0,128,0 -db 0,128,0,0,179,0,0,202,0,0,230,0,0,128,0,0 -db 230,0,0,202,0,0,179,0,0,128,0,0,128,0,0,128 -db 0,0,0 -db 0,0,128,0,0,179,0,0,179,0 -db 0,179,0,0,128,0,0,230,0,0,230,0,0,128,0,0 -db 230,0,0,230,0,0,128,0,0,179,0,0,179,0,0,179 -db 0,0,128 -db 0,0,128,0,0,179,0,0,202,0 -db 0,202,0,0,230,0,0,128,0,0,230,0,0,128,0,0 -db 230,0,0,128,0,0,230,0,0,202,0,0,202,0,0,179 -db 0,0,128 -db 0,0,128,0,0,179,0,0,230,0 -db 0,230,0,0,230,0,0,230,0,0,128,0,255,255,0,0 -db 128,0,0,230,0,0,230,0,0,230,0,0,230,0,0,179 -db 0,0,128 -db 0,0,0,0,0,128,0,0,128,0 -db 0,128,0,0,128,0,0,128,0,255,255,0,255,255,0,255 -db 255,0,0,128,0,0,128,0,0,128,0,0,128,0,0,128 -db 0,0,0,0,0,128,0,0,179,0,0,179,0 -db 0,179,0,0,179,0,0,179,0,0,128,0,255,255,0,0 -db 128,0,0,179,0,0,179,0,0,179,0,0,179,0,0,179 -db 0,0,128 -db 0,0,128,0,0,202,0,0,202,0 -db 0,202,0,0,202,0,0,128,0,0,179,0,0,128,0,0 -db 179,0,0,128,0,0,230,0,0,202,0,0,202,0,0,179 -db 0,0,128 -db 0,0,128,0,0,230,0,0,230,0 -db 0,230,0,0,128,0,0,202,0,0,179,0,0,128,0,0 -db 230,0,0,179,0,0,128,0,0,230,0,0,230,0,0,179 -db 0,0,128 -db 0,0,0,0,0,128,0,0,128,0 -db 0,128,0,0,230,0,0,202,0,0,179,0,0,128,0,0 -db 230,0,0,202,0,0,179,0,0,128,0,0,128,0,0,128 -db 0,0,0,0,0,0,0,0,0,0,0,0,0 -db 0,128,0,0,230,0,0,202,0,0,179,0,0,128,0,0 -db 230,0,0,202,0,0,179,0,0,128 -db 0,0,0 -db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -db 0,128,0,0,230,0,0,230,0,0,179,0,0,128,0,0 -db 230,0,0,230,0,0,179,0,0,128 -db 0,0,0 -db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -db 0,0,0,0,128,0,0,128,0,0,128,0,0,0,0,0 -db 128,0,0,128,0,0,128,0,0,0,0,0,0,0,0,0 -db 0,0,0 \ No newline at end of file diff --git a/programs/network_old/icq/trunk/ki.asm b/programs/network_old/icq/trunk/ki.asm deleted file mode 100644 index 64f588e92f..0000000000 --- a/programs/network_old/icq/trunk/ki.asm +++ /dev/null @@ -1,4046 +0,0 @@ -; compiler: FASM 1.67.21 -; name: ICQ client for Kolibri -; version: 0.1.30 -; written by: LV -; e-mail: lv4evil@yandex.ru - - -include "lang.inc" -include "macros.inc" -;purge mov -;include "ASCL9/ascl.inc" -;include "../../../debug.inc" -include "editbox.inc" - -MEOS_APP_START - -;include "../../../debug.inc" -include "2000.inc" -include "comp.inc" -;include "fsio.inc" -include "dos2win.inc" -include "parser.inc" -include "ssi.inc" - -use_edit_box procinfo,22,5 - -; -; …б«Ё == 0, Є®¤ ¤«п ЁбЇ®«м§®ў ­Ёп Є®­в Єв «Ёбв  -; ­  бҐаўҐаҐ ­Ґ  бᥬЎ«ЁагҐвбп -; -USE_SSI = 1 -; -; - -CODE - - - ;mov eax, 40 - ;mov ebx, 47h - ;int 40h - - ; - ; ‡ Јаг§Є  Є®­дЁЈ®ў - ; - - mov eax, fname - call parseconf - ; - ; ‚лў®¤ § Ја㦥­­®© Ё­д®а¬ жЁЁ - ; - - mov eax, cfg_message - xor ebx, ebx - call writemsg - - call showcfg - - - ;call loaduin - call draw_window ; at first create and draw the window - - ;call buttonbox - - wait_event: ; main cycle - ;mov eax, 23 - ;mov ebx, 20 - ;int 0x40 - mcall 23,20 - - cmp eax, 1 ; if event == 1 - je redraw ; jump to redraw handler - cmp eax, 2 ; else if event == 2 - je key ; jump to key handler - cmp eax, 3 ; else if event == 3 - je button ; jump to button handler - - ; - ; †¤Ґ¬ ¤ ­­ле - ; - - mcall 53,2,[socket] - cmp eax, 0 - jnz read_socket - - mouse_edit_box inputbox - ; - ; …б«Ё Ґбвм ᮥ¤Ё­Ґ­ЁҐ б бҐаўҐа®¬, Ї®бл« Ґ¬ Ї ЄҐвл - Ї®¤вўҐ¦¤Ґ­Ёп Є ¦¤лҐ 60 б - ; ­Ґ вॡгҐвбп -; call sendkeep - - jmp wait_event ; else return to the start of main cycle - - - redraw: ; redraw event handler - call draw_window - jmp wait_event - - - key: ; get key code - - mcall 2 - - cmp ah, 0Dh ; Џа®ЎҐ« - ®вЇа ўЁвм б®®ЎйҐ­ЁҐ - jz send - - - key_edit_box inputbox - - jmp wait_event - - - button: ; button event handler - ;mov eax, 17 ; get button identifier - ;int 0x40 - mcall 17 - - cmp ah, 2 - jz connect - - cmp ah, 3 - jz disconnect - - cmp ah, 4 - jz send - - ; - ; Џа®ўҐа塞, ­Ґ ­ ¦ в  «Ё Є­®ЇЄ  ў Љ‹ - ; 100 2 бЁ¬ў®«®ў, бзЁв Ґвбп, зв® ЇҐаҐ¤ ­ - ; б ¬ гЁ­ - ¤«п ®вЇа ўЄЁ б®®ЎйҐ­Ё© ࠬ, Є®в®але ­Ґв ў Љ‹ - ; - mov al, [inputbuff] - cmp al, '/' - jnz sd_message - ; ‘¬Ґ­  гЁ­  - ;mov al, [inputbuff+2] - ;cmp al, 20h - ;jz sd_use_kl - mov al, [inputbuff+3] - cmp al, 20h ; Џа®ЎҐ« - jz sd_use_kl - ; - ; €йҐ¬ ЇҐаўл© Їа®ЎҐ«, Ё¬ ¤®«¦Ґ­ § Є®­зЁвмбп гЁ­ - ; - xor ecx, ecx - sd_loop: - mov al, [inputbuff+ecx] - cmp al, 20h - jz sd_space - cmp al, 0 - jz wait_event - inc ecx - jmp sd_loop - - sd_space: - ; - ; ‡ ¬Ґ­пҐ¬ Їа®ЎҐ« ­  0, ®вбл« Ґ¬ б®®ЎйҐ­ЁҐ - mov [inputbuff+ecx], byte 0 - lea ebx, [inputbuff+1] - lea eax, [inputbuff+ecx+1] - call sendmsg - mov ebx, 0000FFh - call writemsg - jmp wait_event - - - - sd_use_kl: - lea eax, [inputbuff+1] - mov [inputbuff+3], byte 0 - call ascitoint - lea eax, [eax-1] ; ’.Є. ў Љ‹ ®вбзҐв б 0 - mov [curruser], al - - - sd_message: - ; - ; ‘®®ЎйҐ­ЁҐ - movzx eax, [curruser] - mov ebx, UIN_LEN - imul ebx, eax - lea ebx, [uins+ebx] - mov al, [inputbuff] - cmp al, '/' - jz @f - mov eax, inputbuff - jmp sd_send - @@: - ;mov al, [inputbuff+2] - ;cmp al, ' ' - ;jz @f - lea eax, [inputbuff+4] - ;jmp sd_send - ;@@: lea eax, [inputbuff+3] - - sd_send: - call sendmsg - mov ebx, 0000FFh - call writemsg - - - jmp wait_event - - -; -; …бвм ЇаЁ­пвлҐ ¤ ­­лҐ -; - read_socket: - pushf - pushad - ;write_debug 'Some data in socket' - ; - ; Џа®ўҐа塞, ­Ґ Ўл« «Ё Ї®«г祭 § Ј®«®ў®Є ®в¤Ґ«м­® ®в ¤ ­­ле - ; ў ЇаҐ¤л¤г饬 жЁЄ«Ґ - ; - cmp [hrf], 1 - jz rs_head_recived - - rs_check_sock: - ;mov eax, 53 - ;mov ebx, 2 - ;mov ecx, [socket] - ;int 40h - mcall 53,2,[socket] - cmp eax, 6 ; Flap head size - jc r_end - ; - ; ЏаЁ­Ё¬ Ґ¬ § Ј®«®ў®Є - ; - xor edx, edx - - ;mov ecx, [socket] - rs_loop: - ;mov eax, 53 - ;mov ebx, 3 - ;int 40h - mcall 53,3,[socket] - - mov [mbuff+edx], bl - inc edx - cmp edx, 6 - - jnz rs_loop - ; - ; ‡ Ї®«­пҐ¬ § Ј®«®ў®Є - ; - ;xor eax, eax - - ; - ; ‡ Ј®«®ў®Є ЇаЁ­пв! - ; - mov [hrf], 1 - - mov bl, [mbuff] - mov [rflap.bId], bl - - mov bl, [mbuff+1] - mov [rflap.bCh], bl - - mov bh, [mbuff+2] - mov bl, [mbuff+3] - mov [rflap.wSn], bx - - mov bh, [mbuff+4] - mov bl, [mbuff+5] - mov [rflap.wDs], bx - - ; - ; ЏаЁ­Ё¬ Ґ¬ ¤ ­­лҐ - ; - ;xor edx, edx - cmp [rflap.bId], 2Ah - jnz rs_flap_error - ; - ; Џа®ўҐа塞, Ї®«гзҐ­л «Ё ¤ ­­лҐ - ; - rs_head_recived: - - ;mov eax, 53 - ;mov ebx, 2 - ;mov ecx, [socket] - ;int 40h - mcall 53,2,[socket] - - cmp ax, [rflap.wDs] ; ђ §¬Ґа ¤ ­­ле - jc r_end - ; - ; - mov ax, [rflap.wDs] - ; - ; Џа®ўҐа塞 а §¬Ґа ¤ ­­ле - ; - cmp ax, MBUFF_SIZE+1 - jnc rs_big_flap - - xor esi, esi - mov esi, eax - xor edx, edx - - ;mov ecx, [socket] - - rs_data_loop: - cmp edx, esi - jz rs_data_end - - ;mov eax, 53 - ;mov ebx, 3 - ;int 40h - mcall 53,3,[socket] - mov [mbuff+edx], bl - inc edx - jmp rs_data_loop - - ; - ; „ ­­лҐ ЇаЁ­пвл - ; - rs_data_end: - mov [hrf], 0 - ;write_debug 'Some data recived' - ; - ; - ; - cmp [login], 0 - jz rs_login - call main_loop - ; - ; …бвм б¬лб« Їа®ўҐаЁвм б®ЄҐв ­  ­ «ЁзЁҐ б«Ґ¤го饣® § Ј®«®ўЄ  - ; - ;jmp r_end - jmp rs_check_sock - - - rs_login: - call srv_login - ;write_debug 'Exited srv_login' - ;jmp r_end - jmp rs_check_sock - - rs_flap_error: - write_debug 'Invalid Flap' - ; - ; FLAP.id ­ҐўҐа­л©. ­г¦­® § Єалвм б®ЄҐв - ; - - mov ecx, [socket] - ;call closesocket - jmp r_end - - ; - ; ‘«ЁиЄ®¬ Ў®«ми®© Ї ЄҐв! - ; - rs_big_flap: - - write_debug 'Too BIG FLAP Recived' - mov [hrf], 0 - - ;mov ecx, [socket] - mov ax, [rflap.wDs] - xor esi, esi - mov esi, eax - xor edx, edx - - rs_data_loop2: - cmp edx, esi - jz r_end - - ;mov eax, 53 - ;mov ebx, 3 - ;int 40h - mcall 53,3,[socket] - ;mov [mbuff+edx], bl - inc edx - jmp rs_data_loop2 - - - - - - r_end: - - popad - popf - jmp wait_event - -; ‘®Ґ¤Ё­Ґ­ЁҐ б бҐаўҐа®¬, ў®§ўа й Ґв ў eax - ен­¤« б®ЄҐв  -; ЇҐаҐ¤ Ґ¬ ў Ґ е IP  ¤аҐб бҐаўҐа  -; ў ebx - Ї®ав - srv_connect: - push ecx - push edx - push esi - push edi - push ebx - - mov esi, eax ; IP - ў esi - ; find free port - mov ecx, 1000 ; ЋЇаҐ¤Ґ«пҐ¬ «®Є «м­л© Ї®ав, ­ зЁ­ Ґ¬ б 1000 - - getlp: - inc ecx - push ecx - ;mov eax, 53 - ;mov ebx, 9 - ;int 0x40 - mcall 53,9,ecx - pop ecx - cmp eax, 0 ; нв®в «®Є «м­л© Ї®ав ЁбЇ®«м§гҐвбп? - jz getlp ; ¤  - Їа®¤®«¦ Ґ¬ ЇҐаҐЎЁа вм - ;OK ecx = port number - ;Open Socket - ;mov eax, 53 - ;mov ebx, 5 - xor edx, edx - ;mov dx, ICQ_PORT - pop edx - ;mov esi,ICQ_IP - ;mov edi, 1;SOCKET_ACTIVE - - ;int 40h - mcall 53, 5, ecx, edx, esi, 1 - ; - mov [socket], eax - - ; - ; †¤Ґ¬ гбв ­®ўЄЁ ᮥ¤ЁҐ­Ёп - mov ecx, eax - srv_loop: - - ;mov eax, 5 - ;mov ebx, 50 - ;int 40h - mcall 5, 50 - - - - ;mov eax, 53 - ;mov ebx, 6 - ;int 40h - mcall 53, 6, ecx - cmp eax, TCB_ESTABLISHED - jz fin - cmp eax, 11 - jae c_end - ; - - ;inc [timer] - ;cmp [timer], 50 - ;jz srv_err - jmp srv_loop - - - - ;srv_err: - ;mov [timer], word 0 - ;cmp eax,-1 - ;jnz fin - ;delay 100 - write_debug 'CONNECTION FAILED' ;Џ®¤Є«о祭ЁҐ ­Ґ г¤ «®бм - jmp c_end - ;connrcted: - ;CONNECTED - - fin: - write_debug 'Connected!!!!' - c_end: - pop edi - pop esi - pop edx - pop ecx - ;pop ebx - ret - -; -; --> ecx socket handle -; - - srv_login: - pushf - push eax - push ebx - ;push ecx - push edx - - ; - ; ЋЇаҐ¤Ґ«пҐ¬ вЁЇ Ї®«г祭­ле ¤ ­­ле - ; - movzx eax, [rflap.bCh] - cmp eax, 01 - jz s_new_connection - cmp eax, 04 - jz s_cookie ; cookie - jmp l_flap_err - - s_new_connection: - ; - ; Џа®ўҐа塞 Ї®«г祭­л© Ї ЄҐв - ; - movzx eax, [rflap.wDs] - cmp eax, 4 - jnz l_len_err - mov eax, dword [mbuff] - cmp eax, 01000000h ; 00 00 00 01 - jnz l_data_err - ; - ;”®а¬Ёа㥬 Ї ЄҐв ¤«п ᮥ¤Ё­Ґ­Ёп - ; - ;mov [flap.bId], FLAP_ID - mov [flap.bCh], NEW_CONNECTION - - ;mov eax, 26 - ;mov ebx, 9 - ;int 40h - mcall 26, 9 - mov [seq], ax - - mov [flap.wSn], ax ; Sequence number - ;mov [buff],0 - ;mov [buff+1],0 - ;mov [buff+2],0 - mov dword [buff], 0x01000000 ;login Protokol version 00 00 00 01 - ;mov[buff+4],0 - mov word [buff+4], 0x0100; TLV.TYPE = UIN 00 01 - - lea eax, [vtable + vartable.uin] - call strlen - mov [buff+6], ah - mov [buff+7], al ; Length of UIN - mov edx, eax - add edx, 7 ; ў edx ¤«Ё­  § Ї®«­Ґ­­®Ј® ЎгдҐа  - - mov ecx, eax ;„«Ё­  бва®ЄЁ - - lea eax, [vtable + vartable.uin] - lea ebx, [buff+8] ; + а §¬Ґа ¤ ­­ле ў ЎгдҐаҐ + 1 - - call strcpy - - - lea eax, [vtable + vartable.pass] - call roast - - mov [buff+edx+2], 2 ; TLV.TYPE - rosted password - call strlen - mov [buff+edx+4], al - mov [buff+edx+3], ah ; Length of pass - - add edx, 4 - mov ebx, buff - add ebx, edx ; ­ §­ зҐ­ЁҐ - add edx, eax ; ‘®е࠭塞 ў EDX ¤«Ё­г § Ї®«­Ґ­­®Ј® Ўгд­а  - mov ecx, eax ; „«Ё­  бва®ЄЁ - lea eax, [vtable + vartable.pass] ; €бв®з­ЁЄ - inc ebx - call strcpy - - mov [buff+edx+2], 3 ; TLV.TYPE - client id string - mov eax, ID_STRING - call strlen - mov [buff+edx+4], al - mov [buff+edx+3], ah - - add edx, 4 - mov ecx, eax - mov ebx, buff - add ebx, edx - add edx, eax - inc ebx - mov eax, ID_STRING - call strcpy - - xor eax, eax - - mov [buff+edx+2], 016h ; TLV.TYPE - Client id - mov [buff+edx+4], 2 - mov ax, ID_NUM - call htons - mov word [buff+edx+5], ax - add edx, 6 - - mov [buff+edx+2], 017h ; Client major version - mov [buff+edx+4], 2 - mov ax, MAJOR - call htons - mov word [buff+edx+5], ax - add edx, 6 - - mov [buff+edx+2], 018h ; Client minor version - mov [buff+edx+4], 2 - mov ax, MINOR - call htons - mov word [buff+edx+5], ax - add edx, 6 - - mov [buff+edx+2], 019h ; Client lesser version - mov [buff+edx+4], 2 - mov ax, LESSER - call htons - mov word [buff+edx+5], ax - add edx, 6 - - mov [buff+edx+2], 01Ah ; Client build number - mov [buff+edx+4], 2 - mov ax, BUILD - call htons - mov word [buff+edx+5], ax - add edx, 6 - - mov [buff+edx+2], 014h ; Client distribution number - mov [buff+edx+4], 4 - mov eax, DISTR - call htonl - mov dword [buff+edx+5], eax - add edx, 8 - - mov [buff+edx+2], 0Fh ; Client language - mov eax, CL_LANG - call strlen - mov word [buff+edx+4], ax - add edx, 4 - mov ecx, eax - mov ebx, buff - add ebx, edx - inc ebx - add edx, eax - mov eax, CL_LANG - call strcpy - - mov [buff+edx+2], 0Eh ; Client country - mov eax, CL_COUNTRY - call strlen - mov word [buff+edx+4], ax - add edx, 4 - mov ecx, eax - mov ebx, buff - add ebx, edx - inc ebx - add edx, eax - mov eax, CL_COUNTRY - call strcpy - - ;write_debug 'Connect attemption' - ; mov eax, ICQ_IP - ; call srv_connect - ; cmp eax, -1 ; Џ®¤Є«о祭ЁҐ ­Ґ г¤ «®бм - ; jz l_fin - - ; mov ecx, eax - ; mov eax, rflap - ; mov ebx, lbuff - ; call recvflap - - ; cmp eax, -1 - ; jz l_flap_err - ; cmp [rflap.bCh], 01 ; AUTH channel - ; jnz l_ch_err - ; cmp eax, 4 - ; jnz l_len_err - ; cmp dword [lbuff+3], dword 1 - ; jnz l_data_err - - mov ecx, [socket] - inc dx - mov [flap.wDs], dx ; Data size - mov eax, flap - mov ebx, buff - call sendflap - cmp eax, 0 - jnz l_fin ; ЌҐгбЇҐе - jmp l_end - - - s_cookie: - ;mov eax, rflap - ;mov ebx, buff - ;call recvflap - ;cmp eax, -1 - ;jz l_flap_err - ;cmp [rflap.bCh], 4 - ;jnz l_ch_err - - ;write_debug 'UIN' - xor ebx, ebx - - uin_loop: - xor eax, eax - mov ax, word [mbuff+ebx] - cmp ax, 0100h ; 00 01 TLV.Type UIN - jz l_uin_ok ; ’ҐЇҐам бҐаўҐа ЇҐаҐ¤ Ґв ҐйҐ ¤ ­­лҐ ЇаЁ ᮥ¤Ё­Ґ­ЁЁ,   Ї®в®¬ ®Їпвм - add ebx, 5 ; в®в ¦Ґ TLV 1 (­®ўл© д®а¬ в Ї ЄҐЄв ) - cmp ebx, 5 - ja l_tlvt_err - jmp uin_loop - - - - - - l_uin_ok: - mov eax, ebx - xor ebx, ebx - mov bl, [mbuff+eax+3] ; - mov bh, [mbuff+eax+2] ; „«Ё­  ¤ ­­ле - ; - ; UIN Џ®Є  ­Ґ Їа®ўҐапҐвбп - ; - - - lea ebx, [ebx+eax+4] - mov ax, word [mbuff+ebx] - cmp ax, 0500h ; 00 05 Bos address - jz l_all_ok - cmp ax, 0400h ; UIN incorrect - jz l_uin_err - cmp ax, 0800h - jz l_pass_err - jmp l_tlvt_err - ; - ; Ґб«Ё ­ҐўҐа­л© UIN/ Ї а®«м, Ї®«гз Ґ¬ TLV.TYPE 4/8 - ; - - l_all_ok: - xor ecx, ecx - mov cl, [mbuff+ebx+3] ;length - mov ch, [mbuff+ebx+2] ; - - lea eax, [mbuff+ebx+4] - push ebx - mov ebx, bos_address - call strcpy - pop ebx - add ebx, ecx - lea ebx, [ebx+4] ; ђ §¬Ґа § Ј®«®ўЄ  - ; - ; cookie - ; - ;write_debug 'Login Cookie' - - xor eax, eax - mov ax, word [mbuff+ebx] - cmp ax, 0600h ; TLV.Type cookie - jnz l_tlvt_err - mov cl, [mbuff+ebx+3] ; - mov ch, [mbuff+ebx+2] ; Length - mov [cookie_len], cx - lea eax, [mbuff+ebx+4] - push ebx - mov ebx, srv_cookie - call strcpy - pop ebx - - ; - ; ‘®Ґ¤Ё­пҐ¬бп б BOS - ; - ;call srv_disconnect - mov ecx, [socket] - write_debug 'Closing socket' - ;call closesocket - ; - ; - ; - ;FIXME!!! - ;‡ Є®¬¬Ґ­в®а®ў ­® Ё§-§  Їа®Ў«Ґ¬л б бҐвҐўл¬ б⥪®¬ - ;§ ЄалвЁҐ б®ЄҐв  § ўҐиЁў Ґв бЁб⥬г - ;mcall 53, 8, ecx - - - - mov eax, bos_address - call ip_parser - - call htonl - data_debug 'BOS Address: ', eax - data_debug 'BOS Port: ', ebx - mov [bos_ip], eax - mov [bos_port], ebx - call srv_connect - mov [login], 1 ; ‘®Ґ¤Ё­Ґ­ЁҐ б ®б­®ў­л¬ бҐаўҐа®¬ гбв ­®ў«Ґ­® - ;mov [socket], eax - - - - jmp l_end - ; - ; - ; - l_pass_err: - write_debug 'PASSWORD INVALID' - jmp l_fin - - l_uin_err: - write_debug 'UIN INVALID' - jmp l_fin - - l_data_err: - write_debug 'LOGIN DATA MISMATCH' - jmp l_fin - - l_len_err: - write_debug 'RECIVED DATA LENGTH MISMATCH' - jmp l_fin - - l_tlvt_err: - write_debug 'TLV TYPE MISMATCH' - jmp l_fin - - l_ch_err: - write_debug 'FLAP CHANNEL MISMATCH' - jmp l_fin - - l_flap_err: - write_debug 'FLAP ID MISMATCH / RECIVE ERROR' - - l_fin: - - ; - ; ЌҐ®Ўе®¤Ё¬® § Єалвм б®ЄҐв - ; - ;call srv_disconnect - call closesocket - l_end: - pop edx - ;pop ecx - pop ebx - pop eax - popf - ret - -; -; Length of string -; input eax = offset string -; output eax = strlen -; - strlen: - push ebx - push ecx - pushf - xor ebx, ebx - xor ecx, ecx - - loop_s: - mov cl, [eax+ebx] - cmp ecx,0 - jz nl - inc ebx - jmp loop_s - - nl: - mov eax, ebx - popf - pop ecx - pop ebx - ret - -; -; Roasting password -; EAX = offset password -; - - roast: - pushf - push ecx - push ebx - - xor ecx, ecx - xor ebx, ebx - - loop_r: - mov bl, [eax+ecx] ;‘Ё¬ў®« Ё§ ¬ ббЁў  Ї а®«п - cmp bl, 0 ;Љ®­Ґж бва®ЄЁ - jz r_fin - - xor bl, [ROASTING_ARRAY+ecx] - mov [eax+ecx], bl - inc ecx - jmp loop_r - - r_fin: - pop ebx - pop ecx - popf - ret - - -; -;Copy string of bytes -;‚ EAX =  ¤аҐб Ёб室­®© бва®ЄЁ -;‚ EBX =  ¤аҐб ­ §­ зҐ­Ёп -;‚ ECX = ¤«Ё­  бва®ЄЁ -; - strcpy: - pushf - push esi - push edi - push ecx - - cld ;ЋЎа Ў влў Ґ¬ бва®Єг ®в ­ з «  Є Є®­жг - mov esi, eax - mov edi, ebx - - rep movsb - - pop ecx - pop edi - pop esi - popf - ret - - -; -; Њ Єа®б ¤«п ба ў­Ґ­Ёп бва®Є -; -macro strcmp first, second, len -{ - push ecx - push esi - push edi - - mov ecx, len - mov esi, first - mov edi, second - repe cmpsb - - pop edi - pop esi - pop ecx - -} - - -; -; ‡ Ї®«­пҐв ЎгдҐа, Ї®  ¤аҐбг ў ebx -; ¤ ­­л¬Ё, Ї®  ¤аҐбг eax, ў -; cx - ’ЁЇ TLV -; dx - ¤«Ё­  ¤ ­­ле -; -; - - tlvstr: - ;pushf - push edx - push ecx - push ebx - - mov [ebx], ch ; Type - mov [ebx+1], cl - - mov [ebx+2], dh ; Length - mov [ebx+3], dl - - lea ebx, [ebx+4] - ; EBX = offset of destination - mov ecx, edx - - call strcpy - - pop ebx - pop ecx - pop edx - ;popf - ret - -; -; eax - гЄ § вҐ«м ­  FLAP_head -; ebx - гЄ § вҐ«м ­  ¬ ббЁў, § Ї®«­Ґ­­л© ¤ ­­л¬Ё -; ecx - 奭¤« б®ЄҐв  -; -; ‚ eax ў®§ўа й Ґв १г«мв в § ЇЁбЁ ў б®ЄҐв -; - sendflap: - pushf - push edx - ;push ecx - push esi - push ebx - push ecx - - xor edx, edx - - mov dl, [eax] ; ID byte - mov [sbuff], dl - - mov dl, [eax+1] ; FLAP channel - mov [sbuff+1], dl - - mov dl, [eax+2] ; FLAP datagramm seq number - mov [sbuff+3], dl ; ¬Ґ­пҐ¬ ¬Ґбв ¬Ё Ў ©вл ¤«п ЇҐаҐ¤ зЁ Ї® бҐвЁ - mov dl, [eax+3] - mov [sbuff+2], dl - - mov dl, [eax+4] ; FLAP data size - mov [sbuff+5], dl - mov dl, [eax+5] - mov [sbuff+4], dl - mov dx, word [eax+4] - - xchg ecx, edx ; ecx - size edx - handle - mov eax, ebx ; data - mov ebx, sbuff ; dest - add ebx, 6 ; + header size - call strcpy - - xchg ecx, edx ; ecx - handle, edx - data size - - s_wait: - ;mov eax, 53 ; Џа®ўҐа塞 б®бв®п­ЁҐ б®ЄҐв . …б«Ё ᮥ¤ЁҐ­ЁҐ - ;mov ebx, 6 ; гбв ­®ў«Ґ­® - Ї®бл« Ґ¬ ЎгдҐа, Ґб«Ё б®ЄҐв § Єалв, г室Ё¬ - ;int 40h - mcall 53, 6, ecx - cmp eax, TCB_ESTABLISHED ; гбв ­®ў«Ґ­® - jz s_est - cmp eax, TCB_CLOSED - jz s_fin - cmp eax, 12 ; “ ¬Ґ­п в Є®Ґ Ўл«®, Є®Ј¤  ᮥ¤Ё­Ґ­ЁҐ гбв ­ ў«Ёў «®бм б Їгбв®в®© :-) - jnc s_fin ; - - - ;mov eax, 5 - ;mov ebx, 1 - ;int 40h ; †¤Ґ¬ - mcall 5, 1 - jmp s_wait - - - s_est: - ;mov eax, 53 - ;mov ebx, 7 ; ЇЁб вм ў б®ЄҐв - - add edx, 6 ; + size of header - ;mov esi, sbuff ; data - ;int 40h - mcall 53, 7, ecx, edx, sbuff - - s_fin: - pop ecx - pop ebx - pop esi - ;pop ecx - pop edx - popf - ret - - -; -; eax - гЄ § вҐ«м ­  ЎгдҐа -; ebx - §­ зҐ­ЁҐ, Є®в®ал¬ ­Ґ®Ўе®¤Ё¬® § в®«­Ёвм. €бЇ®«м§гҐвбп в®«мЄ® bl -; ecx - а §¬Ґа -; - - memset: - pushf - push edi - push eax - push ebx - push ecx - - cld - mov edi, eax - mov eax, ebx - rep stosb - - pop ecx - pop ebx - pop eax - pop edi - popf - ret - -; -; Џ абЁ¬ TLV -; <-- ў eax  ¤аҐб TLV -; <-- ў ebx  ¤аҐб ЎгдҐа , Є®в®ал© ­г¦­® § Ї®«­Ёвм -; --> ў ebx ¤«Ё­  Ї®«г祭­ле ¤ ­­ле -; --> ў eax вЁЇ TLV -; - - tlvpar: - pushf - ;push esi - ;push edi - push ecx - xor ecx, ecx - - mov cl, [eax+3] ;TLV.Length - mov ch, [eax+2] - call strcpy - - xor eax, eax - mov al, [ebx+1] ;TLV.Type - mov ah, [ebx] - mov ebx, ecx - - - pop ecx - ;pop edi - ;pop esi - popf - ret - -; -; <-- ECX - 奭¤« б®ЄҐв , Є®в®ал© ­г¦­® § Єалвм -; --> ECX - ђҐ§г«мв в (ЌҐ­ ¤Ґ¦­®) -; - closesocket: - push eax - ;push ebx - - ;mov eax, 53 - ;mov ebx, 8 - ;int 40h - mcall 53, 8, ecx - - mov ecx, eax - - ;pop ebx - pop eax - ret - -; -; ecx <-- 奭¤« б®ЄҐв  -; -; - - srv_disconnect: - pushf - push eax - push ebx - mov [flap.bId], FLAP_ID - mov [flap.bCh], 4 ;Disconnect - xor eax, eax - mov ax, [seq] - mov [flap.wSn], ax - mov [flap.wDs], 0 - mov eax, flap - mov ebx, buff - call sendflap - - - pop ebx - pop eax - popf - ret - -; -; <-- eax [bos_address] -; --> eax = IP ADDRESS -; --> ebx = port number -; -par_buff db 9 dup 0 - - ip_parser: - pushf - push ecx - push edx - push esi - push edi - - xor ecx, ecx - ;xor eax, eax - mov ebx, eax - xor edx, edx - xor esi, esi - xor edi, edi - - ip_loop: - xor eax, eax - ;xor edx, edx - mov al, [ebx+ecx] - cmp al, '.' - jz ip_dot - - cmp al, 0 - jz ip_end_str - - cmp al, ':' - jz ip_colon - - ;sub al, 30h - ;cmp al, 9 - ;ja ip_err ; ЌҐ жЁда  - - mov [par_buff+edx], al - inc ecx - inc edx - jmp ip_loop - - ip_dot: - ;xor eax, eax - mov [par_buff+edx], 0 ; Љ®­Ґж бва®ЄЁ - mov eax, par_buff - call ascitoint - - ;data_debug 'Debug eax: ', eax - - cmp ecx, 0 ; ЌҐ ¬®¦Ґв ­ зЁ­ вмбп б в®зЄЁ - jz ip_err - shl esi, 8 ; ‘¤ўЁЈ Ґ¬ ЇаҐ¤л¤гйЁ© Ў ©в - add esi, eax - inc ecx - xor edx, edx ; ‘зҐвзЁЄ ЎгдҐа  = 0 - jmp ip_loop - - - ip_colon: ; : ‚ бва®ЄҐ  ¤аҐб  - inc edi ; Ѓл«® : - jmp ip_dot - - ip_end_str: - cmp edi, 1 - jz @f - ; : ЌҐ Ўл«® - mov [par_buff+edx], 0 ; Љ®­Ґж бва®ЄЁ - mov eax, par_buff - call ascitoint - shl esi, 8 ; ‘¤ўЁЈ Ґ¬ ЇаҐ¤л¤гйЁ© Ў ©в - add esi, eax - ;mov eax, esi ; IP ў 16 аЁз­®© д®а¬Ґ - xor ebx, ebx ; Ќ®¬Ґа  Ї®ав  ­Ґв - jmp ip_end - - @@: ; Ѓл«® : - mov [par_buff+edx], 0 - mov eax, par_buff - call ascitoint - mov ebx, eax - jmp ip_end - - ip_err: - xor esi, esi - - ip_end: - mov eax, esi - - pop edi - pop esi - pop edx - pop ecx - popf - ret - -; -; <-- eax гЄ § вҐ«м ­  asci -; --> eax int -; - ascitoint: - pushf - push ebx - push ecx - push edx - push esi - push edi - - xor ebx, ebx - xor ecx, ecx - xor edx, edx - ;xor esi, esi - xor edi, edi - - ati_loop: - mov bl, [eax+ecx] - cmp bl, 0 ; Љ®­Ґж бва®ЄЁ - jz ati_str_end - cmp bl, 39h - ja ati_err ; ЌҐ жЁда  - cmp bl, 30h - jb ati_err - - inc ecx - jmp ati_loop - - ati_str_end: ; ‚ ecx ¤«Ё­  бва®ЄЁ - ;dec ecx ; “бв ­®ўЁ¬ ­  Ї®б«Ґ¤­Ё© бЁ¬ў®« - add eax, ecx ; “Є § вҐ«м ­  бва®Єг + „«Ё­  бва®ЄЁ - dec eax - - ati_loop2: - cmp edx, ecx - jz ati_all - push eax - sub eax, edx ; ‚лзҐбвм бзҐвзЁЄ - movzx ebx, byte [eax] ; ‚ bl бЁ¬ў®« - ;pop eax - sub bl, 30h ; ‚лзЁб«пҐ¬ 10вЁз­го жЁдаг - - ;push eax - mov eax, ebx ; ‚ eax - жЁда  - mov ebx, 10 ; Њ­®¦ЁвҐ«м - - xor esi, esi - - ati_mul: - - cmp esi, edx ; “¬­®¦ Ґ¬ ­  10 n а § - jz ati_mul_end - ;push eax - ;mov eax, ebx - imul eax, ebx - ;mov ebx, eax - ;pop eax - inc esi - jmp ati_mul - - - ati_mul_end: - mov ebx, eax ; ‚ ebx ўлзЁб«Ґ­­®Ґ зЁб«® - pop eax - - add edi, ebx - inc edx - jmp ati_loop2 - - ati_all: - mov eax, edi - jmp ati_end - - ati_err: - - ;ati_str_end: - xor eax, eax - - ati_end: - pop edi - pop esi - pop edx - pop ecx - pop ebx - popf - ret - -; -; -; <-- ecx 奭¤« б®ЄҐв  -; <-- eax гЄ § вҐ«м ­  бвагЄвгаг SNAC_head -; <-- ebx гЄ § вҐ«м ­  ¤ ­­лҐ -; <-- edx а §¬Ґа ¤ ­­ле -; --> eax १г«мв в § ЇЁбЁ ў б®ЄҐв -; - -snac_buff db 1024 dup 0 - - sendsnac: - pushf - push esi - push edi - push ebx - push edx - ;xor ebx, ebx - mov esi, ecx ; 奭¤« б®ЄҐв  - mov edi, ebx ; “Є § вҐ«м ­  ¤ ­­лҐ - - xor ebx, ebx - mov bl, [eax] ; - mov [snac_buff+1], bl ; Family ID - mov bl, [eax+1] ; Љ®­ўҐавЁагҐвбп ў BigEndian - mov [snac_buff], bl ; - - mov bl, [eax+2] ; - mov [snac_buff+3], bl ; Subtype ID - mov bl, [eax+3] ; - mov [snac_buff+2], bl ; - - mov bl, [eax+4] ; - mov [snac_buff+5], bl ; - mov bl, [eax+5] ; Flags - mov [snac_buff+4], bl ; - - mov bl, [eax+6] ; - mov [snac_buff+9], bl ; - mov bl, [eax+7] ; - mov [snac_buff+8], bl ; - mov bl, [eax+8] ; Reqest ID - mov [snac_buff+7], bl ; - mov bl, [eax+9] ; - mov [snac_buff+6], bl ; - - lea ebx, [snac_buff+10] - - mov eax, edi ; “Є § вҐ«м ­  ¤ ­­лҐ - ;add ebx, 10 ; + а §¬Ґа § Ј®«®ўЄ  SNAC - mov ecx, edx ; а §¬Ґа ¤ ­­ле - call strcpy - - - mov ecx, esi ; •Ґ­¤« б®ЄҐв  - mov [flap.bId], FLAP_ID - mov [flap.bCh], 2 ; Љ ­ « ¤«п Ї®бл«ЄЁ SNAC - xor ebx, ebx - inc [seq] ; seq “ўҐ«ЁзЁў Ґвбп ­  1 ЇаЁ Є ¦¤®© Ї®бл«ЄҐ - mov bx, [seq] - mov [flap.wSn], bx - add edx, 10 ; а §¬Ґа ¤ ­­ле + а §¬Ґа § Ј®«®ўЄ  SNAC - mov [flap.wDs], dx - mov eax, flap - mov ebx, snac_buff - call sendflap - - pop edx - pop ebx - pop edi - pop esi - popf - ret - - - -; ЋЎа Ў®вЄ  ўбҐе Ї Єв®ў, ЇаЁе®¤пйЁе ®в бҐаўҐа  -; ECX <-- •Ґ­¤« б®ЄҐв  -; -; -; -; -; - main_loop: - pushf - ;push eax - ;push ebx - ;push edx - pushad - - mov ecx, [socket] - ; - ; ¦¤Ґ¬ Ї ЄҐв - ; - ;m_loop: - ;mov eax, 53 - ;mov ebx, 2 - ;int 40h - ;cmp eax, 6 ; а §¬Ґа § Ј®«® Є  FLAP - ;jnc recived ; >= - ; - ; “室Ё¬ - ; - ;jmp m_fin - ;mov eax, 5 - ;mov ebx, 5 - ;int 40h - ;jmp m_loop - ; - ; Ґбвм Ї ЄҐв - ; - ;recived: - ;mov eax, rflap - ;mov ebx, rbuff - ;call recvflap - ; - ; ЋЇаҐ¤Ґ«пҐ¬ вЁЇ ЇаЁ­пв®Ј® FLAP - ; - xor ebx, ebx - mov bl, [rflap.bCh] - cmp bl, 1 ; “бв ­®ўЄ  ᮥ¤Ё­Ґ­Ёп - jz m_login - cmp bl, 2 - jz m_snac ; Џ®«г祭 SNAC - cmp bl, 3 - jz m_flap_err ; FLAP-level error - cmp bl, 4 - jz m_close_conn ; ‡ ЄалвЁҐ ᮥ¤Ё­Ґ­Ёп - cmp bl, 5 - jz m_keep_alive ; - ; - ; ЋЎа Ў®вЄ  а бᮥ¤Ё­Ґ­Ёп - ; - m_close_conn: - write_debug 'Another Computer Use YOUR UIN!' - call srv_disconnect - call closesocket - jmp m_fin - ; - ; ®Ўа Ў®вЄ  ᮥ¤Ё­Ґ­Ёп - ; - m_login: - ; - ; Їа®ўҐа塞 ўҐабЁо Їа®в®Є®«  - ; - xor eax, eax - mov al, [mbuff+3] - cmp eax, 1 - jnz m_login_other ; ЌҐ Ї®¤е®¤Ёв - - - ; - ; ЈҐ­ҐаЁа㥬 б«гз ©­л© seq - ; „«п нв®Ј® ЎҐаҐ¬ ўаҐ¬п, Їа®иҐ¤иҐҐ б ¬®¬Ґ­в  § ЇгбЄ  бЁб⥬л - ; - ;mov eax, 26 - ;mov ebx, 9 - ;int 40h - mcall 26, 9 - mov [seq], ax - ; - ; Ћв¤ Ґ¬ бҐаўҐаг cookie - ; - mov [flap.bCh], 1 - mov [flap.wSn], ax - xor eax, eax - mov ax, [cookie_len] - add eax, 8 ; TLV len + protocol version len - mov [flap.wDs], ax - mov dword [buff], 01000000h ; 00 00 00 01 Ќ®¬Ґа Їа®в®Є®«  - mov word [buff+4], 0600h ; 00 06 TLV.Type - - mov ax, [cookie_len] - mov [buff+6], ah ; - mov [buff+7], al ; TLV.Length - - mov edx, ecx ; edx <-- socket handle - - mov ecx, eax ; ecx <-- cookie len - mov eax, srv_cookie ; Src - lea ebx, [buff+8] - call strcpy - - mov ecx, edx ; ecx <-- socket handle - mov eax, flap - mov ebx, buff - call sendflap - jmp m_fin - - m_login_other: - jmp m_fin - - ; - ; Љ Є ®Ўа Ў®в вм ®иЁЎЄг, п ­Ґ §­ о - ; - m_flap_err: - jmp m_fin - - ; - ; Џ®Є  ­Ґ ®Ўа Ў влў Ґвбп - ; - m_keep_alive: - jmp m_fin - - - ; - ; Џ®«г祭 SNAC - ; ђ бЇ®§­ Ґ¬ ҐЈ® вЁЇ - ; - m_snac: - mov eax, rsnac - mov ebx, mbuff - call snacpar - xor ebx, ebx - xor edx, edx - mov bx, [rsnac.wFid] - mov dx, [rsnac.wSid] - - cmp bx, 1 - jz m_snac_1 ;Generic service controls - cmp bx, 2 - jz m_snac_2 ;Location services - cmp bx, 3 - jz m_snac_3 ;Buddy List management service - cmp bx, 4 - jz m_snac_4 ;ICBM (messages) service - cmp bx, 9 - jz m_snac_9 ;Privacy management service - cmp bx, 015h - jz m_snac_15 ;ICQ specific extensions service - cmp bx, 013h - jz m_snac_13 ;Server Side Information (SSI) service - - jmp m_other_snac - ; - ; FAMILY 1 - ; - m_snac_1: - cmp dx, 7 - jz m_snac_1_7 - cmp dx, 3 - jz m_snac_1_3 - cmp dx, 018h - jz m_snac_1_18 - cmp dx, 01Fh - jz m_snac_1_f - cmp dx, 13h - jz m_snac_13 - cmp dx, 1 - jz m_snac_1_1 - jmp m_snac_1_other - ; - ; Rate limits information response - ; - m_snac_1_7: ; ЋвўҐз Ґ¬ - mov [ssnac.wFid], 1 ; Family - mov [ssnac.wSid], 8 ; Subtype - mov [ssnac.dRi], 8 - mov word [buff], 0100h ; 0001 - mov word [buff+2], 0200h ; 0002 - mov word [buff+4], 0300h ; 0003 - mov word [buff+6], 0400h ; 0004 - mov word [buff+8], 0500h ; 0005 - mov eax, ssnac - mov ebx, buff - mov edx, 10 ; ђ §¬Ґа ¤ ­­ле - call sendsnac - ; - ; Client ask server location service limitations - ; - mov [ssnac.wFid], 2 ; Family - mov [ssnac.wSid], 2 ; Subtype - mov [ssnac.dRi], 2 - mov eax, ssnac - mov ebx, buff - xor edx, edx - call sendsnac - - jmp m_fin - - ; - ; Server supported snac families list - ; - m_snac_1_3: - ; - ; Server sends supported services list - ; - - ; - ; SNAC(01,17) - ; Client ask for services version numbers - ; - mov [ssnac.wFid], 1 ; Family - mov [ssnac.wSid], 17h ; Subtype - mov [ssnac.dRi], 17h - ; - ; ‘ЇЁб®Є бҐаўЁб®ў, Є®в®алҐ ­ ¬ ­г¦­л - ; - ; xx xx word family number #1 - ; xx xx word family version - ; ... ... ... - ; - - ; - ; Џ®Їа ўЁ« Ё§ ¤ ¬Ї  &RQ - ; - mov word [buff], 0100h ; 0001 - mov word [buff+2], 0300h ; 0003 - - mov word [buff+4], 1300h ; 0013 - mov word [buff+6], 0200h ; 0002 - - mov word [buff+8], 0200h ; 0002 - mov word [buff+10], 0100h ; 0001 - - mov word [buff+12], 0300h ; 0002 - mov word [buff+14], 0100h ; 0001 - - mov word [buff+16], 1500h ; 0015 - mov word [buff+18], 0100h ; 0001 - - mov word [buff+20], 0400h ; 0004 - mov word [buff+22], 0100h ; 0001 - - mov word [buff+24], 0600h ; 0006 - mov word [buff+26], 0100h ; 0001 - - mov word [buff+28], 0900h ; 0009 - mov word [buff+30], 0100h ; 0001 - - mov word [buff+32], 1300h ; 0013 - mov word [buff+34], 0400h ; 0004 - - mov word [buff+36], 1500h ; 0015 - mov word [buff+38], 0400h ; 0004 - - mov word [buff+40], 1000h ; 0010 - mov word [buff+42], 0100h ; 0001 - - - - mov eax, ssnac - mov ebx, buff - mov edx, 44 - call sendsnac - - jmp m_fin - - - ; - ; Server services versions - ; - m_snac_1_18: - ; - ; ЋЎа Ў®вЄЁ Ї®Є  ­Ґв - ; - - ; - ; Client ask server for rate limits info - ; SNAC(01,06) - ; - mov [ssnac.wFid], 1 ; Family - mov [ssnac.wSid], 6 ; Subtype - mov [ssnac.dRi], 6 - mov eax, ssnac - mov ebx, buff - xor edx, edx - call sendsnac - - - - jmp m_fin - - ; - ; Requested online info response - ; - m_snac_1_f: - ; - ;’гв ¤®«¦­  Ўлвм ­ и  Ё­д®а¬ жЁп, Ї®Є  ®Ўа Ў®вЄЁ ­Ґв - ; - - - jmp m_fin - - ; - ; Message of the day (MOTD) - ; - m_snac_1_13: - ; - ; ЌҐзҐЈ® ®Ўа Ў влў вм :-)) - ; - jmp m_fin - - ; - ; ‘®®ЎйҐ­ЁҐ ®Ў ®иЁЎЄҐ - ; - - m_snac_1_1: - xor eax, eax - mov ax, word [mbuff+10] - call ntohs - data_debug 'SERVER SEND ERROR #', eax - - - jmp m_fin - - - m_snac_1_other: - data_debug 'Unknown SNAC Family 1 recived, type ', edx - jmp m_fin - - - - ; - ; Family 2 - ; - m_snac_2: - cmp dx, 3 - jz m_snac_2_3 - jmp m_snac_2_other - ; - ; Server replies via location service limitations - ; - m_snac_2_3: - ; - ; ЋЎа Ў®вЄЁ Ї®Є  ­Ґв - ; - - ; - ; Ї®бл« Ґ¬ capabilities / profile - ; - mov [ssnac.wFid], 2 ; Family - mov [ssnac.wSid], 4 ; Subtype - mov [ssnac.dRi], 4 - - ;mov eax, CAPABILITIES - ;mov ebx, buff - ;push ecx - ;mov ecx, 5 ; TLV.Type(0x05) - CLSID values - ;mov edx, C_LEN - ;call tlvstr - ;pop ecx - mov word [buff], 0500h ; 00 05 - mov eax, C_LEN - call htons - mov word [buff+2], ax - - - - push ecx - - mov eax, CAPABILITIES - lea ebx, [buff+4] - mov ecx, C_LEN - call strcpy - - pop ecx - - - mov eax, ssnac - mov ebx, buff - mov edx, C_LEN+4 ; „«Ё­  ¤ ­­ле+а §¬Ґа § Ј®«®ўЄ  TLV - call sendsnac - - ; - ; § Їа иЁў Ґ¬ server BLM service limitations - ; - mov [ssnac.wFid], 3 ; Family - mov [ssnac.wSid], 2 ; Subtype - mov [ssnac.dRi], 2 - mov eax, ssnac - mov ebx, buff - xor edx, edx - call sendsnac - - - jmp m_fin - - m_snac_2_other: - write_debug 'Unknown SNAC Family 2 Recived' - jmp m_fin - - - - ; - ; FAMILY 3 - ; - m_snac_3: - cmp dx, 3 - jz m_snac_3_3 - cmp dx, 0Bh - jz m_snac_3_b - cmp dx, 0Ch - jz m_snac_3_c - jmp m_snac_3_other - - ; - ; Server replies via BLM service limitations - ; - m_snac_3_3: - ; - ; ЋЎа Ў®вЄЁ Ї®Є  ­Ґв - ; - - ; - ; Client ask server for ICBM service parameters - ; - mov [ssnac.wFid], 4 ; Family - mov [ssnac.wSid], 4 ; Subtype - mov [ssnac.dRi], 4 ; request-id - mov eax, ssnac - mov ebx, buff - xor edx, edx - call sendsnac - - - - jmp m_fin - - ; - ; User online notification - ; - m_snac_3_b: - ; - ; €§ ўбҐ© Ё­д®а¬ жЁЁ Ї®Є  ­г¦Ґ­ в®«мЄ® бв вгб - ; - xor edx, edx ; ‘зҐвзЁЄ - ­®¬Ґа UIN ў ¬ ббЁўҐ - xor ecx, ecx - xor eax, eax - cld ; ‚ ­ Їа ў«Ґ­ЁЁ 㢥«ЁзҐ­Ёп  ¤аҐб®ў - - dec edx - m_snac_3_b_loop: - inc edx - cmp edx, UINS - jnc m_snac_3_b_end ;>= - - mov cl, [mbuff+10] ; „«Ё­  “€Ќ - mov eax, ecx - mov edi, UIN_LEN - imul edi, edx - lea edi, [uins+edi] - lea esi, [mbuff+11] - repe cmpsb - - jnz m_snac_3_b_loop - ; - ; UIN ЋЇаҐ¤Ґ«Ґ­ - ; - - ; - ; Ќ ©вЁ TLV б® бв вгᮬ - ; б®еа ­пвм edx - - xor esi, esi ; ‘зҐвзЁЄ TLV - - xor ecx, ecx - mov ch, byte [mbuff + eax + 13] ; Љ®«-ў® TLV ў 楯®зЄҐ - mov cl, byte [mbuff + eax + 14] ; - - lea eax, [eax + 10 + 5] ; eax гЄ § вҐ«м ­  楯®зЄг TLV - lea eax, [mbuff + eax] ; - - - m_snac_3_b_next_tlv: - cmp esi, ecx - jz m_snac_3_b_endchain - - - xor ebx, ebx - mov bh, [eax] ; - mov bl, [eax + 1] ; TLV.Type - - data_debug 'TLV type', ebx - - cmp ebx, 0x06 ;TLV.Type(0x06) - user status - jz m_snac_3_b_status - - ; - ; ђ §ЎЁа Ґ¬ 楯®зЄг ¤ «миҐ - ; - - get_next_tlv - inc esi - jmp m_snac_3_b_next_tlv - - - - ; FIXME ЌҐ®ЇвЁ¬ «м­® - Є®¤ Ўг¤Ґв г¤ «Ґ­ - ; - ;lea ecx, [eax+10+11] ; +sizeof SNAC_head + offset #2 TLV - ;mov ax, word [mbuff+ecx] ;#2 TLV.Type - ;cmp ax, 0C00h ;dc info (optional) - ;jz m_snac_3_b_dc - ;cmp ax, 0A00h ;external ip address - ;jz m_snac_3_b_extip - ;jmp m_snac_3_b_bad_tlv - - - ;m_snac_3_b_dc: - ; - ; Џа®ЇгбЄ Ґ¬ нв®в TLV - ; - ;lea ecx, [ecx+41] - ;m_snac_3_b_extip: - ; - ; € нв®в :-) - ;lea ecx, [ecx+8] - ;mov ax, word [mbuff+ecx] - ;cmp ax, 0600h ;TLV.Type(0x0A) - external ip address - ;jz m_snac_3_b_status - ;jmp m_snac_3_b_bad_tlv - ; - ; - - - m_snac_3_b_status: - ; - ; бв вгб - ; - mov ecx, eax - mov eax, dword [ecx + 4] - ;mov eax, dword [mbuff+ecx+4] - call ntohl - ;mov ebx, 4 - ;imul ebx, edx - ;mov [stats+ebx], eax - mov ecx, eax - mov ebx, NAME_LEN - imul ebx, edx - lea ebx, [names+ebx] - mov eax, edx - call loadbb - jmp m_fin - - - m_snac_3_b_bad_tlv: - write_debug 'TLV Type Mismatch in SNAC(3,b)' - jmp m_fin - - m_snac_3_b_end: - write_debug 'UIN not in local Contact List' - jmp m_fin - - m_snac_3_b_endchain: - jmp m_fin - - - - m_snac_3_c: - ; - ; User offline notification - ; - xor edx, edx - xor ecx, ecx - - dec edx - m_snac_3_c_loop: - inc edx - cmp edx, UINS - jnc m_snac_3_b_end ;>= - - mov cl, [mbuff+10] ; „«Ё­  “€Ќ - mov edi, UIN_LEN - imul edi ,edx - lea edi, [uins+edi] - lea esi, [mbuff+11] - repe cmpsb - jnz m_snac_3_c_loop - ; - ; UIN ЋЇаҐ¤Ґ«Ґ­ - ; - ;mov eax, -1 - ;mov ebx, 4 - ;imul ebx, edx - ;mov [stats+ebx], eax - mov ecx, -1 - mov ebx, NAME_LEN - imul ebx, edx - lea ebx, [names+ebx] - mov eax, edx - call loadbb - jmp m_fin - - - - - - - m_snac_3_other: - write_debug 'Unknown SNAC Family 3 Recived' - jmp m_fin - - - ; - ; FAMILY 4 - ; - m_snac_4: - cmp dx, 5 - jz m_snac_4_5 - cmp dx, 7 - jz m_snac_4_7 - jmp m_snac_4_other - - ; - ; Server sends ICBM service parameters to client - ; - m_snac_4_5: - ; - ; ЋЎа Ў®вЄЁ Ї®Є  ­Ґв - ; - - ; - ; Client change default ICBM parameters command - ; - mov [ssnac.wFid], 4 ; Family - mov [ssnac.wSid], 2 ; Subtype - mov [ssnac.dRi], 2 ; request-id - - mov eax, ICBM_PARAMS - mov ebx, buff - push ecx - mov ecx, ICBMP_LEN - call strcpy - pop ecx - - mov eax, ssnac - mov ebx, buff - mov edx, ICBMP_LEN - call sendsnac - - ; - ; Client ask server PRM service limitations - ; - mov [ssnac.wFid], 9 ; Family - mov [ssnac.wSid], 2 ; Subtype - mov [ssnac.dRi], 2 ; request-id - mov eax, ssnac - mov ebx, buff - xor edx, edx - call sendsnac - - - jmp m_fin - - ; - ; Message for client from server - ; - m_snac_4_7: - ; - ; ЋЇаҐ¤Ґ«пҐ¬ вЁЇ б®®ЎйҐ­Ёп Ї® Ї®«о message channel - ; - xor eax, eax - mov ax, word [mbuff+10+8] ; +10 - а §¬Ґа SNAC - ; +8 ᬥ饭ЁҐ ¤® message channel - cmp ax, 0100h ; 00 01 - jz m_snac_ch1 - cmp ax, 0200h - jz m_snac_ch2 - cmp ax, 0400h - jz m_snac_ch4 - jmp m_ch_other - ; - ; channel 1 plain text - ; - m_snac_ch1: - ; - ; ’.Є ў ®зҐаҐ¤­®© а § ®ЇЁб ­ЁҐ Їа®в®Є®«  ­Ґ б®ўЇ ¤ Ґв б ॠ«м­®бвмо - ; а §ЎЁа Ґ¬ ўбҐ TLV Ї® Ї®ап¤Єг - - mov eax, dword [mbuff+10] ; cookie - mov [msg_cookie1], eax - mov eax, dword [mbuff+10+4] - mov [msg_cookie2], eax ; €бЇ®«м§говбп ¤«п Ї®вўҐа¦¤Ґ­Ёп ЇаЁҐ¬  б®®ЎйҐ­Ё© - - mov al, [mbuff+10+10] ; Sender UIN length - mov [ui.bUinLength], al - - push ecx - movzx ecx, al - - lea eax, [mbuff+10+11] ; UIN string - lea ebx, [ui.bUin] ; Dest - call strcpy - - lea ecx, [ecx+10+15] ; ЇҐаўл© TLV - - - m_snac_ch1_loop: - - movzx eax, word [mbuff+ecx] - cmp eax, 0100h ;TLV.Type(0x01) - user class - jz m_snac_ch1_1 - cmp eax, 0600h ;TLV.Type(0x06) - user status - jz m_snac_ch1_6 - cmp eax, 0800h ; Unknown type - jz m_snac_ch1_8 - cmp eax, 0500h ; Unknown type - jz m_snac_ch1_5 - cmp eax, 0F00h ; TLV.Type(0x0f) - user idle time - jz m_snac_ch1_f - cmp eax, 0300h ; TLV.Type(0x03) - account creation time - jz m_snac_ch1_3 - cmp eax, 0400h ; TLV.Type(0x04) - automated response flag - jz m_snac_ch1_4 - cmp eax, 0200h ; TLV.Type(0x02) - message data - jz m_snac_ch1_mess - jmp m_snac_msg_tlv_err - - ; - ; ‚®§¬®¦­®, ¤®Ї®«­ЁвҐ«м­ п ЁЁд®а¬ жЁп Ўг¤Ґв ®Ўа Ў влў вмбп - ; ­® Ї®Є  ­Ґв - - m_snac_ch1_1: - movzx eax, word [mbuff+ecx+2] ; TLV.Length - call ntohs - lea ecx, [eax+ecx+4] - jmp m_snac_ch1_loop - - m_snac_ch1_6: - - mov eax, dword [mbuff+ecx+4] ; User status - call ntohl - mov [ui.dUserStatus], eax - - - movzx eax, word [mbuff+ecx+2] ; TLV.Length - call ntohs - lea ecx, [eax+ecx+4] - ; - ; - - - jmp m_snac_ch1_loop - - m_snac_ch1_8: - movzx eax, word [mbuff+ecx+2] ; TLV.Length - call ntohs - lea ecx, [eax+ecx+4] - jmp m_snac_ch1_loop - - m_snac_ch1_5: - movzx eax, word [mbuff+ecx+2] ; TLV.Length - call ntohs - lea ecx, [eax+ecx+4] - jmp m_snac_ch1_loop - - m_snac_ch1_f: - movzx eax, word [mbuff+ecx+2] ; TLV.Length - call ntohs - lea ecx, [eax+ecx+4] - jmp m_snac_ch1_loop - - m_snac_ch1_3: - movzx eax, word [mbuff+ecx+2] ; TLV.Length - call ntohs - lea ecx, [eax+ecx+4] - jmp m_snac_ch1_loop - - - m_snac_ch1_4: - ;movzx eax, word [buff+ecx+2] ; TLV.Length - lea ecx, [ecx+4] - jmp m_snac_ch1_loop - - - - m_snac_ch1_mess: - ; - ; - movzx eax, word [mbuff+ecx+4] ; - cmp eax, 0105h ; 05 fragment identifier (array of required capabilities) - jnz m_snac_ch1_fr_err ; 01 fragment version - - movzx eax, word [mbuff+ecx+6] ; Length - call ntohs - - lea ecx, [ecx+eax+8] ; Џа®ЇгбЄ Ґ¬ byte array of required capabilities (1 - text) - - movzx eax, word [mbuff+ecx] ; fragment identifier (message text) - cmp eax, 0101h ; fragment version - jnz m_snac_ch1_fr_err - - movzx eax, word [mbuff+ecx+2] ; TLV Length - call ntohs - xchg eax, ecx - - lea eax, [eax+8] ; Ќ з «® ⥪бв®ў®Ј® б®®ЎйҐ­Ёп - lea ecx, [ecx-4] ; - sizeof Message charset number, Message charset subset - - push eax - push ecx - - ; - ; ‚лў®¤Ё¬ Message From UIN - ; - - mov eax, MESS - call strlen - mov ecx, eax - - mov eax, MESS - mov ebx, buff - call strcpy - - lea ebx, [ebx + ecx] - - ; - ; ЌҐЇ«®е® Ўл«® Ўл ўлўҐбвЁ ­Ґ UIN   Nickname, Ґб«Ё ®­ Ґбвм ў Є®­в Єв «Ёб⥠- ; - xor esi, esi ; ‘зҐвзЁЄ - - m_snac_ch1_next_uin: - - cmp esi, UINS - jz m_snac_ch1_notfound - - mov edx, UIN_LEN - imul edx, esi - - lea edx, [uins + edx] - movzx ecx, byte [ui.bUinLength] - strcmp edx, ui.bUin, ecx - jz m_snac_ch1_uin - - inc esi - jmp m_snac_ch1_next_uin - - - ; - ; Џ®¤е®¤пйЁ© UIN Ґбвм ў Є®­в Єв-«Ёб⥠- ; - m_snac_ch1_uin: - - mov edx, NAME_LEN - imul edx, esi - - lea edx, [names + edx] - mov eax, edx - - - call strlen - mov ecx, eax - - mov eax, edx - call strcpy - - jmp m_snac_ch1_msgfrom - - - ; - ; …б«Ё Ї®¤е®¤п饣® UIN ­Ґв ў Є®­в Єв-«Ёб⥠- ; - m_snac_ch1_notfound: - - lea eax, [ui.bUin] - movzx ecx, byte [ui.bUinLength] - call strcpy - - ; - ; ‚лў®¤ б®®ЎйҐ­Ёп "®в Є®Ј®" - ; - m_snac_ch1_msgfrom: - - mov [ebx + ecx], byte 0 - - mov eax, buff - xor ebx, ebx - - call writemsg - ; - ; ‘ ¬® б®®ЎйҐ­ЁҐ - ; - - pop ecx - pop eax - lea eax, [mbuff+eax] - - mov ebx, buff - call strcpy - mov [ebx+ecx], byte 0 - - mov eax, buff - call win2dos - mov ebx, 00FF0000h - call writemsg - - ; - ; Џ®¤вўҐа¦¤ Ґ¬ ЇаЁҐ¬ - ; - - pop ecx - ; - ; Џ®Є  ­Ґ ॠ«Ё§®ў ­®, в.Є. ­Ґ ¬®Јг ­ ©вЁ Є«ЁҐ­в, Є®в®ал© нв® ЁбЇ®«м§гҐв :-) - ; - - jmp m_fin - - m_snac_msg_tlv_err: - write_debug 'TLV TYPE MISMATCH' - pop ecx - jmp m_fin - - m_snac_ch1_fr_err: - write_debug 'UNKNOWN FRAGMENT IDENTIFIER OR FRAGMENT VERSION' - - ;m_snac_ch1_end: - pop ecx - - jmp m_fin - - ; - ; Channel 2 message format (rtf messages, rendezvous) - ; - m_snac_ch2: - ; - ; ®вЇа ўЁ¬ б®®ЎйҐ­ЁҐ, зв® Є ­ « ­Ґ Ї®¤¤Ґа¦Ёў Ґвбп - ; ­г¦­л ЄгЄЁ Ё гЁ­ - mov eax, dword [mbuff+10] - mov [msg_cookie1], eax - mov eax, dword [mbuff+10+4] - mov [msg_cookie2], eax - - mov al, [mbuff+10+10] ; Sender UIN length - mov [ui.bUinLength], al - - push ecx - movzx ecx, al - - lea eax, [mbuff+10+11] ; UIN string - lea ebx, [ui.bUin] ; Dest - call strcpy - - - mov [ssnac.wFid], 4 ; Family - mov [ssnac.wSid], 0Bh ; Subtype - mov [ssnac.dRi], 0Bh - - mov eax, [msg_cookie1] - mov dword [buff], eax - mov eax, [msg_cookie2] - mov dword [buff+4], eax - mov word [buff+8], 0200h ; Channel 2 - - mov al, [ui.bUinLength] - mov [buff+10], al - lea eax, [ui.bUin] - lea ebx, [buff+11] - call strcpy - lea ecx, [ecx+11] - - mov word [buff+ecx], 0100h ; reason code (1 - unsupported channel, 2 - busted payload, 3 - channel specific) - mov edx, ecx - - pop ecx - mov eax, ssnac - mov ebx, buff - call sendsnac - - - jmp m_fin - - ; - ; Channel 4 message format (typed old-style messages) - ; - m_snac_ch4: - - - - m_ch_other: - write_debug 'Unknown message channel' - - jmp m_fin - - - m_snac_4_other: - write_debug 'Unknown SNAC Family 4 recived' - jmp m_fin - - - - ; - ; FAMILY 9 - ; - m_snac_9: - cmp dx, 3 - jz m_snac_9_3 - jmp m_snac_9_other - - ; - ; Server sends PRM service limitations to client - ; - m_snac_9_3: - ; - ; ЋЎа Ў®вЄЁ Ї®Є  ­Ґв - ; - if USE_SSI <> 0 - - ; - ; ‡ Їа®б Љ‹ б бҐаўҐа  - ; - - ; - ; Request contact list (first time) - ; - mov [ssnac.wFid], 13h ; Family - mov [ssnac.wSid], 04h ; Subtype - mov [ssnac.dRi], 04h ; request-id - - mov eax, ssnac - mov ebx, buff - xor edx, edx - call sendsnac - - - else - - - ; ЋвЄ«о祭®, вЄ ­Ґ Ї®¤¤Ґа¦Ёў Ґвбп SIQ - ; - - ; - ; Client ask server for SSI service limitations - ; - ;mov [ssnac.wFid], 13h ; Family - ;mov [ssnac.wSid], 2 ; Subtype - ;mov [ssnac.dRi], 2 ; request-id - ;mov eax, ssnac - ;mov ebx, buff - ;xor edx, edx - ;call sendsnac - - ; - ; Ї®б«Ґ¤­пп бв ¤Ёп ᮥ¤Ё­Ґ­Ёп - ; - - ; - ; ‡ Їа иЁў Ґ¬ бў®о Ё­д®а¬ жЁо - ; - mov [ssnac.wFid], 1 ; Family - mov [ssnac.wSid], 0Eh ; Subtype - mov [ssnac.dRi], 0Eh ; request-id - - mov eax, ssnac - mov ebx, buff - xor edx, edx ; TLV head len - call sendsnac - - - ; - ; Client sends its DC info and status to server - ; - mov [ssnac.wFid], 1 ; Family - mov [ssnac.wSid], 1Eh ; Subtype - mov [ssnac.dRi], 1Eh ; request-id - - mov [buff], 0 ; TLV type 06 - mov [buff+1], 6h ; - mov [buff+2], 0 ; TLV data length - mov [buff+3], 4 ; - ; - ; - mov ax, STATUS_DCDISABLED ; DC disabled - call htons - mov word [buff+4], ax - mov ax, STATUS_ONLINE - mov [status], ax - mov word [buff+6], ax - - mov eax, ssnac - mov ebx, buff - mov edx, 8 ; TLV head len+ data len - call sendsnac - - - ; - ; ‚лЈаг¦ Ґ¬ ­  бҐаўҐа Љ‹ - ; - call uploadkl - - ; - ; ‚лЈаг¦ Ґ¬ Ё­ўЁ§ЁЎ« «Ёбв, Ї®Є  Їгбв®© - ; - mov [ssnac.wFid], 9 ; Family - mov [ssnac.wSid], 7 ; Subtype - mov [ssnac.dRi], 7 - - mov eax, ssnac - mov ebx, buff - xor edx, edx - call sendsnac - - ; - ; ‚ &RQ …бвм Ї ЄҐв гбв ­®ўЄЁ а §аҐиҐ­Ё©. п ЁбЇ®«м§го ҐЈ® ЎҐ§ Ё§¬Ґ­Ґ­Ёп - ; в.Є. ­Ґ §­ о, зв® ®­ ᮤҐа¦Ёв - ; - ў®§¬®¦­®, Ўг¤г ЁбЇ®«м§®ў вм Ї®§¤­ҐҐ - - ;mov [ssnac.wFid], 15 ; Family - ;mov [ssnac.wSid], 2 ; Subtype - ;mov [ssnac.dRi], 2 - - ;mov word [buff], 0100h ; 00 01 encapsulated META_DATA - ;mov word [buff+2], 1000h ; 00 10 Len - ;mov word [buff+4], 000Eh ; LE Len - ;mov word [buff+10], 07D0h ; META_DATA_REQ - - - ;mov eax, UIN - ;call ascitoint - ;mov dword [buff+6], eax - - ;mov word [buff+12], 0102h ; request sequence number (incrementing) - ;mov word [buff+14], 0424h ; META_SET_PERMS_USERINFO - ;mov [buff+16], 1 ; authorization (1-required, 0-not required) - ;mov [buff+17], byte 0 ; webaware (0-no, 1-yes) - ;mov [buff+18], 1 ; dc_perms (0-any, 1-contact, 2-authorization) - ;mov [buff+19], 0 ;unknown - - ;mov eax, ssnac - ;mov ebx, buff - ;mov edx, 20 - - - ; - ; Client READY command - ; - mov [ssnac.wFid], 1 ; Family - mov [ssnac.wSid], 2 ; Subtype - mov [ssnac.dRi], 2 ; request-id - - mov eax, FAMILY_ARR - mov ebx, buff - push ecx - mov ecx, FA_LEN - call strcpy - pop ecx - - mov eax, ssnac - mov ebx, buff - mov edx, FA_LEN - call sendsnac - - - ; - ; ‡ Їа иЁў Ґ¬ offline б®®ЎйҐ­Ёп - ; - mov [ssnac.wFid], 15h ; Family - mov [ssnac.wSid], 2 ; Subtype - mov [ssnac.dRi], 2 ; request-id - - mov word [buff], 0100h ; TLV type 01 - mov word [buff+2], 0A00h ; 00 0a „«Ё­  - mov word [buff+4], 0008h ; 08 00 - lea eax, [vtable + vartable.uin] - call ascitoint - mov dword [buff+6], eax - - mov word [buff+10], 003Ch ; 3C 00 - ‡ Їа®б ­  ®дд« ©­®ўлҐ б®®ЎйҐ­Ёп - mov word [buff+12], 0002 ; 02 00 - request sequence number - - mov edx, 14 ; ЋЎйЁ© а §¬Ґа ¤ ­­ле ў ЎгдҐаҐ - - mov eax, ssnac - mov ebx, buff - call sendsnac - - - - ; - ; ‡ Їа иЁў Ґ¬ Ё­д®а¬ жЁо ўбҐе UIN - ; - call getinfo - ; - ; § ўҐа襭® ᮥ¤Ё­Ґ­ЁҐ - ; - mov [login], 2 - - - end if ; USE_SSI = 0 - - jmp m_fin - - m_snac_9_other: - write_debug 'Unknown SNAC Family 9 Recived' - jmp m_fin - - - ; - ; FAMILY 13 - ; - m_snac_13: - cmp dx, 3 - jz m_snac_13_3 - cmp dx, 6 - jz m_snac_13_6 - cmp dx, 0fh - jz m_snac_13_F - - jmp m_snac_13_other - - ; - ; Server sends SSI service limitations to client - ; - m_snac_13_3: - ; - ; ЋЎа Ў®вЄЁ Ї®Є  ­Ґв - ; - - ; - ; SNAC(13,05) Client check if its local SSI copy is up-to-date - ; - mov [ssnac.wFid], 13h ; Family - mov [ssnac.wSid], 5 ; Subtype - mov [ssnac.dRi], 5 ; request-id - mov eax, ssnac - ; - ; - ; - mov [buff], 03Dh ; - mov [buff+1], 0E7h ; modification date/time of client local SSI copy - mov [buff+2], 48h ; - mov [buff+3], 17h ; - ; - ; - mov [buff+4], 00 ; - mov [buff+5], 00h ; number of items in client local SSI copy - - mov ebx, buff - mov edx, 5 - call sendsnac - - jmp m_fin - - - ; - ; Server contact list reply - ; - m_snac_13_6: - - lea eax, [mbuff+10] ; ‚ eax § Јаг¦ Ґ¬  ¤аҐб ЇаЁҐ¬­®Ј® ЎгдҐа + а §¬Ґа § Ј®«®ўЄ  snac - - call ssi_process_data ; ЋЎа Ў®вЄ  Ї ЄҐв  б Љ‹ - - ; - ; ЂЄвЁўЁа㥬 SSI - ; - - mov [ssnac.wFid], 13h ; Family - mov [ssnac.wSid], 7 ; Subtype - mov [ssnac.dRi], 7 ; request-id - mov eax, ssnac - mov ebx, buff - xor edx, edx - call sendsnac - - - ; - ; Ї®б«Ґ¤­пп бв ¤Ёп ᮥ¤Ё­Ґ­Ёп - ; - - ; - ; ‡ Їа иЁў Ґ¬ бў®о Ё­д®а¬ жЁо - ; - mov [ssnac.wFid], 1 ; Family - mov [ssnac.wSid], 0Eh ; Subtype - mov [ssnac.dRi], 0Eh ; request-id - - mov eax, ssnac - mov ebx, buff - xor edx, edx ; TLV head len - call sendsnac - - - ; - ; Client sends its DC info and status to server - ; - mov [ssnac.wFid], 1 ; Family - mov [ssnac.wSid], 1Eh ; Subtype - mov [ssnac.dRi], 1Eh ; request-id - - mov [buff], 0 ; TLV type 06 - mov [buff+1], 6h ; - mov [buff+2], 0 ; TLV data length - mov [buff+3], 4 ; - ; - ; - mov ax, STATUS_DCDISABLED ; DC disabled - call htons - mov word [buff+4], ax - mov ax, STATUS_ONLINE - mov [status], ax - mov word [buff+6], ax - - mov eax, ssnac - mov ebx, buff - mov edx, 8 ; TLV head len+ data len - call sendsnac - - - ; - ; ‚лЈаг¦ Ґ¬ ­  бҐаўҐа Љ‹ - ; FIXME ‚®§¬®¦­®, §¤Ґбм ­Ґ ­г¦­  нв  дг­ЄжЁп - ;call uploadkl - - ; - ; ‚лЈаг¦ Ґ¬ Ё­ўЁ§ЁЎ« «Ёбв, Ї®Є  Їгбв®© - ; - ;mov [ssnac.wFid], 9 ; Family - ;mov [ssnac.wSid], 7 ; Subtype - ;mov [ssnac.dRi], 7 - - ;mov eax, ssnac - ;mov ebx, buff - ;xor edx, edx - ;call sendsnac - - ; - ; ‚ &RQ …бвм Ї ЄҐв гбв ­®ўЄЁ а §аҐиҐ­Ё©. п ЁбЇ®«м§го ҐЈ® ЎҐ§ Ё§¬Ґ­Ґ­Ёп - ; в.Є. ­Ґ §­ о, зв® ®­ ᮤҐа¦Ёв - ; - ў®§¬®¦­®, Ўг¤г ЁбЇ®«м§®ў вм Ї®§¤­ҐҐ - - ;mov [ssnac.wFid], 15 ; Family - ;mov [ssnac.wSid], 2 ; Subtype - ;mov [ssnac.dRi], 2 - - ;mov word [buff], 0100h ; 00 01 encapsulated META_DATA - ;mov word [buff+2], 1000h ; 00 10 Len - ;mov word [buff+4], 000Eh ; LE Len - ;mov word [buff+10], 07D0h ; META_DATA_REQ - - - ;mov eax, UIN - ;call ascitoint - ;mov dword [buff+6], eax - - ;mov word [buff+12], 0102h ; request sequence number (incrementing) - ;mov word [buff+14], 0424h ; META_SET_PERMS_USERINFO - ;mov [buff+16], 1 ; authorization (1-required, 0-not required) - ;mov [buff+17], byte 0 ; webaware (0-no, 1-yes) - ;mov [buff+18], 1 ; dc_perms (0-any, 1-contact, 2-authorization) - ;mov [buff+19], 0 ;unknown - - ;mov eax, ssnac - ;mov ebx, buff - ;mov edx, 20 - - - ; - ; Client READY command - ; - mov [ssnac.wFid], 1 ; Family - mov [ssnac.wSid], 2 ; Subtype - mov [ssnac.dRi], 2 ; request-id - - mov eax, FAMILY_ARR - mov ebx, buff - push ecx - mov ecx, FA_LEN - call strcpy - pop ecx - - mov eax, ssnac - mov ebx, buff - mov edx, FA_LEN - call sendsnac - - - ; - ; ‡ Їа иЁў Ґ¬ offline б®®ЎйҐ­Ёп - ; - mov [ssnac.wFid], 15h ; Family - mov [ssnac.wSid], 2 ; Subtype - mov [ssnac.dRi], 2 ; request-id - - mov word [buff], 0100h ; TLV type 01 - mov word [buff+2], 0A00h ; 00 0a „«Ё­  - mov word [buff+4], 0008h ; 08 00 - lea eax, [vtable + vartable.uin] - call ascitoint - mov dword [buff+6], eax - - mov word [buff+10], 003Ch ; 3C 00 - ‡ Їа®б ­  ®дд« ©­®ўлҐ б®®ЎйҐ­Ёп - mov word [buff+12], 0002 ; 02 00 - request sequence number - - mov edx, 14 ; ЋЎйЁ© а §¬Ґа ¤ ­­ле ў ЎгдҐаҐ - - mov eax, ssnac - mov ebx, buff - call sendsnac - - - - ; - ; ‡ Їа иЁў Ґ¬ Ё­д®а¬ жЁо ўбҐе UIN - ; FIXME ‚®§¬®¦­®, §¤Ґбм ­Ґ ­г¦­  нв  дг­ЄжЁп - ;call getinfo - ; - ; § ўҐа襭® ᮥ¤Ё­Ґ­ЁҐ - ; - mov [login], 2 - - - jmp m_fin - - - - - ; - ; Server tell client its local copy up-to-date - ; - m_snac_13_F: - ; - ; ЋЎа Ў®вЄЁ ­Ґв - ; - - ; - ; Client activates server SSI data - ; - mov [ssnac.wFid], 13h ; Family - mov [ssnac.wSid], 7 ; Subtype - mov [ssnac.dRi], 7 ; request-id - mov eax, ssnac - mov ebx, buff - xor edx, edx - call sendsnac - - ; - ; Ї®б«Ґ¤­пп бв ¤Ёп ᮥ¤Ё­Ґ­Ёп - ; - - ; - ; Client sends its DC info and status to server - ; - mov [ssnac.wFid], 1 ; Family - mov [ssnac.wSid], 1Eh ; Subtype - mov [ssnac.dRi], 1Eh ; request-id - - mov [buff], 0 ; TLV type 06 - mov [buff+1], 6h ; - mov [buff+2], 0 ; TLV data length - mov [buff+3], 4 ; - ; - ; - mov ax, STATUS_DCDISABLED ; DC disabled - call htons - mov word [buff+4], ax - ; - ; - mov ax, [status] - mov word [buff+6], ax - - mov eax, ssnac - mov ebx, buff - mov edx, 8 ; TLV head len+ data len - call sendsnac - - ; - ; Client READY command - ; - mov [ssnac.wFid], 1 ; Family - mov [ssnac.wSid], 2 ; Subtype - mov [ssnac.dRi], 2 ; request-id - - mov eax, FAMILY_ARR - mov ebx, buff - push ecx - mov ecx, FA_LEN - call strcpy - pop ecx - - mov eax, ssnac - mov ebx, buff - mov edx, FA_LEN - call sendsnac - - - ; - ; ‡ Їа иЁў Ґ¬ offline б®®ЎйҐ­Ёп - ; - mov [ssnac.wFid], 15h ; Family - mov [ssnac.wSid], 2 ; Subtype - mov [ssnac.dRi], 2 ; request-id - - mov word [buff], 0100h ; TLV type 01 - mov word [buff+2], 0A00h ; 00 0a „«Ё­  - mov word [buff+4], 0008h ; 08 00 - lea eax, [vtable + vartable.uin] - call ascitoint - mov dword [buff+6], eax - - mov [buff+10], 003Ch ; 3C 00 - ‡ Їа®б ­  ®дд« ©­®ўлҐ б®®ЎйҐ­Ёп - mov [buff+12], 0002 ; 02 00 - request sequence number - - mov edx, 14 ; ЋЎйЁ© а §¬Ґа ¤ ­­ле ў ЎгдҐаҐ - - mov eax, ssnac - mov ebx, buff - call sendsnac - - - - jmp m_fin - - m_snac_13_other: - write_debug 'Unknown SNAC Family 13 Recived' - jmp m_fin - - - - - ; - ; Family 15 - ; - - m_snac_15: - - cmp dx, 3 - jz m_snac_15_3 - - jmp m_snac_15_other - - - ; - ; Server sends message #N - ; - m_snac_15_3: - ; - ; ЋЇаҐ¤Ґ«пҐ¬ Ї®¤вЁЇ ЇаЁ­пв®Ј® Ї ЄҐв  - ; - - ;write_debug 'SNAC 15, 3' - - xor eax, eax - mov ax, word [mbuff+10] ; + SNAC.head size - cmp ax, 0100h ; 00 01 TLV type - jnz m_snac_tlv_err - - mov ax, word [mbuff+10+10] - cmp ax, 0041h ; Offline Message - jz m_snac_offline_mes - cmp ax, 0042h ; End messages - jz m_snac_offline_end - cmp ax, 07DAh - jz m_snac_meta_data - - - write_debug 'Unknown Subtype SNAC (15,3)' - jmp m_fin - - m_snac_offline_mes: - mov eax, MESS ; - call strlen ; ‚лў®¤Ё¬ бва®Єг б б®®ЎйҐ­ЁҐ¬ ® ®вЇа ўЁвҐ«Ґ Ё ўаҐ¬Ґ­Ё ®вЇа ўЄЁ - push ecx ; - mov ecx, eax ; - mov eax, MESS - mov ebx, buff - call strcpy - - mov eax, dword [mbuff+14+10] ; Sender UIN - lea ebx, [buff+ecx] ; Џ®б«Ґ бва®зЄЁ ® б®®ЎйҐ­ЁЁ - call int2strd - - lea ebx, [ebx+eax] - mov [ebx], byte ' ' - inc ebx - - ; + „«Ё­  UIN - movzx eax, byte [mbuff+21+10] ; Day - call int2strd - - lea ebx, [ebx+eax] - mov [ebx], byte '.' - inc ebx - - - movzx eax, byte [mbuff+20+10] ;Mounth - call int2strd - - lea ebx, [ebx+eax] - mov [ebx], byte ' ' - inc ebx - - movzx eax, [mbuff+22+10] ; Hour - call int2strd - - lea ebx, [ebx+eax] - mov [ebx], byte ':' - inc ebx - - movzx eax, [mbuff+23+10] ; Minute - call int2strd - - lea ebx, [ebx+eax] - ;mov [ebx], byte ' ' - ;inc ebx - - mov [ebx], byte 0 ; Str end - mov eax, buff - xor ebx, ebx - - call writemsg - - movzx ecx, word [mbuff+26+10] ; „«Ё­  б®®®ЎйҐ­Ёп - lea eax, [mbuff+28+10] - mov ebx, buff - call strcpy - - mov [ebx+ecx], byte 0 - - mov eax, buff - call win2dos ;ЇҐаҐЄ®¤Ёа㥬 - - mov ebx, 00FF0000h ;–ўҐв - - call writemsg - - - pop ecx - - jmp m_fin - - - m_snac_offline_end: - ; - ; “¤ «пҐ¬ б®®ЎйҐ­Ёп ­  бҐаўҐаҐ - ; - mov [ssnac.wFid], 15h ; Family - mov [ssnac.wSid], 2 ; Subtype - mov [ssnac.dRi], 0602h ; request-id - - mov word [buff], 0100h ; 00 01 TLV.Type(1) - encapsulated META_DATA1 - mov word [buff+2], 0A00h ; 00 0A TLV.Length - mov word [buff+4], 0008h ; 08 00 data chunk size (TLV.Length-2) - lea eax, [vtable + vartable.uin] - call ascitoint - mov dword [buff+6], eax ; xx xx xx xx (LE) client uin - mov word [buff+10], 003Eh ; 3E 00 (LE) data type: delete offline msgs request cmd - mov word [buff+12], 0007h ; xx xx (LE) request sequence number - - mov edx, 14 ; ђ §¬Ґа ¤ ­­ле - mov eax, ssnac - mov ebx, buff - call sendsnac - - - - jmp m_fin - - ; - ; ЋвўҐв ­  § Їа®б ® Ї®«м§®ў вҐ«пе - ; - m_snac_meta_data: - ; - ; ЋЇаҐ¤Ґ«пҐ¬ ®зҐаҐ¤­®© Ї®¤вЁЇ :-) - ; - mov ax, word [mbuff+10+14] - cmp ax, 0104h ;data subtype: META_SHORT_USERINFO - jz m_snac_short_userinfo - cmp ax, 00C8h - jz m_snac_basic_userinfo ;data subtype: META_BASIC_USERINFO - write_debug 'Unknown META DATA subtype' - jmp m_fin - - - - m_snac_short_userinfo: - ; - ; €§ ўбҐ© Ё­д®а¬ жЁЁ Ї®Є  ­г¦Ґ­ в®«мЄ® ­ЁЄ - ; - mov al, [mbuff+10+16] - cmp al, 0Ah ;success byte - jnz m_fin - - movzx eax, word [mbuff+10+12] ;request sequence number - ; - ; ‚ § Їа®бҐ п ЁбЇ®«м§®ў « Ї®ап¤Є®ўл© ­®¬Ґа о§Ґа  ў Љ‹ - lea ebx, [mbuff+10+19] ;nickname string - ; „«Ё­  бва®ЄЁ ­Ґ ­г¦­ , в.Є. бва®Є  Null-Terminated - ;ЋЇаҐ¤Ґ«пҐ¬ бв вгб - mov ecx, 4 - imul ecx, eax - mov ecx, [stats+ecx] - - call loadbb - - - - jmp m_fin - - ; - ; вЄ SIQ ­  § Їа®б Є®а®вЄ®© Ё­дл ®вўҐз Ґв - ; Ї ЄҐв®¬ Ў §®ў®© Ё­д®а¬ жЁЁ, ॠ«Ё§го Ї®Є  в®«мЄ® ҐЈ® - ; - m_snac_basic_userinfo: - mov al, [mbuff+10+16] - cmp al, 0Ah ;success byte - jnz m_fin - - movzx eax, word [mbuff+10+12] ;request sequence number - ; - ; ‚ § Їа®бҐ п ЁбЇ®«м§®ў « Ї®ап¤Є®ўл© ­®¬Ґа о§Ґа  ў Љ‹ - lea ebx, [mbuff+10+19] ;nickname string - ; „«Ё­  бва®ЄЁ ­Ґ ­г¦­ , в.Є. бва®Є  Null-Terminated - ;ЋЇаҐ¤Ґ«пҐ¬ бв вгб - mov ecx, 4 - imul ecx, eax - mov ecx, [stats+ecx] - - call loadbb - - - - jmp m_fin - - m_snac_tlv_err: - write_debug 'TLV TYPE MISMATCH' - - jmp m_fin - - - m_snac_15_other: - - write_debug 'Unknown SNAC Family 15 Recived' - - jmp m_fin - - - m_other_snac: - write_debug 'Unknown SNAC recived' - jmp m_fin - - - - m_fin: - ;pop edx - ;pop ebx - ;pop eax - popad - popf - ret - -; „«п ЇҐаҐў®¤  DWORD Ё§ Little Endian ў Big Endian -; Ё ­ ®Ў®а®в :-) -; <--EAX DWORD -; -->EAX -; - ntohl: - htonl: - ;pushf - push ebx - ;push ecx - - xor ebx, ebx - - mov bl, ah - mov bh, al - shl ebx, 16 - - shr eax, 16 - mov bl, ah - mov bh, al - - mov eax, ebx - - ;pop ecx - pop ebx - ;popf - ret - - -; „«п ЇҐаҐў®¤  WORD Ё§ Little Endian ў Big Endian -; <--AX WORD -; -->AX WORD -; - - ntohs: - htons: - ;pushf - push ebx - - xor ebx, ebx - mov bl, ah - mov bh, al - mov eax, ebx - - pop ebx - ;popf - ret - -; -; Ї абЁв SNAC -; <--EAX гЄ § вҐ«м ­  SNAC_head -; <--EBX гЄ § вҐ«м ­  ЎгддҐа -; -->EAX гЄ § вҐ«м ­ з «® ¤ ­­ле = buffer+sizeof SNAC_head -; -; - snacpar: - pushf - push ecx - ;push edx - - mov cl, [ebx+1] ; Family (service) id number ¬« ¤иЁ© Ў ©в - mov ch, [ebx] ; бв аиЁ© - mov word [eax], cx - - mov cl, [ebx+3] ; Family subtype id number - mov ch, [ebx+2] ; - mov word [eax+2], cx - - mov cl, [ebx+5] ; SNAC flags - mov ch, [ebx+4] ; - mov word [eax+4], cx ; - - mov cl, [ebx+7] ; - mov ch, [ebx+6] ; - mov word [eax+8], cx ; SNAC request id - mov cl, [ebx+8] ; - mov ch, [ebx+7] ; - mov word [eax+6], cx ; - - add ebx, 10 ;ђ §¬Ґа § Ј®«®ўЄ  - mov eax, ebx - - - ;pop edx - pop ecx - popf - ret - -; -; Ї абЁв userinfo block -; FIXIT -; - -; userinfopar: -; pushf -; -; -; -; -; -; -; popf -; ret - -; -; Ї®бл«Є  б®®ЎйҐ­Ёп -; [eax] <-- ⥪бв®ўл© ЎгдҐа \ -; [ebx] <-- UIN / Null-terminated - - sendmsg: - pushf - pushad - push eax - push ebx - - mov [ssnac.wFid], 4h ; Family - mov [ssnac.wSid], 6 ; Subtype - mov [ssnac.dRi], 106h ; request-id - ; - ; Џ®«гз Ґ¬ ўаҐ¬п б § ЇгбЄ  бЁб⥬л, ¤«п cookie - ; - ;mov eax, 26 - ;mov ebx, 9 - ;int 40h - mcall 26, 9 - - mov dword [buff], eax ; Cookie 1 - mov dword [buff+4], eax ; Cookie 2 - - mov word [buff+8], 0100h ; Message channel 00 01 - - - pop ebx - mov eax, ebx - call strlen - - mov [buff+10], al - mov ecx, eax - mov eax, ebx - lea ebx, [buff+11] - call strcpy - lea ecx, [ecx+11] - - mov word [buff+ecx], 0200h ; TLV.Type(0x02) - message data - - ;push ecx ; - ; TLV.Length - - mov word [buff+ecx+4], 0105h ; 05 01 01 - fragment version, 05 - fragment identifier - - mov word [buff+ecx+6], 0100h ; data length - - mov [buff+ecx+8], 01 ; byte array of required capabilities (1 - text) - - mov [buff+ecx+9], 01 ; fragment identifier (text message) - mov [buff+ecx+10], 01 ; fragment version - - pop ebx - mov eax, ebx - call strlen - mov edx, eax - lea eax, [eax+4] ; „«Ё­  б®®ЎйҐ­Ёп + Message charset number+ Message language number - - call htons - mov word [buff+ecx+11], ax - - mov eax, edx - lea eax, [eax+13] ; + ¤«Ё­  б«г¦ҐЎ­ле ¤ ­­ле - call htons - mov word [buff+ecx+2], ax - - - mov word [buff+ecx+13], 0700h ; Message charset number - mov word [buff+ecx+15], 0300h ; Message language number - - mov eax, ecx - mov ecx, edx ; Len - lea edx, [eax+17] - - mov eax, ebx ;Source - - lea ebx, [buff+edx] ;Dest - - call strcpy - lea ecx, [ecx+edx] ; +String length - - mov [buff+ecx], byte 0 - mov eax, ebx - call dos2win - - - mov word [buff+ecx], 0600h ; TLV.Type(0x06) - store message if recipient offline - mov word [buff+ecx+2], 0 ; TLV.Length - - lea edx, [ecx+4] ; +TLV_head length - mov eax, ssnac - mov ebx, buff - mov ecx, [socket] - call sendsnac - - - - popad - popf - ret - -; -; ‡ Їа®б Ё­д®а¬ жЁЁ UIN®ў -; - getinfo: - pushad - pushf - ; - ; SNAC (15,2) - Meta information request - ; - - mov [ssnac.wFid], 15h ; Family - mov [ssnac.wSid], 2 ; Subtype - mov [ssnac.dRi], 702h ; request-id - - mov word [buff], 0100h ;TLV.Type(1) - encapsulated META_DATA - mov word [buff+2], 1000h ; 00 10 TLV.Length - mov word [buff+4], 000Eh ; (LE) data chunk size (TLV.Length-2) - lea eax, [vtable + vartable.uin] - call ascitoint - mov dword [buff+6], eax ;(LE) request owner uin - mov word [buff+10], 07D0h ;data type: META_DATA_REQ - ;mov word [buff+12], 0008h ; request sequence number <<<-- Њ®¦Ґв ¬Ґ­пвмбп FIXIT - mov word [buff+14], 04BAh ; data subtype: META_SHORTINFO_REQUEST - - mov ecx, [socket] - mov edx, 20 - - xor esi, esi ; ‘зҐвзЁЄ - xor eax, eax - - gi_loop: - mov ebx, esi - mov word [buff+12], bx ; request sequence number - mov ebx, UIN_LEN - imul ebx, esi - mov al, [uins+ebx] - cmp al, 0 - jz gi_end - - lea eax, [uins+ebx] - call ascitoint - mov dword [buff+16], eax - - mov eax, ssnac - mov ebx, buff - - call sendsnac - inc esi - cmp esi, UINS - jnc gi_end - jmp gi_loop - - - - - - - gi_end: - popf - popad - ret - -; -; ‡ Јаг¦ Ґ¬ «®Є «м­л© Љ‹ ­  бҐаўҐа ¤«п Ї®«г祭Ёп бв вгб  о§Ґа®ў -; - uploadkl: - pushf - pushad - ; - ; Add buddy(s) to contact list - ; - mov [ssnac.wFid], 3 ; Family - mov [ssnac.wSid], 4 ; Subtype - mov [ssnac.dRi], 4 ; request-id - - xor esi, esi ; ‘зҐвзЁЄ - xor edx, edx ; ‡ Ї®«­Ґ­® Ў ©в - - ukk_loop: - mov ebx, UIN_LEN - imul ebx, esi - mov al, [uins+ebx] - cmp al, 0 - jz ukk_end - lea eax, [uins+ebx] - - call strlen - mov [buff+edx], al - inc edx - - mov ecx, eax - lea eax, [uins+ebx] ; Source - lea ebx, [buff+edx] - call strcpy - add edx, ecx - inc esi - cmp esi, UINS - jz ukk_end - jmp ukk_loop - - - - - - ukk_end: - mov eax, ssnac - mov ebx, buff - mov ecx, [socket] - call sendsnac - - popad - popf - ret - -; -; -; - sendkeep: - pushf - pushad - cmp [login], 2 - jnz @f - mov ax, [timer] - cmp ax, 300 ;60 c - jb @f - mov [timer], 0 - mov [flap.bId], FLAP_ID - mov [flap.bCh], 5 ;Keep alive - mov [flap.wDs], 0 - inc [seq] - mov ax, [seq] - mov [flap.wSn], ax - mov eax, flap - mov ebx, buff - mov ecx, [socket] - call sendflap - - - @@: - popad - popf - ret - -; -; ”г­ЄжЁп ¤«п гбв ­®ўЄЁ бв вгб  -; бв вгб ў ЇҐаҐ¬Ґ­­®© status - setstatus: - push eax - push ebx - push edx - ; - ; Client sends its DC info and status to server - ; - mov [ssnac.wFid], 1 ; Family - mov [ssnac.wSid], 1Eh ; Subtype - mov [ssnac.dRi], 1Eh ; request-id - - mov [buff], 0 ; TLV type 06 - mov [buff+1], 6h ; - mov [buff+2], 0 ; TLV data length - mov [buff+3], 4 ; - ; - ; - mov ax, STATUS_DCDISABLED ; DC disabled - call htons - mov word [buff+4], ax - ; - ; - mov ax, [status] - mov word [buff+6], ax - - mov eax, ssnac - mov ebx, buff - mov edx, 8 ; TLV head len+ data len - call sendsnac - - pop edx - pop ebx - pop eax - ret - - -; -; Њ Єа®б Їа®ЇгбЄ Ґв ўбҐ Їа®ЎҐ«л ў бва®ЄҐ ¤® -; 1 Ј® §­ з йҐЈ® бЁ¬ў®«  -; eax - гЄ § вҐ«м ­  null-terminated бва®Єг - -macro skip_spaces { - local ..sp_end, ..sp_loop - - push ebx - push ecx - - xor ebx, ebx - xor ecx, ecx - - ..sp_loop: - - - mov bl, [eax + ecx] - cmp bl, 0x20 - jnz ..sp_end - - - inc ecx - jmp ..sp_loop - - - - ..sp_end: - lea eax, [eax + ecx] - - pop ecx - pop ebx -} - - - - - -; -; ЋЎа Ў®вЄ  Є®¬ ­¤ -; ‚ Ґax ЇҐаҐ¤ Ґвбп гЄ § вҐ«м ­  бва®Єг. Љ®¬ ­¤  Ё  аЈг¬Ґ­вл а §¤Ґ«Ґ­л Їа®ЎҐ«®¬ -; Є®¬ ­¤  ­ зЁ­ Ґвбп б / -; ў eax - १г«мв в ўлЇ®«­Ґ­Ёп Є®¬ ­¤л, -1 Є®¬ ­¤  ­Ґ бгйҐбвўгҐв, 0 ®Є, ¤агЈЁҐ § ўЁбпв ®в Є®¬ ­¤л - - cmd: - push ebx - push ecx - push edi - push esi - - ; - ; Џа®ўҐаЁвм ЇҐаўл© бЁ¬ў®« - ; - xor ebx, ebx - mov bl, [eax] - cmp bl, '/' - jnz cmd_end - - ; - ; ђ §¤Ґ«Ґ­ЁҐ Ї® 1© ЎгЄўҐ Є®¬ ­¤л - ; - mov bl, [eax + 1] - - cmp bl, 'c' - jz cmd_c - - cmp bl, 'e' - jz cmd_e - - cmp bl, 's' - jz cmd_s - - jmp cmd_no - - cmd_c: - - cmd_e: - - lea ebx, [eax + 1] - strcmp ebx, str_exit, str_exit.len - jz cmd_exit - - jmp cmd_no - - - - - cmd_s: - - lea ebx, [eax + 1] - strcmp ebx, str_status, str_status.len - jz cmd_status - - jmp cmd_no - - - - cmd_exit: - - - cmd_status: - ; - ; гбв ­®ўЁвм бв вгб Ё Ї®б« вм Ї ЄҐв ᬥ­л бв вгб  - ; - lea eax, [eax + 1 + str_status.len] - skip_spaces - - strcmp eax, str_online, str_online.len - jz cmd_st_online - - strcmp eax, str_away, str_away.len - jz cmd_st_away - - strcmp eax, str_na, str_na.len - jz cmd_st_na - - strcmp eax, str_dnd, str_dnd.len - jz cmd_st_dnd - - strcmp eax, str_bisy, str_bisy.len - jz cmd_st_bisy - - strcmp eax, str_free4chat, str_free4chat.len - jz cmd_st_free4chat - - ; - ; ‘в вгб ­Ґ ®ЇаҐ¤Ґ«Ґ­. - ; ‚뢥бвЁ б®®ЎйҐ­ЁҐ ® ¤®бвгЇ­ле бв вгб е - ; - mov eax, str_status_message - xor ebx, ebx - call writemsg - - jmp cmd_end - - - cmd_st_online: - - cmd_st_away: - - cmd_st_na: - - cmd_st_dnd: - - cmd_st_bisy: - - cmd_st_free4chat: - - - cmd_no: - - cmd_end: - pop esi - pop edi - pop ecx - pop ebx - - ret - - - - -; <--- initialised data ---> -DATA -include "parser_data.inc" -include "ssi_data.inc" -include "comp_data.inc" - - -head db 'KI',0 - - -; -MESS db 'Message from ', 0 -CUSER db 'Current user: ', 0 - -; -; ‘ЇЁб®Є IP бҐаўҐа®ў ICQ - -;205.188.153.121 -;icq_ip db '64.12.200.089',0 -;icq_ip db '64.12.161.185',0 -;icq_ip db '205.188.179.233',0 - - -; -flap FLAP_head -rflap FLAP_head -; -ssnac SNAC_head ; ¤«п ЇҐаҐ¤ зЁ SNAC -rsnac SNAC_head ; ¤«п ЇаЁ­пв®Ј® SNAC -; -ui UI_head ; User info -; -procinfo process_information -; -;UIN db '362820484',0 -;PASS db 'test',0 -ID_STRING db 'ICQ Inc. - Product of ICQ (TM).2000b.4.65.1.3281.85',0 -;ID_STRING db 'ICQ Inc. - Product of ICQ (TM).2001b.5.17.1.3642.85',0 - - -;CAPABILITIES db 0x09, 0x46, 0x13, 0x49, 0x4C, 0x7F, 0x11, 0xD1, 0x82, 0x22, 0x44, 0x45, 0x53, 0x54, 0x00, 0x00,\ - ;0x97, 0xB1, 0x27, 0x51, 0x24, 0x3C, 0x43, 0x34, 0xAD, 0x22, 0xD6, 0xAB, 0xF7, 0x3F, 0x14, 0x92,\ -CAPABILITIES db 0x2E, 0x7A, 0x64, 0x75, 0xFA, 0xDF, 0x4D, 0xC8, 0x88, 0x6F, 0xEA, 0x35, 0x95, 0xFD, 0xB6, 0xDF,\ - 'KOLIBRI KI(cq)',0,0 - ;0x09, 0x46, 0x13, 0x44, 0x4C, 0x7F, 0x11, 0xD1, 0x82, 0x22, 0x44, 0x45, 0x53, 0x54, 0x00, 0x00 - -; 1 бва®Є  -; {09461349-4C7F-11D1-8222-444553540000} -; Client supports channel 2 extended, TLV(0x2711) based messages. Currently used only by ICQ clients. -;ICQ clients and clones use this GUID as message format sign. Trillian client use another GUID -; in channel 2 messages to implement its own message format (trillian doesn't use TLV(x2711) in SecureIM channel 2 messages!). -; -; 2 бва®Є  -; {97B12751-243C-4334-AD22-D6ABF73F1492} -; Client supports RTF messages. This capability currently used by ICQ service and ICQ clients. -; -; 4 бва®Є  -; {0946134E-4C7F-11D1-8222-444553540000} -; Client supports UTF-8 messages. This capability currently used by AIM service and AIM clients -; - - - - -; -; From &RQ -; - -;CAPABILITIES db 0x09, 0x46, 0x13, 0x49, 0x4C, 0x7F, 0x11, 0xD1, 0x82, 0x22, 0x44, 0x45,\ ;...P.F.IL.T‚"DE -; 0x53, 0x54, 0x00, 0x00, 0x09, 0x46, 0x13, 0x44, 0x4C, 0x7F, 0x11, 0xD1, 0x82, 0x22, 0x44, 0x45,\ ;ST...F.DL.T‚"DE -; 0x53, 0x54, 0x00, 0x00, 0x09, 0x46, 0x13, 0x4E, 0x4C, 0x7F, 0x11, 0xD1, 0x82, 0x22, 0x44, 0x45,\ ;ST...F.NL.T‚"DE -; 0x53, 0x54, 0x00, 0x00, 0x09, 0x46, 0x00, 0x00, 0x4C, 0x7F, 0x11, 0xD1, 0x82, 0x22, 0x44, 0x45,\ ;ST...F..L.T‚"DE -; 0x53, 0x54, 0x00, 0x00, 0x26, 0x52, 0x51, 0x69, 0x6E, 0x73, 0x69, 0x64, 0x65, 0x02, 0x07, 0x09,\ ;ST..&RQinside... -; 0x00, 0x00, 0x00, 0x00 - - -C_LEN = 32 -;C_LEN = 80 -ICBM_PARAMS db 0, 0, 0, 0, 0, 0Bh, 01Fh, 040h, 3, 0E7h, 3, 0E7h, 0, 0, 0, 0 -ICBMP_LEN = 16 ; ^^^ from &RQ - - -; -; from &rq -; -FAMILY_ARR db 0x00, 0x01, 0x00, 0x03, 0x01, 0x10, 0x04, 0x7B, 0x00, 0x13, 0x00, 0x02, 0x01, 0x10, 0x04, 0x7B,\ - 0x00, 0x02, 0x00, 0x01, 0x01, 0x01, 0x04, 0x7B, 0x00, 0x03, 0x00, 0x01, 0x01, 0x10, 0x04, 0x7B,\ - 0x00, 0x15, 0x00, 0x01, 0x01, 0x10, 0x04, 0x7B, 0x00, 0x04, 0x00, 0x01, 0x01, 0x10, 0x04, 0x7B,\ - 0x00, 0x06, 0x00, 0x01, 0x01, 0x10, 0x04, 0x7B, 0x00, 0x09, 0x00, 0x01, 0x01, 0x10, 0x04, 0x7B,\ - 0x00, 0x0A, 0x00, 0x01, 0x01, 0x10, 0x04, 0x7B, 0x00, 0x10, 0x00, 0x01, 0x00, 0x10, 0x06, 0x6A - -; -; -; - -FA_LEN = 50h -; -; -; -ID_NUM = 010Ah -MAJOR = 05h -;MAJOR = 04h -;MINOR = 041h -MINOR = 011h -LESSER = 01h -;BUILD = 0CD1h -BUILD = 0E3Ah -DISTR = 055h -; -; - -TCB_ESTABLISHED = 4 -TCB_CLOSED = 11 -; -CL_LANG db 'en',0 -CL_COUNTRY db 'us',0 - - -sbuff db 1024 dup 0 ; ЃгдҐа ¤«п ЇҐаҐ¤ зЁ ЁбЇ®«м§гҐвбп ў­гваЁ sendflap - -;recived db 0 ; ЏаЁ­пв® ¤ ­­ле Ё§ ⥫  Ї ЄҐв  - -;rbuff db 1024 dup 0 ; ЏаЁҐ¬­л© ЎгдҐа -tbuff db 512 dup 0 ; „«п TLV -srv_cookie db 512 dup 0 ; ЉгЄЁ ¤«п  ўв®аЁ§ жЁЁ -bos_address db 128 dup 0 ; Ђ¤аҐб BOS бҐаўҐа  -cookie_len dw 0 ; „«Ё­  ЄгЄЁ -seq dw 0 ; Sequence number -bos_ip dd 0 -bos_port dd 0 -status dw 0 ; status - -mbuff db 2048 dup 0 ; „«п ЇаЁҐ¬  -MBUFF_SIZE = 2048 - -hrf db 0 ; ”« Ј ЇаЁҐ¬  § Ј®«®ўЄ  - -mouse_flag dd 0 -socket dd 0 -login db 0 - -msg_cookie1 dd 0 ; €бЇ®«м§говбп ¤«п Ї®вўҐа¦¤Ґ­Ёп ЇаЁҐ¬  б®®ЎйҐ­Ё© -msg_cookie2 dd 0 ; - -curruser db 0 ; ⥪гйЁ© Ї®«м§®ў вҐ«м, Є®в®а®¬г Ўг¤гв ®вЇа ў«пвмбп б®®ЎйҐ­Ёп - ; - Ќ®¬Ґа ў Љ‹ Ї® Ї®ап¤Єг - - -timer dw 0 - -;ltest db "ADMIN",0 -buff db 1024 dup 0 -; lbuff db 8 dup 0 ; „«п 1 Ї ЄҐв  ®в бҐаўҐа  - -; -; ‘ва®ЄЁ Є®¬ ­¤ ¤«п ба ў­Ґ­Ёп -; -str_status db 'status ' -str_status.len = $ - str_status -str_exit db 'exit ' -str_exit.len = $ - str_exit -; -; ‘ва®ЄЁ бв вгб®ў ¤«п ба ў­Ґ­Ёп -; -str_away db 'away' -str_away.len = $ - str_away - -str_dnd db 'dnd' -str_dnd.len = $ - str_dnd - -str_bisy db 'bisy' -str_bisy.len = $ - str_bisy - -str_na db 'na' -str_na.len = $ - str_na - -str_online db 'online' -str_online.len = $ - str_online - -str_free4chat db 'free4chat' -str_free4chat.len = $ - str_free4chat - -str_status_message db '„®бвгЇ­лҐ бв вгбл: away, bisy, na, dnd, online, free4chat',0 - - -; -; -; - -cfg_message db 'Config:',0 - - -; -; EDITBOXES -; -inputbuff: - rb 512 - -inputbox edit_box 490,10,460,0xffffff,0x6a9480,0,0xAABBCC,0,511,inputbuff,ed_focus,0,0 - - -; <--- uninitialised data ---> -UDATA - - -MEOS_APP_END -; <--- end of MenuetOS application ---> diff --git a/programs/network_old/icq/trunk/ki.cfg b/programs/network_old/icq/trunk/ki.cfg deleted file mode 100644 index 475dac38ab..0000000000 --- a/programs/network_old/icq/trunk/ki.cfg +++ /dev/null @@ -1,9 +0,0 @@ -# -# -# -UIN="123456789" -PASS="PASS" -# -# -ICQIP="64.12.200.89" -#ICQIP="192.168.0.1" diff --git a/programs/network_old/icq/trunk/lang.inc b/programs/network_old/icq/trunk/lang.inc deleted file mode 100644 index 7a62d6c0b0..0000000000 --- a/programs/network_old/icq/trunk/lang.inc +++ /dev/null @@ -1 +0,0 @@ -lang fix en diff --git a/programs/network_old/icq/trunk/macros.inc b/programs/network_old/icq/trunk/macros.inc deleted file mode 100644 index d4689a5d31..0000000000 --- a/programs/network_old/icq/trunk/macros.inc +++ /dev/null @@ -1,543 +0,0 @@ -@^ fix macro comment { -^@ fix } - -; ------------------------- -macro library [lname,fname] -{ - forward - dd __#lname#_library_table__,__#lname#_library_name__ - common - dd 0 - forward - align 4 - __#lname#_library_name__ db fname,0 -} - -macro import lname,[name,sname] -{ - common - align 4 - __#lname#_library_table__: - forward - if used name - name dd __#name#_import_name__ - end if - common - dd 0 - forward - if used name - align 4 - __#name#_import_name__ db sname,0 - end if -} - -macro export [name,sname] -{ - forward - dd __#name#_export_name__,name - common - dd 0 - forward - align 4 - __#name#_export_name__ db sname,0 -} -; ------------------------- - -macro m2m dest,src { - push src - pop dest -} - - -macro iglobal { - IGlobals equ IGlobals, - macro __IGlobalBlock { } - -macro uglobal { - UGlobals equ UGlobals, - macro __UGlobalBlock { } - -endg fix } ; Use endg for ending iglobal and uglobal blocks. - - -macro IncludeIGlobals{ - macro IGlobals dummy,[n] \{ __IGlobalBlock - purge __IGlobalBlock \} - match I, IGlobals \{ I \} } - -macro IncludeUGlobals{ - macro UGlobals dummy,[n] \{ - \common - \local begin, size - begin = $ - virtual at $ - \forward - __UGlobalBlock - purge __UGlobalBlock - \common - size = $ - begin - end virtual - rb size - \} - match U, UGlobals \{ U \} } - -uglobal -endg - -iglobal -endg - - -; new application structure -macro meos_app_start - { - use32 - org 0x0 - - db 'MENUET01' - dd 0x01 - dd __start - dd __end - dd __memory - dd __stack - - if used __params & ~defined __params - dd __params - else - dd 0x0 - end if - - dd 0x0 - } -MEOS_APP_START fix meos_app_start - -macro code - { - __start: - } -CODE fix code - -macro data - { - __data: - IncludeIGlobals - } -DATA fix data - -macro udata - { - if used __params & ~defined __params - __params: - db 0 - __end: - rb 255 - else - __end: - end if - __udata: - IncludeUGlobals - } -UDATA fix udata - -macro meos_app_end - { - align 32 - rb 2048 - __stack: - __memory: - } -MEOS_APP_END fix meos_app_end - - -; macro for defining multiline text data -struc mstr [sstring] - { - forward - local ssize - virtual at 0 - db sstring - ssize = $ - end virtual - dd ssize - db sstring - common - dd -1 - } - -; macro for defining multiline text data -struc mls [sstring] - { - forward - local ssize - virtual at 0 - db sstring ; mod - ssize = $ - end virtual - db ssize - db sstring - common - db -1 ; mod - } - - - -; strings -macro sz name,[data] { ; from MFAR [mike.dld] - common - if used name - name db data - .size = $-name - end if -} - -macro lsz name,[lng,data] { ; from MFAR [mike.dld] - common - if used name - label name - forward - if lang eq lng - db data - end if - common - .size = $-name - end if -} - -macro szc name,elsz,[data] { ; from MFAR [mike.dld] - common - local s,m - m = 0 - if used name - label name - forward - virtual at 0 - db data - s = $ - end virtual - d#elsz s - if m < s - m = s - end if - db data - common - .size = $-name - .maxl = m - end if -} - -macro lszc name,elsz,[lng,data] { ; from MFAR [mike.dld] - common - local s,m,c - m = 0 - c = 0 - if used name - label name - forward - if lang eq lng - virtual at 0 - db data - s = $ - end virtual - d#elsz s - if m < s - m = s - end if - db data - c = c+1 - end if - common - .size = $-name - .maxl = m - .count = c - end if -} - - -; easy system call macro -macro mpack dest, hsrc, lsrc -{ - if (hsrc eqtype 0) & (lsrc eqtype 0) - mov dest, (hsrc) shl 16 + lsrc - else - if (hsrc eqtype 0) & (~lsrc eqtype 0) - mov dest, (hsrc) shl 16 - add dest, lsrc - else - mov dest, hsrc - shl dest, 16 - add dest, lsrc - end if - end if -} - -macro __mov reg,a,b { ; mike.dld - if (~a eq)&(~b eq) - mpack reg,a,b - else if (~a eq)&(b eq) - mov reg,a - end if -} - - -include 'config.inc' -;__CPU_type equ p5 -SYSENTER_VAR equ 0 - -macro mcall a,b,c,d,e,f { ; mike.dld, updated by Ghost for Fast System Calls - local ..ret_point - __mov eax,a - __mov ebx,b - __mov ecx,c - __mov edx,d - __mov esi,e - __mov edi,f - - if __CPU_type eq p5 - int 0x40 - else - if __CPU_type eq p6 - push ebp - mov ebp, esp - push ..ret_point ; it may be 2 or 5 byte - sysenter - ..ret_point: - pop edx - pop ecx - - else - if __CPU_type eq k6 - push ecx - syscall - pop ecx - else - display 'ERROR : unknown CPU type (set to p5)', 10, 13 - __CPU_type equ p5 - int 0x40 - end if - end if - end if -} - - -; ------------------------- -macro header a,[b] { - common - use32 - org 0 - db 'MENUET',a - forward - if b eq - dd 0 - else - dd b - end if } -macro section name { align 16 - label name } -macro func name { - if ~used name - display 'FUNC NOT USED: ',`name,13,10 - else - align 4 - name: - ;diff16 `name,0,name -;pushad -;pushfd -;dps `name -;newline -;mcall 5,1 -;popfd -;popad -} -macro endf { end if } - -macro diff16 title,l1,l2 - { - local s,d - s = l2-l1 - display title,': 0x' - repeat 8 - d = '0' + s shr ((8-%) shl 2) and $0F - if d > '9' - d = d + 'A'-'9'-1 - end if - display d - end repeat - display 13,10 - } - -macro diff10 title,l1,l2 - { - local s,d,z,m - s = l2-l1 - z = 0 - m = 1000000000 - display title,': ' - repeat 10 - d = '0' + s / m - s = s - (s/m)*m - m = m / 10 - if d <> '0' - z = 1 - end if - if z <> 0 - display d - end if - end repeat - display 13,10 - } - -; optimize the code for size -__regs fix - -macro add arg1,arg2 - { - if (arg2 eqtype 0) - if (arg2) = 1 - inc arg1 - else - add arg1,arg2 - end if - else - add arg1,arg2 - end if - } - -macro sub arg1,arg2 - { - if (arg2 eqtype 0) - if (arg2) = 1 - dec arg1 - else - sub arg1,arg2 - end if - else - sub arg1,arg2 - end if - } - -macro mov arg1,arg2 - { - if (arg1 in __regs) & ((arg2 eqtype 0) | (arg2 eqtype '0')) - if (arg2) = 0 - xor arg1,arg1 - else if (arg2) = 1 - xor arg1,arg1 - inc arg1 - else if (arg2) = -1 - or arg1,-1 - else if (arg2) > -128 & (arg2) < 128 - push arg2 - pop arg1 - else - mov arg1,arg2 - end if - else - mov arg1,arg2 - end if - } - - -macro RGB [a] { - common - match (r=,g=,b),a \{ - \dd ((r) shl 16) or ((g) shl 8) or (b) - \} -} - - -struc POINT _t,_dx,_dy { - .x _t _dx - .y _t _dy -} - -; structure definition helper -include 'struct.inc' - -struct RECT - left dd ? - top dd ? - right dd ? - bottom dd ? -ends - -struct BOX - left dd ? - top dd ? - width dd ? - height dd ? -ends - -; structures used in MeOS -struct process_information - cpu_usage dd ? ; +0 - window_stack_position dw ? ; +4 - window_stack_value dw ? ; +6 - dw ? ; +8 - process_name rb 12 ; +10 - memory_start dd ? ; +22 - used_memory dd ? ; +26 - PID dd ? ; +30 - box BOX ; +34 - slot_state dw ? ; +50 - dw ? ; +52 - client_box BOX ; +54 - wnd_state db ? ; +70 - rb (1024-71) -ends - -struct system_colors - frame dd ? - grab dd ? - grab_button dd ? - grab_button_text dd ? - grab_text dd ? - work dd ? - work_button dd ? - work_button_text dd ? - work_text dd ? - work_graph dd ? -ends - -struct FILEDATE - Second db ? - Minute db ? - Hour db ? - db ? - Day db ? - Month db ? - Year dw ? -ends - -struct FILEINFO - Attributes dd ? - IsUnicode db ? - db 3 dup(?) - DateCreate FILEDATE - DateAccess FILEDATE - DateModify FILEDATE - Size dq ? -ends - -; constants - -; events -EV_IDLE = 0 -EV_TIMER = 0 -EV_REDRAW = 1 -EV_KEY = 2 -EV_BUTTON = 3 -EV_EXIT = 4 -EV_BACKGROUND = 5 -EV_MOUSE = 6 -EV_IPC = 7 -EV_STACK = 8 - -; event mask bits for function 40 -EVM_REDRAW = 1b -EVM_KEY = 10b -EVM_BUTTON = 100b -EVM_EXIT = 1000b -EVM_BACKGROUND = 10000b -EVM_MOUSE = 100000b -EVM_IPC = 1000000b -EVM_STACK = 10000000b diff --git a/programs/network_old/icq/trunk/parser.inc b/programs/network_old/icq/trunk/parser.inc deleted file mode 100644 index 35cff30c34..0000000000 --- a/programs/network_old/icq/trunk/parser.inc +++ /dev/null @@ -1,696 +0,0 @@ -; -; ‘вагЄвга  ¤«п дг­ЄжЁЁ 70 -; - -struc sinfo -{ - .subfnc_name dd 0 - .pos_in_file dd 0 - .reserved dd 0 - .bytes_to_read dd 0 - .pbuffer dd 0 - .null db 0 - .pname dd 0 -} - - - - -; -; в Ў«Ёжл §­ зҐ­Ё© -; -; +----+-------------+-----------------+ -; | in | Variable | Variable | -; | de | name | string | -; | x | | | -; | | | | -; +----+-------------+-----------------+ -; | | | | -; | | | | -; | 1 | UIN | 'XXXXX..XX',0 | -; | | | | -; +----+-------------+-----------------+ -; | | | -; -; § Јаг§Є  int Ї®Є  ­Ґ ॠ«Ё§®ў ­  -; -; +----+-------------+-----------------+ -; | in | Variable | Variable | -; | de | name | int | -; | x | | | -; | | | | -; +----+-------------+-----------------+ -; | | | | -; | | | | -; | 1 | BUFFSIZE | XXXXXXXX | -; | | | | -; +----+-------------+-----------------+ -; | | | -; -; - - -TABLE_SIZE equ 16 -VNAME_LEN equ 8 -VAR_LEN equ 16 - -; -; ЋЇЁб ­ЁҐ в Ў«Ёжл §­ зҐ­Ё© - -virtual at 0 - vartable: - .uin db VAR_LEN dup ? - .pass db VAR_LEN dup ? - .icqip db VAR_LEN dup ? - - - -end virtual - - -; -; Љ®¤л ®иЁЎ®Є д ©«®ў®© бЁб⥬л -; - -FIO_SUCCESS equ 0 -FIO_UNSUPPORTED equ 2 -FIO_UNKNOWNFS equ 3 -FIO_FILENOTFOUND equ 5 -FIO_EOF equ 6 -FIO_BADPOINTER equ 7 -FIO_DISKFULL equ 8 -FIO_FATDAMAGED equ 9 -FIO_DENIED equ 10 -FIO_ERRORDEVICE equ 11 - - -IOBUFF_SIZE equ 128 - - - - -; -; ¬ Єа®б ¤«п Ї®ЁбЄ  н«Ґ¬Ґ­в  ў бва®ЄҐ -; ў®§ўа й Ґв ў eax ­®¬Ґа н«Ґ¬Ґ­в  Ё«Ё -1 Ґб«Ё ­Ґ ­ ©¤Ґ­ -macro findchar string, len, char -{ - local ..fc_endstr, ..fc_end - - push ebx - push ecx - push edi - - - mov edi, string - mov ecx, len - mov ebx, ecx - cld - mov al, char - repne scasb - jcxz ..fc_endstr - - sub ebx, ecx ; Ќ®¬Ґа = - mov eax, ebx - jmp ..fc_end - - ..fc_endstr: - mov eax, -1 - - - ..fc_end: - pop edi - pop ecx - pop ebx - -} - -; -; Њ Єа®б ¤«п Ї®ЁбЄ  н«Ґ¬Ґ­в  бва®ЄЁ, ®в«Ёз о饣®бп ®в -; § ¤ ­­®Ј® - -macro findother string, len, char -{ - local ..fc_endstr, ..fc_end - - push ebx - push ecx - push edi - - - mov edi, string - mov ecx, len - mov ebx, ecx - cld - mov al, char - repe scasb ; …б«Ё бЁ¬ў®« ­Ґ char - ўл室Ё¬ - jcxz ..fc_endstr ; бва®Є  Ё§ char - - sub ebx, ecx ; ў ebx - ­®¬Ґа н«Ґ¬Ґ­в  ®в«Ёз­®Ј® ®в char - mov eax, ebx - jmp ..fc_end - - ..fc_endstr: - mov eax, -1 - - - ..fc_end: - pop edi - pop ecx - pop ebx -} - -; -; Њ Єа®б ¤«п Є®ЇЁа®ў ­Ёп бва®Є -; -macro mstrcpy from, to, leng -{ - - push ecx - push esi - push edi - - mov ecx, leng - mov esi, from - mov edi, to - cld - rep movsb - - pop edi - pop esi - pop ecx - -} - - -; -; €­ЁжЁ «Ё§ЁагҐв в Ў«Ёжл -; - -; inittables: -; -; -; mstrcpy name1, nvtable, VNAME_LEN -; mstrcpy name2, (nvtable + NAME_LEN), VNAME_LEN -; mstrcpy name3, (nvtable + NAME_LEN * 2), VNAME_LEN -; -; -; -; ret - - -; -; § Ї®«­пҐв в Ў«Ёжл §­ зҐ­Ёп¬Ё -; IN eax - ASCIIZ Ё¬п д ©«  -; OUT eax - १г«мв в з⥭Ёп -; Ґб«Ё १г«мв в -1, д®а¬ в д ©«  ­ҐЇа ўЁ«м­л© -; - parseconf: - push edi - push esi - ;push eax - push ebx - push ecx - push edx - - mov [strnum], dword 0 - - ; - ; Џа®зЁв вм Ї®бва®з­® Є®­дЁЈ - ; Ґб«Ё бва®Є  ­ зЁ­ Ґвбп б ;, # - Є®¬¬Ґ­в аЁ© - ; ”®а¬ в UIN="1234567890" - ; PASS="******" Ё в.¤. - - ; - ; ‘Ўа®б ᬥ饭Ёп - mov [shift], dword 0 - - mov esi, eax - - pc_still: - - mov edx, esi - mov ecx, IOBUFF_SIZE - mov ebx, iobuff - - call getstr - - inc [strnum] - - push eax - - ; - ;Џа®ўҐаЄ  Ї®«г祭­®© бва®ЄЁ - ; - movzx eax, byte [iobuff] - - test eax, eax - jz pc_next - - cmp al, '#' - jz pc_next - - cmp al, ';' - jz pc_next - - ; - ; Ќ ©вЁ Ё¬п ЇҐаҐ¬Ґ­­®© - ; - findother iobuff, ebx, ' ' - cmp eax, -1 - jz pc_next - - mov [stnpos], eax ;­ з «® Ё¬Ґ­Ё - - ; - ; ­ ©вЁ = - ; - mov ecx, ebx ; €бЄ вм ®в ­ ©¤Ґ­­®Ј® бЁ¬ў®«  - sub ecx, eax ; - - mov edi, iobuff - add edi, eax - - findchar edi, ecx, '=' - - cmp eax, -1 - jz pc_badformat - - mov edi, [stnpos] - add eax, edi ; ў eax - ᬥ饭ЁҐ ®в ­ з «  бва®ЄЁ - mov [eqpos], eax - - mov ecx, ebx - sub ecx, eax - - ; - ; Їа®ўҐаЁвм " - ; - mov dl, [iobuff + eax] - cmp dl, '"' - jnz pc_badformat - ; - ; ­ ©вЁ § Єалў ойго " - ; - mov edi, iobuff - add edi, eax - - inc edi - - findchar edi, ecx, '"' - - cmp eax, -1 - jz pc_badformat - - inc eax - - mov edx, [eqpos] - add eax, edx - mov [edvpos], eax - - ; - ; “бв ­®ўЁвм §­ зҐ­ЁҐ - ; - ; „®Ў ўЁвм § ўҐаи ойЁҐ 0 - - mov eax, [stnpos] - dec eax - - - mov ebx, [eqpos] - mov ecx, ebx - dec ecx ; Є®«ЁзҐбвў® бЁ¬ў®«®ў ¤® = - inc ebx ; Џа®ЇгбвЁвм " - - mov [iobuff + ecx], byte 0 - - mov edx, [edvpos] - dec edx - - mov [iobuff + edx], byte 0 - - lea eax, [iobuff + eax] - lea ebx, [iobuff + ebx] - call setavar - - jmp pc_next - - - - - pc_badformat: - pop eax - - mov ebx, [strnum] - jmp pc_err - - - pc_next: - pop eax - - cmp eax, FIO_EOF - jz pc_eof - cmp eax, FIO_SUCCESS - jnz pc_err - - jmp pc_still - - - - pc_eof: - pc_err: - pop edx - pop ecx - pop ebx - ;pop eax - pop esi - pop edi - ret - -; Џ®ЁбЄ ў в Ў«ЁжҐ ЇҐаҐ¬Ґ­­®© Ё гбв ­®ўЄ  Ґс §­ зҐ­Ёп -; IN eax - ­ §ў ­ЁҐ ЇҐаҐ¬Ґ­­®© гЄ § вҐ«м ­  ASCIIZ -; IN ebx - §­ зҐ­ЁҐ ЇҐаҐ¬Ґ­­®© гЄ § вҐ«м ­  ASCIIZ -; OUT eax -१г«мв в 0 = OK, -1 = ­Ґв ў в Ў«ЁжҐ ЇҐаҐ¬Ґ­­ле -; OUT § Ї®«­пҐв Ј«®Ў «м­го в Ў«Ёжг - setavar: - ;push ebx - push ecx - push edx - push esi - push edi - push ebx - - ; - ; ЋЇаҐ¤Ґ«Ёвм ¤«Ё­г бва®ЄЁ - ­ §ў ­ЁҐ ЇҐаҐ¬Ґ­­®© - ; - mov edi, eax - push eax - - mov ecx, VNAME_LEN - - xor eax, eax ;€йҐ¬ \0 - cld - repne scasb - - mov eax, VNAME_LEN - sub eax, ecx ; ‚ ecx - ®бв в®Є ¤® ¬ ЄбЁ¬ «м­®Ј® а §¬Ґа  бва®ЄЁ - mov ebx, eax - - - pop eax - ; - ; €бЄ вм ў в Ў«ЁжҐ Ї®¤е®¤п饥 Ё¬п - ; - xor edx, edx ;index - - sv_next: - mov ecx, ebx - push eax - mov esi, eax - mov edi, nvtable - mov eax, edx - imul eax, VNAME_LEN ;offset - add edi, eax - pop eax - cld - - repe cmpsb - jz sv_match - - sv_inc: - inc edx - cmp edx, TABLE_SIZE - jae sv_fail - jmp sv_next - - sv_match: - cmp ebx, VNAME_LEN ;‚ ebx - ¤«Ё­  Ёб室­®© бва®зЄЁ - jz sv_match2 - - push eax - mov edi, nvtable - mov eax, edx - imul eax, VNAME_LEN ;offset - add edi, eax - pop eax - - cmp [edi + ebx], byte 0 ; …б«Ё Ё¬п ў в Ў«ЁжҐ Є®а®зҐ ¬ ЄбЁ¬ «м­®Ј®, - jnz sv_inc ; § Є ­зЁў Ґвбп 0 - - sv_match2: - pop edi ; - push edi - ; - ; ЋЇаҐ¤Ґ«пвм ¤«Ё­г бва®ЄЁ - ЇҐаҐ¬Ґ­­ п - ; - xor eax, eax - mov ecx, VAR_LEN - cld - repne scasb - - mov eax, VAR_LEN - sub eax, ecx - mov ecx, eax - mov ebx, eax - - ; - ; Љ®ЇЁа®ў вм ЇҐаҐ¬Ґ­­го ў в Ў«Ёжг - ; - - pop esi - push esi - - mov eax, VAR_LEN - imul eax, edx - mov edi, vtable - add edi, eax - cld - rep movsb - - ; - ; …б«Ё бва®Є  Є®а®зҐ Ї®«п ў в Ў«ЁжҐ, § ЇЁб вм ў Є®­Ґж 0 - ; - cmp ebx, VAR_LEN - jz sv_end - mov [edi + ebx], byte 0 - - - - sv_end: - xor eax, eax - jmp sv_fin - - sv_fail: - mov eax, -1 - - sv_fin: - - pop ebx - pop edi - pop esi - pop edx - pop ecx - ;pop ebx - ret - - - - - -; -; —⥭ЁҐ ASCIIZ бва®ЄЁ Ё§ д ©«  -; IN ebx - гЄ § вҐ«м ­  ЎгдҐа -; ecx - а §¬Ґа ЎгдҐа  -; edx - гЄ § вҐ«м ­  бва®Єг Ё¬п д ©«  -; OUT ebx - ¤«Ё­  бва®ЄЁ -; eax - १г«мв в з⥭Ёп - - getstr: - ;push eax - ;push ebx - push ecx - push edx - push esi - - ;xor edx, edx - xor esi, esi - - gs_read: - ; - ; ‡ Ї®«­пҐ¬ бвагЄвгаг - ; - mov [finfo.subfnc_name], 0 - mov eax, [shift] - mov [finfo.pos_in_file], eax - mov [finfo.bytes_to_read], ecx - mov [finfo.pbuffer], ebx - mov [finfo.pname], edx - - push ebx - - ; - ; —ЁвҐ¬ - ; - ;mov eax, 70 - ;mov ebx, finfo - ;int 40h - mcall 70, finfo - - mov ecx, ebx ; ‚ ebx Є®«ЁзҐбвў® Їа®з⥭­ле Ў ©в - - pop ebx - - ; - ; Џа®ўҐаЁвм १г«мв в з⥭Ёп - Ґб«Ё ­Ґ EOF Ё 0, - ; ўл室Ё¬ - cmp eax, FIO_EOF - jz gs_loop - cmp eax, 0 - jz gs_loop - - jmp gs_ok - - - ; - ; ЋЎа Ў®вЄ  Ї®«г祭­®Ј® Ў«®Є  - ; - gs_loop: - mov dl, [ebx + esi] - cmp dl, 0Ah ;cr - jz gs_cr - inc esi - cmp esi, ecx - jnb gs_err - jmp gs_loop - - gs_err: - ; - ; ‚ ЎгдҐаҐ ­Ґв бЁ¬ў®«  ЇҐаҐ­®б  бва®ЄЁ, в.Ґ. бва®Є  б«ЁиЄ®¬ ¤«Ё­­ п - ; ЋвЎа блў Ґ¬ ўбҐ ¤® Ў«Ё¦ ©иҐЈ® бЁ¬ў®«  ЇҐаҐ­®б  бва®ЄЁ - ; Ґб«Ё Є®­Ґж д ©«  - ўл室Ё¬ - cmp eax, FIO_EOF - jz gs_endf - add [shift], ecx - jmp gs_read - - - gs_endf: - xor ebx, ebx - jmp gs_ok - - gs_cr: - ; - ; ‘Ўа®бЁвм १г«мв в з⥭Ёп - ; - xor eax, eax - - mov dl, [ebx + esi - 1] - cmp dl, 0Dh ;le - jz gs_le - - mov [ebx + esi], byte 0 - mov ebx, esi - - - inc esi - add [shift], esi - - jmp gs_ok - - gs_le: - mov [ebx + esi - 1], byte 0 - mov [ebx + esi], byte 0 - lea ebx, [esi - 1] - - inc esi - add [shift], esi - - gs_ok: - - - pop esi - pop edx - pop ecx - ;pop ebx - ;pop eax - ret - - -; -; ”г­ЄжЁп ¤«п ўлў®¤  § Ја㦥­­®© Ё­дл -; - - showcfg: - push eax - push ebx - push ecx - push edx - push edi - - - xor edx, edx ; бзҐвзЁЄ - - sc_loop: - - cmp edx, TABLE_SIZE - jnb sc_end - - ; - ; ‘Є®ЇЁа®ў вм ў ЎгдҐа Ё¬п Ё §­ зҐ­ЁҐ ЇҐаҐ¬Ґ­­®© - ; - mov eax, VNAME_LEN - imul eax, edx - lea eax, [nvtable + eax] - - mov cl, [eax] - cmp cl, byte 0 - jz sc_next - - push eax - call strlen - - mov ecx, eax - pop eax - - mov ebx, cfgbuff - - call strcpy - - mov [cfgbuff + ecx], ':' - - lea ebx, [cfgbuff + ecx + 1] - - mov eax, VAR_LEN - imul eax, edx - lea eax, [vtable + eax] - - push eax - call strlen - - mov ecx, eax - pop eax - - call strcpy - - mov [ebx + ecx], byte 0 - - mov eax, cfgbuff - xor ebx, ebx - call writemsg - - sc_next: - - inc edx - - jmp sc_loop - - - - sc_end: - pop edi - pop edx - pop ecx - pop ebx - pop eax - - ret - diff --git a/programs/network_old/icq/trunk/parser_data.inc b/programs/network_old/icq/trunk/parser_data.inc deleted file mode 100644 index 78cbe857b1..0000000000 --- a/programs/network_old/icq/trunk/parser_data.inc +++ /dev/null @@ -1,100 +0,0 @@ -; -; „ ­­лҐ ¤«п parser.inc -; -; - - - - - -; -; Ё¬п д ©« , Є®в®ал© ­г¦­® Ї абЁвм -; -fname db '/sys/ki.cfg',0 - -; -; в Ў«Ёжл §­ зҐ­Ё© -; -; +----+-------------+-----------------+ -; | in | Variable | Variable | -; | de | name | string | -; | x | | | -; | | | | -; +----+-------------+-----------------+ -; | | | | -; | | | | -; | 1 | UIN | 'XXXXX..XX' | -; | | | | -; +----+-------------+-----------------+ -; | | | -; -; § Јаг§Є  int Ї®Є  ­Ґ ॠ«Ё§®ў ­  -; -; +----+-------------+-----------------+ -; | in | Variable | Variable | -; | de | name | int | -; | x | | | -; | | | | -; +----+-------------+-----------------+ -; | | | | -; | | | | -; | 1 | BUFFSIZE | XXXXXXXX | -; | | | | -; +----+-------------+-----------------+ -; | | | -; -; - - - -;nvtable db (TABLE_SIZE * NAME_LEN) dup 0 -vtable db (TABLE_SIZE * VAR_LEN) dup 0 - -finfo sinfo - -; -; ‡ Ї®«­Ёвм в Ў«Ёжг Ё¬Ґ­ ЇҐаҐ¬Ґ­­ле -; -nvtable db 'UIN',(VNAME_LEN - 3) dup 0 - db 'PASS',(VNAME_LEN - 4) dup 0 - db 'ICQIP',(VNAME_LEN - 5) dup 0 - db ((TABLE_SIZE - 3) * VNAME_LEN) dup 0 - -; -; ¤«п Ё­ЁжЁ «Ё§ жЁЁ в Ў«Ёж -; -; -; -;name1 db 'UIN',(VNAME_LEN - 3) dup 0 -;name2 db 'PASS',(VNAME_LEN - 4) dup 0 -;name3 db 'ICQIP',(VNAME_LEN - 5) dup 0 - - -; -; ЃгдҐа ¤«п ўў®¤ /ўлў®¤  -; -iobuff db IOBUFF_SIZE dup 0 -; -; ‘¬ҐйҐ­ЁҐ ў д ©«Ґ -; -shift dd 0 - -; -; ЏҐаҐ¬Ґ­­лҐ ¤«п еа ­Ґ­Ёп ­®¬Ґа®ў -; бЁ¬ў®«®ў ­ з «  Ё¬Ґ­Ё ЇҐаҐ¬Ґ­­®© -; Є®­ж , а ў­®, Є®­ж  §­ зҐ­Ёп -stnpos dd 0 -ednpos dd 0 -eqpos dd 0 -edvpos dd 0 -; -;Ќ®¬Ґа бва®ЄЁ ¤«п ®ЇаҐ¤Ґ«Ґ­Ёп ®иЁЎ®з­ле -; -strnum dd 0 - -; -; ЃгдҐа ¤«п ўлў®¤  § Ја㦥­­®Ј® Є®­дЁЈ  -; -cfgbuff db (VAR_LEN + VNAME_LEN + 8) dup 0 -cfgbuff.len = $ - cfgbuff - diff --git a/programs/network_old/icq/trunk/proc32.inc b/programs/network_old/icq/trunk/proc32.inc deleted file mode 100644 index aa3ffc9702..0000000000 --- a/programs/network_old/icq/trunk/proc32.inc +++ /dev/null @@ -1,270 +0,0 @@ - -; Macroinstructions for defining and calling procedures - -macro stdcall proc,[arg] ; directly call STDCALL procedure - { common - if ~ arg eq - reverse - pushd arg - common - end if - call proc } - -macro invoke proc,[arg] ; indirectly call STDCALL procedure - { common - if ~ arg eq - reverse - pushd arg - common - end if - call [proc] } - -macro ccall proc,[arg] ; directly call CDECL procedure - { common - size@ccall = 0 - if ~ arg eq - reverse - pushd arg - size@ccall = size@ccall+4 - common - end if - call proc - if size@ccall - add esp,size@ccall - end if } - -macro cinvoke proc,[arg] ; indirectly call CDECL procedure - { common - size@ccall = 0 - if ~ arg eq - reverse - pushd arg - size@ccall = size@ccall+4 - common - end if - call [proc] - if size@ccall - add esp,size@ccall - end if } - -macro proc [args] ; define procedure - { common - match name params, args> - \{ define@proc name, \{ prologue name,flag,parmbytes,localbytes,reglist \} - macro locals - \{ virtual at ebp-localbytes+current - macro label def \\{ match . type,def> \\\{ deflocal@proc .,label, - \\\{ epilogue name,flag,parmbytes,localbytes,reglist \\\} \\} \} - macro finish@proc \{ localbytes = (((current-1) shr 2)+1) shl 2 - end if \} } - -macro defargs@proc [arg] - { common - if ~ arg eq - forward - local ..arg,current@arg - match argname:type, arg - \{ current@arg equ argname - label ..arg type - argname equ ..arg - if dqword eq type - dd ?,?,?,? - else if tbyte eq type - dd ?,?,? - else if qword eq type | pword eq type - dd ?,? - else - dd ? - end if \} - match =current@arg,current@arg - \{ current@arg equ arg - arg equ ..arg - ..arg dd ? \} - common - args@proc equ current@arg - forward - restore current@arg - common - end if } - -macro deflocal@proc name,def,[val] - { common - match vars, all@vars \{ all@vars equ all@vars, \} - all@vars equ all@vars name - forward - local ..var,..tmp - match =label,def \{ ..tmp equ \} - match tmp,..tmp \{ ..var def val \} - match ,..tmp \{ label ..var val \} - match =?, val \{ ..tmp equ \} - match any =dup (=?), val \{ ..tmp equ \} - match tmp : value, ..tmp : val - \{ tmp: end virtual - initlocal@proc ..var,def value - virtual at tmp\} - common - match first rest, ..var, \{ name equ first \} } - -macro initlocal@proc name,def - { virtual at name - def - size@initlocal = $ - name - end virtual - position@initlocal = 0 - while size@initlocal > position@initlocal - virtual at name - def - if size@initlocal - position@initlocal < 2 - current@initlocal = 1 - load byte@initlocal byte from name+position@initlocal - else if size@initlocal - position@initlocal < 4 - current@initlocal = 2 - load word@initlocal word from name+position@initlocal - else - current@initlocal = 4 - load dword@initlocal dword from name+position@initlocal - end if - end virtual - if current@initlocal = 1 - mov byte [name+position@initlocal],byte@initlocal - else if current@initlocal = 2 - mov word [name+position@initlocal],word@initlocal - else - mov dword [name+position@initlocal],dword@initlocal - end if - position@initlocal = position@initlocal + current@initlocal - end while } - -macro endp - { purge ret,locals,endl - finish@proc - purge finish@proc - restore regs@proc - match all,args@proc \{ restore all \} - restore args@proc - match all,all@vars \{ restore all \} } - -macro local [var] - { common - locals - forward done@local equ - match varname[count]:vartype, var - \{ match =BYTE, vartype \\{ varname rb count - restore done@local \\} - match =WORD, vartype \\{ varname rw count - restore done@local \\} - match =DWORD, vartype \\{ varname rd count - restore done@local \\} - match =PWORD, vartype \\{ varname rp count - restore done@local \\} - match =QWORD, vartype \\{ varname rq count - restore done@local \\} - match =TBYTE, vartype \\{ varname rt count - restore done@local \\} - match =DQWORD, vartype \\{ label varname dqword - rq count+count - restore done@local \\} - match , done@local \\{ virtual - varname vartype - end virtual - rb count*sizeof.\#vartype - restore done@local \\} \} - match :varname:vartype, done@local:var - \{ match =BYTE, vartype \\{ varname db ? - restore done@local \\} - match =WORD, vartype \\{ varname dw ? - restore done@local \\} - match =DWORD, vartype \\{ varname dd ? - restore done@local \\} - match =PWORD, vartype \\{ varname dp ? - restore done@local \\} - match =QWORD, vartype \\{ varname dq ? - restore done@local \\} - match =TBYTE, vartype \\{ varname dt ? - restore done@local \\} - match =DQWORD, vartype \\{ label varname dqword - dq ?,? - restore done@local \\} - match , done@local \\{ varname vartype - restore done@local \\} \} - match ,done@local - \{ var - restore done@local \} - common - endl } diff --git a/programs/network_old/icq/trunk/ssi.inc b/programs/network_old/icq/trunk/ssi.inc deleted file mode 100644 index 92fb597288..0000000000 --- a/programs/network_old/icq/trunk/ssi.inc +++ /dev/null @@ -1,413 +0,0 @@ -; -; -; Поддержка контакт листа на сервере -; -; - -; -; Заполняет таблицу с UIN -; и опционально таблицы с именем и доп. инфой -; - - -; Из comp.inc для отладки -; -; -; Массив с UIN -; -;UIN_LEN = 11 ; Длина -;UINS = 15 ; Количество -; -;uins db UIN_LEN*UINS dup 0 -; -; массив со статусами -; -;stats dd UINS dup -1 -; -; Массив с именами -; -;NAME_LEN = 30 - -;names db NAME_LEN*UINS dup 0 - - -; -; Достает из item UIN -; eax <- указатель на item -; Пропускает группы -; - ssi_get_uin: - push eax - push ebx - push ecx - push edx - - ; - ; Проверяем ItemID - ; - xor ebx, ebx - mov bl, [eax + 1] ; Length of the item name - mov bh, [eax] ; - - - ;push ebx - ;mov ebx, 128 - ;call print_mem - - ;pop ebx - - - ;; FIXIT Разумнее проверять флаги - ;; Если длина строки = 0 - ;; пропускаем item - ;cmp ebx, 0 - ;jz ssi_get_end - - ;; - ;;data_debug 'Item name len', ebx - - ;;+смещение до ItemID - - ;;xor ecx, ecx - ;;mov ch, [eax + ebx + 4] - ;;mov cl, [eax + ebx + 5] ; Item ID# - - ;;cmp ecx, 0 - ;;jz ssi_get_end - - ; - ; Проверяем флаги, обрабатываем только записи UIN - ; - xor ecx, ecx - mov ch, [eax + ebx + 6] - mov cl, [eax + ebx + 7] - - - cmp ecx, 0 ; 0x0000 Buddy record (name: uin for ICQ and screenname for AIM) - jz ssi_uin - - ; debug - ; - - lea eax, [eax + ebx + 6] - mov ebx, 2 - call print_mem - - - jmp ssi_get_end - - - ssi_uin: - ; - ; Копируем UIN в таблицу - ; - mov ecx, ebx ; Длина строки - lea eax, [eax + 2] - - mov edx, [uin_ind] - cmp edx, UINS - jnb ssi_get_end ;Нет свободного места в таблице UIN - - imul edx, UIN_LEN - mov ebx, uins - lea ebx, [ebx + edx] - - call strcpy - - inc [uin_ind] - - ;debug - ;mov eax, ebx - ;xor ebx, ebx - ;call writemsg - - - ; - ssi_get_end: - pop edx - pop ecx - pop ebx - pop eax - ret - - -; -; eax <- указатель на item -; возвращает в eax указатель на следующий item -; -; - - ssi_next_item: - - push ebx - push ecx - - xor ebx, ebx - mov bl, [eax + 1] ; длина UIN - mov bh, [eax] ; - - xor ecx, ecx - mov cl, [eax + ebx + 9] ; Длина дополнительных данных - mov ch, [eax + ebx + 8] ; - - add ebx, ecx - add ebx, 10 ;+Длина заголовка - - lea eax, [eax + ebx] - - - pop ecx - pop ebx - ret - - -; -; eax <- указатель на tlv -; возвращает в eax указатель на след tlv -; - macro get_next_tlv { - push ebx - - xor ebx, ebx - - mov bl, [eax + 3] - mov bh, [eax + 2] - - ; + размер заголовка - lea ebx, [ebx + 4] - - lea eax, [eax + ebx] - - pop ebx - } - - - -; -; Ищет в additional имя и др. сведения -; eax <- указатель на item -; - ssi_get_add: - push eax - push ebx - push ecx - push edx - push esi - - - ;mov ebx, 128 - ;call print_mem - - - - - xor ebx, ebx - mov bl, [eax + 1] ; Length of the item name - mov bh, [eax] ; - - ;;cmp ebx, 0 ; Если длина имени = 0 - ;;jz ssi_all_tlv ; Нет смысла обрабатывать - - - ;;+смещение до ItemID - - ;;xor ecx, ecx - ;;mov ch, [eax + ebx + 4] - ;;mov cl, [eax + ebx + 5] ; Item ID# - ; - ;;cmp ecx, 0 ; Группы пока не обрабатываются - ;;jz ssi_all_tlv ; - ; - ; Проверяем флаги, обрабатываем только записи UIN - ; - xor ecx, ecx - mov ch, [eax + ebx + 6] - mov cl, [eax + ebx + 7] - - cmp ecx, 0 ; 0x0000 Buddy record (name: uin for ICQ and screenname for AIM) - jnz ssi_all_tlv - - - xor edx, edx - mov dl, [eax + ebx + 9] ; - mov dh, [eax + ebx + 8] ; Length of the additional data - - - lea eax, [eax + ebx + 10] ; eax указатель на первый tlv - - - ;FIXME : Iservd не присылает additional - пока не могу отладить - ;debug - ;push ebx - ;mov ebx, edx - - ;data_debug 'length additional data', ebx - - ;call print_mem - ;pop ebx - ; - - - - xor esi, esi - - ssi_tlv_process: - cmp esi, edx ; - jnb ssi_all_tlv ; additional закончилось - - xor ecx, ecx - mov cl, [eax + 3] ; - mov ch, [eax + 2] ; TLV.Length - - xor ebx, ebx - mov bl, [eax + 1] ; TLV.Type - mov bh, [eax] ; - - cmp bx, 0x0131 ;Имя пользователя - jz ssi_name - - cmp bx, 0x0066 ;Ожидаем авторизации - jz ssi_auth_wait - - jmp ssi_next_tlv - - - ssi_auth_wait: - ; - ; - ; - jmp ssi_next_tlv - - - ssi_name: - - ; - ; Скопировать имя в массив - ; - push eax - push ecx - - mov ebx, [name_ind] - cmp ebx, UINS - jnb ssi_name_end ;Нет места в таблице - - lea eax, [eax + 4] ;Указатель на строку (Прибавляем размер заголовка TLV) - - imul ebx, NAME_LEN - lea ebx, [names + ebx] - - cmp ecx, NAME_LEN - 1 ; Если имя длиннее поля в таблице - jna @f - - mov ecx, NAME_LEN - 1 - - @@: - call strcpy - - ;; FIXIT - ;; Перекодировка имени - ;; - ;;mov eax, ebx - ;;call win2dos - - ; - ;debug - ;push eax - ;push ebx - - ;mov eax, ebx - ;xor ebx, ebx - ;call writemsg - - ;pop ebx - ;pop eax - ; - ; - inc [name_ind] - - pop ecx - pop eax - - - - ssi_next_tlv: - lea ecx, [ecx + 4] ; Длина данных tlv + длина заголовка - add esi, ecx - - get_next_tlv - jmp ssi_tlv_process - - - ssi_name_end: - pop ecx - pop eax - - - ssi_all_tlv: - - - pop esi - pop edx - pop ecx - pop ebx - pop eax - ret - -; -; -; Обработка контакт листа, пришедшего от сервера -; -; в eax <- указатель на данные в пакете SNAC(13,06) - ssi_process_data: - push eax - push ebx - push ecx - push edx - - ; - ; Проверить версию протокола - ; - xor ebx, ebx - mov bl, [eax] - cmp bl, 0 - jnz ssi_bad_prot - ; - ;в ebx - количество items - mov bl, [eax + 2] - mov bh, [eax + 1] - ; - data_debug 'SSI items:', ebx - - lea eax, [eax + 3] ; Установить eax на список items - - xor ecx, ecx ; Счетчик items - - - ssi_next_uin: - cmp ecx, ebx - jnb ssi_all_items - - - call ssi_get_uin - - call ssi_get_add - - call ssi_next_item - - inc ecx - jmp ssi_next_uin - - - - ssi_bad_prot: - write_debug "ERR: SSI protocol version mismatch" - - ssi_all_items: - - pop edx - pop ecx - pop ebx - pop eax - ret - - diff --git a/programs/network_old/icq/trunk/ssi_data.inc b/programs/network_old/icq/trunk/ssi_data.inc deleted file mode 100644 index 0da78a1033..0000000000 --- a/programs/network_old/icq/trunk/ssi_data.inc +++ /dev/null @@ -1,5 +0,0 @@ -; -; Индекс в массиве UINS -; -uin_ind dd 0 -name_ind dd 0 \ No newline at end of file diff --git a/programs/network_old/icq/trunk/st_red.bmp b/programs/network_old/icq/trunk/st_red.bmp deleted file mode 100644 index b26de77b6d..0000000000 Binary files a/programs/network_old/icq/trunk/st_red.bmp and /dev/null differ diff --git a/programs/network_old/icq/trunk/struct.inc b/programs/network_old/icq/trunk/struct.inc deleted file mode 100644 index 947a84e89a..0000000000 --- a/programs/network_old/icq/trunk/struct.inc +++ /dev/null @@ -1,180 +0,0 @@ - -; Macroinstructions for defining data structures - -macro struct name - { fields@struct equ name - match child parent, name \{ fields@struct equ child,fields@\#parent \} - sub@struct equ - struc db [val] \{ \common fields@struct equ fields@struct,.,db, \} - struc dw [val] \{ \common fields@struct equ fields@struct,.,dw, \} - struc du [val] \{ \common fields@struct equ fields@struct,.,du, \} - struc dd [val] \{ \common fields@struct equ fields@struct,.,dd, \} - struc dp [val] \{ \common fields@struct equ fields@struct,.,dp, \} - struc dq [val] \{ \common fields@struct equ fields@struct,.,dq, \} - struc dt [val] \{ \common fields@struct equ fields@struct,.,dt, \} - struc rb count \{ fields@struct equ fields@struct,.,db,count dup (?) \} - struc rw count \{ fields@struct equ fields@struct,.,dw,count dup (?) \} - struc rd count \{ fields@struct equ fields@struct,.,dd,count dup (?) \} - struc rp count \{ fields@struct equ fields@struct,.,dp,count dup (?) \} - struc rq count \{ fields@struct equ fields@struct,.,dq,count dup (?) \} - struc rt count \{ fields@struct equ fields@struct,.,dt,count dup (?) \} - macro db [val] \{ \common \local anonymous - fields@struct equ fields@struct,anonymous,db, \} - macro dw [val] \{ \common \local anonymous - fields@struct equ fields@struct,anonymous,dw, \} - macro du [val] \{ \common \local anonymous - fields@struct equ fields@struct,anonymous,du, \} - macro dd [val] \{ \common \local anonymous - fields@struct equ fields@struct,anonymous,dd, \} - macro dp [val] \{ \common \local anonymous - fields@struct equ fields@struct,anonymous,dp, \} - macro dq [val] \{ \common \local anonymous - fields@struct equ fields@struct,anonymous,dq, \} - macro dt [val] \{ \common \local anonymous - fields@struct equ fields@struct,anonymous,dt, \} - macro rb count \{ \local anonymous - fields@struct equ fields@struct,anonymous,db,count dup (?) \} - macro rw count \{ \local anonymous - fields@struct equ fields@struct,anonymous,dw,count dup (?) \} - macro rd count \{ \local anonymous - fields@struct equ fields@struct,anonymous,dd,count dup (?) \} - macro rp count \{ \local anonymous - fields@struct equ fields@struct,anonymous,dp,count dup (?) \} - macro rq count \{ \local anonymous - fields@struct equ fields@struct,anonymous,dq,count dup (?) \} - macro rt count \{ \local anonymous - fields@struct equ fields@struct,anonymous,dt,count dup (?) \} - macro union \{ fields@struct equ fields@struct,,union,< - sub@struct equ union \} - macro struct \{ fields@struct equ fields@struct,,substruct,< - sub@struct equ substruct \} - virtual at 0 } - -macro ends - { match , sub@struct \{ restruc db,dw,du,dd,dp,dq,dt - restruc rb,rw,rd,rp,rq,rt - purge db,dw,du,dd,dp,dq,dt - purge rb,rw,rd,rp,rq,rt - purge union,struct - match name=,fields,fields@struct \\{ fields@struct equ - make@struct name,fields - fields@\\#name equ fields \\} - end virtual \} - match any, sub@struct \{ fields@struct equ fields@struct> \} - restore sub@struct } - -macro make@struct name,[field,type,def] - { common - if $ - display 'Error: definition of ',`name,' contains illegal instructions.',0Dh,0Ah - err - end if - local define - define equ name - forward - local sub - match , field \{ make@substruct type,name,sub def - define equ define,.,sub, \} - match any, field \{ define equ define,.#field,type, \} - common - match fields, define \{ define@struct fields \} } - -macro define@struct name,[field,type,def] - { common - local list - list equ - forward - if ~ field eq . - name#field type def - sizeof.#name#field = $ - name#field - else - rb sizeof.#type - end if - local value - match any, list \{ list equ list, \} - list equ list - common - sizeof.#name = $ - restruc name - match values, list \{ - struc name value \\{ - match any, fields@struct \\\{ fields@struct equ fields@struct,.,name, \\\} - match , fields@struct \\\{ label . - forward - match , value \\\\{ field type def \\\\} - match any, value \\\\{ field type value - if ~ field eq . - rb sizeof.#name#field - ($-field) - end if \\\\} - common \\\} \\} \} } - -macro enable@substruct - { macro make@substruct substruct,parent,name,[field,type,def] - \{ \common - \local define - define equ parent,name - \forward - \local sub - match , field \\{ match any, type \\\{ enable@substruct - make@substruct type,name,sub def - purge make@substruct - define equ define,.,sub, \\\} \\} - match any, field \\{ define equ define,.\#field,type, \\} - \common - match fields, define \\{ define@\#substruct fields \\} \} } - -enable@substruct - -macro define@union parent,name,[field,type,def] - { common - virtual at 0 - forward - if ~ field eq . - virtual at 0 - parent#field type def - sizeof.#parent#field = $ - parent#field - end virtual - if sizeof.#parent#field > $ - rb sizeof.#parent#field - $ - end if - else if sizeof.#type > $ - rb sizeof.#type - $ - end if - common - sizeof.#name = $ - end virtual - struc name [value] \{ \common - label .\#name - last@union equ - forward - match any, last@union \\{ virtual at .\#name - field type def - end virtual \\} - match , last@union \\{ match , value \\\{ field type def \\\} - match any, value \\\{ field type value \\\} \\} - last@union equ field - common rb sizeof.#name - ($ - .\#name) \} } - -macro define@substruct parent,name,[field,type,def] - { common - virtual at 0 - forward - if ~ field eq . - parent#field type def - sizeof.#parent#field = $ - parent#field - else - rb sizeof.#type - end if - local value - common - sizeof.#name = $ - end virtual - struc name value \{ - label .\#name - forward - match , value \\{ field type def \\} - match any, value \\{ field type value - if ~ field eq . - rb sizeof.#parent#field - ($-field) - end if \\} - common \} } diff --git a/programs/network_old/local/trunk/build_en.bat b/programs/network_old/local/trunk/build_en.bat deleted file mode 100644 index 25f12be8c0..0000000000 --- a/programs/network_old/local/trunk/build_en.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix en >lang.inc -@fasm local.asm local -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/local/trunk/build_ru.bat b/programs/network_old/local/trunk/build_ru.bat deleted file mode 100644 index 3c2426b5d0..0000000000 --- a/programs/network_old/local/trunk/build_ru.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix ru >lang.inc -@fasm local.asm local -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/local/trunk/local.asm b/programs/network_old/local/trunk/local.asm deleted file mode 100644 index 95985dea89..0000000000 --- a/programs/network_old/local/trunk/local.asm +++ /dev/null @@ -1,507 +0,0 @@ -; -; Remote processing example (local node) -; -; Compile with FASM for Menuet -; - - -use32 - org 0x0 - db 'MENUET01' ; header - dd 0x01 ; header version - dd START ; entry point - dd I_END ; image size - dd I_END+0x10000 ; required memory - dd I_END+0x10000 ; esp - dd 0x0 , 0x0 ; I_Param , I_Path - - -include 'lang.inc' -include '..\..\..\macros.inc' - -START: ; start of execution - - mov eax,53 ; open socket - mov ebx,0 - mov ecx,0x2000 ; local port - mov edx,0x3000 ; remote port - mov esi,dword [host_ip] ; node IP - mcall - - mov [socketNum], eax - -red: - call draw_window ; at first, draw the window - -still: - - mov eax,23 ; wait here for event - mov ebx,1 - mcall - - cmp eax,1 ; redraw request ? - jz red - cmp eax,2 ; key in buffer ? - jz key - cmp eax,3 ; button in buffer ? - jz button - - mov eax, 53 ; get data - mov ebx, 2 - mov ecx, [socketNum] - mcall - cmp eax, 0 - jne read - - jmp still - -key: - mov eax,2 - mcall - jmp still - -button: - mov eax,17 - mcall - - cmp ah,1 ; button id=1 ? - jnz noclose - mov eax, 53 - mov ebx, 1 - mov ecx, [socketNum] - mcall - mov eax,-1 - mcall - noclose: - - cmp ah,2 ; SEND CODE ? - je send_xcode - - cmp ah,3 ; LEFT COORDINATES ? - jne no_left - mov [picture_position],0 - mov dword [send_data+15],dword STARTX - mov dword [send_data+19],dword 4 - mov esi,send_data - mov edi,I_END - mov ecx,23 - cld - rep movsb - mov [I_END+23],dword -20 - mov eax,53 - mov ebx,4 - mov ecx,[socketNum] - mov edx,23 + 4 - mov esi,I_END - mcall - jmp still - no_left: - - cmp ah,4 ; RIGHT COORDINATES ? - jne no_right - mov [picture_position],128 - mov dword [send_data+15],dword STARTX - mov dword [send_data+19],dword 4 - mov esi,send_data - mov edi,I_END - mov ecx,23 - cld - rep movsb - mov [I_END+23],dword -20 + 128 - mov eax,53 - mov ebx,4 - mov ecx,[socketNum] - mov edx,23 + 4 - mov esi,I_END - mcall - jmp still - no_right: - - cmp ah,5 ; SEND EXECUTE ? - je send_execute - - jmp still - - -xx dd 0 -yy dd 0 - - - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; ;; -;; SEND CODE TO REMOTE ;; -;; ;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -send_xcode: - - mov dword [send_data+15],dword 0x80000 - mov dword [send_data+19],dword remote_code_end - remote_code_start - - mov esi,send_data ; header - mov edi,I_END - mov ecx,23 - cld - rep movsb - - mov esi,remote_code ; remote_code_start ; data - mov edi,I_END+23 - mov ecx,remote_code_end - remote_code_start - cld - rep movsb - - mov eax,53 ; SEND CODE TO REMOTE - mov ebx,4 - mov ecx,[socketNum] - mov edx,23 + remote_code_end - remote_code_start - mov esi,I_END - mcall - - jmp still - - -send_execute: - - mov dword [execute+15],dword draw_fractal - - mov eax,53 ; START EXECUTE AT REMOTE - mov ebx,4 - mov ecx,[socketNum] - mov edx,19 - mov esi,execute - mcall - - mov edi,3 - - jmp still - - - -;;;;;;;;;;;;;;;;;;;;;;;;;; -;; ;; -;; READ ;; -;; ;; -;;;;;;;;;;;;;;;;;;;;;;;;;; - - -read: - - -cfr007: - - mov eax, 53 - mov ebx, 3 - mov ecx, [socketNum] - mcall ; read byte - - shl edx,8 - mov dl,bl - - dec edi - jnz cok - - mov edi,3 - - and edx,0xffffff - mov eax,1 - mov ebx,[xx] - mov ecx,[yy] - add ebx,15 - add ecx,35 - add ebx,[picture_position] - mcall - - inc [xx] - cmp [xx],dword 128 - jb cok - mov [xx],0 - - inc [yy] - cmp [yy],dword 128 - jb cok - mov [yy],0 - -cok: - - mov eax, 53 - mov ebx, 2 - mov ecx, [socketNum] - mcall ; any more data? - - cmp eax, 0 - jne cfr007 ; yes, so get it - - jmp still - - - - -; ********************************************* -; ******* WINDOW DEFINITIONS AND DRAW ******** -; ********************************************* - - -draw_window: - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,1 ; 1, start of draw - mcall - - ; DRAW WINDOW - mov eax,0 ; function 0 : define and draw window - mov ebx,100*65536+286 ; [x start] *65536 + [x size] - mov ecx,60*65536+330 ; [y start] *65536 + [y size] - mov edx,0x04ffffff ; color of work area RRGGBB - mov edi,title ; WINDOW LABEL - mcall - - - mov eax,8 ; SEND CODE - mov ebx,60*65536+160 - mov ecx,181*65536+13 - mov edx,2 - mov esi,0x667788 - mcall - - ;mov eax,8 ; LEFT - mov ebx,60*65536+75 - mov ecx,197*65536+13 - mov edx,3 - mcall - - ;mov eax,8 ; RIGHT - mov ebx,148*65536+72 - mov ecx,197*65536+13 - mov edx,4 - mcall - - ;mov eax,8 ; SEND EXECUTE - mov ebx,60*65536+160 - mov ecx,213*65536+13 - mov edx,5 - mcall - - - cld - mov eax,4 - mov ebx,25*65536+185 ; draw info text with function 4 - mov ecx,0x000000 - mov edx,text - mov esi,40 - newline: - mcall - add ebx,16 - add edx,40 - cmp [edx],byte 'x' - jnz newline - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,2 ; 2, end of draw - mcall - - ret - - -; DATA AREA - - -text: - db ' 1) SEND CODE ' - db ' 2) LEFT RIGHT ' - db " 3) SEND 'EXECUTE' " - db ' ' - db ' LOCAL : 192.168.1.26 ' - db ' REMOTE : 192.168.1.22 ' - db ' REMOTE CODE AT THE END OF THIS FILE ' - db 'x' ;<- END MARKER, DONT DELETE - - -title db 'CLUSTER LOCAL',0 - -socketNum dd 0x0 - -host_ip db 192,168,1,22 - -picture_position dd 0x0 - -send_data db 'MenuetRemote00' ; 00 header ; -> remote port 0x3000 - db 1 ; 14 send - dd 0x0 ; 15 position - dd 0x0 ; 19 size - ; 23 - -execute db 'MenuetRemote00' ; 00 header ; -> remote port 0x3000 - db 2 ; 14 execute - dd 0x0 ; 15 position - ; 19 - - - - - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; ;; -;; REMOTE CODE ;; -;; ;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - - - -remote_code: - - -org 0x80000 - -remote_code_start: - - -PIXWIDTH equ 129 -PIXHEIGHT equ 129 -ZOOMLIMIT equ 13 -DELTA equ 200 -THRESHOLD equ 7 -STARTSCALE equ 6 -CHAR_COLOR equ 0fh - -STARTX dd -20 -STARTY dd 10 -scaleaddy dd 60 -scaleaddx dd 100 - - - -draw_fractal: - - pusha - - movzx ebp,word [STARTX] - movzx edi,word [STARTY] - mov cx, PIXHEIGHT ; height of screen in pixels - - sub di,cx ; adjust our Y offset -@@CalcRow: - - push cx - mov cx, PIXWIDTH -1 ; width of screen in pixels - - sub bp,cx ; -@@CalcPixel: - push cx ; save the column counter on stack - xor cx, cx ; clear out color loop counter - xor bx, bx ; zero i coefficient - xor dx, dx ; zero j coefficient -@@CycleColors: - push dx ; save j value for later - mov ax, bx ; ax = i - sub ax, dx ; ax = i - j - add dx, bx ; dx = i + j - stc ; one additional shift, please - call Shifty ; ax = ((i+j)*(i-j)) shifted right - pop dx ; retrieve our saved value for j - add ax,bp ; account for base offset... - cmp ah,THRESHOLD ; Q: is i > THRESHOLD * 256? - xchg bx,ax ; now swap new i with old i - jg @@draw ; Y: draw this pixel - clc ; no additional shifts here, please - call Shifty ; now dx:ax = old i * j - xchg dx,ax ; - add dx,di ; account for base offset... - inc cl ; increment color - jnz @@CycleColors ; keep going until we're done -@@draw: - xchg ax, cx ; mov color into al - pop cx ; retrieve our column counter - pop dx ; fetch row (column already in cx) - push dx ; must leave a copy on the stack - xor bx,bx ; write to video page zero - - call store_pixel - - inc bp - loop @@CalcPixel - inc di - pop cx - loop @@CalcRow - - call return_data - - popa - - ret - - -Shifty: - - push cx - db 0b1h -scale db STARTSCALE - adc cl,0 - imul dx - - xchg ax,dx - shl eax,16 - xchg ax,dx - shr eax,cl - - pop cx - ret - - -pixel_pos: dd data_area - -store_pixel: - - pusha - - mov ebx,[pixel_pos] - shl eax,3 - and eax,0xff - mov [ebx],eax - add dword [pixel_pos],dword 3 - - popa - ret - - -return_data: - - mov ecx,128 * 128/16 - mov esi,data_area - - sd: - - pusha - - mov eax,53 ; use the socket provided by host - mov ebx,4 - mov ecx,[0] - mov edx,3*16 - mcall - - mov eax,5 - mov ebx,1 - mcall - - popa - - add esi,3*16 - - loop sd - - ret - - -data_area: - -remote_code_end: - - -I_END: - - - - - - - \ No newline at end of file diff --git a/programs/network_old/mp3s/trunk/build_en.bat b/programs/network_old/mp3s/trunk/build_en.bat deleted file mode 100644 index f0269b26da..0000000000 --- a/programs/network_old/mp3s/trunk/build_en.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix en >lang.inc -@fasm mp3s.asm mp3s -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/mp3s/trunk/build_ru.bat b/programs/network_old/mp3s/trunk/build_ru.bat deleted file mode 100644 index edda8b4d10..0000000000 --- a/programs/network_old/mp3s/trunk/build_ru.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix ru >lang.inc -@fasm mp3s.asm mp3s -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/mp3s/trunk/mp3s.asm b/programs/network_old/mp3s/trunk/mp3s.asm deleted file mode 100644 index c9d508d867..0000000000 --- a/programs/network_old/mp3s/trunk/mp3s.asm +++ /dev/null @@ -1,782 +0,0 @@ -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -; ; -; Tiny MP3 Shoutcast Server v0.1 (vt) ; -; ; -; Compile with FASM for Menuet ; -; ; -; Listening to port 8008 ; -; Connect with eg: 192.168.1.22:8008 ; -; ; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -version equ '0.3' - - use32 - org 0x0 - db 'MENUET01' ; 8 byte id - dd 0x01 ; header version - dd START ; program start - dd I_END ; program image size - dd 0x80000 ; memory usage - dd 0x20000 ; stack - dd 0,0 - -include 'lang.inc' -include '..\..\..\macros.inc' - -; 0x0+ program image -; 0x1ffff stack -; 0x20000 work area for file read -; 0x40000+ file send buffer ( 100 kb ) - - -START: ; start of execution - - mov [status],0 - call clear_input - call draw_window ; at first, draw the window - -still: - - mov eax,23 ; wait here for event - mov ebx,2 - mcall - - call check_events - - call check_connection_status - - cmp [status],4 - je start_transmission - - jmp still - - -check_events: - - cmp eax,1 ; redraw request ? - jz red - cmp eax,2 ; key in buffer ? - jz key - cmp eax,3 ; button in buffer ? - jz button - - ret - -red: ; redraw - call draw_window - ret - -key: - mov eax,2 ; Just read it and ignore - mcall - ret - -button: ; button - - mov eax,17 ; get id - mcall - - cmp ah,1 ; close - jne no_close - mov eax,-1 - mcall - no_close: - - cmp ah,2 ; button id=2 ? - jnz tst3 - ; open socket - mov eax,53 - mov ebx,5 - mov ecx,8008 ; local port # - http - mov edx,0 ; no remote port specified - mov esi,0 ; no remote ip specified - mov edi,0 ; PASSIVE open - mcall - mov [socket], eax - mov [posy],1 - mov [posx],0 - mov [read_on],1 - call check_for_incoming_data - call draw_window - ret - tst3: - - cmp ah,4 - je close_socket - cmp ah,6 - je close_socket - jmp no_socket_close - close_socket: - mov edx,eax - ; Close socket - mov eax, 53 - mov ebx, 8 - mov ecx, [socket] - mcall - mov esp,0x1fff0 - cmp dh,6 - je read_string - jmp still - no_socket_close: - - cmp ah,9 - jne no_bps_add - add [bps],8*1000 - call draw_window - ret - no_bps_add: - - cmp ah,8 - jne no_bps_sub - sub [bps],8*1000 - call draw_window - ret - no_bps_sub: - - - ret - - -clear_input: - - mov edi,input_text - mov eax,0 - mov ecx,60*40 - cld - rep stosb - - ret - - -read_string: - - mov [addr],dword filename - mov [ya],dword 95 - - mov edi,[addr] - mov eax,32 - mov ecx,30 - cld - rep stosb - - call print_text - - mov edi,[addr] - - f11: - mov eax,10 - mcall - cmp eax,2 - jne read_done - mov eax,2 - mcall - shr eax,8 - cmp eax,13 - je read_done - cmp eax,8 - jnz nobsl - cmp edi,[addr] - jz f11 - sub edi,1 - mov [edi],byte 32 - call print_text - jmp f11 - nobsl: - cmp eax,dword 31 - jbe f11 - cmp eax,dword 95 - jb keyok - sub eax,32 - keyok: - mov [edi],al - - call print_text - - add edi,1 - mov esi,[addr] - add esi,30 - cmp esi,edi - jnz f11 - - read_done: - - mov ecx,40 - mov eax,0 - cld - rep movsb - - call print_text - - jmp still - - -print_text: - - pusha - - mov eax,13 - mov ebx,56*65536+30*6 - mov ecx,[ya] - shl ecx,16 - mov cx,8 - mov edx,0xffffff - mcall - - mov eax,4 - mov edx,[addr] - mov ebx,56*65536 - add ebx,[ya] - mov ecx,0x000000 - mov esi,30 - mcall - - popa - ret - - -wait_for dd 0x0 - -transmission_start dd 0x0 -sentbytes dd 0x0 - -start_transmission: - - call clear_input - - mov eax,5 - mov ebx,50 - mcall - - call check_for_incoming_data - call draw_window - - call send_header - - mov [fileinfo+4],dword 0 ; start from beginning - mov [read_to],0x40000 - mov [playpos],0x40000 - - mov ecx,1024 / 512 - - new_buffer: - - mov eax,[read_to] - mov ebx,1 - call read_file - - loop new_buffer - - - newpart: - - call check_connection_status - call draw_window - - mov eax,26 - mov ebx,9 - mcall - mov [transmission_start],eax - mov [sentbytes],0 - - newblock: - - mov eax,[read_to] - mov ebx,2 - call read_file - - wait_more: - - mov eax,26 - mov ebx,9 - mcall - - cmp eax,[wait_for] - jge nomw - - mov eax,5 - mov ebx,1 - mcall - - jmp wait_more - - nomw: - - add eax,2 - mov [wait_for],eax - - mov eax,11 - mcall - call check_events - - mov eax,53 - mov ebx,255 - mov ecx,103 - mcall - - cmp eax,0 - jne wait_more - - ; write to socket - mov eax,53 - mov ebx,7 - mov ecx,[socket] - mov edx,[playadd] - mov esi,[playpos] - mcall - - add [sentbytes],edx - - mov esi,[playpos] - add esi,[playadd] - mov edi,0x40000 - mov ecx,110000 / 4 - cld - rep movsd - - mov eax,[playadd] - sub [read_to],eax - - call check_for_incoming_data - call show_progress - call check_rate - - mov eax, 53 - mov ebx, 6 - mov ecx, [socket] - mcall - cmp eax,4 - jne end_stream - - cmp [read_to],0x40000 - jge newblock - - end_stream: - - ; Close socket - - mov eax, 53 - mov ebx, 8 - mov ecx, [socket] - mcall - - mov eax,5 - mov ebx,5 - mcall - - ; Open socket - - mov eax,53 - mov ebx,5 - mov ecx,8008 ; local port # - http - mov edx,0 ; no remote port specified - mov esi,0 ; no remote ip specified - mov edi,0 ; PASSIVE open - mcall - mov [socket], eax - mov [posy],1 - mov [posx],0 - mov [read_on],0 - - call draw_window - - jmp still - - -check_rate: - - pusha - - mov eax,[bps] - xor edx,edx - mov ebx,8*100 - div ebx - shl eax,1 - mov [playadd],eax - - mov eax,26 - mov ebx,9 - mcall - - sub eax,[transmission_start] - shr eax,1 - - imul eax,[playadd] - - mov edx,0x00dd00 - - cmp [sentbytes],eax - jge sendok - - sub eax,20000 - cmp [sentbytes],eax ; a long buffer underrun correction - jge no_buffer_overrun ; actually leads to overrun - mov [sentbytes],eax - no_buffer_overrun: - - add [playadd],150 - mov edx,0xdd0000 - - sendok: - - mov eax,13 - mov ebx,320*65536+10 - mov ecx,105*65536+10 - mcall - - mov eax,47 - mov ebx,4*65536 - mov ecx,[playadd] - mov edx,322*65536+106 - mov esi,0x000000 -; mcall - - popa - - ret - - -show_progress: - - pusha - - mov eax,13 - mov ebx,236*65536+10*6 - mov ecx,107*65536+8 - mov edx,0xffffff - mcall - - mov ecx,[fileinfo+4] - imul ecx,512 - - mov eax,47 ; file read - mov ebx,9*65536 - mov edx,236*65536+107 - mov esi,0x000000 - mcall - - popa - ret - - -playpos dd 0x100000 -playadd dd 256000 / 8 / 100 - - -send_header: - - pusha - - mov [playpos],0x40000 - - mov esi,fileinfo+5*4 - mov edi,transname - mov ecx,30 - cld - rep movsb - - mov eax, 53 - mov ebx, 7 - mov ecx, [socket] - mov edx, headere-headers - mov esi, headers - mcall - - popa - ret - - -read_file: - - cmp [read_to],0x40000+2000 - jg cache_ok - mov [read_on],1 - cache_ok: - - cmp [read_to],0x40000+95500 - jg no_read_1 - - mov [fileinfo+12],eax - mov [fileinfo+8],ebx - - mov eax,58 - mov ebx,fileinfo - mcall - - cmp eax,0 - jne no_read_1 - - mov eax,[fileinfo+8] - add [fileinfo+4],eax - - add [read_to],512*2 - - ret - - no_read_1: - - mov [read_on],0 - - ret - - - -check_for_incoming_data: - - pusha - - mov eax, 53 - mov ebx, 2 - mov ecx, [socket] - mcall - - cmp eax,0 - je _ret_now - - new_data: - - mov eax, 53 - mov ebx, 2 - mov ecx, [socket] - mcall - - cmp eax,0 - je _ret - - mov eax,53 - mov ebx,3 - mov ecx,[socket] - mcall - - cmp bl,10 - jne no_lf - inc [posy] - mov [posx],0 - jmp new_data - no_lf: - - cmp bl,20 - jb new_data - - inc [posx] - cmp [posx],60 - jbe xok - inc [posy] - mov [posx],0 - xok: - - cmp [posy],12 - jbe yok - mov [posy],1 - yok: - - mov eax,[posy] - imul eax,60 - add eax,[posx] - - mov [input_text+eax],bl - - jmp new_data - - _ret: - -; call draw_window - - _ret_now: - - popa - ret - - - -check_connection_status: - - pusha - - mov eax, 53 - mov ebx, 6 - mov ecx, [socket] - mcall - - cmp eax,[status] - je .ccs_ret - mov [status],eax - add eax,48 - mov [text+20],al - call draw_window - .ccs_ret: - - popa - ret - - - - -; ********************************************* -; ******* WINDOW DEFINITIONS AND DRAW ******** -; ********************************************* - - -draw_window: - - pusha - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,1 ; 1, start of draw - mcall - - mov eax,0 ; Draw Window - mov ebx,50*65536+410 - mov ecx,100*65536+141 - mov edx,0x14ffffff - mov edi,title - mcall - - mov eax,8 ; Start server - mov ebx,(25)*65536+21 - mov ecx,57*65536+10 - mov edx,2 - mov esi,0x409040 - mcall ; Stop server -; mov eax,8 - mov ebx,(25)*65536+21 - mov ecx,69*65536+10 - mov edx,4 - mov esi,0x904040 - mcall - - mov esi,0x3366d0 - -; mov eax,8 ; Enter filename - mov ebx,(25)*65536+21 - mov ecx,93*65536+10 - mov edx,6 - mcall -; mov eax,8 ; Decrease transfer rate - mov ebx,(25)*65536+10 - mov ecx,105*65536+10 -; mov edx,8 - mcall -; mov eax,8 ; Increase transfer rate - mov ebx,(36)*65536+10 - mov ecx,105*65536+10 - mov edx,9 - mcall - - mov ebx,10*65536+35 ; draw info text - mov ecx,0x00000000 - mov edx,text - mov esi,40 - newline: - mov eax,4 - mcall - add ebx,12 - add edx,40 - cmp [edx],byte 'x' - jnz newline - - mov eax,4 ; Filename - mov ebx,56*65536+95 - mov ecx,0x000000 - mov edx,filename - mov esi,30 - mcall - - mov eax,[bps] - xor edx,edx - mov ebx,1000 - div ebx - mov ecx,eax - - mov eax,47 - mov ebx,3*65536 - mov edx,58*65536+107 - mov esi,0x00000000 - mcall - - mov [input_text+0],dword 'RECE' - mov [input_text+4],dword 'IVED' - mov [input_text+8],dword ': ' - - mov ebx,230*65536+35 ; draw info text - mov ecx,0x00000000 - mov edx,input_text - mov esi,28 - mov edi,7 - newline2: - mov eax,4 - mcall - add ebx,10 - add edx,60 - dec edi - jnz newline2 - - mov eax,38 - mov ebx,210*65536+210 - mov ecx,22*65536+136 - mov edx,0x6699cc ; 002288 - mcall - - mov eax,38 - mov ebx,211*65536+211 - mov ecx,22*65536+136 - mov edx,0x336699 ; 002288 - mcall - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,2 ; 2, end of draw - mcall - - popa - - ret - - - -; DATA AREA - -text: - db ' TCB status: 0 ' - db ' ' - db ' Activate - port 8008 ' - db ' Stop server ' - db ' ' - db ' > ' - db ' < > Kbps ' - db 'x'; <- END MARKER, DONT DELETE - -headers: - - db 'ICY 200 OK',13,10 - db 'icy-notice1:This stream requires Winamp or xmms',13,10 - db 'icy-url:http://www.menuetos.org',13,10 - db 'icy-pub: 1',13,10 - db 'icy-name: Menuet Mp3 Shoutcast Radio ',version,' - ' - transname: - db ' ',13,10,13,10 - -headere: - -title db 'MP3 shoutcast server ',version,0 - -socket dd 0 -status dd 0 - -posy dd 1 -posx dd 0 - -read_on db 1 -read_to dd 0 - -addr dd 0 -ya dd 0 - -bps dd 128*1000 - -fileinfo: dd 0,0,0,0,0x20000 -filename: db '/sys/MENUET.MP3',0 -times 50 db 0 - -input_text: - -I_END: diff --git a/programs/network_old/netsendc/trunk/build_en.bat b/programs/network_old/netsendc/trunk/build_en.bat deleted file mode 100644 index 8ba32e1754..0000000000 --- a/programs/network_old/netsendc/trunk/build_en.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix en >lang.inc -@fasm netsendc.asm netsendc -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/netsendc/trunk/build_ru.bat b/programs/network_old/netsendc/trunk/build_ru.bat deleted file mode 100644 index 10584e6328..0000000000 --- a/programs/network_old/netsendc/trunk/build_ru.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix ru >lang.inc -@fasm netsendc.asm netsendc -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/netsendc/trunk/netsendc.asm b/programs/network_old/netsendc/trunk/netsendc.asm deleted file mode 100644 index 298972d66c..0000000000 --- a/programs/network_old/netsendc/trunk/netsendc.asm +++ /dev/null @@ -1,173 +0,0 @@ -; -; NetSend(Client) -; -; Ђўв®а: Hex -; ‘ ©в: www.mestack.narod.ru -; -; ЋЇЁб ­ЁҐ: -; Џа®Ја ¬¬  ¤«п ®Ў¬Ґ­  б®®ЎйҐ­Ёп¬Ё ў бҐвЁ.Љ«ЁҐ­вбЄ п з бвм. -; -; Compile with FASM for Menuet -; Љ®¬ЇЁ«ЁагҐвбп FASM'®¬ ¤«п ЊҐ­гнв Ћ‘ -; - - -use32 - - org 0x0 - - db 'MENUET01' ; 8 byte id - dd 1 ; header version - dd START ; program start - dd I_END ; program image size - dd mem ; required amount of memory - dd mem ; stack pointer - dd 0, 0 ; param, icon - -include 'lang.inc' -include 'macros.inc' - -START: ; start of execution - - mov eax,53 ; open socket - mov ebx,0 - mov ecx,0x4000 ; local port - mov edx,0x5000 ; remote port - mov esi,dword [remote_ip] ; node IP - mcall - - mov [socketNum], eax - -red: - call draw_window ; at first, draw the window - -still: - - mov eax,10 ; wait here for event - mcall - - dec eax - jz red - dec eax - jnz button - -key: - mov al,2 - mcall - jmp still - -button: - mov al,17 - mcall - - dec ah ; button id=1 ? - jnz noclose - mov eax, 53 - mov ebx, 1 - mov ecx, [socketNum] - mcall - or eax,-1 - mcall - noclose: -; it was not close button, so it must be send code button - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; ;; -;; SEND CODE TO REMOTE ;; -;; ;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -send_xcode: - - mov eax,53 ; SEND CODE TO REMOTE - mov ebx,4 - mov ecx,[socketNum] - mov edx,end_message-send_data - mov esi,send_data - mcall - - jmp still - - -; ********************************************* -; ******* WINDOW DEFINITIONS AND DRAW ******** -; ********************************************* - - -draw_window: - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,1 ; 1, start of draw - mcall - - ; DRAW WINDOW - mov eax,0 ; function 0 : define and draw window - mov ebx,100*65536+250 ; [x start] *65536 + [x size] - mov ecx,60*65536+150 ; [y start] *65536 + [y size] - mov edx,0x14ffffff ; color of work area RRGGBB - mov edi,title ; WINDOW LABEL - mcall - - - mov eax,8 ; SEND MESSAGE - mov ebx,50*65536+145 - mov ecx,47*65536+13 - mov edx,2 - mov esi,0x667788 - mcall - - mov eax,4 - mov ebx,25*65536+50 ; draw info text with function 4 - mov ecx,0x000000 - mov edx,text - mov esi,40 - newline: - mcall - add ebx,16 - add edx,esi - cmp [edx],byte 'x' - jnz newline - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,2 ; 2, end of draw - mcall - - ret - - -; DATA AREA - -if lang eq ru -text: - db ' Џ®б« вм б®®ЎйҐ­ЁҐ ' - db ' ' - db ' ‹®Є «м­л©  ¤аҐб : 192.168.0.1 ' - db ' “¤ «с­­л©  ¤аҐб : 192.168.0.2 ' - db '’ҐЄбв Ё  ¤аҐб ў Є®­жҐ Ёб室­ЁЄ  ' - db 'x' ; <- END MARKER, DONT DELETE -else -text: - db ' Send message ' - db ' ' - db ' Local address : 192.168.0.1 ' - db ' Remote address : 192.168.0.2 ' - db 'Text and address in end of source ' - db 'x' ; <- END MARKER, DONT DELETE -end if - -title db 'NetSend(Client)',0 - -remote_ip db 192,168,1,2 - -send_data db 'ЏаЁўҐв,нв® вҐбв!Hello,this is a test!' -end_message: - - -I_END: -align 4 -socketNum dd ? - -rb 32 ; this is for stack - -mem: - diff --git a/programs/network_old/netsends/trunk/build_en.bat b/programs/network_old/netsends/trunk/build_en.bat deleted file mode 100644 index 1e931e49b1..0000000000 --- a/programs/network_old/netsends/trunk/build_en.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix en >lang.inc -@fasm netsends.asm netsends -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/netsends/trunk/build_ru.bat b/programs/network_old/netsends/trunk/build_ru.bat deleted file mode 100644 index 85d45fd306..0000000000 --- a/programs/network_old/netsends/trunk/build_ru.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix ru >lang.inc -@fasm netsends.asm netsends -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/netsends/trunk/netsends.asm b/programs/network_old/netsends/trunk/netsends.asm deleted file mode 100644 index 0084849718..0000000000 --- a/programs/network_old/netsends/trunk/netsends.asm +++ /dev/null @@ -1,186 +0,0 @@ -; -; NetSend(Server) -; -; Ђўв®а: Hex -; ‘ ©в: www.mestack.narod.ru -; -; ЋЇЁб ­ЁҐ: -; Џа®Ја ¬¬  ¤«п ®Ў¬Ґ­  б®®ЎйҐ­Ёп¬Ё ў бҐвЁ.‘ҐаўҐа­ п з бвм. -; -; Compile with FASM for Menuet -; Љ®¬ЇЁ«ЁагҐвбп FASM'®¬ ¤«п ЊҐ­гнв Ћ‘ -; - -use32 - org 0x0 - db 'MENUET01' ; header - dd 0x01 ; header version - dd START ; entry point - dd I_END ; image size - dd I_END+0x10000 ; required memory - dd I_END+0x10000 ; esp - dd 0x0 , 0x0 ; I_Param , I_Path - -include 'lang.inc' -include 'macros.inc' -remote_ip db 192,168,0,1 - - -START: ; start of execution - - mov eax, 53 ; open receiver socket - mov ebx, 0 - mov ecx, 0x5000 ; local port - mov edx, 0xffff ; remote port - mov esi, dword [remote_ip] ; remote IP - mcall - mov [socketNum],eax - mov [0],eax ; save for remote code - -red: - call draw_window ; at first, draw the window - -still: - - mov eax,23 ; wait here for event - mov ebx,1 - mcall - - cmp eax,1 ; redraw request ? - jz red - cmp eax,2 ; key in buffer ? - jz key - cmp eax,3 ; button in buffer ? - jz button - - mov eax,53 ; data from cluster terminal ? - mov ebx,2 - mov ecx,[socketNum] - mcall - - cmp eax,0 - jne data_arrived - - jmp still - -key: - mov eax,2 - mcall - jmp still - -button: - - mov eax,53 - mov ebx,1 - mov ecx,[socketNum] - mcall - or eax,-1 - mcall - - -data_arrived: - - mov eax,5 ; wait a second for everything to arrive - mov ebx,10 - mcall - - mov edi,I_END - - get_data: - - mov eax,53 - mov ebx,3 - mov ecx,[socketNum] - mcall - - mov [edi],bl - inc edi - - mov eax,53 - mov ebx,2 - mov ecx,[socketNum] - mcall - - cmp eax,0 - jne get_data - - mov eax,4 - mov ebx,10*65536+60 - add ebx,[y] - mov ecx,0x000000 - mov edx,I_END - mov esi,100 - mcall - - add [y],10 - - jmp still - -y dd 0x10 - - - -; ********************************************* -; ******* WINDOW DEFINITIONS AND DRAW ******** -; ********************************************* - - -draw_window: - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,1 ; 1, start of draw - mcall - - ; DRAW WINDOW - mov eax,0 ; function 0 : define and draw window - mov ebx,100*65536+300 ; [x start] *65536 + [x size] - mov ecx,100*65536+330 ; [y start] *65536 + [y size] - mov edx,0x14ffffff ; color of work area RRGGBB - mov edi,title ; WINDOW LABEL - mcall - - - ; Re-draw the screen text - cld - mov eax,4 - mov ebx,10*65536+30 ; draw info text with function 4 - mov ecx,0x000000 - mov edx,text - mov esi,40 - newline: - mcall - add ebx,16 - add edx,40 - cmp [edx],byte 'x' - jnz newline - - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,2 ; 2, end of draw - mcall - - ret - - -; DATA AREA - -if lang eq ru -text: - db '„ ­­л©  ¤аҐб : 192.168.0.2 ' - db 'Џа®б«гиЁў Ґ¬л© Ї®ав : 0x5000 ' - db 'ЏаЁб« ­­лҐ б®®ЎйҐ­Ёп: ' - db 'x' ; <- END MARKER, DONT DELETE -else -text: - db 'This address : 192.168.0.2 ' - db 'Used port : 0x5000 ' - db 'Received messages: ' - db 'x' ; <- END MARKER, DONT DELETE -end if - -title db 'NetSend(Server)',0 - -socketNum dd 0x0 - - -I_END: diff --git a/programs/network_old/nntpc/trunk/build_en.bat b/programs/network_old/nntpc/trunk/build_en.bat deleted file mode 100644 index 26a6862ab9..0000000000 --- a/programs/network_old/nntpc/trunk/build_en.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix en >lang.inc -@fasm nntpc.asm nntpc -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/nntpc/trunk/build_ru.bat b/programs/network_old/nntpc/trunk/build_ru.bat deleted file mode 100644 index 46d2d43cfc..0000000000 --- a/programs/network_old/nntpc/trunk/build_ru.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix ru >lang.inc -@fasm nntpc.asm nntpc -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/nntpc/trunk/nntpc.asm b/programs/network_old/nntpc/trunk/nntpc.asm deleted file mode 100644 index fdf51b97ee..0000000000 --- a/programs/network_old/nntpc/trunk/nntpc.asm +++ /dev/null @@ -1,911 +0,0 @@ -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; -;; NNTP CLIENT v 0.1 -;; -;; (C) Ville Turjanmaa -;; - -version equ '0.1' - -include "lang.inc" -include "..\..\..\macros.inc" - - use32 - org 0x0 - - db 'MENUET01' ; 8 byte id - dd 0x01 ; header version - dd START ; start of code - dd I_END ; size of image - dd 0x80000 ; memory for app - dd 0x80000 ; esp - dd 0x0 , 0x0 ; I_Param , I_Icon - - -connect_state db 0,0,'Disconnected' - db 1,3,'Trying.. ' - db 4,4,'Connected ' - db 5,9,'Closing.. ' - -prev_state dd -1 - -space dd 0x0 - -text_start dd 0x0 - -text_current dd 0x0 - -status dd 0x0 - -server_ip db 192,168,0,96 - -socket dd 0x0 - -xpos dd 0x0 -ypos dd 0x0 - -;; - -group db 'GROUP alt.test',13,10 - db ' ' - -grouplen dd 16 - -stat db 'STAT ' - -statlen dd 0x0 - -article db 'ARTICLE',13,10 -articlelen: - -;; - -quit db 'QUIT',13,10 -quitlen: - -xwait dd 0x0 -ywait dd 0x0 - -article_n dd 0x0 -article_l dd 0x0 - -article_start dd 0x0 -article_last dd 0x0 -article_all dd 0x0 - -article_fetch dd 0x0 - -xpost dd 0x0 - -edisave dd 0x0 - - -connection_status: - - pusha - - mov eax,53 - mov ebx,6 - mov ecx,[socket] - mcall - - cmp eax,[prev_state] - je no_cos - - mov [prev_state],eax - - mov eax,13 - mov ebx,435*65536+12*6 - mov ecx,42*65536+10 - mov edx,0xffffff - mcall - - mov ecx,-14 - mov eax,[prev_state] - - next_test: - - add ecx,14 - - cmp ecx,14*4 - je no_cos - - cmp al,[connect_state+ecx+0] - jb next_test - cmp al,[connect_state+ecx+1] - jg next_test - - mov edx,ecx - add edx,2 - add edx,connect_state - - mov eax,4 - mov ebx,435*65536+42 - mov ecx,0x000000 - mov esi,12 - mcall - - no_cos: - - popa - - ret - - - -text_input: - - pusha - mov ecx,25 - mov eax,32 - cld - rep stosb - popa - - mov [edisave],edi - - ti0: - - mov [edi],byte ' ' - call draw_entries - - mov eax,10 - mcall - - cmp eax,2 - jne no_more_text - - mov eax,2 - mcall - - cmp ah,8 - jne no_bg - cmp edi,[edisave] - je ti0 - dec edi - jmp ti0 - no_bg: - - cmp ah,13 - je no_more_text - - mov [edi],ah - inc edi - - call draw_entries - - jmp ti0 - - no_more_text: - - mov [xpost],edi - - ret - - -convert_text_to_ip: - - pusha - - mov edi,server_ip - mov esi,text+10 - mov eax,0 - mov edx,[xpost] - newsip: - cmp [esi],byte '.' - je sipn - cmp esi,edx - jge sipn - movzx ebx,byte [esi] - inc esi - imul eax,10 - sub ebx,48 - add eax,ebx - jmp newsip - sipn: - mov [edi],al - xor eax,eax - inc esi - cmp esi,text+50 - jg sipnn - inc edi - cmp edi,server_ip+3 - jbe newsip - sipnn: - - popa - - ret - - -send_group: - - mov eax,53 - mov ebx,7 - mov ecx,[socket] - mov edx,[grouplen] - mov esi,group - mcall - mov [status],3 - call clear_text - call save_coordinates - - ret - - -convert_number_to_text: - - pusha - - mov eax,[esi] - mov ecx,0 - newch: - inc ecx - xor edx,edx - mov ebx,10 - div ebx - cmp eax,0 - jne newch - - add edi,ecx - dec edi - mov [article_l],ecx - - mov eax,[esi] - newdiv: - xor edx,edx - mov ebx,10 - div ebx - add edx,48 - mov [edi],dl - dec edi - loop newdiv - - popa - - ret - - -convert_text_to_number: - - pusha - - mov edx,0 - newdigit: - movzx eax,byte [esi] - cmp eax,'0' - jb cend - cmp eax,'9' - jg cend - imul edx,10 - add edx,eax - sub edx,48 - inc esi - jmp newdigit - cend: - mov [edi],edx - popa - - ret - - -clear_text: - - mov [text_start],0 - mov [xpos],0 - mov [ypos],0 - mov [xwait],0 - mov [ywait],0 - mov edi,nntp_text - mov ecx,0x50000 - mov eax,32 - cld - rep stosb - ret - - -state_machine_write: - - - cmp [status],2 - jne no_22 - call send_group - ret - no_22: - - cmp [status],4 - jne no_4 - mov eax,53 - mov ebx,7 - mov ecx,[socket] - mov edx,[statlen] ; -stat - mov esi,stat - mcall - mov [status],5 - call save_coordinates - ret - no_4: - - cmp [status],6 - jne no_6 - mov eax,53 - mov ebx,7 - mov ecx,[socket] - mov edx,articlelen-article - mov esi,article - mcall - mov [status],7 - call save_coordinates - ret - no_6: - - - ret - -save_coordinates: - - mov eax,[xpos] - mov ebx,[ypos] - mov [xwait],eax - mov [ywait],ebx - - ret - - -state_machine_read: - - cmp [status],1 - jne no_1 - mov eax,'200 ' - call wait_for_string - ret - no_1: - - cmp [status],3 ;; responce to group - jne no_3 - mov eax,'211 ' - call wait_for_string - ret - no_3: - - cmp [status],5 ;; responce to stat - jne no_5 - mov eax,'223 ' - call wait_for_string - ret - no_5: - - ;; after 'article' request - no wait - - cmp [status],9 - jne no_9 - mov eax,'222 ' - call wait_for_string - ret - no_9: - - - - ret - - - -wait_for_string: - - mov ecx,[ywait] - imul ecx,80 - add ecx,[xwait] - - mov ecx,[nntp_text+ecx] - - cmp eax,ecx - jne no_match - - cmp [status],3 - jne no_stat_ret - - mov esi,[ywait] - imul esi,80 - add esi,[xwait] - - new32s: - inc esi - movzx eax,byte [esi+nntp_text] - cmp eax,47 - jge new32s - new32s2: - inc esi - movzx eax,byte [esi+nntp_text] - cmp eax,47 - jge new32s2 - inc esi - add esi,nntp_text -; mov [esi-1],byte '.' - - mov edi,article_n - call convert_text_to_number - mov eax,[article_n] - mov [article_start],eax - - new32s3: - inc esi - movzx eax,byte [esi] - cmp eax,47 - jge new32s3 - inc esi - - mov edi,article_last - call convert_text_to_number - - mov eax,[text_current] - add [article_n],eax - - mov esi,article_n - mov edi,nntp_text+71 - call convert_number_to_text - - mov esi,article_n - mov edi,stat+5 - call convert_number_to_text - - mov eax,[article_l] - mov [stat+5+eax],byte 13 - mov [stat+6+eax],byte 10 - add eax,5+2 - mov [statlen],eax - - pusha - mov edi,text+10+66*2 - mov ecx,25 - mov eax,32 - cld - rep stosb - mov esi,text_current - mov edi,text+10+66*2 - call convert_number_to_text - mov eax,32 - mov ecx,20 - mov edi,text+10+66*3 - cld - rep stosb - mov eax,[article_last] - sub eax,[article_start] - mov [article_all],eax - mov esi,article_all - mov edi,text+10+66*3 - call convert_number_to_text - call draw_entries - popa - - call draw_text - - no_stat_ret: - - inc [status] - - mov eax,5 - mov ebx,10 - mcall - - call check_for_incoming_data - - no_match: - - ret - - - -START: ; start of execution - - mov eax,40 - mov ebx,10000111b - mcall - - call clear_text - - call draw_window - -still: - - call state_machine_write - call state_machine_read - - mov eax,23 ; wait here for event - mov ebx,5 - mcall - - cmp eax,1 ; redraw request ? - je red - cmp eax,2 ; key in buffer ? - je key - cmp eax,3 ; button in buffer ? - je button - - call check_for_incoming_data - - call connection_status - - jmp still - - red: ; redraw - call draw_window - jmp still - - key: ; key - mov eax,2 ; just read it and ignore - mcall - - cmp ah,' ' - jne no_space - mov eax,[space] - dec eax - add [text_start],eax - call draw_text - jmp still - no_space: - - cmp ah,177 - jne no_plus - inc [text_start] - call draw_text - jmp still - no_plus: - - cmp ah,178 - jne no_minus - cmp [text_start],0 - je no_minus - dec [text_start] - call draw_text - jmp still - no_minus: - - cmp ah,179 - jne no_next - inc [text_current] - call send_group - jmp still - no_next: - - cmp ah,176 - jne no_prev - cmp [text_current],0 - je still - dec [text_current] - call send_group - jmp still - no_prev: - - jmp still - - - button: ; button - mov eax,17 ; get id - mcall - - shr eax,8 - - cmp eax,11 - jne no_11 - mov edi,text+10 - call text_input - call convert_text_to_ip - jmp still - no_11: - - cmp eax,12 - jne no_12 - mov edi,text+66+10 - call text_input - mov esi,text+66+10 - mov edi,group+6 - mov ecx,[xpost] - sub ecx,text+66+10 - mov eax,ecx - cld - rep movsb - mov [group+6+eax],byte 13 - mov [group+7+eax],byte 10 - add eax,6+2 - mov [grouplen],eax - mov [text_current],0 - jmp still - no_12: - - cmp eax,13 - jne no_13 - mov edi,text+10+66*2 - call text_input - mov esi,text+10+66*2 - mov edi,text_current - call convert_text_to_number - call send_group - jmp still - no_13: - - - cmp eax,14 - jne no_start - call clear_text - mov eax,3 - mcall - mov ecx,eax - mov eax,53 - mov ebx,5 - mov edx,119 - mov esi,dword [server_ip] - mov edi,1 - mcall - mov [socket],eax - mov [status],1 - jmp still - no_start: - - cmp eax,15 - jne no_end - mov eax,53 - mov ebx,7 - mov ecx,[socket] - mov edx,quitlen-quit - mov esi,quit - mcall - mov eax,5 - mov ebx,10 - mcall - call check_for_incoming_data - mov eax,53 - mov ebx,8 - mov ecx,[socket] - mcall - mov eax,5 - mov ebx,5 - mcall - mov eax,53 - mov ebx,8 - mov ecx,[socket] - mcall - mov [status],0 - jmp still - no_end: - - cmp eax,1 ; button id=1 ? - jne noclose - mov eax,-1 ; close this program - mcall - noclose: - - jmp still - - -check_for_incoming_data: - - cmp [status],0 - jne go_on - ret - go_on: - - mov eax,53 - mov ebx,2 - mov ecx,[socket] - mcall - - cmp eax,0 - je ch_ret - - mov eax,53 - mov ebx,3 - mov ecx,[socket] - mcall - - and ebx,0xff - - cmp ebx,13 - jb no_print - - cmp bl,13 - jne char - mov [xpos],0 - inc [ypos] - jmp no_print - char: - - cmp ebx,128 - jbe char_ok - mov ebx,'?' - char_ok: - - mov ecx,[ypos] - imul ecx,80 - add ecx,[xpos] - mov [nntp_text+ecx],bl - cmp [xpos],78 - jg noxinc - inc [xpos] - noxinc: - - no_print: - - mov eax,53 - mov ebx,2 - mov ecx,[socket] - mcall - - cmp eax,0 - jne check_for_incoming_data - - call draw_text - - ch_ret: - - ret - - - -; ********************************************* -; ******* WINDOW DEFINITIONS AND DRAW ******** -; ********************************************* - - -draw_window: - - pusha - - mov [prev_state],-1 - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,1 ; 1, start of draw - mcall - - ; DRAW WINDOW - mov eax,0 ; function 0 : define and draw window - mov ebx,100*65536+520 ; [x start] *65536 + [x size] - mov ecx,5*65536+470 ; [y start] *65536 + [y size] - mov edx,0x13ffffff ; color of work area RRGGBB,8->color gl - mov edi,title ; WINDOW LABEL - mcall - - mov eax,38 - mov ebx,5*65536+515 - mov ecx,101*65536+101 - mov edx,0x99bbff - mcall - mov ecx,102*65536+102 - mov edx,0x3366aa - mcall - - - mov eax,8 - mov ebx,238*65536+8 - mov ecx,30*65536+8 - mov edx,11 - mov esi,0x88aadd - mcall - mov ecx,41*65536+8 - mov edx,12 - mcall - mov ecx,52*65536+8 - mov edx,13 - mcall - - mov ebx,265*65536+75 - mov ecx,39*65536+13 - mov edx,14 - mcall - mov ebx,351*65536+75 - mov edx,15 - mcall - - call draw_entries - - call draw_text - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,2 ; 2, end of draw - mcall - - popa - - ret - - -draw_entries: - - pusha - - mov eax,13 - mov ebx,30*65536+200 - mov ecx,30*65536+44 - mov edx,0xffffff - mcall - - mov eax,4 - mov ebx,30*65536+31 ; draw info text with function 4 - mov ecx,0x000000 - mov edx,text - mov esi,66 - mov edi,6 - newline2: - mcall - add ebx,11 - add edx,66 - dec edi - jnz newline2 - - popa - - ret - - -draw_text: - - pusha - - mov eax,9 - mov ebx,0x70000 - mov ecx,-1 - mcall - - mov eax,[0x70000+46] - cmp eax,150 - jbe dtret - - sub eax,111 - mov ebx,10 - xor edx,edx - div ebx - mov edi,eax - dec edi - - mov [space],edi - mov eax,4 - mov ebx,20*65536+111 ; draw info text with function 4 - mov ecx,0x000000 - mov edx,[text_start] - imul edx,80 - add edx,nntp_text - mov esi,80 - - newline: - pusha - mov ecx,ebx - shl ecx,16 - mov eax,13 - mov ebx,20*65536+80*6 - mov cx,10 - mov edx,0xffffff - mcall - popa - - mcall - add ebx,10 - add edx,80 - dec edi - jnz newline - - dtret: - - popa - - ret - - -; DATA AREA - -text: - db 'NNTP IP : 192.168.0.96 < ' - db 'Group : alt.test < Connect Disconnect ' - db 'Article : 0 < ' - db 'Art.max : ? ' - db ' ' - db 'Arrow left/rigth: fetch prev/next - Arrow up/down & space: scroll ' - -textl: - - -title db 'NNTP client v',version,0 - -nntp_text: - - db 'a' - -I_END: ;;; diff --git a/programs/network_old/ppp/trunk/build_en.bat b/programs/network_old/ppp/trunk/build_en.bat deleted file mode 100644 index b234586acd..0000000000 --- a/programs/network_old/ppp/trunk/build_en.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix en >lang.inc -@fasm ppp.asm ppp -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/ppp/trunk/build_ru.bat b/programs/network_old/ppp/trunk/build_ru.bat deleted file mode 100644 index 6a62a1659a..0000000000 --- a/programs/network_old/ppp/trunk/build_ru.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix ru >lang.inc -@fasm ppp.asm ppp -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/ppp/trunk/chat.inc b/programs/network_old/ppp/trunk/chat.inc deleted file mode 100644 index 8a75d33e90..0000000000 --- a/programs/network_old/ppp/trunk/chat.inc +++ /dev/null @@ -1,188 +0,0 @@ -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; ;; -;; CHAT.INC ;; -;; ;; -;; Modem Chat Initiator for PPP Dialer ;; -;; ;; -;; Version 3 2nd May 2003 ;; -;; ;; -;; Copyright 2002 Shrirang Bhagwat, b_shrirang@hotmail.com ;; -;; ;; -;; See file COPYING for details ;; -;; ;; -;; 2/5/03 - Shrirang - Added Abort Strings For sendwait ;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -; Request And Response Chat Strings -; Following Data Structure is used for Request Response Chatting -; with the modem, for each request there is an expected response -; chatreq <-> chatres, 0 (NULL) is delimeter for 1 string -; '`' is delimiter for the section, modify according to your -; modem dialing scheme; in future MenuetOS might provide a graphical -; client to generate this kind of data structure and the PAP packet -; for username and password! -; Aborts strings are used to get outta sendwait early... -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -; REQUESTS -chatreq db 'ATH',13,0 ; 0 (NULL) is required by sendwait - db 'ATZ',13,0 - db 'ATM1',13,0 - db 'ATX1',13,0 ; My Modem doesn't connect without this - ; db 'ATDT;',13,0 - db 'ATDT phonenumber',13,0 - db '`' ; <- End Marker - -; RESPONSES -chatres db 'OK',0 - db 'OK',0 - db 'OK',0 - db 'OK',0 - ; db 'OK',0 - db 'CONNECT',0 - db '`' ; <- End Marker - -; ABORTS -aborts db 'ERROR',0 - db 'NO CARRIER',0 - db 'NO DIALTONE',0 - db 'BUSY',0 - db 'LINE IN USE',0 - db 'NO ANSWER',0 - db '`' ; <- End Marker -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -; -; modem_chat - chats with the modem to initiate a connection -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -modem_chat: - - push edi - push esi - push edx - - mov edi, chatreq ; init everytime, safe, stateless - mov esi, chatres - -chat_now: - - cmp byte [esi], '`' ; are we done? - je chatover - - mov edx, 6000 ; strings like "atdt;" take long on my modem - call sendwait - - and eax, eax - jz timeoutoccured - -updatereq: - - inc edi - cmp byte [edi], '`' - je updateres - - cmp byte [edi], 0 - jne updatereq - - inc edi - -updateres: - - inc esi - cmp byte [esi], '`' - je chatover - - cmp byte [esi], 0 - jne updateres - - inc esi - - jmp chat_now - - -chatover: - - xor eax, eax ; SUCCESS! - inc eax - - pop edx - pop esi - pop edi - - ret - -timeoutoccured: - - xor eax, eax ; FAIL! - - pop edx - pop esi - pop edi - - ret - - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -; -; scanaborts - scans the response from modem for abort srings -; ESI - Response from modem -; EDI - Pointer to Abort Table -; ECX - Response Length -; Returns 1 if abort detected, 0 otherwise -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -scanaborts: - - push esi - push edi - push ecx - -checkit: - - push esi - repe cmpsb ; any abort matches? - je abortdetected - pop esi - - -updatetbl: - - inc edi - cmp byte [edi], '`' - je noabortfound - - cmp byte [edi], 0 - jne updatetbl - - inc edi - - jmp checkit - -abortdetected: - - pop esi - pop ecx - pop edi - pop esi - - xor eax, eax ; SUCCESS! - inc eax - ret - -noabortfound : - - pop ecx - pop edi - pop esi - - - xor eax, eax ; FAILED! - ret - - - - - - diff --git a/programs/network_old/ppp/trunk/ppp.asm b/programs/network_old/ppp/trunk/ppp.asm deleted file mode 100644 index 3df5bcfbc7..0000000000 --- a/programs/network_old/ppp/trunk/ppp.asm +++ /dev/null @@ -1,2238 +0,0 @@ -; -; PPP.ASM -; -; Compile with FASM for Menuet -; This program dials into an ISP and establishes a PPP connection -; -; Version 11 26th January 2004 -; -; This code is a port of the PPP dialer program by Microchip, from -; their application note AN724 -; It has been ported by Mike Hibbett mikeh@oceanfree.net for Menuet -; -; 26/1/04 - Mike Hibbett - added support for com port selected by -; stackcfg -; 2/5/03 - Shrirang - Added Abort Strings To sendwait to get out early -; if modem sends abort strings like NO CARRIER etc. -; -; The original copyright statement follows -;////////////////////////////////////////////////////////////////////////// -;// -;//PING.C version 1.10 July 29/99 (C)opyright by Microchip Technology Inc -;// -;////////////////////////////////////////////////////////////////////////// - -FALSE equ 0 -TRUE equ 1 -DEBUG_OUTPUT equ TRUE ; If FALSE, not debugging info outputted -DEBUG_PPP_OUTPUT equ TRUE ; write PPP status msgs to debug board? -DEBUG_PORT2_OUTPUT equ TRUE ; write debug data also to com2 - - -BAUD_9600 equ 12 -BAUD_57600 equ 2 -; The next line sets the baud rate of the connection to the modem -BAUDRATE equ BAUD_57600 - - -LINE_END equ 0x0D ; End of input data character - - -; Defines for Internet constants -REQ equ 1 ; Request options list for PPP negotiations -PPP_ACK equ 2 ; Acknowledge options list for PPP negotiations -PPP_NAK equ 3 ; Not acknowledged options list for PPP neg -REJ equ 4 ; Reject options list for PPP negotiations -TERM equ 5 ; Termination packet for LCP to close connectio -LCP_ECHO_REQ equ 9 -LCP_ECHO_REP equ 10 -IP equ 0x0021 ; Internet Protocol packet -IPCP equ 0x8021 ; Internet Protocol Configure Protocol packet -CCP equ 0x80FD ; Compression Configure Protocol packet -LCP equ 0xC021 ; Link Configure Protocol packet -PAP equ 0xC023 ; Password Authenication Protocol packet - - -MaxRx equ 1500 -MaxTx equ 1500 - - - - -use32 - org 0x0 - db 'MENUET01' ; header - dd 0x01 ; header version - dd STARTAPP ; entry point - dd I_END ; image size - dd I_END+0x10000 ; required memory - dd I_END+0x10000 ; esp - dd 0x0 , 0x0 ; I_Param , I_Path - - -include "lang.inc" -include "..\..\..\macros.inc" -include "chat.inc" ; Hosts modem chatting routine - - -STARTAPP: -; mov eax, 0x3f8 -; mov [comport], eax -; mov eax, 4 -; mov [comirq], eax - - ; Get the com port & IRQ to use from the kernel stack config option - - mov eax, 52 ; Stack Interface - mov ebx, 0 ; read configuration word - mcall - mov ecx, eax - shr ecx, 16 ; get the port address - mov [comport], ecx - shr eax, 8 - and eax, 0x000000FF ; get the irq - mov [comirq], eax - - - mov eax, [comport] - add eax, 0x01000000 - mov [irqtable], eax - - - call enable_port - -appdsp: - mov eax, welcomep - mov [prompt], eax ; set up prompt to display - mov al, [welcomep_len] - mov [prompt_len], al - -red: - call draw_window ; at first, draw the window - -apploop: - mov eax, 23 ; wait here for event - mov ebx, 20 - mcall - - cmp eax, 1 ; redraw request ? - je red - cmp eax, 2 ; key in buffer ? - je key - cmp eax, 3 ; button in buffer ? - je button - mov ebx, [comirq] - add ebx, 16 - cmp eax, ebx - je flush_input ; Dont want serial data yet - jmp apploop - -key: ; key - ignore - mov eax, 2 ; just read it - mcall - jmp apploop - -button: ; button - mov eax, 17 ; get id - mcall - - cmp ah, 1 ; close program ? - jne noclose - - mov esi, hangupWait - mov edi, hangupSend - mov edx, 1000 ; Allow sendwait 10s - call sendwait - - call disable_port - - or eax, -1 ; close this program - mcall - jmp apploop - -noclose: - cmp ah, 2 ; Dial Button pressed? - jne apploop - - mov eax, conp - mov [prompt], eax ; set up prompt to display - mov al,[conp_len] - mov [prompt_len], al - call draw_window - - jmp dialloop ; connect to the host - - - ; Data received, so get it, and throw it away at this point -flush_input: - mov eax,42 - mov ebx, [comirq] - mcall - - mov eax,11 ; This will return 0 most of the time - mcall - mov ebx, [comirq] - add ebx, 16 - cmp eax, ebx - je flush_input - jmp apploop - - -dialloop: - call modem_chat ; Try chatting with the modem - - cmp eax, 1 ; Did it work? ( = 1) - jne appdsp - - ; OK, we are now connected. - - mov eax, pppOnp - mov [prompt], eax ; set up prompt to display - mov al,[pppOnp_len] - mov [prompt_len], al - call draw_window - - mov eax, 23 - mov ebx, 100 - mcall ; wait for 1s to display message - - call PPPStateMachine ; This is the main code - - jmp appdsp - - - - -;**************************************************************************** -; Function -; PPPStateMachine -; -; Description -; Handles PPP link establishment -; -;**************************************************************************** -PPPStateMachine: - ; Start the timer - xor eax, eax - call settimer - -PPPLoop: - - mov eax, 11 ; check event - mcall - cmp eax, 3 - jne PPPLred - ; button pressed - mov eax, 17 ; get id - mcall - - - mov eax, hangp - mov [prompt], eax ; set up prompt to display - mov al,[hangp_len] - mov [prompt_len], al - call draw_window - - mov esi, hangupWait - mov edi, hangupSend - mov edx, 1000 ; Allow sendwait 10s - call sendwait - - call disable_port - mov eax, -1 ; close this program - mcall - jmp PPPLoop - -PPPLred: - cmp eax, 1 ; redraw request ? - jne PPPLoop0 - - call draw_window - jmp PPPLoop - -PPPLoop0: - mov ebx, [comirq] - add ebx, 16 - cmp eax, ebx - jne ppp_002 ; check for tx to send - - - ; we have data in the rx buffer, get it - - mov eax, 42 - mov ebx, [comirq] ; ecx will return 0 =data read, 1 =no data - mcall ; or 2 =not irq owner - - inc dword [rxbytes] - - cmp bl, 0x7E - jne ppp_001a - - mov eax, [rx_ptr] - cmp eax, 0 - jz ppp_001 - mov eax, [checksum1] - cmp eax, 0xf0b8 - jne ppp_001 - - - movzx eax, byte [rx_str + 3] - mov ah, [rx_str + 2] - mov [packet], eax - -ppp_001: - mov eax, [extended] - and eax, 0x7e - mov [extended], eax - xor eax, eax - mov [rx_ptr], eax - - mov eax, 0xffff - mov [checksum1], eax - jmp ppp_003 - -ppp_001a: - cmp bl, 0x7D - jne ppp_001b - - mov eax, [extended] - or eax, 0x01 - mov [extended], eax - jmp ppp_003 - -ppp_001b: - mov eax, [extended] - test eax, 0x01 - jz ppp_001c - - xor bl, 0x20 - and eax, 0xFE - mov [extended], eax - -ppp_001c: - mov edx, [rx_ptr] - cmp edx, 0 - jnz ppp_001d - cmp bl, 0xff - je ppp_001d - - mov [rx_str + edx], byte 0xff - inc edx - -ppp_001d: - cmp edx, 1 - jnz ppp_001e - cmp bl, 0x03 - je ppp_001e - - mov [rx_str + edx], byte 0x03 - inc edx - -ppp_001e: - cmp edx, 2 - jnz ppp_001f - test bl, 0x01 - jz ppp_001f - - mov [rx_str + edx], byte 0 - inc edx - -ppp_001f: - mov [rx_str + edx], bl - inc edx - mov [rx_ptr], edx - - cmp edx, MaxRx - jle ppp_001g - mov edx, MaxRx - mov [rx_ptr], edx - -ppp_001g: - ; do checksum calc - mov eax, [checksum1] - xor bh, bh - xor ax, bx - call calc - mov ebx, [checksum1] - and ebx, 0xffff - shr ebx, 8 - xor eax, ebx - mov [checksum1], eax - jmp ppp_003 - -ppp_002: - mov eax, [tx_end] - cmp eax, 0 - jz ppp_003 - - mov ebx, [tx_ptr] - mov cl, [tx_str + ebx] - - cmp ebx, eax - jne ppp_002a - mov [tx_end], dword 0 - mov cl, '~' - jmp ppp_002d - -ppp_002a: - mov eax, [extended] - and eax, 0x02 - jz ppp_002b - - xor cl, 0x20 - mov eax, [extended] - and eax, 0xFD - mov [extended], eax - inc [tx_ptr] - jmp ppp_002d - -ppp_002b: - cmp cl, 0x20 - jl ppp_002b1 - cmp cl, 0x7d - je ppp_002b1 - cmp cl, 0x7e - je ppp_002b1 - jmp ppp_002c - -ppp_002b1: - mov eax, [extended] - or eax, 0x02 - mov [extended], eax - mov cl, 0x7d - jmp ppp_002d - -ppp_002c: - mov eax, [tx_ptr] - cmp eax, 0 - jnz ppp_002c1 - mov cl, '~' - -ppp_002c1: - inc [tx_ptr] - -ppp_002d: - ; Test for tx ready. - - push ecx - -wait_txd2: - mov eax,43 - mov ecx, [comport] - add ecx, 0x80000000 + 5 - mcall - and bl, 0x40 - cmp bl, 0 - jz wait_txd2 ; loop until free - - pop ebx - - - ; send the character - - inc dword [txbytes] - - mov ecx, [comport] - mov eax, 43 - mcall - -ppp_003: - mov eax, [packet] - cmp eax, LCP - jne ppp_004 - - mov al, [rx_str + 4] - cmp al, REQ - jne ppp_003b - - ; Debugging output to debug board - pusha - mov esi, RX_LCP_REQ - call debug_output - popa - - mov eax, [state] - and eax, 0xfd - mov [state], eax - - mov ebx, 0xc6 - push eax - call TestOptions - pop eax - cmp edx, 0 - jz ppp_003g - - cmp edx, 1 - jle ppp_003h - - mov edx, PPP_ACK - cmp eax, 3 - jge ppp_003i - - or eax, 0x02 - mov [state], eax - jmp ppp_003i - -ppp_003h: - mov bl, 0xc0 - mov [rx_str + 10], bl - mov edx, PPP_NAK - jmp ppp_003i - -ppp_003g: - mov edx, REJ - -ppp_003i: - - mov ebx, LCP - mov ecx, edx - movzx edx, byte [rx_str + 5] - mov esi, rx_str + 7 - call MakePacket - - mov eax, 0 - call settimer - jmp ppp_003a - -ppp_003b: - cmp al, PPP_ACK - jne ppp_003c - - ; Debugging output to debug board - pusha - mov esi, RX_LCP_ACK - call debug_output - popa - - mov eax, [number] - cmp al, [rx_str+5] - jne ppp_003a - - mov eax, [state] - cmp eax, 3 - jge ppp_003a - or eax, 0x01 - mov [state], eax - jmp ppp_003a - -ppp_003c: - cmp al, PPP_NAK - jne ppp_003d - - ; Debugging output to debug board - pusha - mov esi, RX_LCP_NAK - call debug_output - popa - - mov eax, [state] - and eax, 0xfe - mov [state], eax - jmp ppp_003a - -ppp_003d: - cmp al, REJ - jne ppp_003e - - ; Debugging output to debug board - pusha - mov esi, RX_LCP_REJ - call debug_output - popa - - mov eax, [state] - and eax, 0xfe - mov [state], eax - jmp ppp_003a - -ppp_003e: - cmp al, TERM - jne ppp_003j - jmp ppp_003a - -ppp_003j: - cmp al, LCP_ECHO_REQ - jne ppp_003a - - ; Debugging output to debug board - pusha - mov esi, RX_LCP_ECHO_REQ - call debug_output - popa - - mov al, 0 - mov [rx_str+8],al - mov [rx_str+9],al - mov [rx_str+10],al - mov [rx_str+11],al - - mov ebx, LCP - mov ecx, LCP_ECHO_REP - movzx edx, byte [rx_str + 5] - mov esi, rx_str + 7 - call MakePacket - -ppp_003a: - mov eax, [state] - cmp eax, 3 - jne ppp_013 - - mov eax, 4 - mov [state], eax - - jmp ppp_013 - - -ppp_004: - cmp eax, PAP - jne ppp_005 - - mov al, [rx_str + 4] - cmp al, PPP_ACK - jne ppp_013 - - ; Debugging output to debug board - pusha - mov esi, RX_PAP_ACK - call debug_output - popa - - mov eax, 5 - mov [state],eax - jmp ppp_013 - -ppp_005: - cmp eax, IPCP - jne ppp_006 - - mov al, [rx_str + 4] - cmp al, REQ - jne ppp_005a - - ; Debugging output to debug board - pusha - mov esi, RX_IPCP_REQ - call debug_output - popa - - mov ebx, 0x04 - call TestOptions - cmp edx, 0 - jz ppp_005b - mov ecx, PPP_ACK - mov eax, 6 - mov [state], eax - jmp ppp_005c -ppp_005b: - mov ecx, REJ - -ppp_005c: - mov ebx, IPCP - movzx edx, byte [rx_str + 5] - mov esi, rx_str + 7 - call MakePacket - jmp ppp_013 - -ppp_005a: - cmp al, PPP_ACK - jne ppp_005d - - ; Debugging output to debug board - pusha - mov esi, RX_IPCP_ACK - call debug_output - popa - - mov al, [rx_str + 5] - mov ecx, [number] - cmp al, cl - jne ppp_013 - - mov eax, 7 - mov [state], eax - mov eax, 5800 - call settimer - - mov eax, IPOnp - mov [prompt], eax ; set up prompt to display - mov al,[IPOnp_len] - mov [prompt_len], al - call draw_window - - jmp ppp_013 - -ppp_005d: - cmp al, PPP_NAK - jne ppp_005e - - ; Debugging output to debug board - pusha - mov esi, RX_IPCP_NAK - call debug_output - popa - - mov al, [rx_str + 10] - mov [addr1], al - mov al, [rx_str + 11] - mov [addr2], al - mov al, [rx_str + 12] - mov [addr3], al - mov al, [rx_str + 13] - mov [addr4], al - - pusha - call draw_window - - mov eax,52 - mov ebx,3 - mov cl, [addr4] - shl ecx, 8 - mov cl, [addr3] - shl ecx, 8 - mov cl, [addr2] - shl ecx, 8 - mov cl, [addr1] - mcall ; Set the stacks IP address - - popa - - mov ebx, IPCP ;; added 28/4/03 - mov ecx, REQ - movzx edx, byte [rx_str + 5] - mov esi, rx_str + 7 - call MakePacket - jmp ppp_013 - -ppp_005e: - cmp al, REJ - jne ppp_005f - jmp ppp_013 - -ppp_005f: - cmp al, TERM - jne ppp_013 - jmp ppp_013 - -ppp_006: - cmp eax, IP - jne ppp_007 - - -;; -;; -;; -;; This is where we will pass the IP packet up to the stack -;; -;; -;; - mov eax, 52 - mov ebx, 6 - mov edx, 1500 ; this should be exact amount - mov esi, rx_str + 4 - mcall - - ; Debugging output to debug board - pusha - mov esi, RX_IP - call debug_output - popa - - jmp ppp_013 - -ppp_007: - cmp eax, CCP - jne ppp_008 - - mov al, [rx_str + 4] - cmp al, REQ - jne ppp_013 - - ; Debugging output to debug board - pusha - mov esi, RX_CCP_REQ - call debug_output - popa - - mov ebx, 0x04 - call TestOptions - cmp edx, 0 - jz ppp_007b - mov ecx, PPP_ACK - jmp ppp_007c -ppp_007b: - mov ecx, REJ - -ppp_007c: - mov ebx, CCP - movzx edx, byte [rx_str + 5] - mov esi, rx_str + 7 - call MakePacket - - jmp ppp_013 - -ppp_008: - cmp eax, 0 - jz ppp_009 - - jmp ppp_013 - -ppp_009: - mov eax, [tx_end] - cmp eax, 0 - jnz ppp_010 - call gettimer - cmp eax, 100 - jle ppp_010 - - mov eax, [state] - cmp eax, 0 - je ppp_009a - cmp eax, 2 - jne ppp_010 - -ppp_009a: - - ; Debugging output to debug board - pusha - mov esi, TX_LCP_REQ - call debug_output - popa - - inc [number] - mov eax, 0 - call settimer - - mov ebx, LCP - mov ecx, REQ - mov edx, [number] - mov esi, LCPREQStr - call MakePacket - - jmp ppp_013 - -ppp_010: - mov eax, [tx_end] - cmp eax, 0 - jnz ppp_011 - call gettimer - cmp eax, 100 - jle ppp_011 - mov eax, [state] - cmp eax, 4 - jne ppp_011 - mov eax, 0 - call settimer - inc [number] - - ; Debugging output to debug board - pusha - mov esi, TX_PAP_REQ - call debug_output - popa - - mov ebx, PAP - mov ecx, REQ - mov edx, [number] - mov esi, PAPREQStr - call MakePacket - - jmp ppp_013 - -ppp_011: - mov eax, [tx_end] - cmp eax, 0 - jnz ppp_012 - call gettimer - cmp eax, 100 - jle ppp_012 - mov eax, [state] - cmp eax, 6 - jne ppp_012 - inc [number] - mov eax, 0 - call settimer - - ; Debugging output to debug board - pusha - mov esi, TX_IPCP_REQ - call debug_output - popa - - mov ebx, IPCP - mov ecx, REQ - mov edx, [number] - mov esi, IPCPREQStr - call MakePacket - - jmp ppp_013 - -ppp_012: - mov eax, [tx_end] - cmp eax, 0 - jnz ppp_013 - mov eax, [state] - cmp eax, 7 - jne ppp_013 - - ; 10ms Delay suggested by Ville - mov eax,23 ; over here - mov ebx,1 - mcall - - - - call gettimer - cmp eax, 200 - jle ppp_012a - - ; every 2s, when things are quiet, redraw window - call draw_window_limited - - mov eax, 0 - call settimer - -ppp_012a: - - mov eax, 52 - mov ebx, 8 - mov esi, ip_buff - mcall - - cmp eax, 0 - je ppp_013 - - call MakeIPPacket - - ; Debugging output to debug board - pusha - mov esi, TX_IP - call debug_output - popa - -ppp_013: - mov eax, [packet] - cmp eax, 0 - jz PPPLoop - - mov eax, 0 - mov [packet], eax - - mov edi, rx_str - mov ecx, MaxRx + 1 - rep stosb - jmp PPPLoop - - - -;**************************************************************************** -; Function -; calc -; -; Description -; Adds a character to the CRC checksum -; byte in lsb of eax -; -; -;**************************************************************************** -calc: - and eax, 0xFF - push ecx - mov ecx, 8 -calc_001: - test al, 0x01 - jz calc_002 - shr eax, 1 - xor eax, 0x8408 - and eax, 0xffff - jmp calc_003 -calc_002: - shr eax, 1 -calc_003: - loop calc_001 - pop ecx - ret - - -;**************************************************************************** -; Function -; add2tx -; -; Description -; Adds a character into the tx buffer -; byte in low byte of eax -; -; -;**************************************************************************** -add2tx: - pusha - mov esi, tx_str - add esi, [tx_ptr] - inc [tx_ptr] - mov [esi], al ; Save byte in buffer - mov ecx, [checksum2] - and eax, 0xff - xor eax, ecx - call calc - shr ecx, 8 - and ecx, 0xff - xor eax, ecx - mov [checksum2], eax - popa - ret - - - -;**************************************************************************** -; Function -; MakeIPPacket -; -; Description -; Creates a PPP packet for transmission to the host from the -; IP packet extracted from the stack -; -; IP data is in ip_buff -; -;**************************************************************************** -MakeIPPacket: - mov [tx_ptr], dword 1 - mov edi, tx_str - mov [edi], byte ' ' - mov eax, 0xffff - mov [checksum2], eax - mov al, 0xff - call add2tx - mov al, 3 - call add2tx - mov al, IP / 256 - call add2tx - mov al, IP - call add2tx - - movzx ecx, byte [ip_buff + 3] - mov ch, byte [ip_buff + 2] - - mov esi, ip_buff - -mip001: - mov al, byte [esi] - call add2tx - inc esi - loop mip001 - - mov eax, [checksum2] - not eax - call add2tx - shr eax, 8 - call add2tx - - mov eax, [tx_ptr] - mov [tx_end], eax - xor eax, eax - mov [tx_ptr], eax - ret - - -;**************************************************************************** -; Function -; MakePacket -; -; Description -; Creates a PPP packet for transmission to the host -; -; Packet type in ebx -; Code is in ecx -; num is in edx -; str is pointed to by esi -; -;**************************************************************************** -MakePacket: - mov [tx_ptr], dword 1 - mov edi, tx_str - mov [edi], byte ' ' - mov eax, 0xffff - mov [checksum2], eax - mov al, 0xff - call add2tx - mov al, 3 - call add2tx - mov al, bh ; packet/256 - call add2tx - mov al, bl ; packet&255 - call add2tx - - cmp ebx, IP ; is packet type IP? - jne mp_001 ; No - its a lower layer packet - - ; Do IP packet assembly - - jmp mp_002 - -mp_001: - ; Do PPP layer packet assembly - mov al, cl - call add2tx - mov al, dl - call add2tx - mov al, 0 - call add2tx - - movzx ecx, byte [esi] ; length = *str - 3 - sub ecx, 3 - -mp_002: ; Now copy the data acros - mov al, byte [esi] - call add2tx - inc esi - loop mp_002 - - mov eax, [checksum2] - not eax - call add2tx - shr eax, 8 - call add2tx - - mov eax, [tx_ptr] - mov [tx_end], eax - xor eax, eax - mov [tx_ptr], eax - ret - - -;**************************************************************************** -; Function -; TestOptions -; -; Description -; Test a PPP packets options fields for valid entries -; -; option ebx -; -; Returns result in edx, but may also modify rx_str -; -;**************************************************************************** -TestOptions: - mov esi, 8 ; ptr1 - mov edi, 8 ; ptr2 - mov edx, 3 ; edx is the return value - movzx ecx, byte [rx_str + 7] - add ecx, 4 ; ecx is size - cmp ecx, MaxRx - jle to_001 - mov ecx, MaxRx -to_001: - cmp esi, ecx - jge to_002 - mov al, byte [esi + rx_str] - cmp al, 3 - jne to_001a - mov al, byte [esi + rx_str + 2] - cmp al, 0x80 - je to_001a - ; bug fix for chap authenticate reject below - mov al, byte [esi + rx_str + 2] - cmp al, 0xc2 - jne to_001a - and edx, 0xfd -to_001a: - push ecx - mov cl, [esi + rx_str] - dec cl - mov eax, 1 - shl eax, cl - and eax, ebx - and eax, 0xffff - pop ecx - cmp eax, 0 - jnz to_001b - xor edx,edx -to_001b: - movzx eax, byte [esi+rx_str+1] - add esi, eax - jmp to_001 -to_002: - ; if (!(pass&2))... - test edx, 2 - jnz to_exit - test edx, 1 - jz to_002a - mov ebx, 0xFFFB -to_002a: - mov esi, 8 -to_002b: ; for loop - cmp esi, ecx - jge to_003 - - push ecx - mov cl, [esi + rx_str] - dec cl - mov eax, 1 - shl eax, cl - and eax, ebx - and eax, 0xffff - pop ecx - cmp eax, 0 - jnz to_002c - movzx edx, byte [esi+rx_str+1] -to_002d: - cmp esi, ecx - jge to_002b - cmp edx, 0 - jz to_002b - mov al, [esi + rx_str] - mov [edi + rx_str], al - inc esi - inc edi - dec edx - jmp to_002d -to_002c: - movzx eax, byte [esi+rx_str+1] - add esi, eax - jmp to_002b ; end of for loop -to_003: - mov eax, edi - sub al, 4 - mov [rx_str+7], al - xor edx, edx - cmp ebx, 0xfffb - jne to_exit - inc edx -to_exit: - ; Return value in EDX - ret - - - -;*************************************************************************** -; Function -; disable_port -; -; Description; -; Releases this applications use of the com port -; -;*************************************************************************** -disable_port: -if DEBUG_PORT2_OUTPUT = TRUE - mov eax, 46 ; free port area - mov ebx, 1 - - mov ecx, 0x2f8 - and ecx, 0xFF0 - mov edx, ecx - or edx, 0x00F - mcall -end if - - mov eax, 45 ; free irq 4 - mov ebx, 1 - mov ecx, [comirq] - mcall - - mov eax, 46 ; free port area - mov ebx, 1 - - mov ecx, [comport] - and ecx, 0xFF0 - mov edx, ecx - or edx, 0x00F - mcall - ret - - - -;*************************************************************************** -; Function -; enable_port -; -; Description; -; Takes control of the com port, defining the IRQ table and initialising -; the uart chip. -; -;*************************************************************************** -enable_port: - pusha -if DEBUG_PORT2_OUTPUT = TRUE - mov eax, 46 - mov ebx, 0 - mov ecx, 0x2f8 - and ecx, 0xFF0 - mov edx, ecx - or edx, 0x00F - mcall ; reseve port memory to this process - - mov eax, 45 ; reserve irq 3 - mov ebx, 0 - mov ecx, 3 - mcall - - - mov ecx, 0x2f8 ; data format register - add ecx, 3 - mov bl, 0x80 ; enable access to divisor latch - mov eax, 43 ; send data to device - com port setup - mcall - - mov ecx, 0x2f8 ; interrupt enable register - inc ecx - mov bl, 0 ; No interruts enabled - mov eax, 43 ; send data to device (modem) - mcall - - mov ecx, 0x2f8 ; Divisor latch LSB - mov bl, BAUDRATE ; set baud rate - mov eax, 43 ; send data to device (modem) - mcall - - mov ecx, 0x2f8 ; Data format register - add ecx, 3 - mov bl, 3 ; 8 data bits - mov eax, 43 ; send data to device (modem) - mcall - - mov ecx, 0x2f8 ; Modem control register - add ecx, 4 ; ** bl must be 0x0b for modem to dial! - mov bl, 0x0b ; 0x08 -> out2 enabled. No handshaking. - ; 0xb -> out2 enabled, RTS/DTR enabled - mov eax, 43 ; send data to device (modem) - mcall - -; mov ecx, 0x2f8 ; interrupt enable register -; inc ecx -; mov bl, 1 ; rx data interrupt enabled, othrs not -; mov eax, 43 ; send data to device (modem) -; mcall - -end if - - mov eax, 46 - mov ebx, 0 - mov ecx, [comport] - and ecx, 0xFF0 - mov edx, ecx - or edx, 0x00F - mcall ; reseve port memory to this process - - mov eax, 45 ; reserve irq 4 - mov ebx, 0 - mov ecx, [comirq] - mcall - - mov eax, 44 ; setup irq table - mov ebx, irqtable - mov ecx, [comirq] - mcall - - mov ecx, [comport] ; data format register - add ecx, 3 - mov bl, 0x80 ; enable access to divisor latch - mov eax, 43 ; send data to device - com port setup - mcall - - mov ecx, [comport] ; interrupt enable register - inc ecx - mov bl, 0 ; No interruts enabled - mov eax, 43 ; send data to device (modem) - mcall - - mov ecx, [comport] ; Divisor latch LSB - mov bl, BAUDRATE ; set baud rate - mov eax, 43 ; send data to device (modem) - mcall - - mov ecx, [comport] ; Data format register - add ecx, 3 - mov bl, 3 ; 8 data bits - mov eax, 43 ; send data to device (modem) - mcall - - mov ecx, [comport] ; Modem control register - add ecx, 4 ; ** bl must be 0x0b for modem to dial! - mov bl, 0x0b ; 0x08 -> out2 enabled. No handshaking. - ; 0xb -> out2 enabled, RTS/DTR enabled - mov eax, 43 ; send data to device (modem) - mcall - - mov ecx, [comport] ; interrupt enable register - inc ecx - mov bl, 1 ; rx data interrupt enabled, othrs not - mov eax, 43 ; send data to device (modem) - mcall - - mov ecx, [comirq] - add ecx, 16 - mov ebx, 1 - shl ebx, cl - add ebx, 111b - mov eax,40 ; enable irq 4 data - mcall - - popa - ret - - - -;************************************************************************** -; Function -; draw_window -; -; Description; -; Normal window definition and text layout for application -;************************************************************************** -draw_window: - mov eax, 12 ; function 12:tell os about windowdraw - mov ebx, 1 ; 1, start of draw - mcall - ; DRAW WINDOW - mov eax, 0 ; function 0 : define and draw window - mov ebx, 100*65536+250 ; [x start] *65536 + [x size] - mov ecx, 100*65536+150 ; [y start] *65536 + [y size] - mov edx,0x14224466 ; color of work area RRGGBB - mov edi,title ; color of frames RRGGBB - mcall - - ; DIAL BUTTON - mov eax, 8 ; function 8 : define and draw button - mov ebx, (50)*65536+40 ; [x start] *65536 + [x size] - mov ecx, 130*65536+12 ; [y start] *65536 + [y size] - mov edx, 2 ; button id - mov esi, 0x5599cc ; button color RRGGBB - mcall - - mov ebx, 55*65536+133 ; Draw button text - mov ecx, 0x00FFFFFF - mov edx, button1_text - xor eax, eax - mov al, [button1_text_len] - mov esi, eax - mov eax, 4 - mcall - ; DISCONNECT BUTTON - mov eax, 8 ; function 8 : define and draw button - mov ebx, (150)*65536+65 ; [x start] *65536 + [x size] - mov ecx, 130*65536+12 ; [y start] *65536 + [y size] - mov edx, 3 ; button id - mov esi, 0x5599cc ; button color RRGGBB - mcall - - mov ebx, 155*65536+133 ; Draw button text - mov ecx, 0x00FFFFFF - mov edx, button3_text - xor eax, eax - mov al, [button3_text_len] - mov esi, eax - mov eax, 4 - mcall - - mov ebx, 5*65536+40 ; draw info text with function 4 - mov ecx, 0x00FFFFFF - mov edx, [prompt] - xor eax, eax - mov al, [prompt_len] - mov esi, eax - mov eax, 4 - mcall - - ; Draw IP address - mov edx, 10*65536+60 - mov esi, 0x00FFFFFF - mov ebx, 0x00030000 - movzx ecx, byte [addr1] - mov eax, 47 - mcall - mov edx, 31*65536+60 - mov esi, 0x00FFFFFF - mov ebx, 0x00030000 - movzx ecx, byte [addr2] - mov eax, 47 - mcall - mov edx, 52*65536+60 - mov esi, 0x00FFFFFF - mov ebx, 0x00030000 - movzx ecx, byte [addr3] - mov eax, 47 - mcall - mov edx, 73*65536+60 - mov esi, 0x00FFFFFF - mov ebx, 0x00030000 - movzx ecx, byte [addr4] - mov eax, 47 - mcall - - ; Status byte - mov edx, 100*65536+60 - mov esi, 0x00FFFFFF - mov ebx, 0x00010000 - movzx ecx, byte [state] - mov eax, 47 - mcall - - ; bytes sent / received - mov eax, 4 ; function 4 : write text to window - mov ebx, 10*65536+80 ; [x start] *65536 + [y start] - mov ecx, 0x00ffffff ; color of text RRGGBB - mov edx, txmsg ; pointer to text beginning - mov esi, txmsglen-txmsg ; text length - mcall - - mov eax, 4 ; function 4 : write text to window - mov ebx, 10*65536+100 ; [x start] *65536 + [y start] - mov ecx, 0x00ffffff ; color of text RRGGBB - mov edx, rxmsg ; pointer to text beginning - mov esi, rxmsglen-rxmsg ; text length - mcall - - call draw_window_limited - - mov eax, 12 ; end of redraw - mov ebx, 2 - mcall - - ret - - - -draw_window_limited: - mov eax,13 - mov ebx,80*65536+10*6 - mov ecx,80*65536+10 - mov edx,0x03224466 - mcall - mov ecx,100*65536+10 - mcall - - mov ebx, 0x000A0000 - mov ecx, [txbytes] - mov esi, 0x00ffffff ; color of text RRGGBB - mov eax, 47 ; function 47 : write number to window - mov edx, 80*65536+80 ; [x start] *65536 + [y start] - mcall - - mov ebx, 0x000A0000 - mov ecx, [rxbytes] - mov esi, 0x00ffffff ; color of text RRGGBB - mov eax, 47 ; function 47 : write number to window - mov edx, 80*65536+100 ; [x start] *65536 + [y start] - mcall - ret - - -;**************************************************************************** -; Function -; settimer -; -; Description -; sets the general purpose timer to a given value in eax -; All times are in 1/100s -; -; -;**************************************************************************** -settimer: - push eax - mov eax, 26 - mov ebx, 9 - mcall ; get 100th second counter - pop ebx - sub eax, ebx ; This could have some funny side effecs if PPP - ; called within ebx seconds of startup - mov [timerValue], eax - ret - - -;**************************************************************************** -; Function -; gettimer -; -; Description -; gets the general purpose timer count in eax -; All times are in 1/100s -; -; -;**************************************************************************** -gettimer: - mov eax, 26 - mov ebx, 9 - mcall ; get 100th second counter - - sub eax, [timerValue] - ret - - - - -;**************************************************************************** -; Function -; sendwait -; -; Description -; Sends a command string to the modem, then waits for a defined rsp -; -; esi points to string to wait for -; edi points to string to send -; edx holds wait time, in ms -; -; Returns 1 if OK or 0 if timeout occurred -; -;**************************************************************************** -sendwait: - mov [sendwaitTime], edx - - ; Shrirang 2/5/03 - mov byte [abortcnt], 0 ; reset the abort counter - ;--! - - ; Start the timer - xor eax, eax - call settimer - - ; Check for incoming data - - xor edx, edx - xor eax, eax - -sw_001: - push eax - push edx - - ; Has connection timer expired? - call gettimer - cmp eax, [sendwaitTime] - jl sw_000 - - pop edx - pop eax - - xor eax, eax - - jmp sw_exit ; Exit indicating an error ( timeout ) - -sw_000: - ; any data from modem? - - mov eax,11 ; This will return 0 most of the time - mcall - mov ecx, eax - pop edx - pop eax - - - cmp ecx, 1 ; redraw request ? - je red1 - cmp ecx, 3 ; button in buffer ? - je button1 - mov ebx, [comirq] - add ebx, 16 - cmp ecx,ebx - jne sw_002 - jmp sw_000a - -red1: - pusha - call draw_window - popa - push eax - push edx - - jmp sw_000 - -button1: - mov eax, 0 - jmp sw_exit - -sw_000a: - ; there was data, so get it - - push edx - push eax - mov eax,42 - mov ebx, [comirq] - mcall - pop eax - pop edx - - - ; Shrirang 2/5/03 - ; Now that the expected response is not got we check if we - ; got the abort part, before we reset the fsm - - cmp bl, 0x0d ; AT commands normally start and end with \r\n - je checkabort - - cmp bl, 0x0a - je checkabort - - push eax - xor eax, eax - mov al, [abortcnt] - mov byte [abortres+eax], bl ; update abort response - inc byte [abortcnt] - pop eax - - jmp noabort - - -checkabort : - - cmp byte [abortcnt], 2 ; if we got valid abort this cannot happen! - jbe noabortflush - - push eax - push esi - push edi - push ecx - - mov esi, abortres - mov edi, aborts - xor ecx, ecx - mov cl, byte [abortcnt] - call scanaborts ; scan 'em - - pop ecx - pop edi - pop esi - - and eax, eax - jz noabortdec - - pop eax - xor eax, eax - jmp sw_exit - -noabortdec: - - pop eax - -noabortflush: - - mov byte [abortcnt], 0 - -noabort: - -;--! - - cmp [esi+edx], bl - je sw_003 - - - xor edx, edx - - ; Added 28/4/03 - cmp [esi+edx], bl - je sw_003 - - jmp sw_001 - -sw_003: ; They are the same - inc edx - cmp [esi+edx], byte 0 - jne sw_001 - - - xor eax, eax - inc eax - jmp sw_exit - -sw_002: - ; Test for data to send to modem - cmp [ edi + eax ], byte 0 - je sw_001 - - ; Is it a '|' character? - cmp [ edi + eax ], byte '|' - jne sw_004 - - push eax - call gettimer - cmp eax, 100 - pop eax - jl sw_001 - - ; restart the timer - push eax - xor eax, eax - call settimer - pop eax - - ; Move to next character - inc eax - jmp sw_001 - - -sw_004: - push edx - push eax - - ; restart the timer - xor eax, eax - call settimer - - ; Test for tx ready. - ; OR, wait then send - push edi - mov eax, 5 - mov ebx, 1 - mcall ; 10ms delay - pop edi - - ; send the character - pop eax - mov bl, [edi + eax] - - mov ecx, [comport] - inc eax - push eax - mov eax, 43 - mcall - - pop eax - pop edx - - cmp [ edi + eax ], byte 0 - jne sw_001 - - cmp [ esi + edx ], byte 0 - jne sw_001 - - xor eax, eax - inc eax - -sw_exit: - ; return success (1) or failure (0) in eax - ret - - - - -if DEBUG_OUTPUT = TRUE - -;**************************************************************************** -; Function -; debug_output -; -; Description -; prints a description of the PPP protocol's data exchanges to the -; debug board -; -; esi holds ptr to msg to display -; -; Nothing preserved; I'm assuming a pusha/popa is done before calling -; -;**************************************************************************** -debug_output: - cmp esi, RX_IP - jne do_001 - - call debug_print_string - - call debug_print_rx_ip - - mov esi, IP_DATA1 - call debug_print_string - mov esi, CRLF - call debug_print_string - mov esi, IP_DATA2 - call debug_print_string - ret - -do_001: - cmp esi, TX_IP - jne do_002 - - call debug_print_string - - call debug_print_tx_ip - - mov esi, IP_DATA1 - call debug_print_string - mov esi, CRLF - call debug_print_string - mov esi, IP_DATA2 - call debug_print_string - ret - -do_002: - ; Print PPP protocol information -if DEBUG_PPP_OUTPUT = TRUE - call debug_print_string - mov esi, CRLF - call debug_print_string -end if - ret - - - -txCom2: - push ecx - -wait_txd2t: - mov eax,43 - mov ecx,0x80000000 + 0x2f8 + 5 - mcall - and bl, 0x40 - cmp bl, 0 - jz wait_txd2t ; loop until free - - pop ebx - - - ; send the character - - mov ecx, 0x2f8 - mov eax, 43 - mcall - ret - - -;**************************************************************************** -; Function -; debug_print_string -; -; Description -; prints a string to the debug board -; -; esi holds ptr to msg to display -; -; Nothing preserved; I'm assuming a pusha/popa is done before calling -; -;**************************************************************************** -debug_print_string: - mov cl, [esi] - cmp cl, 0 - jnz dps_001 - ret - -dps_001: -if DEBUG_PORT2_OUTPUT = TRUE - pusha - call txCom2 - popa -end if - mov eax,63 - mov ebx, 1 - push esi - mcall - pop esi - inc esi - jmp debug_print_string - - -; This is used for translating hex to ASCII for display or output -hexchars db '0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F' - -IP_DATA1 db 'TCP From: xxxxxxxx To: xxxxxxxx SrcP: xxxx DestP: xxxx',0 -IP_DATA2 db 'Seq: xxxxxxxx Ack: xxxxxxxx Flags: xx dataLen: xxxx',13,10,0 - - - -debug_print_rx_ip: - mov esi, rx_str + 4 ; The ip buffer address start - - mov edi, IP_DATA1 - - cmp [esi+9], byte 1 - jne rnICMP - mov eax,'ICMP' - jmp drp -rnICMP: - cmp [esi+9], byte 6 - jne rnTCP - mov eax,'TCP ' - jmp drp -rnTCP: - cmp [esi+9], byte 17 - jne rnUDP - mov eax,'UDP ' - jmp drp -rnUDP: - -drp: - mov [edi], eax - - call fillData - - ret - - -debug_print_tx_ip: - mov esi, ip_buff ; The ip buffer address start - - mov edi, IP_DATA1 - - cmp [esi+9], byte 1 - jne tnICMP - mov eax,'ICMP' - jmp dtp -tnICMP: - cmp [esi+9], byte 6 - jne tnTCP - mov eax,'TCP ' - jmp dtp -tnTCP: - cmp [esi+9], byte 17 - jne tnUDP - mov eax,'UDP ' - jmp dtp -tnUDP: - -dtp: - mov [edi], eax - - call fillData - - ret - - -fillData: - ; Display from IP - mov cl, [esi+12] - mov edx, 11 - call wbyte ; byte in cl, dest in edi+edx - mov cl, [esi+13] - mov edx, 13 - call wbyte ; byte in cl, dest in edi+edx - mov cl, [esi+14] - mov edx, 15 - call wbyte ; byte in cl, dest in edi+edx - mov cl, [esi+15] - mov edx, 17 - call wbyte ; byte in cl, dest in edi+edx - - ; Display to IP - mov cl, [esi+16] - mov edx, 24 - call wbyte ; byte in cl, dest in edi+edx - mov cl, [esi+17] - mov edx, 26 - call wbyte ; byte in cl, dest in edi+edx - mov cl, [esi+18] - mov edx, 28 - call wbyte ; byte in cl, dest in edi+edx - mov cl, [esi+19] - mov edx, 30 - call wbyte ; byte in cl, dest in edi+edx - - ; Only display extra data for TCP - cmp [esi+9], byte 6 ; TCP? - je nTCP - - ; display source port - mov [edi+32], byte 0 - mov edi, IP_DATA2 - mov [edi], byte 0 - ret - -nTCP: - mov [edi+32], byte ' ' - - mov cl, [esi+20] - mov edx, 39 - call wbyte ; byte in cl, dest in edi+edx - mov cl, [esi+21] - mov edx, 41 - call wbyte ; byte in cl, dest in edi+edx - - mov cl, [esi+22] - mov edx, 51 - call wbyte ; byte in cl, dest in edi+edx - mov cl, [esi+23] - mov edx, 53 - call wbyte ; byte in cl, dest in edi+edx - - - mov edi, IP_DATA2 - mov [edi], byte 'S' - - mov cl, [esi+24] - mov edx, 5 - call wbyte ; byte in cl, dest in edi+edx - mov cl, [esi+25] - mov edx, 7 - call wbyte ; byte in cl, dest in edi+edx - mov cl, [esi+26] - mov edx, 9 - call wbyte ; byte in cl, dest in edi+edx - mov cl, [esi+27] - mov edx, 11 - call wbyte ; byte in cl, dest in edi+edx - - mov cl, [esi+28] - mov edx, 19 - call wbyte ; byte in cl, dest in edi+edx - mov cl, [esi+29] - mov edx, 21 - call wbyte ; byte in cl, dest in edi+edx - mov cl, [esi+30] - mov edx, 23 - call wbyte ; byte in cl, dest in edi+edx - mov cl, [esi+31] - mov edx, 25 - call wbyte ; byte in cl, dest in edi+edx - - mov cl, [esi+33] - and cl, 0x3F - mov edx, 35 - call wbyte ; byte in cl, dest in edi+edx - - ; Display the size of the received packet - mov dh, [esi + 2] - mov dl, [esi + 3] - sub dx, 40 - mov cl, dh - mov edx, 48 - call wbyte ; byte in cl, dest in edi+edx - mov dh, [esi + 2] - mov dl, [esi + 3] - sub dx, 40 - mov cl, dl - mov edx, 50 - call wbyte ; byte in cl, dest in edi+edx - - - ret - - -wbyte: ; byte in cl, dest in edi+edx, edi unchanged - xor eax, eax - mov al, cl - shr al, 4 - mov bl, [eax + hexchars] - mov [edi+edx], bl - inc edx - mov al, cl - and al, 0x0f - mov bl, [eax + hexchars] - mov [edi+edx], bl - ret - -else -debug_output: - ret -end if - -; DATA AREA - - -; debug msgs -RX_IP db 'R: ',0 -TX_IP db 'T: ',0 -CRLF db 13,10,0 -RX_LCP_REQ db 'RX_LCP_REQ',0 -RX_LCP_ACK db 'RX_LCP_ACK',0 -RX_LCP_NAK db 'RX_LCP_NAK',0 -RX_LCP_REJ db 'RX_LCP_REJ',0 -RX_LCP_ECHO_REQ db 'RX_LCP_ECHO_REQ',0 -RX_PAP_ACK db 'RX_PAP_ACK',0 -RX_IPCP_REQ db 'RX_IPCP_REQ',0 -RX_IPCP_ACK db 'RX_IPCP_ACK',0 -RX_IPCP_NAK db 'RX_IPCP_NAK ( IP Address assigned )',0 -RX_CCP_REQ db 'RX_CCP_REQ',0 -TX_LCP_REQ db 'TX_LCP_REQ',0 -TX_PAP_REQ db 'TX_PAP_REQ',0 -TX_IPCP_REQ db 'TX_IPCP_REQ',0 - - -; Labels for GUI buttons -button1_text db 'DIAL' -button1_text_len db 4 -button3_text db 'DISCONNECT' -button3_text_len db 10 - -comport dd 0 -comirq dd 0 - -; Pointer to prompt shown to user -prompt dd 0 -prompt_len db 0 - -; Application Title -title db 'PPP Dialer',0 - -txmsg: db 'Tx bytes :' -txmsglen: -rxmsg: db 'Rx bytes :' -rxmsglen: - -timerValue dd 0 -sendwaitTime dd 0 - - -; Prompts displayed to the user -welcomep db 'Select an option below, see ppp.txt' -welcomep_len db 35 - -dialfp db 'Connect Failed...' -dialfp_len db 17 - -connectedp db 'Connected to Host' -connectedp_len db 17 - -conp db 'Connecting to Host' -conp_len db 18 - -pppOnp db 'PPP Started' -pppOnp_len db 11 - -IPOnp db 'IP Link established' -IPOnp_len db 19 - -discp db 'Disconnected from Host' -discp_len db 22 - -hangp db 'Hanging up Modem......' -hangp_len db 22 - -PPPconSend db 0x7e,0xff,0x7d,0x23,0x08,0x08,0x08,0x08,0 -PPPconWait db '~~',0 -hangupWait db 'ATZ',0 -hangupSend db '|||+++|||',10,13,'ATH',10,13,'|ATZ',10,13,0 - -; Shrirang 2/5/03 - -abortres: times(50) db 0 -abortcnt db 0 - -;--! - -LCPREQStr db 0x0e,0x02,0x06,0x00, 0x0a, 0x00, 0x00, 0x07, 0x02, 0x08, 0x02 -PAPREQStr db 14, 4, 'free', 4, 'free' -IPCPREQStr db 10, 3, 6, 0, 0, 0, 0 - -irqtable: dd 0x3f8 + 0x01000000 ; read port 0x3f8, byte - dd 0 - dd 0 - dd 0 - dd 0 - dd 0 - dd 0 - dd 0 - dd 0 - dd 0 - dd 0 - dd 0 - dd 0 - dd 0 - dd 0 - dd 0 -checksum1 dd 0 -checksum2 dd 0 -packet dd 0 -state dd 0 -extended dd 0 -number dd 0 -tx_end dd 0 -tx_ptr dd 0 -rx_ptr dd 0 -addr1 db 0 -addr2 db 0 -addr3 db 0 -addr4 db 0 -rxbytes dd 0 -txbytes dd 0 - - -; End of application code and data marker - -I_END: - -rx_str: rb MaxRx + 1 -tx_str: rb MaxTx + 1 -ip_buff: rb 1500 - diff --git a/programs/network_old/rccc/trunk/build_en.bat b/programs/network_old/rccc/trunk/build_en.bat deleted file mode 100644 index be07777d90..0000000000 --- a/programs/network_old/rccc/trunk/build_en.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix en >lang.inc -@fasm rccc.asm rccc -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/rccc/trunk/build_ru.bat b/programs/network_old/rccc/trunk/build_ru.bat deleted file mode 100644 index be1ccf7b75..0000000000 --- a/programs/network_old/rccc/trunk/build_ru.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix ru >lang.inc -@fasm rccc.asm rccc -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/rccc/trunk/rccc.asm b/programs/network_old/rccc/trunk/rccc.asm deleted file mode 100644 index fbe7270fa4..0000000000 --- a/programs/network_old/rccc/trunk/rccc.asm +++ /dev/null @@ -1,308 +0,0 @@ -; -; Remote Control Center(Client) -; -; Ђўв®а: Hex -; ‘ ©в: www.mestack.narod.ru -; -; ЋЇЁб ­ЁҐ: -; Џа®Ја ¬¬ , ЇаҐ¤­ §­ зҐ­­ п ¤«п гЇа ў«Ґ­Ёп г¤ «с­­л¬ Є®¬ЇмовҐа®¬.Љ«ЁҐ­вбЄ п -; з бвм. -; -; Compile with FASM for Menuet -; Љ®¬ЇЁ«ЁагҐвбп FASM'®¬ ¤«п ЊҐ­гнв Ћ‘ -; - - -use32 - org 0x0 - - db 'MENUET01' ; 8 byte id - dd 0x01 ; header version - dd START ; start of code - dd I_END ; size of image - dd 0x5000 ; memory for app - dd 0x5000 ; esp - dd 0x0 , 0x0 ; I_Param , I_Icon - -include 'lang.inc' -include '..\..\..\macros.inc' - -START: ; start of execution - - mov eax,53 ; open socket - mov ebx,0 - mov ecx,0x6000 ; local port - mov edx,0x6100 ; remote port - mov esi,dword [remote_ip] ; remote IP - mcall - - mov [socket], eax - - mov eax,53 ; send connect code - mov ebx,4 - mov ecx,[socket] - mov edx,1 - mov esi,connect - mcall - -red: - call draw_window ; at first, draw the window - -still: - - mov eax,23 ; wait here for event - mov ebx,1 - mcall - - cmp eax,1 ; redraw request ? - jz red - cmp eax,2 ; key in buffer ? - jz key - cmp eax,3 ; button in buffer ? - jz button - - jmp still -key: - mov eax,2 - mcall - jmp still - -button: - mov eax,17 - mcall - - cmp ah,1 ; button id=1 ? - jnz noclose - mov eax, 53 - mov ebx, 1 - mov ecx, [socket] - mcall - or eax,-1 - mcall - noclose: - - cmp ah,2 ; SEND SHUTDOWN COMMAND? - je send_shutdown - - cmp ah,3 ; SEND REBOOT COMMAND? - je send_reboot - - cmp ah,4 ; SEND SAVEFI COMMAND? - je send_savefi - - cmp ah,5 ; SEND SAVEHI COMMAND? - je send_savehi - - cmp ah,6 ; SEND HOTREBOOT COMMAND? - je send_hotreboot - - cmp ah,7 ; SEND EXIT COMMAND? - je send_exit - - jmp still - - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; ;; -;; SEND COMMANDS TO SERVER ;; -;; ;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -send_shutdown: - - mov eax,53 ; SEND CODE TO REMOTE - mov ebx,4 - mov ecx,[socket] - mov edx,1 - mov esi,sen_shutdown - mcall - - jmp still - -send_reboot: - - mov eax,53 ; SEND CODE TO REMOTE - mov ebx,4 - mov ecx,[socket] - mov edx,1 - mov esi,sen_reboot - mcall - - jmp still - -send_savefi: - - mov eax,53 ; SEND CODE TO REMOTE - mov ebx,4 - mov ecx,[socket] - mov edx,1 - mov esi,sen_savefi - mcall - - jmp still - -send_savehi: - - mov eax,53 ; SEND CODE TO REMOTE - mov ebx,4 - mov ecx,[socket] - mov edx,1 - mov esi,sen_savehi - mcall - - jmp still - -send_hotreboot: - - mov eax,53 ; SEND CODE TO REMOTE - mov ebx,4 - mov ecx,[socket] - mov edx,1 - mov esi,sen_hotreboot - mcall - - jmp still - -send_exit: - - mov eax,53 ; SEND CODE TO REMOTE - mov ebx,4 - mov ecx,[socket] - mov edx,1 - mov esi,sen_exit - mcall - - jmp still - - get_data: - - mov eax,53 - mov ebx,3 - mov ecx,[socket] - mcall - - mov [edi],bl - inc edi - - mov eax,53 - mov ebx,2 - mov ecx,[socket] - mcall - - cmp eax,0 - jne get_data - - mov eax,4 - mov ebx,30*65536+30 - mov ecx,0x000000 - mov edx,I_END - mov esi,15 - mcall - - jmp still -; ********************************************* -; ******* WINDOW DEFINITIONS AND DRAW ******** -; ********************************************* - - -draw_window: - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,1 ; 1, start of draw - mcall - - ; DRAW WINDOW - mov eax,0 ; function 0 : define and draw window - mov ebx,100*65536+250 ; [x start] *65536 + [x size] - mov ecx,60*65536+280 ; [y start] *65536 + [y size] - mov edx,0x14ffffff ; color of work area RRGGBB - mov edi,title ; WINDOW LABEL - mcall - - - mov eax,8 ; CONTROL BUTTONS - mov ebx,25*65536+9 - mov ecx,113*65536+9 - mov edx,2 - mov esi,0x667788 - newbut: - mcall - add ecx,16*65536 - inc edx - cmp edx,8 - jb newbut - - cld - mov eax,4 - mov ebx,25*65536+50 ; draw info text with function 4 - mov ecx,0x000000 - mov edx,text - mov esi,40 - newline: - mcall - add ebx,16 - add edx,40 - cmp [edx],byte 'x' - jnz newline - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,2 ; 2, end of draw - mcall - - ret - - -; DATA AREA - - -text: -if lang eq ru - db ' ‚६п бҐаўҐа : ' - db ' ' - db ' ЊҐ­о гЇа ў«Ґ­Ёп бҐаўҐа®¬: ' - db ' ' - db ' - ‚лЄ«озЁвм ' - db ' - ЏҐаҐ§ Јаг§Ёвм ' - db ' - ‘®еа ­Ёвм д«®ЇЇЁ-Ё¬Ґ¤¦ ' - db ' - ‘®еа ­Ёвм Ё¬Ґ¤¦ †. ¤ЁбЄ  ' - db ' - ѓ®апзЁ© аҐбв ав п¤а  ' - db ' - ‡ ЄалвЁҐ бҐаўҐа­®© з бвЁ ' - db ' ' - db ' ‹®Є «м­л©  ¤аҐб : 192.168.0.1 ' - db ' “¤ «с­­л©  ¤аҐб : 192.168.0.2 ' - db 'Ђ¤аҐб бҐаўҐа  - ў Є®­жҐ Ёб室­ЁЄ  ' - db 'x' ; <- END MARKER, DONT DELETE - -else - db ' On server: ' - db ' ' - db ' Server control menu: ' - db ' ' - db ' - Shutdown ' - db ' - Reboot ' - db ' - Save ramdisk image to floppy ' - db ' - Save ramdisk image to hard disk ' - db ' - Kernel restart ' - db ' - Close server part ' - db ' ' - db ' Local address : 192.168.0.1 ' - db ' Remote address : 192.168.0.2 ' - db 'Address of server is in end of source ' - db 'x' ; <- END MARKER, DONT DELETE -end if - -title db 'Remote Control Center(Client)',0 - - -socket dd 0x0 - -remote_ip db 192,168,0,2 - -sen_shutdown db 'S' -sen_reboot db 'R' -sen_savefi db 'F' -sen_savehi db 'H' -sen_hotreboot db 'O' -sen_exit db 'E' -connect db 'C' - -I_END: diff --git a/programs/network_old/rccs/trunk/build_en.bat b/programs/network_old/rccs/trunk/build_en.bat deleted file mode 100644 index 8eba022ed7..0000000000 --- a/programs/network_old/rccs/trunk/build_en.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix en >lang.inc -@fasm rccs.asm rccs -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/rccs/trunk/build_ru.bat b/programs/network_old/rccs/trunk/build_ru.bat deleted file mode 100644 index af7caa124c..0000000000 --- a/programs/network_old/rccs/trunk/build_ru.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix ru >lang.inc -@fasm rccs.asm rccs -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/rccs/trunk/rccs.asm b/programs/network_old/rccs/trunk/rccs.asm deleted file mode 100644 index 63ace450b5..0000000000 --- a/programs/network_old/rccs/trunk/rccs.asm +++ /dev/null @@ -1,341 +0,0 @@ -; -; Remote Control Center(Server) -; -; Ђўв®а: Hex -; ‘ ©в: www.mestack.narod.ru -; -; ЋЇЁб ­ЁҐ: -; Џа®Ја ¬¬ , ЇаҐ¤­ §­ зҐ­­ п ¤«п гЇа ў«Ґ­Ёп г¤ «с­­л¬ Є®¬ЇмовҐа®¬.‘ҐаўҐа­ п -; з бвм. -; -; Compile with FASM for Menuet -; Љ®¬ЇЁ«ЁагҐвбп FASM'®¬ ¤«п ЊҐ­гнв Ћ‘ -; - -use32 - - org 0x0 - - db 'MENUET01' ; 8 byte id - dd 0x01 ; header version - dd START ; start of code - dd I_END ; size of image - dd 0x5000 ; memory for app - dd 0x5000 ; esp - dd 0x0 , 0x0 ; I_Param , I_Icon - -include 'lang.inc' -include '..\..\..\macros.inc' -remote_ip db 192,168,0,1 - - -START: ; start of execution - - mov eax, 53 ; open receiver socket - mov ebx, 0 - mov ecx, 0x6100 ; local port - mov edx, 0x6000 ; remote port - mov esi, dword [remote_ip] ; remote IP - mcall - mov [socket],eax - mov [0],eax ; save for remote code - -red: - call draw_window ; at first, draw the window - -still: - - mov eax,23 ; wait here for event - mov ebx,1 - mcall - - cmp eax,1 ; redraw request ? - jz red - cmp eax,2 ; key in buffer ? - jz key - cmp eax,3 ; button in buffer ? - jz button - - mov eax,53 ; data from cluster terminal ? - mov ebx,2 - mov ecx,[socket] - mcall - - cmp eax,0 - jne data_arrived - - jmp still - -key: - mov eax,2 - mcall - jmp still - -button: - - mov eax,53 - mov ebx,1 - mov ecx,[socket] - mcall - or eax,-1 - mcall - - -data_arrived: - - mov eax,5 ; wait a second for everything to arrive - mov ebx,10 - mcall - - mov edi,I_END - - get_data: - - mov eax,53 - mov ebx,3 - mov ecx,[socket] - mcall - - mov [edi],bl - inc edi - - mov eax,53 - mov ebx,2 - mov ecx,[socket] - mcall - - cmp eax,0 - jne get_data - - cmp byte [I_END],'C' ;Connect ? - jne no_con - mov eax,4 - mov ebx,10*65536+60 - add ebx,[y] - mov ecx,0x000000 - mov edx,inp_con - mov esi,inp_con.len - mcall - add [y],10 - - jmp still - -no_con: - cmp byte [I_END],'S' ; Shutdown ? - jne no_shut - mov eax,4 - mov ebx,10*65536+60 - add ebx,[y] - mov ecx,0x000000 - mov edx,inp_shut - mov esi,inp_shut.len - mcall - add [y],10 - - mov eax,18 - mov ebx,9 - mov ecx,2 - mcall - - jmp still - -no_shut: - cmp byte [I_END],'R' ; Reboot ? - jne no_reb - mov eax,4 - mov ebx,10*65536+60 - add ebx,[y] - mov ecx,0x000000 - mov edx,inp_reb - mov esi,inp_reb.len - mcall - add [y],10 - - mov eax,18 - mov ebx,9 - mov ecx,3 - mcall - jmp still - -no_reb: - cmp byte [I_END],'F' ; Save image on floppi ? - jne no_savefi - mov eax,4 - mov ebx,10*65536+60 - add ebx,[y] - mov ecx,0x000000 - mov edx,inp_savefi - mov esi,inp_savefi.len - mcall - add [y],10 - - mov eax,18 - mov ebx,9 - mov ecx,1 - mcall - jmp still - -no_savefi: - cmp byte [I_END],'H' ; Save image on hard disk ? - jne no_savehi - mov eax,4 - mov ebx,10*65536+60 - add ebx,[y] - mov ecx,0x000000 - mov edx,inp_savehi - mov esi,inp_savehi.len - mcall - add [y],10 - - mov eax,18 - mov ebx,6 - mov ecx,2 - mcall - - jmp still - -no_savehi: - cmp byte [I_END],'O' ; Hot reboot ? - jne no_hotreb - mov eax,4 - mov ebx,10*65536+60 - add ebx,[y] - mov ecx,0x000000 - mov edx,inp_hotreb - mov esi,inp_hotreb.len - mcall - add [y],10 - - mov eax,18 - mov ebx,9 - mov ecx,4 - mcall - jmp still - -no_hotreb: - cmp byte [I_END],'E' ; Unload server ? - jne no_com - mov eax,4 - mov ebx,10*65536+60 - add ebx,[y] - mov ecx,0x000000 - mov edx,inp_exit - mov esi,inp_exit.len - mcall - add [y],10 - - call button - jmp still - -no_com: - mov eax,4 - mov ebx,10*65536+60 - add ebx,[y] - mov ecx,0x000000 - mov edx,inp_com - mov esi,inp_com.len - mcall - add [y],10 - - jmp still - -; ********************************************* -; ******* WINDOW DEFINITIONS AND DRAW ******** -; ********************************************* - - -draw_window: - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,1 ; 1, start of draw - mcall - - ; DRAW WINDOW - mov eax,0 ; function 0 : define and draw window - mov ebx,100*65536+300 ; [x start] *65536 + [x size] - mov ecx,100*65536+330 ; [y start] *65536 + [y size] - mov edx,0x14ffffff ; color of work area RRGGBB - mov edi,title ; WINDOW LABEL - mcall - - - ; Re-draw the screen text - cld - mov eax,4 - mov ebx,10*65536+30 ; draw info text with function 4 - mov ecx,0x000000 - mov edx,text - mov esi,40 - newline: - mcall - add ebx,16 - add edx,40 - cmp [edx],byte 'x' - jnz newline - - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,2 ; 2, end of draw - mcall - - ret - - -; DATA AREA - - -text: -if lang eq ru - db '„ ­­л©  ¤аҐб : 192.168.0.2 ' - db 'Џа®б«гиЁў Ґ¬л© Ї®ав : 0x6100 ' - db '‘®бв®п­ЁҐ: ' - db 'x' ; <- END MARKER, DONT DELETE -else - db 'This address : 192.168.0.2 ' - db 'Used port : 0x6100 ' - db 'Status: ' - db 'x' ; <- END MARKER, DONT DELETE -end if - -title db 'Remote Control Center(Server)',0 - -socket dd 0x0 -y dd 0x10 -sysclock dd 0x0 - -if lang eq ru -inp_con db '‚­Ё¬ ­ЁҐ, Ї®¤Є«озЁ«бп Є«ЁҐ­в!' -.len = $-inp_con -inp_shut db '€¤св ®вЄ«о祭ЁҐ бЁб⥬л...' -.len = $-inp_shut -inp_reb db '€¤св ЇҐаҐ§ Јаг§Є ...' -.len = $-inp_reb -inp_savefi db '‘®е࠭塞 Ё¬Ґ¤¦ ­  ¤ЁбЄҐвг...' -.len = $-inp_savefi -inp_savehi db '‘®е࠭塞 Ё¬Ґ¤¦ ­  †. ¤ЁбЄ...' -.len = $-inp_savehi -inp_hotreb db '€¤св Ј®апзЁ© аҐбв ав п¤а ...' -.len = $-inp_hotreb -inp_exit db '‚л室 Ё§ Їа®Ја ¬¬л...' -.len = $-inp_exit -inp_com db 'ЌҐ®Ї®§­ ­­ п Є®¬¬ ­¤ !' -.len = $-inp_com -else -inp_con db 'Note, client has been connected!' -.len = $-inp_con -inp_shut db 'Turn off in progress...' -.len = $-inp_shut -inp_reb db 'Reboot in progress...' -.len = $-inp_reb -inp_savefi db 'Saving image to floppy...' -.len = $-inp_savefi -inp_savehi db 'Saving image to hard disk...' -.len = $-inp_savehi -inp_hotreb db 'Kernel restart in progress...' -.len = $-inp_hotreb -inp_exit db 'Exiting from program...' -.len = $-inp_exit -inp_com db 'Unknown command!' -.len = $-inp_com -end if -I_END: diff --git a/programs/network_old/remote/trunk/build_en.bat b/programs/network_old/remote/trunk/build_en.bat deleted file mode 100644 index 089f5cbeab..0000000000 --- a/programs/network_old/remote/trunk/build_en.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix en >lang.inc -@fasm remote.asm remote -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/remote/trunk/build_ru.bat b/programs/network_old/remote/trunk/build_ru.bat deleted file mode 100644 index c09b929159..0000000000 --- a/programs/network_old/remote/trunk/build_ru.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix ru >lang.inc -@fasm remote.asm remote -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/remote/trunk/remote.asm b/programs/network_old/remote/trunk/remote.asm deleted file mode 100644 index fad097d434..0000000000 --- a/programs/network_old/remote/trunk/remote.asm +++ /dev/null @@ -1,208 +0,0 @@ -; -; Remote processing example (remote node) - vt -; -; Compile with FASM for Menuet -; - - -use32 - org 0x0 - db 'MENUET01' ; header - dd 0x01 ; header version - dd START ; entry point - dd I_END ; image size - dd I_END+0x10000 ; required memory - dd I_END+0x10000 ; esp - dd 0x0 , 0x0 ; I_Param , I_Path - -include 'lang.inc' -include '..\..\..\macros.inc' -remote_ip db 192,168,1,26 - - -START: ; start of execution - - mov eax, 53 ; open receiver socket - mov ebx, 0 - mov ecx, 0x3000 ; local port - mov edx, 0xffff ; remote port - mov esi, dword [remote_ip] ; remote IP - mcall - mov [socketNum],eax - mov [0],eax ; save for remote code - -red: - call draw_window ; at first, draw the window - -still: - - mov eax,23 ; wait here for event - mov ebx,1 - mcall - - cmp eax,1 ; redraw request ? - jz red - cmp eax,2 ; key in buffer ? - jz key - cmp eax,3 ; button in buffer ? - jz button - - mov eax,53 ; data from cluster terminal ? - mov ebx,2 - mov ecx,[socketNum] - mcall - - cmp eax,0 - jne data_arrived - - jmp still - -key: - mov eax,2 - mcall - jmp still - -button: - - mov eax,53 - mov ebx,1 - mov ecx,[socketNum] - mcall - or eax,-1 - mcall - - -data_arrived: - - mov eax,5 ; wait a second for everything to arrive - mov ebx,10 - mcall - - mov edi,I_END - - get_data: - - mov eax,53 - mov ebx,3 - mov ecx,[socketNum] - mcall - - mov [edi],bl - inc edi - - mov eax,53 - mov ebx,2 - mov ecx,[socketNum] - mcall - - cmp eax,0 - jne get_data - - add byte [I_END+14],48 - - mov eax,4 - mov ebx,10*65536+50 - add ebx,[y] - mov ecx,0x000000 - mov edx,I_END - mov esi,23 - mcall - - add [y],10 - - cmp byte [I_END+14],'1' ; DATA PACKET ? - jne no_packet - mov esi,I_END+23 - mov edi,[I_END+15] - mov ecx,[I_END+19] - cld - rep movsb - jmp still - no_packet: - - cmp byte [I_END+14],'2' ; EXECUTE ? - jne no_execute - mov eax,[I_END+15] - call eax - jmp still - no_execute: - - jmp still - -y dd 0x10 - - - -; ********************************************* -; ******* WINDOW DEFINITIONS AND DRAW ******** -; ********************************************* - - -draw_window: - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,1 ; 1, start of draw - mcall - - ; DRAW WINDOW - mov eax,0 ; function 0 : define and draw window - mov ebx,100*65536+286 ; [x start] *65536 + [x size] - mov ecx,100*65536+330 ; [y start] *65536 + [y size] - mov edx,0x14ffffff ; color of work area RRGGBB - mov edi,title ; WINDOW LABEL - mcall - - - ; Re-draw the screen text - cld - mov eax,4 - mov ebx,10*65536+30 ; draw info text with function 4 - mov ecx,0x000000 - mov edx,text - mov esi,40 - newline: - mcall - add ebx,16 - add edx,40 - cmp [edx],byte 'x' - jnz newline - - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,2 ; 2, end of draw - mcall - - ret - - -; DATA AREA - - -text: - db 'THIS NODE : 192.168.1.22 ' - db 'LISTENING TO PORT : 0x3000 ' - db 'x' ;<- END MARKER, DONT DELETE - - -title db 'CLUSTER REMOTE',0 - -socketNum dd 0x0 - -send_data db 'MenuetRemote00' ; 00 header ; -> remote port 0x3000 - db 1 ; 14 send - dd 0x0 ; 15 position - dd 0x0 ; 19 size - ; 23 - -execute db 'MenuetRemote00' ; 00 header ; -> remote port 0x3000 - db 2 ; 14 execute - dd 0x0 ; 15 position - ; 19 -I_END: - - - - - - - \ No newline at end of file diff --git a/programs/network_old/smtps/trunk/build_en.bat b/programs/network_old/smtps/trunk/build_en.bat deleted file mode 100644 index feb800c958..0000000000 --- a/programs/network_old/smtps/trunk/build_en.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix en >lang.inc -@fasm smtps.asm smtps -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/smtps/trunk/build_ru.bat b/programs/network_old/smtps/trunk/build_ru.bat deleted file mode 100644 index 333f206c03..0000000000 --- a/programs/network_old/smtps/trunk/build_ru.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix ru >lang.inc -@fasm smtps.asm smtps -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/smtps/trunk/smtps.asm b/programs/network_old/smtps/trunk/smtps.asm deleted file mode 100644 index 638f282475..0000000000 --- a/programs/network_old/smtps/trunk/smtps.asm +++ /dev/null @@ -1,828 +0,0 @@ -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; ;; -;; SMTP server for MenuetOS ;; -;; ;; -;; License: GPL / See file COPYING for details ;; -;; Copyright 2002 (c) Ville Turjanmaa ;; -;; ;; -;; Compile with FASM for Menuet ;; -;; ;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -version equ '0.1' - -use32 - - org 0x0 - - db 'MENUET01' ; 8 byte id - dd 0x01 ; required os - dd START ; program start - dd I_END ; program image size - dd 0x200000 ; required amount of memory - dd 0xffff0 - dd 0,0 - -include '..\..\..\macros.inc' - -save_file: - -; cmp [file_start],0x100000+10 -; jbe nosub -; sub [file_start],8 -; nosub: - - mov eax,[file_start] - sub eax,0x100000 - mov ebx,files - mov [ebx+12],eax - - mov eax,70 - mcall - - ret - - -START: ; start of execution - - mov [file_start],0x100000 - - mov eax,70 - mov ebx,filel - mcall - - test eax,eax - jz @f - cmp eax,6 - jnz notfound -@@: - add [file_start],ebx - notfound: - - - mov edi,I_END - mov ecx,60*120 - mov al,32 - cld - rep stosb - - mov eax,[rxs] - imul eax,11 - mov [pos],eax - - mov ebp,0 - mov edx,I_END - -redraw: - call draw_window ; at first, draw the window - -still: - - inc [cursor_on_off] - - mov eax,5 - mov ebx,1 - mcall - - mov eax,11 ; wait here for event - mcall - - cmp eax,1 ; redraw - je redraw - cmp eax,2 ; key - je key - cmp eax,3 ; button - je button - - cmp [I_END+120*60],byte 1 - jne no_main_update - mov [I_END+120*60],byte 0 - mov edx,I_END - call draw_channel_text - no_main_update: - - cmp [server_active],0 - je noread - cmp [status],4 - jne noread - call read_incoming_data - inc [close_connection] - cmp [close_connection],15*100 - jbe noread - - call yq - - noread: - - call print_status - - cmp [status],4 - je check_header - - jmp still - - -check_header: - - cmp [header_sent],1 - je still - - mov eax,53 - mov ebx,7 - mov ecx,[socket] - mov edx,6 - mov esi,r220 - mcall - mov [header_sent],1 - - jmp still - - -button: ; button - - mov eax,17 ; get id - mcall - - cmp ah,1 ; close program - jne noclose - or eax,-1 - mcall - noclose: - - call socket_commands - - jmp still - - -old_status dd 0x0 - -print_status: - - pusha - - mov eax,53 - mov ebx,6 - mov ecx,[socket] - mcall - - mov [status],eax - - cmp eax,[old_status] - je no_print - - mov [old_status],eax - - push eax - - mov eax,13 - mov ebx,360*65536+30 - mov ecx,151*65536+10 - mov edx,0xffffff - mcall - - pop ecx - mov eax,47 - mov ebx,3*65536 - mov edx,360*65536+151 - mov esi,0x000000 - - cmp [server_active],0 - je no_print - - mcall - - no_print: - - popa - - ret - - -socket_commands: - - cmp ah,22 ; open socket - jnz tst3 - mov eax,3 - mcall - - mov [server_active],1 - - mov eax,53 - mov ebx,5 - mov ecx,25 ; local port # - http - mov edx,0 ; no remote port specified - mov esi,0 ; no remote ip specified - mov edi,0 ; PASSIVE open - mcall - mov [socket], eax - - ret - tst3: - - - cmp ah,24 ; close socket - jnz no_24 - mov eax,53 - mov ebx,8 - mov ecx,[socket] - mcall - mov [header_sent],0 - mov [mail_rp],0 - mov [server_active],0 - - ret - no_24: - - - ret - - - -key: - - mov eax,2 - mcall - - jmp still - - - -read_incoming_data: - - pusha - - read_new_byte: - - call read_incoming_byte - cmp ecx,-1 - je no_data_in_buffer - - mov eax,[file_start] - mov [eax],bl - inc [file_start] - - cmp bl,10 - jne no_start_command - mov [cmd],1 - no_start_command: - - cmp bl,13 - jne no_end_command - mov eax,[cmd] - mov [eax+command-2],byte 0 - call analyze_command - mov edi,command - mov ecx,250 - mov eax,0 - cld - rep stosb - mov [cmd],0 - no_end_command: - - mov eax,[cmd] - cmp eax,250 - jge still - - mov [eax+command-2],bl - inc [cmd] - - jmp read_new_byte - - no_data_in_buffer: - - popa - - ret - - - - - -analyze_command: - - pusha - - mov [text_start],I_END - mov ecx,[rxs] - imul ecx,11 - mov [pos],ecx - - mov bl,13 - call print_character - mov bl,10 - call print_character - - cmp [cmd],2 - jbe nott - mov ecx,[cmd] - sub ecx,2 - mov esi,command+0 - newcmdc: - mov bl,[esi] - call print_character - inc esi - loop newcmdc - - nott: - - mov edx,I_END - call draw_channel_text - - cmd_len_ok: - - cmp [command],dword 'data' - je datacom - cmp [command],dword 'DATA' - je datacom - cmp [command],dword 'Data' - je datacom - jmp nodatacom - datacom: - inc [mail_rp] - mov eax,53 - mov ebx,7 - mov ecx,[socket] - mov edx,6 - mov esi,r354 - mcall - mov [cmd],0 - popa - ret - - nodatacom: - - cmp [mail_rp],0 - jne nomrp0 - mov eax,53 - mov ebx,7 - mov ecx,[socket] - mov edx,6 - mov esi,r250 - mcall - mov [cmd],0 - popa - ret - nomrp0: - - - - cmp [command],dword 'QUIT' - je yesquit - cmp [command],dword 'Quit' - je yesquit - cmp [command],dword 'quit' - je yesquit - jmp noquit - yq: - pusha - - yesquit: - - mov [close_connection],0 - - mov eax,53 - mov ebx,7 - mov ecx,[socket] - mov edx,6 - mov esi,r221 - mcall - mov [cmd],0 - - mov eax,5 - mov ebx,5 - mcall - - mov eax,53 - mov ebx,8 - mov ecx,[socket] - mcall - - mov eax,5 - mov ebx,5 - mcall - - mov eax,53 - mov ebx,8 - mov ecx,[socket] - mcall - - mov [header_sent],0 - mov [mail_rp],0 - - call save_file - - mov eax,5 - mov ebx,20 - mcall - - mov eax,53 - mov ebx,5 - mov ecx,25 ; local port # - http - mov edx,0 ; no remote port specified - mov esi,0 ; no remote ip specified - mov edi,0 ; PASSIVE open - mcall - mov [socket], eax - - popa - ret - noquit: - - - - cmp [command],byte '.' - jne nodot - mov eax,53 - mov ebx,7 - mov ecx,[socket] - mov edx,6 - mov esi,r250 - mcall - mov [cmd],0 - popa - ret - nodot: - - popa - ret - - -r250 db '250 ',13,10 -r221 db '221 ',13,10 -r220 db '220 ',13,10 -r354 db '354 ',13,10 - - - -draw_data: - - pusha - - add eax,[text_start] - mov [eax],bl - - popa - ret - - - - -print_text: - - pusha - - mov ecx,command-2 - add ecx,[cmd] - - ptr2: - mov bl,[eax] - cmp bl,dl - je ptr_ret - cmp bl,0 - je ptr_ret - call print_character - inc eax - cmp eax,ecx - jbe ptr2 - - ptr_ret: - - mov eax,[text_start] - mov [eax+120*60],byte 1 - - popa - ret - - - -print_character: - - pusha - - cmp bl,13 ; line beginning - jne nobol - mov ecx,[pos] - add ecx,1 - boll1: - sub ecx,1 - mov eax,ecx - xor edx,edx - mov ebx,[rxs] - div ebx - cmp edx,0 - jne boll1 - mov [pos],ecx - jmp newdata - nobol: - - cmp bl,10 ; line down - jne nolf - addx1: - add [pos],dword 1 - mov eax,[pos] - xor edx,edx - mov ecx,[rxs] - div ecx - cmp edx,0 - jnz addx1 - mov eax,[pos] - jmp cm1 - nolf: - no_lf_ret: - - - cmp bl,15 ; character - jbe newdata - - mov eax,[irc_data] - shl eax,8 - mov al,bl - mov [irc_data],eax - - mov eax,[pos] - call draw_data - - mov eax,[pos] - add eax,1 - cm1: - mov ebx,[scroll+4] - imul ebx,[rxs] - cmp eax,ebx - jb noeaxz - - mov esi,[text_start] - add esi,[rxs] - - mov edi,[text_start] - mov ecx,ebx - cld - rep movsb - - mov esi,[text_start] - mov ecx,[rxs] - imul ecx,61 - add esi,ecx - - mov edi,[text_start] - mov ecx,[rxs] - imul ecx,60 - add edi,ecx - mov ecx,ebx - cld - rep movsb - - mov eax,ebx - sub eax,[rxs] - noeaxz: - mov [pos],eax - - newdata: - - mov eax,[text_start] - mov [eax+120*60],byte 1 - - popa - ret - - - -read_incoming_byte: - - mov eax, 53 - mov ebx, 2 - mov ecx, [socket] - mcall - - mov ecx,-1 - - cmp eax,0 - je no_more_data - - mov eax, 53 - mov ebx, 3 - mov ecx, [socket] - mcall - - mov ecx,0 - - no_more_data: - - ret - - - -draw_window: - - pusha - - mov eax,12 - mov ebx,1 - mcall - - mov [old_status],300 - - mov eax,0 ; draw window - mov ebx,5*65536+400 - mov ecx,5*65536+200 - mov edx,0x13ffffff - mov edi,title - mcall - - mov eax,8 ; button: open socket - mov ebx,23*65536+22 - mov ecx,169*65536+10 - mov edx,22 - mov esi,0x55aa55 - mcall - - ; mov eax,8 ; button: close socket - mov ebx,265*65536+22 - mov edx,24 - mov esi,0xaa5555 - mcall - - mov eax,38 ; line - mov ebx,5*65536+395 - mov ecx,108*65536+108 - mov edx,0x000000 - mcall - - mov eax,4 - mov ebx,5*65536+123 ; info text - mov ecx,0x000000 - mov edx,text - mov esi,70 - newline: - mcall - add ebx,12 - add edx,70 - cmp [edx],byte 'x' - jne newline - - mov edx,I_END ; text from server - call draw_channel_text - - mov eax,12 - mov ebx,2 - mcall - - popa - - ret - - - - - -draw_channel_text: - - pusha - - mov eax,4 - mov ebx,10*65536+26 - mov ecx,[scroll+4] - mov esi,[rxs] - dct: - pusha - mov cx,bx - shl ecx,16 - mov cx,9 - mov eax,13 - mov ebx,10*65536 - mov bx,word [rxs] - imul bx,6 - mov edx,0xffffff - mcall - popa - push ecx - mov eax,4 - mov ecx,0 - cmp [edx],word '* ' - jne no_red - mov ecx,0xff0000 - no_red: - cmp [edx],word '**' - jne no_light_blue - cmp [edx+2],byte '*' - jne no_light_blue - mov ecx,0x0000ff - no_light_blue: - cmp [edx],byte '#' - jne no_blue - mov ecx,0x00ff00 - no_blue: - mcall - add edx,[rxs] - add ebx,10 - pop ecx - loop dct - - popa - ret - - - -text: - -db ' Incoming mails are written to /sys/smtps.txt ' -db ' The file can be fetched with TinyServer and a Html-browser. ' -db ' Timeout is set to 15 seconds. ' -db ' ' -db ' Open SMTP server port 25 Close SMTP ' -db 'x' ; <- END MARKER, DONT DELETE - - -irc_server_ip db 192,168,1,1 - -file_start dd 0x100000 - -files: - dd 2,0,0,?,0x100000 - db '/sys/smtps.txt',0 -filel: - dd 0,0,0,0x100000,0x100000 - db '/sys/smtps.txt',0 - - -server_active dd 0 - -status dd 0x0 -header_sent db 0 - -channel_temp: times 100 db 0 -channel_temp_length dd 0x0 - -close_connection dd 0x0 - -mail_rp dd 0 - -socket dd 0x0 - -bgc dd 0x000000 - dd 0x000000 - dd 0x00ff00 - dd 0x0000ff - dd 0x005500 - dd 0xff00ff - dd 0x00ffff - dd 0x770077 - -tc dd 0xffffff - dd 0xff00ff - dd 0xffffff - dd 0xffffff - dd 0xffffff - dd 0xffffff - dd 0xffffff - dd 0xffffff - -cursor_on_off dd 0x0 - -max_windows dd 20 - -thread_stack dd 0x9fff0 -thread_nro dd 1 -thread_screen dd I_END+120*80*1 - -action_header_blue db 10,'*** ',0 -action_header_red db 10,'*** ',0 - -action_header_short db 10,'* ',0 - -posx dd 0x0 -incoming_pos dd 0x0 -incoming_string: times 128 db 0 - -pos dd 0x0 - -text_start dd I_END -irc_data dd 0x0 -print db 0x0 -cmd dd 0x0 -rxs dd 56 - -res: db 0,0 -command: times 256 db 0x0 - -nick dd 0,0,0 -irc_command dd 0,0 - -command_position dd 0x0 -counter dd 0 -send_to_server db 0 - -channel_list: times 32*20 db 32 -send_to_channel dd 0x0 - -send_string: times 100 db 0x0 - -xpos dd 0 -attribute dd 0 -scroll dd 1 - dd 8 - -numtext db ' ' - -title db 'Tiny SMTP email server v ',version,0 - -I_END: diff --git a/programs/network_old/tftpa/trunk/build_en.bat b/programs/network_old/tftpa/trunk/build_en.bat deleted file mode 100644 index 001b81bf48..0000000000 --- a/programs/network_old/tftpa/trunk/build_en.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix en >lang.inc -@fasm tftpa.asm tftpa -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/tftpa/trunk/build_ru.bat b/programs/network_old/tftpa/trunk/build_ru.bat deleted file mode 100644 index 97a7a787ab..0000000000 --- a/programs/network_old/tftpa/trunk/build_ru.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix ru >lang.inc -@fasm tftpa.asm tftpa -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/tftpa/trunk/tftpa.asm b/programs/network_old/tftpa/trunk/tftpa.asm deleted file mode 100644 index 14f38b54c1..0000000000 --- a/programs/network_old/tftpa/trunk/tftpa.asm +++ /dev/null @@ -1,725 +0,0 @@ -; -; TFTP Wave Player -; -; Compile with FASM for Menuet -; -; -; 12.7.2002 - Audio system calls by VT -; - -use32 - org 0x0 - db 'MENUET01' ; header - dd 0x01 ; header version - dd START ; entry point - dd I_END ; image size - dd I_END+0x10000 ; required memory - dd I_END+0x10000 ; esp - dd 0x0 , 0x0 ; I_Param , I_Path - -include 'lang.inc' -include '..\..\..\macros.inc' - -delay dd 145 -wait_for dd 0x0 - -START: ; start of execution - - mov dword [prompt], p9 - mov dword [promptlen], p9len - p9 - -red: - call draw_window ; at first, draw the window - -still: - - mov eax,10 ; wait here for event - mcall - - cmp eax,1 ; redraw request ? - jz red - cmp eax,2 ; key in buffer ? - jz key - cmp eax,3 ; button in buffer ? - jz button - - jmp still -key: ; Keys are not valid at this part of the - mov eax,2 ; loop. Just read it and ignore - mcall - jmp still - -button: ; button - mov eax,17 ; get id - mcall - - cmp ah,1 ; button id=1 ? - jnz noclose - - - ; close socket before exiting - mov eax, 53 - mov ebx, 1 - mov ecx, [socketNum] - mcall - - mov [socketNum], dword 0 - - - or eax,-1 ; close this program - mcall - -noclose: - cmp ah,2 ; copy file to local machine? - jnz nocopyl - - mov dword [prompt], p5 - mov dword [promptlen], p5len - p5 - call draw_window ; - - ; Copy File from Remote Host to this machine - call translateData ; Convert Filename & IP address - mov edi, tftp_filename + 1 - mov [edi], byte 0x01 ; setup tftp msg - call copyFromRemote - - jmp still - -nocopyl: - - - cmp ah,4 - jz f1 - cmp ah,5 - jz f2 - jmp nof12 - - f1: - mov [addr],dword source - mov [ya],dword 35 - jmp rk - - f2: - mov [addr],dword destination - mov [ya],dword 35+16 - - rk: - mov ecx,15 - mov edi,[addr] - mov al,' ' - rep stosb - - call print_text - - mov edi,[addr] - - f11: - mov eax,10 - mcall - cmp eax,2 - jz fbu - jmp still - fbu: - mov eax,2 - mcall ; get key - shr eax,8 - cmp eax,8 - jnz nobs - cmp edi,[addr] - jz f11 - sub edi,1 - mov [edi],byte ' ' - call print_text - jmp f11 - nobs: - cmp eax,dword 31 - jbe f11 - cmp eax,dword 95 - jb keyok - sub eax,32 - keyok: - mov [edi],al - - call print_text - - add edi,1 - mov esi,[addr] - add esi,15 - cmp esi,edi - jnz f11 - - jmp still - -print_text: - - mov eax,13 - mov ebx,103*65536+15*6 - mov ecx,[ya] - shl ecx,16 - mov cx,8 - mov edx,0x224466 - mcall - - mov eax,4 - mov ebx,103*65536 - add ebx,[ya] - mov ecx,0xffffff - mov edx,[addr] - mov esi,15 - mcall - - ret - - - nof12: - jmp still - - -;*************************************************************************** -; Function -; translateData -; -; Description -; Coverts the filename and IP address typed in by the user into -; a format suitable for the IP layer. -; -; The filename, in source, is converted and stored in tftp_filename -; The host ip, in destination, is converted and stored in tftp_IP -; -;*************************************************************************** -translateData: - - ; first, build up the tftp command string. This includes the filename - ; and the transfer protocol - - - ; First, write 0,0 - mov al, 0 - mov edi, tftp_filename - mov [edi], al - inc edi - mov [edi], al - inc edi - - ; Now, write the file name itself, and null terminate it - mov ecx, 15 - mov ah, ' ' - mov esi, source - -td001: - lodsb - stosb - cmp al, ah - loopnz td001 - - cmp al,ah ; Was the entire buffer full of characters? - jne td002 - dec edi ; No - so remove ' ' character - -td002: - mov [edi], byte 0 - inc edi - mov [edi], byte 'O' - inc edi - mov [edi], byte 'C' - inc edi - mov [edi], byte 'T' - inc edi - mov [edi], byte 'E' - inc edi - mov [edi], byte 'T' - inc edi - mov [edi], byte 0 - - mov esi, tftp_filename - sub edi, esi - mov [tftp_len], edi - - - ; Now, convert the typed IP address into a real address - ; No validation is done on the number entered - ; ip addresses must be typed in normally, eg - ; 192.1.45.24 - - xor eax, eax - mov dh, 10 - mov dl, al - mov [tftp_IP], eax - - ; 192.168.24.1 1.1.1.1 1. 9.2.3. - - mov esi, destination - mov edi, tftp_IP - - mov ecx, 4 - -td003: - lodsb - sub al, '0' - add dl, al - lodsb - cmp al, '.' - je ipNext - cmp al, ' ' - je ipNext - mov dh, al - sub dh, '0' - mov al, 10 - mul dl - add al, dh - mov dl, al - lodsb - cmp al, '.' - je ipNext - cmp al, ' ' - je ipNext - mov dh, al - sub dh, '0' - mov al, 10 - mul dl - add al, dh - mov dl, al - lodsb - -ipNext: - mov [edi], dl - inc edi - mov dl, 0 - loop td003 - - ret - - - -;*************************************************************************** -; Function -; copyFromRemote -; -; Description -; -;*************************************************************************** -copyFromRemote: - - mov eax,0x20000-512 - mov [fileposition], eax - - ; Get a random # for the local socket port # - mov eax, 3 - mcall - mov ecx, eax - shr ecx, 8 ; Set up the local port # with a random # - - ; open socket - mov eax, 53 - mov ebx, 0 - mov edx, 69 ; remote port - mov esi, [tftp_IP] ; remote IP ( in intenet format ) - mcall - - mov [socketNum], eax - - ; make sure there is no data in the socket - there shouldn't be.. - -cfr001: - mov eax, 53 - mov ebx, 3 - mov ecx, [socketNum] - mcall ; read byte - - mov eax, 53 - mov ebx, 2 - mov ecx, [socketNum] - mcall ; any more data? - - cmp eax, 0 - jne cfr001 ; yes, so get it - - ; Now, request the file - mov eax, 53 - mov ebx, 4 - mov ecx, [socketNum] - mov edx, [tftp_len] - mov esi, tftp_filename - mcall - -cfr002: - - mov eax,23 ; wait here for event - mov ebx,1 ; Time out after 10ms - mcall - - cmp eax,1 ; redraw request ? - je cfr003 - cmp eax,2 ; key in buffer ? - je cfr004 - cmp eax,3 ; button in buffer ? - je cfr005 - - ; Any data to fetch? - mov eax, 53 - mov ebx, 2 - mov ecx, [socketNum] - mcall - - cmp eax, 0 - je cfr002 - - push eax ; eax holds # chars - - ; Update the text on the display - once - mov eax, [prompt] - cmp eax, p3 - je cfr008 - mov dword [prompt], p3 - mov dword [promptlen], p3len - p3 - call draw_window ; - -cfr008: - ; we have data - this will be a tftp frame - - ; read first two bytes - opcode - mov eax, 53 - mov ebx, 3 - mov ecx, [socketNum] - mcall ; read byte - - mov eax, 53 - mov ebx, 3 - mov ecx, [socketNum] - mcall ; read byte - - pop eax - ; bl holds tftp opcode. Can only be 3 (data) or 5 ( error ) - - cmp bl, 3 - jne cfrerr - - push eax - - ; do data stuff. Read block #. Read data. Send Ack. - mov eax, 53 - mov ebx, 3 - mov ecx, [socketNum] - mcall ; read byte - - mov [blockNumber], bl - - mov eax, 53 - mov ebx, 3 - mov ecx, [socketNum] - mcall ; read byte - - mov [blockNumber+1], bl - -cfr007: - mov eax, 53 - mov ebx, 3 - mov ecx, [socketNum] - mcall ; read byte - - mov esi, [fileposition] - mov [esi], bl - mov [esi+1],bl - add dword [fileposition],2 - - mov eax, 53 - mov ebx, 2 - mov ecx, [socketNum] - mcall ; any more data? - - cmp eax, 0 - jne cfr007 ; yes, so get it - - cmp [fileposition],0x20000+0xffff - jb get_more_stream - -wait_more: - - mov eax,5 ; wait for correct timer position - ; to trigger new play block - mov ebx,1 - mcall - - mov eax,26 - mov ebx,9 - mcall - - cmp eax,[wait_for] - jb wait_more - - add eax,[delay] - mov [wait_for],eax - - mov esi,0x20000 - mov edi,0x10000 - mov ecx,65536 - cld - rep movsb - - mov eax,55 - mov ebx,0 - mov ecx,0x10000 - mcall - - mov eax,55 - mov ebx,1 - mcall - - mov [fileposition],0x20000 - -get_more_stream: - - ; write the block number into the ack - mov al, [blockNumber] - mov [ack + 2], al - - mov al, [blockNumber+1] - mov [ack + 3], al - - ; send an 'ack' - mov eax, 53 - mov ebx, 4 - mov ecx, [socketNum] - mov edx, ackLen - ack - mov esi, ack - mcall - - ; If # of chars in the frame is less that 516, - ; this frame is the last - pop eax - cmp eax, 516 - je cfr002 - - ; Write the file - mov eax, 33 - mov ebx, source - mov edx, [filesize] - mov ecx, I_END + 512 - mov esi, 0 - mcall - - jmp cfrexit - -cfrerr: - ; simple implementation on error - just read all data, and return - mov eax, 53 - mov ebx, 3 - mov ecx, [socketNum] - mcall ; read byte - - mov eax, 53 - mov ebx, 2 - mov ecx, [socketNum] - mcall ; any more data? - - cmp eax, 0 - jne cfrerr ; yes, so get it - - jmp cfr006 ; close socket and close app - -cfr003: ; redraw request - call draw_window - jmp cfr002 - -cfr004: ; key pressed - mov eax,2 ; just read it and ignore - mcall - jmp cfr002 - -cfr005: ; button - mov eax,17 ; get id - mcall - - cmp ah,1 ; button id=1 ? - jne cfr002 ; If not, ignore. - -cfr006: - ; close socket - mov eax, 53 - mov ebx, 1 - mov ecx, [socketNum] - mcall - - mov [socketNum], dword 0 - - mov eax,-1 ; close this program - mcall - - jmp $ - -cfrexit: - ; close socket - mov eax, 53 - mov ebx, 1 - mov ecx, [socketNum] - mcall - - mov [socketNum], dword 0 - - mov dword [prompt], p4 - mov dword [promptlen], p4len - p4 - call draw_window ; - - ret - - - - -; ********************************************* -; ******* WINDOW DEFINITIONS AND DRAW ******** -; ********************************************* - - -draw_window: - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,1 ; 1, start of draw - mcall - - ; DRAW WINDOW - mov eax,0 ; function 0 : define and draw window - mov ebx,100*65536+230 ; [x start] *65536 + [x size] - mov ecx,100*65536+170 ; [y start] *65536 + [y size] - mov edx,0x14224466 ; color of work area RRGGBB - mov edi,title - mcall - - mov eax,8 ; DELETE BUTTON - mov ebx,20*65536+190 - mov ecx,111*65536+15 - mov edx,2 - mov esi,0x557799 - mcall - - mov ebx,200*65536+10 - mov ecx,34*65536+10 - mov edx,4 - mcall - - mov ecx,50*65536+10 - mov edx,5 - mcall - - - ; Copy the file name to the screen buffer - ; file name is same length as IP address, to - ; make the math easier later. - cld - mov esi,source - mov edi,text+13 - mov ecx,15 - rep movsb - - - ; copy the IP address to the screen buffer - mov esi,destination - mov edi,text+40+13 - mov ecx,15 - rep movsb - - ; copy the prompt to the screen buffer - mov esi,[prompt] - mov edi,text+280 - mov ecx,[promptlen] - rep movsb - - ; Re-draw the screen text - cld - mov eax,4 - mov ebx,25*65536+35 ; draw info text with function 4 - mov ecx,0xffffff - mov edx,text - mov esi,40 - newline: - mcall - add ebx,16 - add edx,40 - cmp [edx],byte 'x' - jnz newline - - - mov eax,12 ; function 12:tell os about windowdraw - mov ebx,2 ; 2, end of draw - mcall - - ret - - -; DATA AREA - -source db 'HEAT8M22.WAV ' -destination db '192.168.1.24 ' - - -tftp_filename: times 15 + 9 db 0 -tftp_IP: dd 0 -tftp_len: dd 0 - -addr dd 0x0 -ya dd 0x0 - -fileposition dd 0 ; Points to the current point in the file -filesize dd 0 ; The number of bytes written / left to write -fileblocksize dw 0 ; The number of bytes to send in this frame - -text: - db 'SOURCE FILE: xxxxxxxxxxxxxxx ' - db 'HOST IP ADD: xxx.xxx.xxx.xxx ' - db ' ' - db 'WAVE FORMAT: 8 BIT,MONO,22050HZ ' - db ' ' - db ' SERVER -> PLAY FILE ' - db ' ' - db ' ' - db 'x' ; <- END MARKER, DONT DELETE - - -title db 'TFTP Wave Player',0 - -prompt: dd 0 -promptlen: dd 0 - - -p1: db 'Waiting for Command ' -p1len: - -p9: db 'Define SB with setup' -p9len: - -p2: db 'Sending File ' -p2len: - -p3: db 'Playing File ' -p3len: - -p4: db 'Complete ' -p4len: - -p5: db 'Contacting Host... ' -p5len: - -p6: db 'File not found. ' -p6len: - -ack: - db 00,04,0,1 -ackLen: - -socketNum: - dd 0 - -blockNumber: - dw 0 - -; This must be the last part of the file, because the blockBuffer -; continues at I_END. -blockBuffer: - db 00, 03, 00, 01 -I_END: - - - - - - - diff --git a/programs/network_old/ym/trunk/build_en.bat b/programs/network_old/ym/trunk/build_en.bat deleted file mode 100644 index 057c7bd811..0000000000 --- a/programs/network_old/ym/trunk/build_en.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix en >lang.inc -@fasm ym.asm ym -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/ym/trunk/build_ru.bat b/programs/network_old/ym/trunk/build_ru.bat deleted file mode 100644 index 41ba85ed7b..0000000000 --- a/programs/network_old/ym/trunk/build_ru.bat +++ /dev/null @@ -1,5 +0,0 @@ -@erase lang.inc -@echo lang fix ru >lang.inc -@fasm ym.asm ym -@erase lang.inc -@pause \ No newline at end of file diff --git a/programs/network_old/ym/trunk/ym.asm b/programs/network_old/ym/trunk/ym.asm deleted file mode 100644 index f91510da54..0000000000 --- a/programs/network_old/ym/trunk/ym.asm +++ /dev/null @@ -1,1069 +0,0 @@ -; Yahoo Messanger for MenuetOS -; Compile with FASM for Menuet - -;B+ System header -use32 - org 0x0 - db 'MENUET01' ; header - dd 0x01 ; header version - dd START ; entry point - dd I_END ; image size - dd I_END+0x10000 ; required memory - dd I_END+0x10000 ; esp - dd 0x0 , 0x0 ; I_Param , I_Path - -;E:. -include 'lang.inc' -include '..\..\..\macros.inc' -;B+ Definitions -v_sp equ 330 -h_sp equ 400 -fr_sp equ 120 - -line_wid equ 45 -fr_max_lines equ 17 - -;memory -sys_colors equ I_END -text_zone equ sys_colors+4*10 -;friend_zone equ text_zone+45*25 ;uncom - ;friend_zone+32*fr_max_lines -;E:. - -START: -;B+ Main execution - - mov ebx,3 - mov ecx,sys_colors - mov edx,10*4 - mov eax,48 - mcall - - call clear_text - -red: - call draw_window -still: - mov ebx,50 - mov eax,23 - mcall - - cmp eax,1 - je red - cmp eax,2 - je key - cmp eax,3 - je button - - call check_message - - jmp still - -key: - mov eax,2 - mcall - cmp [is_connect],0 - je still - call send_key_string - jmp still - -button: - mov eax,17 - mcall - - cmp ah,1 - jne noclose - or eax,-1 - mcall - jmp $ -noclose: - -;B+ Check friend - cmp ah,2 - jb .no_friend - cmp ah,100 - ja .no_friend - - ;pressed number - sub ah,2 - shr ax,8 - - ;find real name - mov [friend_p],friend_zone - mov edi,0 -.next: - push [friend_p] - call test_friend - jc .group - inc edi -.group: - cmp di,ax - pop ebx - jbe .next - inc ebx - ;exact place - mov ecx,[friend_p] - sub ecx,ebx - dec ecx - - ;Insert in send - cmp al,10 - jb .good - add al,'A'-'0'-10 -.good: - add al,'0' - mov [view_text+1],al - - ;Clear old a. friend - pusha - mov ebx,(h_sp-140) shl 16 + 132 - mov ecx,(v_sp-53) shl 16 + 10 - mov edx,[sys_colors+4*5] - mov eax,13 - mcall - popa - - ;show item - mov [f_name_b],ebx - mov [f_name_l],ecx - call show_a_friend - jmp still - -.no_friend: -;E:. - -;B+ Check User / Password - cmp ah,103 - je input_username - cmp ah,104 - je input_password -;E:. - -;B+ Connect / Dis... - cmp ah,101 - je yahoo_c - cmp ah,102 - je yahoo_d -;E:. - - jmp still -;E:. - -draw_window: -;B+ Draw window - - mov ebx,1 - mov eax,12 - mcall - - xor eax,eax ;DRAW WINDOW - mov ebx,150*65536+h_sp - mov ecx,100*65536+v_sp - mov edx,[sys_colors+4*5] - or edx,0x14000000 - mov edi,title - mcall - -;B+ Friend panel - mov ebx,(h_sp-fr_sp) shl 16 + 3 - mov ecx,20 shl 16 + v_sp-31 -56 - mov edx,[sys_colors+4*9] - mov eax,13 - mcall - call show_friends -;E:. - -;B+ Input panel - mov ebx,5 shl 16 + h_sp-9 - mov ecx,(v_sp-31 -33-3) shl 16 + 3 - mov edx,[sys_colors+4*9] - mov eax,13 - mcall - mov ebx,(h_sp-(fr_sp-12)*8/6) shl 16 + 4 - mov ecx,(v_sp-31-33) shl 16 + 30 - mcall - mov ebx,(h_sp-8) shl 16 + 4 - mcall - call show_a_friend - call show_string -;E:. - -;B+ Login panel - mov ebx,5 shl 16 + h_sp-9 - mov ecx,(v_sp-35) shl 16 + 31 - mov edx,[sys_colors+4*9] - mov eax,13 - mcall - mov ebx,(5+2+8+(user_txt_end-user_txt)*6) shl 16 + 6*15+7 - mov ecx,(v_sp-32) shl 16 + 12 - mov edx,[sys_colors+4*5] - mcall - mov ebx,(171+2+8+(psw_txt_end-psw_txt)*6) shl 16 + 6*23+7 - mov ecx,(v_sp-32) shl 16 + 12 - mcall - - ;connect button - mov ebx,(h_sp-128) shl 16 + (con_txt_end-con_txt)*6 + 7 - mov ecx,(v_sp-18) shl 16 + 12 - mov edx,101 - mov esi,[sys_colors+4*6] - mov eax,8 - mcall - ;disconnect button - shl ebx,16 - add ebx,(h_sp-128+3) shl 16 + (dis_txt_end-dis_txt)*6 + 7 - mov edx,102 - mcall - ;user button - mov ebx,8 shl 16 + (user_txt_end-user_txt)*6 + 5 - mov ecx,(v_sp-18-15) shl 16 + 12 - mov edx,103 - mcall - ;password button - mov ebx,174 shl 16 + (psw_txt_end-psw_txt)*6 + 5 - mov edx,104 - mcall - - ;login text - mov ebx,11 shl 16 + v_sp-15 - mov ecx,[sys_colors+4*7] - mov edx,login_txt - mov esi,login_txt_end-login_txt - mov eax,4 - mcall - ;user text - mov ebx,11 shl 16 + v_sp-15-15 - mov edx,user_txt - mov esi,user_txt_end-user_txt - mcall - ;password text - mov ebx,(174+5) shl 16 + v_sp-15-15 - mov edx,psw_txt - mov esi,psw_txt_end-psw_txt - mcall - ;connect text - mov ebx,(h_sp-128+5) shl 16 + v_sp-15 - mov edx,con_txt - mov esi,con_txt_end-con_txt - mcall - ;disconnect text - add ebx,((con_txt_end-con_txt)*6+8 + 3) shl 16 - mov edx,dis_txt - mov esi,dis_txt_end-dis_txt - mcall - - call show_username - call show_password -;E:. - - call show_text - - mov ebx,2 - mov eax,12 - mcall - ret -;E:. - -show_friends: -;B+ Show friend list - cmp [last_friend_place],friend_zone - jne .yes_show - ret -.yes_show: - - ;show button - mov ebx,(h_sp-fr_sp+5) shl 16 + 10 - mov ecx,(20+3) shl 16 + 10 - mov edx,2 - mov esi,[sys_colors+4*6] - mov eax,8 - mov edi,0 - - mov [friend_p],friend_zone -.next_button: - call test_friend - jc .no_b - mcall - inc edx -.no_b: - inc edi - add ecx,15 shl 16 - cmp edi,[last_friend_line] - jne .next_button - - ;show numbers - mov [digit],'0'-1 - mov ebx,(h_sp-fr_sp+8) shl 16 + (20+3)+2 - ;mov ecx,[sys_colors+4*7] - mov edx,digit - mov esi,1 - mov eax,4 - mov edi,0 - - mov [friend_p],friend_zone - push edx -.next_digit: - mov edx,[friend_p] - call test_friend - cmp [edx],byte 1 - je .no_item - inc [digit] - cmp [digit],'9'+1 - jne .good - mov [digit],'A' -.good: - ;add ebx,1 shl 16 - cmp [edx],byte 2 - mov edx,[esp] - mov ecx,[sys_colors+4*6] - call hi_light - jne .no_online - mov ecx,[sys_colors+4*7] - ;mcall - ;or ecx,0x10000000 -.no_online: - ;sub ebx,1 shl 16 - mcall - ;and ecx,not 0x10000000 -.no_item: - add ebx,15 - inc edi - cmp edi,[last_friend_line] - jne .next_digit - add esp,4 - - ;show names - mov ebx,(h_sp-fr_sp+8 + 10) shl 16 + (20+3)+2 - mov ecx,[sys_colors+4*8] - mov eax,4 - mov edi,0 - - mov [friend_p],friend_zone - mov esi,4 -.next_name: - mov edx,[friend_p] - call test_friend - mov esi,[friend_p] - inc edx - sub esi,edx - - and ebx,0xffff - or ebx,(h_sp-fr_sp+8 + 10) shl 16 - cmp [edx-1],byte 1 - jne .no_group - sub ebx,12 shl 16 -.no_group: - mcall - add ebx,15 - inc edi - cmp edi,[last_friend_line] - jne .next_name - - ret -.p db 16 ;> - -digit db '0' -;last_friend_line dd 0x0 ;uncom - -test_friend: - push eax - mov eax,[friend_p] - clc - cmp [eax],byte 1 - jne .no_hide - stc -.no_hide: - pushf -.next: - inc [friend_p] - mov eax,[friend_p] - cmp [eax],byte 0 - jne .next - inc [friend_p] - popf - pop eax - ret - -friend_p dd 0x0 - -hi_light: - pushf - add ecx,0x400000 - test ecx,0xb00000 - jnz .no_red_plus - sub ecx,0x400000 -.no_red_plus: - add ecx,0x004000 - test ecx,0x00b000 - jnz .no_green_plus - sub ecx,0x008000 -.no_green_plus: - add ecx,0x000040 ;80 - test ecx,0x0000b0 ;80 - jnz .no_blue_plus - sub ecx,0x000040 ;100 -.no_blue_plus: - popf - ret -;E:. - -;B+ Message text op. -clear_text: - mov edi,text_zone - mov ecx,45*26 - mov al,0 - cld -rep stosb - ret - -show_text: - mov ebx,7 shl 16 + (20+3) ;+ 2 - mov ecx,[sys_colors+4*8] - mov edx,text_zone+45 - mov esi,45 - mov eax,4 - mov edi,0 -.next_line: - cmp [edx-1],byte 0 - jne .shift - mcall -.next: - add ebx,10 - add edx,45 - inc edi - cmp edi,24 - jne .next_line - ret -.shift: - add ebx,3 shl 16 - mcall - sub ebx,3 shl 16 - jmp .next - -scroll_text: - pusha - ;move text - mov edi,text_zone - mov esi,edi - add esi,line_wid - mov ecx,line_wid*24 - cld -rep movsb - ;clear last line - mov ecx,line_wid - mov al,0 -rep stosb - ;clear zone - mov ebx,7 shl 16 + line_wid*6+2 - mov ecx,(25-2) shl 16 + 24*10-2 +2 - mov edx,[sys_colors+4*5] - mov eax,13 - mcall - ;show text - call show_text - popa - ret - -show_message: - ;ebx - begin - ;ecx - length - - mov eax,[.m_p] - add eax,ecx -.test: - cmp eax,text_zone+line_wid*25-1 - jb .good1 - call scroll_text - sub eax,line_wid - sub [.m_p],line_wid - jmp .test -.good1: - cmp [.m_p],text_zone+line_wid - jae .good2 - add ebx,line_wid - add [.m_p],line_wid - sub ecx,line_wid - jmp .good1 -.good2: - ; - push ecx - mov esi,ebx - mov edi,[.m_p] - cld -rep movsb - pop ecx - - ;find v place - mov eax,[.m_p] - sub eax,text_zone+line_wid - mov ebx,line_wid - xor edx,edx - div ebx - xor edx,edx - mov ebx,10 - mul ebx - mov ebx,eax - ;show line - add ebx,7 shl 16 + 23 ;+2 - mov ecx,[sys_colors+4*8] - mov edx,[.m_p] - mov esi,line_wid - mov eax,4 - mcall - add ebx,3 shl 16 -.next_line: - add ebx,10 - add edx,line_wid - cmp [edx-1],byte 0 - je .good3 - mcall - jmp .next_line -.good3: - mov [.m_p],edx - ret - -.m_p dd text_zone+45 -;E:. - -;B+ Show current people -show_a_friend: - mov ebx,(h_sp-137) shl 16 + v_sp-52 - mov ecx,[sys_colors+4*8] - or ecx,0x10000000 - mov edx,[f_name_b] - mov esi,[f_name_l] - mov eax,4 - mcall - ret - -f_name_b dd fnb -f_name_l dd 10 - -fnb: - db 'yahoo_help' -;E:. - -;B+ Input strings -send_key_string: -;B+ Test active keys - cmp ah,13 - je send_text - cmp ah,27 - je clear_input_text - cmp ah,8 - je .backs_text -;E:. - - mov [.this_c],ah - cmp [.c_pl],123 - jne .show - ret -.show: - - ;save char - mov ebx,[.c_pl] - mov [in_text+ebx],ah - inc [.c_pl] - - ;show char - mov ebx,[.xy] - mov ecx,[sys_colors+4*8] - mov edx,.this_c - mov esi,1 - mov eax,4 - mcall - ; - cmp [.c_pl],41 - je .new_line - cmp [.c_pl],82 - je .new_line - add [.xy],6 shl 16 - call show_cursor - ret - ;;; -.new_line: - and [.xy],0x0000ffff - add [.xy],9 shl 16 + 9 - call show_cursor - ret - -.this_c db ' ' -.c_pl dd 0x0 -.xy dd 7 shl 16 + v_sp-62 - -;B+ Special keys - action -.backs_text: - ; - cmp [.c_pl],0 - jne .yes_back - ret -.yes_back: - cmp [.c_pl],41 - je .back_line - add [.xy],2 shl 16 - cmp [.c_pl],82 - je .back_line - sub [.xy],2 shl 16 -.next: - ; - sub [.xy],6 shl 16 - dec [.c_pl] - mov eax,[.c_pl] - mov bl,[in_text+eax] - mov [.this_c],bl - mov ebx,[.xy] - mov ecx,[sys_colors+4*5] - mov edx,.this_c - mov esi,1 - mov eax,4 - mcall - mov ebx,[.c_pl] - mov [in_text+ebx],byte 0 - jmp show_cursor - ; -.back_line: - ;and [.xy],0x0000ffff - sub [.xy],9 - add [.xy],(253-9) shl 16 - jmp .next - -send_text: - ;show text to message board - mov ebx,view_text - mov ecx,[send_key_string.c_pl] - add ecx,3 - call show_message - - ;send message to internet - ;call internet_send - -clear_input_text: - ;prepare new message - ;; clear memory - mov edi,in_text - mov ecx,255/4 - xor eax,eax - cld -rep stosd - ;; clear zone - mov ebx,5 shl 16 + h_sp-140-9 - mov ecx,(v_sp-31 -33) shl 16 + 29 - mov edx,[sys_colors+4*5] - mov eax,13 - mcall - ;; move cursor - mov ebx,7 shl 16 + v_sp-62 - mov [send_key_string.xy],ebx - mov [show_cursor.old_xy],ebx - ;; clear place - xor ebx,ebx - mov [send_key_string.c_pl],ebx - -; call show_cursor -; ret -;E:. - -show_cursor: - ;login text -; mov ebx,4 shl 16 + v_sp-64 - mov ebx,[.old_xy] - sub ebx,3 shl 16 + 2 - mov ecx,[sys_colors+4*5] - mov edx,curs - mov esi,1 - mov eax,4 - mcall - add ebx,4 - mcall - mov ebx,[send_key_string.xy] - mov [.old_xy],ebx - sub ebx,3 shl 16 + 2 - mov ecx,0xffffff;[sys_colors+4*8] - mcall - add ebx,4 - mcall - ret - -.old_xy dd 7 shl 16 + v_sp-62 -curs db '|' - -show_string: - mov ebx,7 shl 16 + v_sp-62 - mov ecx,[sys_colors+4*8] - mov edx,in_text - mov esi,41 - mov eax,4 - mcall - add ebx,2 shl 16 + 9 - add edx,41 - mcall - add ebx,9 - add edx,41 - mcall - call show_cursor - ret - -view_text db 16,'?',16 -in_text: times 255 db 0 -;E:. - -;B+ Friends... -add_friend: - ;ebx - begin - ; [ebx]=1 - Group name - ; [ebx]=2 - Active user - ; [ebx]=other - Non active user - ;ecx - length - cmp [last_friend_line],fr_max_lines-1 - je .no_more - test ecx,not 31 - jnz .no_more ; very long id name - inc [last_friend_line] - mov esi,ebx - mov edi,[last_friend_place] - inc ecx - add [last_friend_place],ecx - dec ecx - cld -rep movsb - mov al,0 - stosb - stosb -.no_more: - ret - -last_friend_place dd fr_e ;del -;last_friend_place dd friend_zone ;uncom - -find_friend: - push ebx ecx - mov edx,friend_zone - mov esi,0 - mov edi,[last_friend_line] -; inc edi ;? uncom ? -.next_name: - cmp [edx],byte 1 - je .no_find ;Group - inc edx - dec ecx -.next: - mov al,[edx] - mov ah,[ebx] - cmp ah,al - jne .no_find - inc edx - inc ebx - dec ecx - jne .next - cmp [edx],byte 0 - jne .no_find - ;find - mov eax,esi - cmp esi,9 - ja .letter - add al,'0' - ret -.letter: - add al,'A'-10 - ret -.no_find: - cmp [edx],byte 0 - je .go_next - inc edx - jmp .no_find -.go_next: - dec edi - je .noting - mov ebx,[esp+4] - mov ecx,[esp] - inc esi - jmp .next_name -.noting: - mov al,'!' - pop ecx ebx - ret - -;E:. - -;B+ Connect / Disconnect -yahoo_c: - call connect - cmp eax,0 - jne still ;not connected - mov [is_connect],0x1 - jmp still - -yahoo_d: - cmp [is_connect],0x0 - je .noting - - call disconnect - ; - ;stop connection - mov [is_connect],0x0 - ; - ;clear text - mov ah,27 - call send_key_string - ; - ;clear friends -; mov [last_friend_line],0x0 ;uncom -; mov [last_friend_place],friend_zone ;uncom - ; - ;set dafaut friend - mov [f_name_b],fnb - mov [f_name_l],10 - mov [view_text+1],'?' - - call draw_window - -.noting: - jmp still - -is_connect dd 0x0 -;E:. - -;B+ Load username / password -input_username: - mov edi,username - mov [edi],byte '_' - inc edi - mov ecx,16-1 - cld -rep stosb - mov [.unp],username - -.next: - call show_username - - ;get enen - mov eax,10 - mcall - - cmp eax,1 - je .end - cmp eax,3 - je .end - - ;key - mov eax,2 - mcall - - cmp ah,13 - je .end - cmp ah,8 - jne .no_back - cmp [.unp],username - je .next - dec [.unp] - mov ebx,[.unp] - mov [ebx],byte '_' - mov [ebx+1],byte 0 - jmp .next -.no_back: - - cmp [.unp],username+16 - je .next - - cmp ah,'0' - jb .bad - - mov ebx,[.unp] - mov [ebx],ah - mov [ebx+1],byte '_' - inc [.unp] - -.bad: - jmp .next -.end: - ;del cursor - mov ebx,[.unp] - mov [ebx],byte 0 - call show_username - ;clear password - mov [password],byte 0 - ;hide password - mov ebx,(2+41*6) shl 16 + v_sp-15-15 - mov ecx,[sys_colors+4*5] - mov edx,f_password - mov esi,4 - mov eax,4 - mcall - jmp still -.unp dd username - -show_username: - ;hide - mov ebx,(4+12*6-1) shl 16 + 16*6+1 - mov ecx,(v_sp-15-15) shl 16 + 9 - mov edx,[sys_colors+4*5] - mov eax,13 - mcall - ;show - mov ebx,(4+12*6) shl 16 + v_sp-15-15 - mov ecx,[sys_colors+4*8] - mov edx,username - mov esi,16 - mov eax,4 - mcall - ret - -username: times (16+1) db 0 - - - -input_password: - ;clear - mov edi,password - mov ecx,24 - mov al,0 - cld -rep stosb - mov [.unp],password - ;hide password - mov ebx,(2+41*6) shl 16 + v_sp-15-15 - mov ecx,[sys_colors+4*5] - mov edx,f_password - mov esi,4 - mov eax,4 - mcall - -.next: - ;get enen - mov eax,10 - mcall - - cmp eax,1 - je still - cmp eax,3 - je still - - ;key - mov eax,2 - mcall - - cmp [.unp],password+24 - je .no_next - cmp ah,13 - jne .no_still -.no_next: - call show_password - jmp still -.no_still: - - mov ebx,[.unp] - mov [ebx],ah - inc [.unp] - jmp .next - -.unp dd password - -show_password: - cmp [password],byte 0 - je .end - mov ebx,(2+41*6) shl 16 + v_sp-15-15 - mov ecx,[sys_colors+4*8] - mov edx,f_password - mov esi,4 - mov eax,4 - mcall -.end: - ret - -f_password db '####' - -password: times (24+1) db 0 -;E:. - - - -;B+ INTERNET - -;Functions: - ;call add_friend - ; ebx+1 - pointer to name - ; [ebx]=1 - Group name - ; [ebx]=2 - Active user - ; [ebx]=other - Non active user - ; ecx - length - ; - ;call show_message - ; ebx - begin of string - ; ecx - length - ; ----- - ; NOTE Use format: - ; () - ; where: - ; - friend user char - ; - message from friend - ; - ;call find_friend - ; ebx - begin of name - ; ecx - length - ; ret: - ; al - friend user char - ; ----- - ; NOTE currenly don't show message if al='!' - -;Variables - ;usernave (zero terminated) - ;password (zero terminated) - ;f_name_b - current friend user (to send) - ;f_name_l - ^ length - -;Memory - ; (friend_zone+32*fr_max_lines) < addr: [addr] - free - - -connect: - ;conect to yahoo - ;return 0 if OK - ;return <>0 if some other event (sys.func.23) - mov eax,0 - ret - -disconnect: - ;disconnect - ret - -check_message: - ;test receive messages - ret - -;E:. - - - -;B+ Test data ;del -friend_zone: ;del - db 1,'First:',0 ;del - db 2,'hahaha',0 ;del - db 3,'second',0 ;del - db 3,'menuetos',0 ;del - db 1,'Treti:',0 ;del - db 2,'fourth',0 ;del -fr_e db 0 ;del - ;del -times 200 db 0 ;del - ;del -last_friend_line dd 0x6 ;del - -title db 'Messenger (Yahoo Compatible)',0 - -;User / Password -login_txt db 'STATUS: SESSION: ___.___.___.___' - ;VISIBLE - ;HIDDEN -login_txt_end: -user_txt db 'USER ID ->' -user_txt_end: -psw_txt db 'PASSWORD ->' -psw_txt_end: -con_txt db 'CONNECT' -con_txt_end: -dis_txt db 'DISCONNECT' -dis_txt_end: - -;E:. -I_END: - \ No newline at end of file