forked from KolibriOS/kolibrios
7a7a049046
git-svn-id: svn://kolibrios.org@7986 a494cfbc-eb01-0410-851d-a64ba20cac60
1435 lines
32 KiB
NASM
1435 lines
32 KiB
NASM
use32
|
||
org 0
|
||
db 'MENUET01'
|
||
dd 1,start,i_end,mem,stacktop,openfile_path,sys_path
|
||
|
||
include 'lang.inc'
|
||
include '../../../programs/macros.inc'
|
||
include '../../../programs/proc32.inc'
|
||
include '../../../programs/KOSfuncs.inc'
|
||
include '../../../programs/load_img.inc'
|
||
include '../../../programs/develop/libraries/TinyGL/asm_fork/opengl_const.inc'
|
||
include '../../../programs/develop/libraries/libs-dev/libimg/libimg.inc'
|
||
include '../../../programs/develop/info3ds/info_fun_float.inc'
|
||
|
||
@use_library_mem mem.Alloc,mem.Free,mem.ReAlloc,dll.Load
|
||
caption db 'Image transform 26.05.20',0 ;¯®¤¯¨áì ®ª
|
||
|
||
offs_zbuf_pbuf equ 24 ;const. from 'zbuffer.inc'
|
||
|
||
BUF_STRUCT_SIZE equ 21
|
||
buf2d_data equ dword[edi] ;¤ ë¥ ¡ãä¥à ¨§®¡à ¦¥¨ï
|
||
buf2d_w equ dword[edi+8] ;è¨à¨ ¡ãä¥à
|
||
buf2d_h equ dword[edi+12] ;¢ëá®â ¡ãä¥à
|
||
buf2d_l equ word[edi+4]
|
||
buf2d_t equ word[edi+6] ;®âáâ㯠ᢥàåã
|
||
buf2d_size_lt equ dword[edi+4] ;®âáâ㯠᫥¢ ¨ á¯à ¢ ¤«ï ¡ãä¥à
|
||
buf2d_color equ dword[edi+16] ;梥â ä® ¡ãä¥à
|
||
buf2d_bits equ byte[edi+20] ;ª®«¨ç¥á⢮ ¡¨â ¢ 1-© â®çª¥ ¨§®¡à ¦¥¨ï
|
||
|
||
include 'select_points.inc'
|
||
|
||
IMAGE_TOOLBAR_ICON_SIZE equ 16*16*3
|
||
image_data_toolbar dd 0
|
||
|
||
align 4
|
||
start:
|
||
load_libraries l_libs_start,l_libs_end
|
||
;¯à®¢¥àª ᪮«ìª® ã¤ ç® § £ã§¨« áì ¡¨¡«¨®â¥ª
|
||
mov ebp,lib_0
|
||
cmp dword [ebp+ll_struc_size-4],0
|
||
jz @f
|
||
mcall SF_TERMINATE_PROCESS
|
||
@@:
|
||
mcall SF_STYLE_SETTINGS,SSF_GET_COLORS,sc,sizeof.system_colors
|
||
mcall SF_SET_EVENTS_MASK,0xC0000027
|
||
stdcall [OpenDialog_Init],OpenDialog_data ;¯®¤£®â®¢ª ¤¨ «®£
|
||
|
||
stdcall [buf2d_create], buf_0 ;ᮧ¤ ¨¥ ¡ãä¥à
|
||
|
||
include_image_file '../../../programs/fs/kfar/trunk/font6x9.bmp', image_data_toolbar, buf_font.w,buf_font.h
|
||
stdcall [buf2d_create_f_img], buf_font,[image_data_toolbar] ;ᮧ¤ ¥¬ ¡ãä¥à
|
||
stdcall mem.Free,[image_data_toolbar] ;®á¢®¡®¦¤ ¥¬ ¯ ¬ïâì
|
||
stdcall [buf2d_conv_24_to_8], buf_font,1 ;¤¥« ¥¬ ¡ãä¥à ¯à®§à ç®á⨠8 ¡¨â
|
||
stdcall [buf2d_convert_text_matrix], buf_font
|
||
|
||
include_image_file 'toolbar.png', image_data_toolbar
|
||
|
||
mcall SF_SYSTEM_GET,SSF_TIME_COUNT
|
||
mov [last_time],eax
|
||
|
||
; áâனª â®ç¥ª
|
||
call points_init
|
||
|
||
;open file from cmd line
|
||
cmp dword[openfile_path],0
|
||
je @f
|
||
call but_open_file.no_dlg
|
||
@@:
|
||
|
||
align 4
|
||
red_win:
|
||
call draw_window
|
||
|
||
align 16
|
||
still:
|
||
mcall SF_SYSTEM_GET,SSF_TIME_COUNT
|
||
mov ebx,[last_time]
|
||
add ebx,10 ;§ ¤¥à¦ª
|
||
cmp ebx,eax
|
||
jge @f
|
||
mov ebx,eax
|
||
@@:
|
||
sub ebx,eax
|
||
mcall SF_WAIT_EVENT_TIMEOUT
|
||
cmp eax,0
|
||
je timer_funct
|
||
|
||
cmp al,1
|
||
jz red_win
|
||
cmp al,2
|
||
jz key
|
||
cmp al,3
|
||
jz button
|
||
cmp al,6
|
||
jne @f
|
||
mcall SF_THREAD_INFO,procinfo,-1
|
||
cmp ax,word[procinfo.window_stack_position]
|
||
jne @f ;®ª® ¥ ªâ¨¢®
|
||
call mouse
|
||
@@:
|
||
jmp still
|
||
|
||
align 4
|
||
timer_funct:
|
||
push eax ebx
|
||
mcall SF_SYSTEM_GET,SSF_TIME_COUNT
|
||
mov [last_time],eax
|
||
pop ebx eax
|
||
cmp byte[calc],0
|
||
je still
|
||
call draw_buffers
|
||
jmp still
|
||
|
||
align 16
|
||
draw_window:
|
||
pushad
|
||
mcall SF_REDRAW,SSF_BEGIN_DRAW
|
||
|
||
; *** à¨á®¢ ¨¥ £« ¢®£® ®ª (¢ë¯®«ï¥âáï 1 à § ¯à¨ § ¯ã᪥) ***
|
||
mov edx,[sc.work]
|
||
or edx,(3 shl 24)+0x30000000
|
||
mcall SF_CREATE_WINDOW,(20 shl 16)+410,(20 shl 16)+520,,,caption
|
||
|
||
mcall SF_THREAD_INFO,procinfo,-1
|
||
mov eax,dword[procinfo.box.height]
|
||
cmp eax,120
|
||
jge @f
|
||
mov eax,120 ;min size
|
||
@@:
|
||
sub eax,65
|
||
mov ebx,dword[procinfo.box.width]
|
||
cmp ebx,270
|
||
jge @f
|
||
mov ebx,270
|
||
@@:
|
||
sub ebx,19
|
||
cmp eax,dword[buf_0.h] ;ᬮâਬ à §¬¥à ¡ãä¥à
|
||
jne @f
|
||
cmp ebx,dword[buf_0.w]
|
||
jne @f
|
||
jmp .end0
|
||
@@:
|
||
stdcall [buf2d_resize],buf_0,ebx,eax,1
|
||
call calc_nav_params
|
||
mov byte[calc],1
|
||
.end0:
|
||
|
||
; *** ᮧ¤ ¨¥ ª®¯®ª ¯ ¥«ì ***
|
||
mcall SF_DEFINE_BUTTON,(5 shl 16)+20,(5 shl 16)+20,3, [sc.work_button]
|
||
|
||
add ebx,25 shl 16
|
||
mcall ,,,4
|
||
add ebx,30 shl 16
|
||
mcall ,,,5
|
||
add ebx,25 shl 16
|
||
mcall ,,,6
|
||
add ebx,25 shl 16
|
||
mcall ,,,7
|
||
|
||
; *** à¨á®¢ ¨¥ ¨ª®®ª ª®¯ª å ***
|
||
mov edx,(7 shl 16)+7 ;icon open
|
||
mcall SF_PUT_IMAGE,[image_data_toolbar],(16 shl 16)+16
|
||
|
||
add ebx,IMAGE_TOOLBAR_ICON_SIZE
|
||
add edx,(25 shl 16) ;icon save
|
||
int 0x40
|
||
add ebx,IMAGE_TOOLBAR_ICON_SIZE
|
||
add edx,(30 shl 16) ;icon view
|
||
int 0x40
|
||
add ebx,IMAGE_TOOLBAR_ICON_SIZE
|
||
add edx,(25 shl 16) ;icon mode
|
||
int 0x40
|
||
add ebx,IMAGE_TOOLBAR_ICON_SIZE
|
||
add edx,(25 shl 16) ;
|
||
int 0x40
|
||
|
||
call draw_buffers
|
||
|
||
mcall SF_REDRAW,SSF_END_DRAW
|
||
popad
|
||
ret
|
||
|
||
align 4
|
||
proc draw_buffers
|
||
pushad
|
||
cmp byte[calc],0
|
||
je .end0
|
||
; *** ®¡®¢«¥¨¥ ¡ãä¥à ***
|
||
bt dword[nav_x_min],31
|
||
jnc .beg0
|
||
bt dword[nav_y_min],31
|
||
jc @f
|
||
.beg0:
|
||
stdcall [buf2d_clear], buf_0, [buf_0.color] ;ç¨á⨬ ¡ãä¥à
|
||
@@:
|
||
cmp byte[view_b],1
|
||
je .end1
|
||
push buf_i0
|
||
jmp .end2
|
||
.end1:
|
||
push buf_ogl
|
||
.end2:
|
||
stdcall [buf2d_bit_blt], buf_0, [nav_x],[nav_y] ;,...
|
||
|
||
call points_draw
|
||
|
||
; *** ®¡®¢«¥¨¥ ¯®¤¯¨á¨ à §¬¥à ä ©« ***
|
||
mov edi,txt_f_size.size
|
||
mov eax,[open_file_size]
|
||
mov ebx,txt_pref
|
||
.cycle:
|
||
cmp eax,1024
|
||
jl @f
|
||
shr eax,10
|
||
add ebx,4
|
||
jmp .cycle
|
||
@@:
|
||
stdcall convert_int_to_str, 16
|
||
stdcall str_cat, edi,ebx
|
||
stdcall str_cat, edi,txt_space ;§ ¢¥àè î騩 ¯à®¡¥«
|
||
;è¨à¨ ¨ ¢ëá®â ¨§®¡à ¦¥¨ï
|
||
mov eax,[buf_i0.w]
|
||
mov edi,txt_img_w.size
|
||
stdcall convert_int_to_str, 16
|
||
mov eax,[buf_i0.h]
|
||
mov edi,txt_img_h.size
|
||
stdcall convert_int_to_str, 16
|
||
mov byte[calc],0
|
||
.end0:
|
||
; *** à¨á®¢ ¨¥ ¡ãä¥à ***
|
||
stdcall [buf2d_draw], buf_0
|
||
; *** à¨á®¢ ¨¥ ¯®¤¯¨á¨ à §¬¥à ä ©« ***
|
||
mov ecx,[sc.work_text]
|
||
or ecx,0x80000000 or (1 shl 30)
|
||
mov edi,[sc.work] ;梥â ä® ®ª
|
||
mcall SF_DRAW_TEXT,(275 shl 16)+4,,txt_f_size
|
||
add ebx,9
|
||
mcall ,,,txt_img_w
|
||
add ebx,9
|
||
mcall ,,,txt_img_h
|
||
popad
|
||
ret
|
||
endp
|
||
|
||
align 16
|
||
key:
|
||
push eax ebx ecx
|
||
mcall SF_GET_KEY
|
||
cmp byte[view_b],1
|
||
je .end1
|
||
cmp ah,49 ;1
|
||
jne @f
|
||
mov edi,sel_pt
|
||
call set_point_coords
|
||
jmp .end0
|
||
@@:
|
||
cmp ah,50 ;2
|
||
jne @f
|
||
mov edi,sel_pt+sizeof.point2d
|
||
call set_point_coords
|
||
jmp .end0
|
||
@@:
|
||
cmp ah,51 ;3
|
||
jne @f
|
||
mov edi,sel_pt+sizeof.point2d*2
|
||
call set_point_coords
|
||
jmp .end0
|
||
@@:
|
||
cmp ah,52 ;4
|
||
jne @f
|
||
mov edi,sel_pt+sizeof.point2d*3
|
||
call set_point_coords
|
||
jmp .end0
|
||
@@:
|
||
.end1:
|
||
|
||
cmp ah,178 ;Up
|
||
jne @f
|
||
call but_img_move_up
|
||
jmp .end0
|
||
@@:
|
||
cmp ah,177 ;Down
|
||
jne @f
|
||
call but_img_move_down
|
||
jmp .end0
|
||
@@:
|
||
cmp ah,176 ;Left
|
||
jne @f
|
||
call but_img_move_left
|
||
jmp .end0
|
||
@@:
|
||
cmp ah,179 ;Right
|
||
jne @f
|
||
call but_img_move_right
|
||
jmp .end0
|
||
@@:
|
||
|
||
mov ecx,eax
|
||
mcall SF_KEYBOARD,SSF_GET_CONTROL_KEYS
|
||
bt eax,2 ;left Ctrl
|
||
jc .key_Ctrl
|
||
bt eax,3 ;right Ctrl
|
||
jc .key_Ctrl
|
||
jmp .end0
|
||
.key_Ctrl:
|
||
cmp ch,15 ;Ctrl+O
|
||
jne @f
|
||
call but_open_file
|
||
@@:
|
||
cmp ch,19 ;Ctrl+S
|
||
jne @f
|
||
call but_save_file
|
||
@@:
|
||
|
||
.end0:
|
||
pop ecx ebx eax
|
||
jmp still
|
||
|
||
;input:
|
||
; edi - 㪠§ ⥫ì áâàãªâãàã point2d
|
||
align 4
|
||
set_point_coords:
|
||
call buf_get_mouse_coord
|
||
cmp eax,-1
|
||
je .end0
|
||
sub eax,[nav_x]
|
||
cmp eax,0
|
||
jge @f
|
||
xor eax,eax
|
||
@@:
|
||
cmp eax,[buf_i0.w]
|
||
jle @f
|
||
mov eax,[buf_i0.w]
|
||
@@:
|
||
mov [edi+point2d.x],eax
|
||
sub ebx,[nav_y]
|
||
cmp ebx,0
|
||
jge @f
|
||
xor ebx,ebx
|
||
@@:
|
||
cmp ebx,[buf_i0.h]
|
||
jle @f
|
||
mov ebx,[buf_i0.h]
|
||
@@:
|
||
mov [edi+point2d.y],ebx
|
||
call points_update_prop
|
||
mov byte[calc],1
|
||
.end0:
|
||
ret
|
||
|
||
align 16
|
||
button:
|
||
mcall SF_GET_BUTTON
|
||
cmp ah,3
|
||
jne @f
|
||
call but_open_file
|
||
jmp still
|
||
@@:
|
||
cmp ah,4
|
||
jne @f
|
||
call but_save_file
|
||
jmp still
|
||
@@:
|
||
cmp ah,5
|
||
jne @f
|
||
call but_2
|
||
jmp still
|
||
@@:
|
||
cmp ah,6
|
||
jne @f
|
||
call but_3
|
||
jmp still
|
||
@@:
|
||
cmp ah,7
|
||
jne @f
|
||
call but_about
|
||
jmp still
|
||
@@:
|
||
cmp ah,1
|
||
jne still
|
||
.exit:
|
||
stdcall [buf2d_delete],buf_0
|
||
stdcall [buf2d_delete],buf_i0
|
||
;stdcall [buf2d_delete],buf_ogl
|
||
stdcall mem.Free,[image_data_toolbar]
|
||
stdcall mem.Free,[open_file_img]
|
||
mcall SF_TERMINATE_PROCESS
|
||
|
||
align 4
|
||
mouse:
|
||
push eax ebx ecx
|
||
mcall SF_MOUSE_GET,SSF_BUTTON_EXT
|
||
bt eax,8
|
||
jnc @f
|
||
;mouse l. but. press
|
||
call mouse_left_d
|
||
jmp .end_l
|
||
@@:
|
||
;bt eax,0
|
||
;jnc @f
|
||
;mouse l. but. move
|
||
;call mouse_left_m
|
||
;jmp .end_l
|
||
;@@:
|
||
bt eax,16
|
||
jnc .end_l
|
||
;mouse l. but. up
|
||
call mouse_left_u
|
||
;jmp .end_l
|
||
.end_l:
|
||
;bt eax,9
|
||
;jnc @f
|
||
;mouse r. but. press
|
||
;call mouse_right_d
|
||
;jmp .end_r
|
||
;@@:
|
||
;bt eax,1
|
||
;jnc @f
|
||
;mouse r. but. move
|
||
;call mouse_right_m
|
||
;jmp .end_r
|
||
;@@:
|
||
;.end_r:
|
||
|
||
pop ecx ebx eax
|
||
ret
|
||
|
||
;output:
|
||
; eax - buffer coord X (¥á«¨ ªãàá®à § ¡ãä¥à®¬ -1)
|
||
; ebx - buffer coord Y (¥á«¨ ªãàá®à § ¡ãä¥à®¬ -1)
|
||
align 4
|
||
proc buf_get_mouse_coord
|
||
mcall SF_MOUSE_GET,SSF_WINDOW_POSITION
|
||
cmp ax,word[buf_0.t]
|
||
jl .no_buf ;¥ ¯®¯ «¨ ¢ ®ª® ¡ãä¥à ¯® ®á¨ y
|
||
mov ebx,eax
|
||
shr ebx,16
|
||
cmp bx,word[buf_0.l]
|
||
jl .no_buf ;¥ ¯®¯ «¨ ¢ ®ª® ¡ãä¥à ¯® ®á¨ x
|
||
|
||
and eax,0xffff ;®áâ ¢«ï¥¬ ª®®à¤¨ âã y
|
||
sub ax,word[buf_0.t]
|
||
cmp eax,[buf_0.h]
|
||
jg .no_buf
|
||
sub bx,word[buf_0.l]
|
||
cmp ebx,[buf_0.w]
|
||
jg .no_buf
|
||
xchg eax,ebx
|
||
jmp .end_f
|
||
.no_buf:
|
||
xor eax,eax
|
||
not eax
|
||
xor ebx,ebx
|
||
not ebx
|
||
.end_f:
|
||
ret
|
||
endp
|
||
|
||
align 4
|
||
mouse_left_d:
|
||
pushad
|
||
call buf_get_mouse_coord
|
||
cmp eax,-1
|
||
je .end0
|
||
mov [mouse_down_x],eax
|
||
mov [mouse_down_y],ebx
|
||
sub eax,[nav_x]
|
||
sub ebx,[nav_y]
|
||
|
||
mov edi,sel_pt
|
||
xor ecx,ecx
|
||
.cycle0:
|
||
mov edx,[edi+point2d.x]
|
||
sub edx,eax
|
||
bt edx,31
|
||
jnc @f
|
||
neg edx
|
||
@@:
|
||
cmp edx,5 ;à §¬¥à ¤«ï ¢ë¤¥«¥¨ï â®çª¨ ¯® ®á¨ x
|
||
jg .end1
|
||
mov edx,[edi+point2d.y]
|
||
sub edx,ebx
|
||
bt edx,31
|
||
jnc @f
|
||
neg edx
|
||
@@:
|
||
cmp edx,5 ;à §¬¥à ¤«ï ¢ë¤¥«¥¨ï â®çª¨ ¯® ®á¨ y
|
||
jg .end1
|
||
mov [sel_act],ecx
|
||
jmp .end0
|
||
.end1:
|
||
add edi,sizeof.point2d
|
||
inc ecx
|
||
cmp ecx,4
|
||
jl .cycle0
|
||
mov dword[sel_act],-1
|
||
.end0:
|
||
popad
|
||
ret
|
||
|
||
align 4
|
||
proc mouse_left_u uses eax ebx
|
||
call buf_get_mouse_coord
|
||
cmp eax,-1
|
||
je .end0
|
||
sub [mouse_down_x],eax
|
||
sub [mouse_down_y],ebx
|
||
|
||
cmp dword[sel_act],-1
|
||
je .end1
|
||
;¤¢¨£ ¥¬ â®çª¨
|
||
mov eax,[sel_act]
|
||
imul eax,sizeof.point2d
|
||
add eax,sel_pt
|
||
;coord x
|
||
mov ebx,dword[eax+point2d.x]
|
||
sub ebx,[mouse_down_x]
|
||
cmp ebx,0
|
||
jge @f
|
||
xor ebx,ebx
|
||
@@:
|
||
cmp ebx,[buf_i0.w]
|
||
jle @f
|
||
mov ebx,[buf_i0.w]
|
||
@@:
|
||
mov dword[eax+point2d.x],ebx
|
||
;coord y
|
||
mov ebx,dword[eax+point2d.y]
|
||
sub ebx,[mouse_down_y]
|
||
cmp ebx,0
|
||
jge @f
|
||
xor ebx,ebx
|
||
@@:
|
||
cmp ebx,[buf_i0.h]
|
||
jle @f
|
||
mov ebx,[buf_i0.h]
|
||
@@:
|
||
mov dword[eax+point2d.y],ebx
|
||
call points_update_prop
|
||
jmp .end2
|
||
.end1:
|
||
|
||
;¤¢¨£ ¥¬ ¨§®¡à ¦¥¨¥
|
||
mov eax,[nav_y]
|
||
sub eax,[mouse_down_y]
|
||
cmp eax,[nav_y_min]
|
||
jge @f
|
||
mov eax,[nav_y_min]
|
||
@@:
|
||
cmp eax,[nav_y_max]
|
||
jle @f
|
||
mov eax,[nav_y_max]
|
||
@@:
|
||
mov [nav_y],eax
|
||
|
||
mov eax,[nav_x]
|
||
sub eax,[mouse_down_x]
|
||
cmp eax,[nav_x_min]
|
||
jge @f
|
||
mov eax,[nav_x_min]
|
||
@@:
|
||
cmp eax,[nav_x_max]
|
||
jle @f
|
||
mov eax,[nav_x_max]
|
||
@@:
|
||
mov [nav_x],eax
|
||
.end2:
|
||
mov byte[calc],1
|
||
.end0:
|
||
ret
|
||
endp
|
||
|
||
align 4
|
||
proc but_new_file uses eax edi esi
|
||
xor eax,eax
|
||
mov [open_file_size],eax
|
||
mov edi,[open_file_img]
|
||
stosd
|
||
ret
|
||
endp
|
||
|
||
align 4
|
||
open_file_img dd 0 ;㪠§ â¥«ì ¯ ¬ïâì ¤«ï ®âªàëâ¨ï ⥪áâãà
|
||
open_file_size dd 0 ;à §¬¥à
|
||
|
||
;¢ëç¨á«¥¨¥ ¯ à ¬¥â஢ ¤«ï ¢¨£ 樨 ¯® ¨§®¡à ¦¥¨î
|
||
align 4
|
||
proc calc_nav_params uses eax edi
|
||
mov dword[nav_x_max],0
|
||
mov edi,buf_0
|
||
mov eax,buf2d_w
|
||
mov [nav_sx],eax
|
||
mov edi,buf_i0
|
||
sub eax,buf2d_w
|
||
bt eax,31
|
||
jc @f
|
||
mov [nav_x_max],eax
|
||
xor eax,eax
|
||
@@:
|
||
mov [nav_x_min],eax
|
||
mov edi,buf2d_w
|
||
cmp [nav_sx],edi
|
||
jle @f
|
||
mov [nav_sx],edi
|
||
@@:
|
||
shr dword[nav_sx],1
|
||
|
||
mov dword[nav_y_max],0
|
||
mov edi,buf_0
|
||
mov eax,buf2d_h
|
||
mov [nav_sy],eax
|
||
mov edi,buf_i0
|
||
sub eax,buf2d_h
|
||
bt eax,31
|
||
jc @f
|
||
mov [nav_y_max],eax
|
||
xor eax,eax
|
||
@@:
|
||
mov [nav_y_min],eax
|
||
mov edi,buf2d_h
|
||
cmp [nav_sy],edi
|
||
jle @f
|
||
mov [nav_sy],edi
|
||
@@:
|
||
shr dword[nav_sy],1
|
||
ret
|
||
endp
|
||
|
||
align 4
|
||
proc but_open_file
|
||
copy_path open_dialog_name,communication_area_default_path,file_name,0
|
||
pushad
|
||
mov [OpenDialog_data.type],0
|
||
stdcall [OpenDialog_Start],OpenDialog_data
|
||
cmp [OpenDialog_data.status],2
|
||
je .end_open_file
|
||
jmp .end0
|
||
.no_dlg: ;¥á«¨ ¬¨ã¥¬ ¤¨ «®£ ®âªàëâ¨ï ä ©«
|
||
pushad
|
||
mov esi,openfile_path
|
||
stdcall str_len,esi
|
||
add esi,eax
|
||
@@: ;横« ¤«ï ¯®¨áª ç « ¨¬¥¨ ä ©«
|
||
dec esi
|
||
cmp byte[esi],'/'
|
||
je @f
|
||
cmp byte[esi],0x5c ;'\'
|
||
je @f
|
||
cmp esi,openfile_path
|
||
jg @b
|
||
@@:
|
||
inc esi
|
||
stdcall [OpenDialog_Set_file_name],OpenDialog_data,esi ;ª®¯¨à㥬 ¨¬ï ä ©« ¢ ¤¨ «®£ á®åà ¥¨ï
|
||
.end0:
|
||
|
||
mov [run_file_70.Function], SSF_GET_INFO
|
||
mov [run_file_70.Position], 0
|
||
mov [run_file_70.Flags], 0
|
||
mov dword[run_file_70.Count], 0
|
||
mov dword[run_file_70.Buffer], open_b
|
||
mov byte[run_file_70+20], 0
|
||
mov dword[run_file_70.FileName], openfile_path
|
||
mcall SF_FILE,run_file_70
|
||
|
||
mov ecx,dword[open_b+32] ;+32 qword: à §¬¥à ä ©« ¢ ¡ ©â å
|
||
mov [open_file_size],ecx
|
||
stdcall mem.ReAlloc,[open_file_img],ecx ;¢ë¤¥«ï¥¬ ¯ ¬ïâì ¤«ï ¨§®¡à ¦¥¨ï
|
||
mov [open_file_img],eax
|
||
|
||
mov [run_file_70.Function], SSF_READ_FILE
|
||
mov [run_file_70.Position], 0
|
||
mov [run_file_70.Flags], 0
|
||
m2m [run_file_70.Count], dword[open_file_size]
|
||
m2m [run_file_70.Buffer],dword[open_file_img]
|
||
mov byte[run_file_70+20], 0
|
||
mov [run_file_70.FileName], openfile_path
|
||
mcall SF_FILE,run_file_70
|
||
cmp ebx,0xffffffff
|
||
je .end_0
|
||
;®¯à¥¤¥«ï¥¬ ¢¨¤ ¨§®¡à ¦¥¨ï
|
||
stdcall [img_decode], [open_file_img],ebx,0
|
||
or eax,eax
|
||
jz .end_0 ;¥á«¨ àãè¥ ä®à¬ â ä ©«
|
||
mov ebx,eax
|
||
|
||
mov ecx,[ebx+4] ;+4 = image width
|
||
mov dword[buf_cop.w],ecx
|
||
imul ecx,[ebx+8] ;+8 = image height
|
||
lea ecx,[ecx+ecx*2]
|
||
mov [open_file_size],ecx
|
||
stdcall mem.ReAlloc,[open_file_img],ecx
|
||
mov [open_file_img],eax
|
||
mov dword[buf_cop],eax
|
||
mov dword[buf_cop.l],0 ;left = 0, top = 0
|
||
m2m dword[buf_cop.h],dword[ebx+8]
|
||
|
||
;¯à¥®¡à §ã¥¬ ¨§®¡à ¦¥¨¥ ª ä®à¬ âã rgb
|
||
stdcall [img_to_rgb2], ebx,[open_file_img]
|
||
mov edi,buf_i0
|
||
cmp buf2d_data,0
|
||
jne .end3
|
||
stdcall getNextPowerOfTwo,[ebx+4]
|
||
mov buf2d_w,eax
|
||
m2m buf2d_h,dword[ebx+8] ;+8 = image height
|
||
cmp eax,[ebx+4]
|
||
jg @f
|
||
m2m buf2d_w,dword[ebx+4]
|
||
stdcall [buf2d_create_f_img], edi,[open_file_img]
|
||
jmp .end_1
|
||
@@:
|
||
sub eax,[ebx+4]
|
||
shr eax,1
|
||
mov esi,eax
|
||
stdcall [buf2d_create], edi
|
||
mov [buf_cop.l],si
|
||
stdcall [buf2d_bit_blt], edi, esi,0, buf_cop
|
||
jmp .end_1
|
||
.end3:
|
||
stdcall getNextPowerOfTwo,[ebx+4]
|
||
cmp eax,[ebx+4]
|
||
jg @f
|
||
mov eax,[ebx+4]
|
||
@@:
|
||
mov ecx,eax ;à §¬¥à ¯® x
|
||
stdcall getNextPowerOfTwo,[ebx+8]
|
||
cmp eax,[ebx+8]
|
||
jg @f
|
||
mov eax,[ebx+8]
|
||
@@:
|
||
mov edx,eax ;à §¬¥à ¯® y
|
||
stdcall [buf2d_resize], edi, ecx,edx,1 ;¨§¬¥ï¥¬ à §¬¥àë ¡ãä¥à
|
||
stdcall [buf2d_clear], edi, buf2d_color
|
||
sub ecx,[ebx+4]
|
||
shr ecx,1
|
||
mov [buf_cop.l],cx
|
||
sub edx,[ebx+8]
|
||
shr edx,1
|
||
mov [buf_cop.t],dx
|
||
stdcall [buf2d_bit_blt], edi, ecx,edx, buf_cop
|
||
.end_1:
|
||
|
||
;ᮧ¤ ¥¬ ¡ãä¥à ¤«ï ¯à¥®¡à §®¢ ®£® ¨§®¡à ¦¥¨ï
|
||
mov edi,buf_ogl
|
||
mov eax,[buf_i0.w]
|
||
and eax, not 3
|
||
mov buf2d_w,eax
|
||
mov eax,[buf_i0.h]
|
||
and eax, not 3
|
||
mov buf2d_h,eax
|
||
cmp buf2d_data,0
|
||
jne @f
|
||
stdcall [kosglMakeCurrent], 0,35,buf2d_w,buf2d_h,ctx1
|
||
stdcall [glEnable], GL_DEPTH_TEST
|
||
stdcall [glEnable], GL_NORMALIZE ;¤¥« ¬ ®à¬ «¨ ®¤¨ ª®¢®© ¢¥«¨ç¨ë ¢® ¨§¡¥¦ ¨¥ àâ¥ä ªâ®¢
|
||
stdcall [glShadeModel], GL_SMOOTH
|
||
stdcall [glScalef], 2.0, -2.0, 1.0
|
||
stdcall [glTranslatef], -0.5, -0.5, 0.0
|
||
jmp .end_2
|
||
@@:
|
||
stdcall reshape, buf2d_w,buf2d_h ;¨§¬¥ï¥¬ à §¬¥àë ¡ãä¥à buf_ogl
|
||
.end_2:
|
||
mov eax,dword[ctx1] ;eax -> TinyGLContext.GLContext
|
||
mov eax,[eax] ;eax -> ZBuffer
|
||
mov eax,[eax+offs_zbuf_pbuf] ;eax -> ZBuffer.pbuf
|
||
mov buf2d_data,eax
|
||
|
||
stdcall [buf2d_bit_blt], edi, 0,0, buf_i0 ;ª®¯¨à㥬 ¨§®¡à ¦¥¨¥ ¤«ï ¢®áâ ®¢«¥¨ï
|
||
|
||
;* Setup texturing *
|
||
stdcall [glTexEnvi], GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_DECAL
|
||
|
||
;* generate texture object IDs *
|
||
stdcall [glGenTextures], 1, TexObj
|
||
stdcall [glBindTexture], GL_TEXTURE_2D, [TexObj]
|
||
stdcall [glTexImage2D], GL_TEXTURE_2D, 0, 3, [buf_i0.w], [buf_i0.h],\
|
||
0, GL_RGB, GL_UNSIGNED_BYTE, [buf_i0] ;¤¥« ¥¬ ⥪áâãà㠮ᮢ¥ ¡ãä¥à , á ¬® ¨§®¡à ¦¥¨¥ ¢ ¡ãä¥à¥ ¬®¦¥â ¨á¯®àâ¨âáï ¯à¨ ¯®¤£®ª¥ à §¬¥à®¢ ⥪áâãàë
|
||
|
||
stdcall [glTexParameteri], GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST
|
||
stdcall [glTexParameteri], GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST
|
||
stdcall [glTexParameteri], GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT
|
||
stdcall [glTexParameteri], GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT
|
||
stdcall [glBindTexture], GL_TEXTURE_2D, [TexObj]
|
||
stdcall [glEnable], GL_TEXTURE_2D
|
||
|
||
stdcall [buf2d_bit_blt], buf_i0, 0,0, edi ;¢®áâ ¢«¨¢ ¥¬ ¨§®¡à ¦¥¨¥ ¨á¯®à祮¥ ¯à¨ ãáâ ®¢ª¥ ⥪áâãàë
|
||
|
||
;㤠«ï¥¬ ¢à¥¬¥ë© ¡ãä¥à ¢ ebx
|
||
stdcall [img_destroy], ebx
|
||
|
||
movzx eax,word[buf_cop.l]
|
||
movzx ebx,word[buf_cop.t]
|
||
stdcall points_init_2,eax,ebx
|
||
|
||
call calc_nav_params
|
||
stdcall nav_to_point, dword[sel_pt+point2d.x],dword[sel_pt+point2d.y]
|
||
mov byte[view_b],0
|
||
mov dword[sel_act],-1 ;ᨬ ¥¬ ¢ë¤¥«¥¨¥ á â®ç¥ª
|
||
mov byte[calc],1
|
||
.end_0:
|
||
|
||
.end_open_file:
|
||
popad
|
||
ret
|
||
endp
|
||
|
||
align 4
|
||
proc nav_to_point, coord_x:dword, coord_y:dword
|
||
;coord x
|
||
mov eax,[nav_x_max]
|
||
cmp eax,0
|
||
jle @f
|
||
;¥á«¨ ¬ «¥ìª®¥ ¨§®¡à ¦¥¨¥ â® áâ ¢¨¬ ¯® æ¥âàã
|
||
shr eax,1
|
||
jmp .end0
|
||
@@:
|
||
mov eax,[buf_0.w]
|
||
shr eax,1
|
||
sub eax,[coord_x]
|
||
cmp eax,[nav_x_min]
|
||
jge @f
|
||
mov eax,[nav_x_min]
|
||
@@:
|
||
cmp eax,[nav_x_max]
|
||
jle .end0
|
||
mov eax,[nav_x_max]
|
||
.end0:
|
||
mov [nav_x],eax
|
||
;coord y
|
||
mov eax,[nav_y_max]
|
||
cmp eax,0
|
||
jle @f
|
||
;¥á«¨ ¬ «¥ìª®¥ ¨§®¡à ¦¥¨¥ â® áâ ¢¨¬ ¯® æ¥âàã
|
||
shr eax,1
|
||
jmp .end1
|
||
@@:
|
||
mov eax,[buf_0.h]
|
||
shr eax,1
|
||
sub eax,[coord_y]
|
||
cmp eax,[nav_y_min]
|
||
jge @f
|
||
mov eax,[nav_y_min]
|
||
@@:
|
||
cmp eax,[nav_y_max]
|
||
jle .end1
|
||
mov eax,[nav_y_max]
|
||
.end1:
|
||
mov [nav_y],eax
|
||
ret
|
||
endp
|
||
|
||
align 4
|
||
proc getNextPowerOfTwo uses ebx, n:dword
|
||
mov ebx,[n]
|
||
mov eax,8 ;min size
|
||
cmp ebx,eax
|
||
jle .set
|
||
@@:
|
||
shl eax,1
|
||
cmp ebx,eax
|
||
jg @b
|
||
cmp eax,4096 ;max size
|
||
jle .set
|
||
mov eax,4096
|
||
.set:
|
||
ret
|
||
endp
|
||
|
||
; new window size or exposure
|
||
align 4
|
||
proc reshape uses ebx ecx, width:dword, height:dword
|
||
stdcall [glViewport], 0, 0, [width], [height]
|
||
stdcall [glMatrixMode], GL_MODELVIEW
|
||
stdcall [glLoadIdentity]
|
||
stdcall [glScalef], 2.0, -2.0, 1.0
|
||
stdcall [glTranslatef], -0.5, -0.5, 0.0
|
||
ret
|
||
endp
|
||
|
||
align 4
|
||
proc but_save_file
|
||
locals
|
||
png_data dd 0
|
||
png_size dd 0
|
||
endl
|
||
pushad
|
||
copy_path open_dialog_name,communication_area_default_path,file_name,0
|
||
mov [OpenDialog_data.type],1
|
||
stdcall [OpenDialog_Set_file_ext],OpenDialog_data,Filter.1 ;.png
|
||
stdcall [OpenDialog_Start],OpenDialog_data
|
||
cmp [OpenDialog_data.status],1
|
||
jne .end_save_file
|
||
;ª®¤ ¯à¨ 㤠箬 ®âªàë⨨ ¤¨ «®£
|
||
mov dword[png_data],0
|
||
|
||
;create image struct
|
||
stdcall [img_create], [buf_ogl.w], [buf_ogl.h], Image.bpp24
|
||
mov ebx,eax
|
||
test eax,eax
|
||
jz @f
|
||
;copy foto to image buffer
|
||
mov edi,[eax+Image.Data]
|
||
mov esi,[buf_ogl]
|
||
mov ecx,[buf_ogl.w]
|
||
mov edx,[buf_ogl.h]
|
||
imul ecx,edx
|
||
imul ecx,3
|
||
shr ecx,2 ;OpenGL buffer align to 4
|
||
rep movsd
|
||
|
||
;encode image
|
||
stdcall [img_encode], eax, LIBIMG_FORMAT_PNG, 0
|
||
test eax,eax
|
||
jz @f
|
||
mov [png_data],eax
|
||
mov [png_size],ecx
|
||
@@:
|
||
stdcall [img_destroy],ebx
|
||
|
||
; § ¯®«ï¥¬ áâàãªâãàã ¤«ï á®åà ¥¨ï ä ©«
|
||
mov ebx,run_file_70
|
||
mov dword[ebx],SSF_CREATE_FILE
|
||
mov eax,[png_size]
|
||
mov [ebx+12],eax ;file size
|
||
mov eax,[png_data]
|
||
mov [ebx+16],eax
|
||
mov dword[ebx+FileInfoBlock.FileName], openfile_path
|
||
|
||
mcall SF_FILE,run_file_70
|
||
test eax,eax
|
||
jnz .save_error
|
||
;notify_window_run openfile_path
|
||
jmp @f
|
||
.save_error:
|
||
;á®®¡é¥¨¥ ® ¥ã¤ 箬 á®åà ¥¨¨
|
||
notify_window_run txt_err_save_img_file
|
||
@@:
|
||
mcall SF_SYS_MISC, SSF_MEM_FREE, [png_data]
|
||
.end_save_file:
|
||
popad
|
||
ret
|
||
endp
|
||
|
||
align 4
|
||
but_2:
|
||
xor byte[view_b],1
|
||
mov byte[calc],1
|
||
ret
|
||
|
||
align 4
|
||
but_3:
|
||
xor byte[trans_a],1
|
||
call points_update_prop
|
||
mov byte[calc],1
|
||
ret
|
||
|
||
align 4
|
||
but_about:
|
||
notify_window_run txt_about
|
||
ret
|
||
|
||
align 4
|
||
calc db 0
|
||
view_b db 0 ;0 - ¨áå®¤ë© ¡ãä¥à, 1 - ¯à®á¬®âà १ã«ìâ â
|
||
trans_a db 0 ;0 - ¯à¥®¡à §®¢ âì ¯® § ¤ ®¬ã à §¬¥àã, 1 - ¯à¥®¡à §®¢ âì ¢¥áì ¡ãä¥à
|
||
|
||
align 4
|
||
proc but_img_move_up uses eax
|
||
cmp dword[sel_act],-1
|
||
je .end0
|
||
mov eax,[sel_act]
|
||
imul eax,sizeof.point2d
|
||
add eax,sel_pt
|
||
cmp dword[eax+point2d.y],0
|
||
je .end2
|
||
dec dword[eax+point2d.y]
|
||
call points_update_prop
|
||
jmp .end1
|
||
.end0:
|
||
mov eax,[nav_y]
|
||
sub eax,[nav_sy]
|
||
cmp eax,[nav_y_min]
|
||
jge @f
|
||
mov eax,[nav_y_min]
|
||
@@:
|
||
mov [nav_y],eax
|
||
.end1:
|
||
mov byte[calc],1
|
||
.end2:
|
||
ret
|
||
endp
|
||
|
||
align 4
|
||
proc but_img_move_down uses eax edi
|
||
cmp dword[sel_act],-1
|
||
je .end0
|
||
mov eax,[sel_act]
|
||
imul eax,sizeof.point2d
|
||
add eax,sel_pt
|
||
mov edi,buf_ogl
|
||
mov edi,buf2d_h
|
||
cmp dword[eax+point2d.y],edi
|
||
jge .end2
|
||
inc dword[eax+point2d.y]
|
||
call points_update_prop
|
||
jmp .end1
|
||
.end0:
|
||
mov eax,[nav_y]
|
||
add eax,[nav_sy]
|
||
cmp eax,[nav_y_max]
|
||
jle @f
|
||
mov eax,[nav_y_max]
|
||
@@:
|
||
mov [nav_y],eax
|
||
.end1:
|
||
mov byte[calc],1
|
||
.end2:
|
||
ret
|
||
endp
|
||
|
||
align 4
|
||
proc but_img_move_left uses eax
|
||
cmp dword[sel_act],-1
|
||
je .end0
|
||
mov eax,[sel_act]
|
||
imul eax,sizeof.point2d
|
||
add eax,sel_pt
|
||
cmp dword[eax+point2d.x],0
|
||
je .end2
|
||
dec dword[eax+point2d.x]
|
||
call points_update_prop
|
||
jmp .end1
|
||
.end0:
|
||
mov eax,[nav_x]
|
||
sub eax,[nav_sx]
|
||
cmp eax,[nav_x_min]
|
||
jge @f
|
||
mov eax,[nav_x_min]
|
||
@@:
|
||
mov [nav_x],eax
|
||
.end1:
|
||
mov byte[calc],1
|
||
.end2:
|
||
ret
|
||
endp
|
||
|
||
align 4
|
||
proc but_img_move_right uses eax edi
|
||
cmp dword[sel_act],-1
|
||
je .end0
|
||
mov eax,[sel_act]
|
||
imul eax,sizeof.point2d
|
||
add eax,sel_pt
|
||
mov edi,buf_ogl
|
||
mov edi,buf2d_w
|
||
cmp dword[eax+point2d.x],edi
|
||
jge .end2
|
||
inc dword[eax+point2d.x]
|
||
call points_update_prop
|
||
jmp .end1
|
||
.end0:
|
||
mov eax,[nav_x]
|
||
add eax,[nav_sx]
|
||
cmp eax,[nav_x_max]
|
||
jle @f
|
||
mov eax,[nav_x_max]
|
||
@@:
|
||
mov [nav_x],eax
|
||
.end1:
|
||
mov byte[calc],1
|
||
.end2:
|
||
ret
|
||
endp
|
||
|
||
;input:
|
||
; eax - ç¨á«®
|
||
; edi - ¡ãä¥à ¤«ï áâப¨
|
||
; len - ¤«¨ ¡ãä¥à
|
||
;output:
|
||
align 4
|
||
proc convert_int_to_str, len:dword
|
||
pushad
|
||
mov esi,[len]
|
||
add esi,edi
|
||
dec esi
|
||
bt eax,31
|
||
jae @f
|
||
;¥á«¨ ç¨á«® ®âà¨æ ⥫쮥
|
||
neg eax
|
||
mov byte[edi],'-'
|
||
inc edi
|
||
@@:
|
||
call .str
|
||
popad
|
||
ret
|
||
endp
|
||
|
||
align 4
|
||
.str:
|
||
mov ecx,10
|
||
cmp eax,ecx
|
||
jb @f
|
||
xor edx,edx
|
||
div ecx
|
||
push edx
|
||
;dec edi ;ᬥ饨¥ ¥®¡å®¤¨¬®¥ ¤«ï § ¯¨á¨ á ª®æ áâப¨
|
||
call .str
|
||
pop eax
|
||
@@:
|
||
cmp edi,esi
|
||
jge @f
|
||
or al,0x30
|
||
stosb
|
||
mov byte[edi],0 ;¢ ª®¥æ áâப¨ áâ ¢¨¬ 0, çâ®-¡ë ¥ ¢ë« §¨« ¬ãá®à
|
||
@@:
|
||
ret
|
||
|
||
;¤ ë¥ ¤«ï ¤¨ «®£ ®âªàëâ¨ï ä ©«®¢
|
||
align 4
|
||
OpenDialog_data:
|
||
.type dd 0 ;0 - ®âªàëâì, 1 - á®åà ¨âì, 2 - ¢ë¡à âì ¤â४â®à¨î
|
||
.procinfo dd procinfo ;+4
|
||
.com_area_name dd communication_area_name ;+8
|
||
.com_area dd 0 ;+12
|
||
.opendir_path dd plugin_path ;+16
|
||
.dir_default_path dd default_dir ;+20
|
||
.start_path dd file_name ;+24 ¯ãâì ª ¤¨ «®£ã ®âªàëâ¨ï ä ©«®¢
|
||
.draw_window dd draw_window ;+28
|
||
.status dd 0 ;+32
|
||
.openfile_path dd openfile_path ;+36 ¯ãâì ª ®âªàë¢ ¥¬®¬ã ä ©«ã
|
||
.filename_area dd filename_area ;+40
|
||
.filter_area dd Filter
|
||
.x:
|
||
.x_size dw 420 ;+48 ; Window X size
|
||
.x_start dw 10 ;+50 ; Window X position
|
||
.y:
|
||
.y_size dw 320 ;+52 ; Window y size
|
||
.y_start dw 10 ;+54 ; Window Y position
|
||
|
||
default_dir db '/rd/1',0
|
||
|
||
communication_area_name:
|
||
db 'FFFFFFFF_open_dialog',0
|
||
open_dialog_name:
|
||
db 'opendial',0
|
||
communication_area_default_path:
|
||
db '/rd/1/File managers/',0
|
||
|
||
Filter:
|
||
dd Filter.end - Filter ;.1
|
||
.1:
|
||
db 'PNG',0
|
||
db 'JPG',0
|
||
db 'JPEG',0
|
||
db 'BMP',0
|
||
db 'GIF',0
|
||
.end:
|
||
db 0
|
||
|
||
txt_space db ' ',0
|
||
|
||
if lang eq ru
|
||
txt_err_save_img_file db '<27>¥ ¬®£ã á®åà ¨âì *.png ä ©«.',0
|
||
txt_about db '"Ž ¯à®£à ¬¬¥',13,10,\
|
||
'„ ï ¯à®£à ¬¬ ᤥ« ¤«ï ¯à¥®¡à §®¢ ¨ï ¨§®¡à ¦¥¨©.',13,10,\
|
||
'<EFBFBD>®á«¥ ®âªàëâ¨ï ä ©« ¨§®¡à ¦¥¨ï 㦮 㪠§ âì 4 â®çª¨,',13,10,\
|
||
'ª®â®àë¥ áâ ãâ 㣫 ¬¨ ¯à¥®¡à §®¢ ®£® ¨§®¡à ¦¥¨ï." -tI',0
|
||
txt_pref db ' ¡ ',0,' Š¡',0,' Œ¡',0,' ƒ¡',0 ;¯à¨áâ ¢ª¨: ª¨«®, ¬¥£ , £¨£
|
||
txt_f_size db '<27> §¬¥à: '
|
||
.size: rb 16
|
||
txt_img_w db '˜¨à¨ : '
|
||
.size: rb 16
|
||
txt_img_h db '‚ëá®â : '
|
||
else
|
||
txt_err_save_img_file db 'Can',39,'t save *.png file.',0
|
||
txt_about db '"About',13,10,\
|
||
'This program is designed to convert images.',13,10,\
|
||
'After opening the image file, you need to specify 4 points',13,10,\
|
||
'that will become the corners of the converted image." -tI',0
|
||
txt_pref db ' b ',0,' Kb',0,' Mb',0,' Gb',0 ;¯à¨áâ ¢ª¨: ª¨«®, ¬¥£ , £¨£
|
||
txt_f_size db 'Size: '
|
||
.size: rb 16
|
||
txt_img_w db 'Width: '
|
||
.size: rb 16
|
||
txt_img_h db 'Height: '
|
||
end if
|
||
.size: rb 16
|
||
|
||
|
||
system_dir_0 db '/sys/lib/'
|
||
lib_name_0 db 'proc_lib.obj',0
|
||
system_dir_1 db '/sys/lib/'
|
||
lib_name_1 db 'libimg.obj',0
|
||
system_dir_2 db '/sys/lib/'
|
||
lib_name_2 db 'buf2d.obj',0
|
||
system_dir_3 db '/sys/lib/'
|
||
lib_name_3 db 'tinygl.obj',0
|
||
|
||
align 4
|
||
head_f_i:
|
||
if lang eq ru
|
||
head_f_l db '"‘¨á⥬ ï ®è¨¡ª ',0
|
||
err_message_found_lib_0 db '<27>¥ ©¤¥ ¡¨¡«¨®â¥ª ',39,'proc_lib.obj',39,'" -tE',0
|
||
err_message_import_0 db 'Žè¨¡ª ¯à¨ ¨¬¯®à⥠¡¨¡«¨®â¥ª¨ ',39,'proc_lib.obj',39,'" -tE',0
|
||
err_message_found_lib_1 db '<27>¥ ©¤¥ ¡¨¡«¨®â¥ª ',39,'libimg.obj',39,'" -tE',0
|
||
err_message_import_1 db 'Žè¨¡ª ¯à¨ ¨¬¯®à⥠¡¨¡«¨®â¥ª¨ ',39,'libimg.obj',39,'" -tE',0
|
||
err_msg_found_lib_2 db '<27>¥ ©¤¥ ¡¨¡«¨®â¥ª ',39,'buf2d.obj',39,'" -tE',0
|
||
err_msg_import_2 db 'Žè¨¡ª ¯à¨ ¨¬¯®à⥠¡¨¡«¨®â¥ª¨ ',39,'buf2d',39,'" -tE',0
|
||
err_msg_found_lib_3 db '<27>¥ ©¤¥ ¡¨¡«¨®â¥ª ',39,'tinygl.obj',39,'" -tE',0
|
||
err_msg_import_3 db 'Žè¨¡ª ¯à¨ ¨¬¯®à⥠¡¨¡«¨®â¥ª¨ ',39,'tinygl',39,'" -tE',0
|
||
else
|
||
head_f_l db '"System error',0
|
||
err_message_found_lib_0 db 'Sorry I cannot found library ',39,'proc_lib.obj',39,'" -tE',0
|
||
err_message_import_0 db 'Error on load import library ',39,'proc_lib.obj',39,'" -tE',0
|
||
err_message_found_lib_1 db 'Sorry I cannot found library ',39,'libimg.obj',39,'" -tE',0
|
||
err_message_import_1 db 'Error on load import library ',39,'libimg.obj',39,'" -tE',0
|
||
err_msg_found_lib_2 db 'Sorry I cannot found library ',39,'buf2d.obj',39,'" -tE',0
|
||
err_msg_import_2 db 'Error on load import library ',39,'buf2d',39,'" -tE',0
|
||
err_msg_found_lib_3 db 'Sorry I cannot found library ',39,'tinygl.obj',39,'" -tE',0
|
||
err_msg_import_3 db 'Error on load import library ',39,'tinygl',39,'" -tE',0
|
||
end if
|
||
|
||
align 4
|
||
l_libs_start:
|
||
lib_0 l_libs lib_name_0, sys_path, file_name, system_dir_0,\
|
||
err_message_found_lib_0, head_f_l, proclib_import,err_message_import_0, head_f_i
|
||
lib_1 l_libs lib_name_1, sys_path, file_name, system_dir_1,\
|
||
err_message_found_lib_1, head_f_l, import_libimg, err_message_import_1, head_f_i
|
||
lib_2 l_libs lib_name_2, sys_path, library_path, system_dir_2,\
|
||
err_msg_found_lib_2,head_f_l,import_buf2d,err_msg_import_2,head_f_i
|
||
lib_3 l_libs lib_name_3, sys_path, library_path, system_dir_3,\
|
||
err_msg_found_lib_3,head_f_l,import_lib_tinygl,err_msg_import_3,head_f_i
|
||
l_libs_end:
|
||
|
||
align 4
|
||
import_libimg:
|
||
dd alib_init1
|
||
img_is_img dd aimg_is_img
|
||
img_info dd aimg_info
|
||
img_from_file dd aimg_from_file
|
||
img_to_file dd aimg_to_file
|
||
img_from_rgb dd aimg_from_rgb
|
||
img_to_rgb dd aimg_to_rgb
|
||
img_to_rgb2 dd aimg_to_rgb2
|
||
img_decode dd aimg_decode
|
||
img_encode dd aimg_encode
|
||
img_create dd aimg_create
|
||
img_destroy dd aimg_destroy
|
||
img_destroy_layer dd aimg_destroy_layer
|
||
img_count dd aimg_count
|
||
img_lock_bits dd aimg_lock_bits
|
||
img_unlock_bits dd aimg_unlock_bits
|
||
img_flip dd aimg_flip
|
||
img_flip_layer dd aimg_flip_layer
|
||
img_rotate dd aimg_rotate
|
||
img_rotate_layer dd aimg_rotate_layer
|
||
img_draw dd aimg_draw
|
||
|
||
dd 0,0
|
||
alib_init1 db 'lib_init',0
|
||
aimg_is_img db 'img_is_img',0 ;®¯à¥¤¥«ï¥â ¯® ¤ ë¬, ¬®¦¥â «¨ ¡¨¡«¨®â¥ª ᤥ« âì ¨§ ¨å ¨§®¡à ¦¥¨¥
|
||
aimg_info db 'img_info',0
|
||
aimg_from_file db 'img_from_file',0
|
||
aimg_to_file db 'img_to_file',0
|
||
aimg_from_rgb db 'img_from_rgb',0
|
||
aimg_to_rgb db 'img_to_rgb',0 ;¯à¥®¡à §®¢ ¨¥ ¨§®¡à ¦¥¨ï ¢ ¤ ë¥ RGB
|
||
aimg_to_rgb2 db 'img_to_rgb2',0
|
||
aimg_decode db 'img_decode',0 ; ¢â®¬ â¨ç¥áª¨ ®¯à¥¤¥«ï¥â ä®à¬ â £à ä¨ç¥áª¨å ¤ ëå
|
||
aimg_encode db 'img_encode',0
|
||
aimg_create db 'img_create',0
|
||
aimg_destroy db 'img_destroy',0
|
||
aimg_destroy_layer db 'img_destroy_layer',0
|
||
aimg_count db 'img_count',0
|
||
aimg_lock_bits db 'img_lock_bits',0
|
||
aimg_unlock_bits db 'img_unlock_bits',0
|
||
aimg_flip db 'img_flip',0
|
||
aimg_flip_layer db 'img_flip_layer',0
|
||
aimg_rotate db 'img_rotate',0
|
||
aimg_rotate_layer db 'img_rotate_layer',0
|
||
aimg_draw db 'img_draw',0
|
||
|
||
align 4
|
||
proclib_import: ;®¯¨á ¨¥ íªá¯®àâ¨à㥬ëå äãªæ¨©
|
||
OpenDialog_Init dd aOpenDialog_Init
|
||
OpenDialog_Start dd aOpenDialog_Start
|
||
OpenDialog_Set_file_name dd aOpenDialog_Set_file_name
|
||
OpenDialog_Set_file_ext dd aOpenDialog_Set_file_ext
|
||
dd 0,0
|
||
aOpenDialog_Init db 'OpenDialog_init',0
|
||
aOpenDialog_Start db 'OpenDialog_start',0
|
||
aOpenDialog_Set_file_name db 'OpenDialog_set_file_name',0
|
||
aOpenDialog_Set_file_ext db 'OpenDialog_set_file_ext',0
|
||
|
||
align 4
|
||
import_buf2d:
|
||
init dd sz_init
|
||
buf2d_create dd sz_buf2d_create
|
||
buf2d_create_f_img dd sz_buf2d_create_f_img
|
||
buf2d_clear dd sz_buf2d_clear
|
||
buf2d_draw dd sz_buf2d_draw
|
||
buf2d_delete dd sz_buf2d_delete
|
||
buf2d_resize dd sz_buf2d_resize
|
||
buf2d_line dd sz_buf2d_line
|
||
buf2d_rect_by_size dd sz_buf2d_rect_by_size
|
||
buf2d_filled_rect_by_size dd sz_buf2d_filled_rect_by_size
|
||
buf2d_circle dd sz_buf2d_circle
|
||
buf2d_img_hdiv2 dd sz_buf2d_img_hdiv2
|
||
buf2d_img_wdiv2 dd sz_buf2d_img_wdiv2
|
||
buf2d_conv_24_to_8 dd sz_buf2d_conv_24_to_8
|
||
buf2d_conv_24_to_32 dd sz_buf2d_conv_24_to_32
|
||
buf2d_bit_blt dd sz_buf2d_bit_blt
|
||
buf2d_bit_blt_transp dd sz_buf2d_bit_blt_transp
|
||
buf2d_bit_blt_alpha dd sz_buf2d_bit_blt_alpha
|
||
buf2d_curve_bezier dd sz_buf2d_curve_bezier
|
||
buf2d_convert_text_matrix dd sz_buf2d_convert_text_matrix
|
||
buf2d_draw_text dd sz_buf2d_draw_text
|
||
buf2d_crop_color dd sz_buf2d_crop_color
|
||
buf2d_offset_h dd sz_buf2d_offset_h
|
||
buf2d_flood_fill dd sz_buf2d_flood_fill
|
||
buf2d_set_pixel dd sz_buf2d_set_pixel
|
||
buf2d_get_pixel dd sz_buf2d_get_pixel
|
||
dd 0,0
|
||
sz_init db 'lib_init',0
|
||
sz_buf2d_create db 'buf2d_create',0
|
||
sz_buf2d_create_f_img db 'buf2d_create_f_img',0
|
||
sz_buf2d_clear db 'buf2d_clear',0
|
||
sz_buf2d_draw db 'buf2d_draw',0
|
||
sz_buf2d_delete db 'buf2d_delete',0
|
||
sz_buf2d_resize db 'buf2d_resize',0
|
||
sz_buf2d_line db 'buf2d_line',0
|
||
sz_buf2d_rect_by_size db 'buf2d_rect_by_size',0
|
||
sz_buf2d_filled_rect_by_size db 'buf2d_filled_rect_by_size',0
|
||
sz_buf2d_circle db 'buf2d_circle',0
|
||
sz_buf2d_img_hdiv2 db 'buf2d_img_hdiv2',0
|
||
sz_buf2d_img_wdiv2 db 'buf2d_img_wdiv2',0
|
||
sz_buf2d_conv_24_to_8 db 'buf2d_conv_24_to_8',0
|
||
sz_buf2d_conv_24_to_32 db 'buf2d_conv_24_to_32',0
|
||
sz_buf2d_bit_blt db 'buf2d_bit_blt',0
|
||
sz_buf2d_bit_blt_transp db 'buf2d_bit_blt_transp',0
|
||
sz_buf2d_bit_blt_alpha db 'buf2d_bit_blt_alpha',0
|
||
sz_buf2d_curve_bezier db 'buf2d_curve_bezier',0
|
||
sz_buf2d_convert_text_matrix db 'buf2d_convert_text_matrix',0
|
||
sz_buf2d_draw_text db 'buf2d_draw_text',0
|
||
sz_buf2d_crop_color db 'buf2d_crop_color',0
|
||
sz_buf2d_offset_h db 'buf2d_offset_h',0
|
||
sz_buf2d_flood_fill db 'buf2d_flood_fill',0
|
||
sz_buf2d_set_pixel db 'buf2d_set_pixel',0
|
||
sz_buf2d_get_pixel db 'buf2d_get_pixel',0
|
||
|
||
align 4
|
||
import_lib_tinygl:
|
||
|
||
macro E_LIB n
|
||
{
|
||
n dd sz_#n
|
||
}
|
||
include '../../../programs/develop/libraries/TinyGL/asm_fork/export.inc'
|
||
dd 0,0
|
||
macro E_LIB n
|
||
{
|
||
sz_#n db `n,0
|
||
}
|
||
include '../../../programs/develop/libraries/TinyGL/asm_fork/export.inc'
|
||
|
||
align 4
|
||
buf_0: dd 0
|
||
.l: dw 5 ;+4 left
|
||
.t: dw 35 ;+6 top
|
||
.w: dd 6*64 ;+8 w
|
||
.h: dd 7*64 ;+12 h
|
||
.color: dd 0x808080 ;+16 color
|
||
db 24 ;+20 bit in pixel
|
||
|
||
align 4
|
||
buf_font:
|
||
dd 0 ;㪠§ â¥«ì ¡ãä¥à ¨§®¡à ¦¥¨ï
|
||
dd 0 ;+4 left,top
|
||
.w: dd 0
|
||
.h: dd 0,0,24
|
||
|
||
align 4
|
||
buf_cop: ;¡ãä¥à ¤«ï ª®¯¨à®¢ ¨ï ⥪áâãàë
|
||
dd 0
|
||
.l: dw 0 ;+4 left
|
||
.t: dw 0 ;+6 top
|
||
.w: dd 0
|
||
.h: dd 0,0,24
|
||
|
||
;¨á室®¥ ¨§®¡à ¦¥¨¥
|
||
align 4
|
||
buf_i0: dd 0,0
|
||
.w: dd 0
|
||
.h: dd 0
|
||
.color: dd 0,24
|
||
|
||
;¯à¥®¡à §®¢ ®¥ ¨§®¡à ¦¥¨¥
|
||
align 4
|
||
buf_ogl: dd 0,0
|
||
.w: dd 0
|
||
.h: dd 0
|
||
.color: dd 0,24
|
||
|
||
align 16
|
||
i_end:
|
||
ctx1 db 28 dup (0) ;TinyGLContext or KOSGLContext
|
||
;sizeof.TinyGLContext = 28
|
||
TexObj dd 0 ;¬ áᨢ 㪠§ ⥫¥© ⥪áâãàë (¢ ¤ ®¬ á«ãç ¥ 1 èâ.)
|
||
nav_x_min dd 0 ;¬¨. ª®®à¤. x ¤«ï ¢¨£ 樨
|
||
nav_y_min dd 0 ;¬¨. ª®®à¤. y ¤«ï ¢¨£ 樨
|
||
nav_x_max dd 0 ;¬ ªá. ª®®à¤. x
|
||
nav_y_max dd 0 ;¬ ªá. ª®®à¤. y
|
||
nav_x dd 0 ;⥪ãé. ª®®à¤. x ¤«ï ¢¨£ 樨
|
||
nav_y dd 0 ;⥪ãé. ª®®à¤. y ¤«ï ¢¨£ 樨
|
||
nav_sx dd 0 ;áªà®« ¯® x
|
||
nav_sy dd 0 ;áªà®« ¯® y
|
||
mouse_down_x dd ?
|
||
mouse_down_y dd ?
|
||
sel_act dd ? ;â®çª ¢ë¡à ï ¤«ï । ªâ¨à®¢ ¨ï á ª« ¢¨ âãàë
|
||
sel_pt rb 8*sizeof.point2d ;â®çª¨ ¤«ï ¢ë¡®à 4-å 㣫®¢
|
||
last_time dd 0
|
||
txt_buf rb 8
|
||
procinfo process_information
|
||
sc system_colors
|
||
run_file_70 FileInfoBlock
|
||
rb 4096
|
||
align 16
|
||
stacktop:
|
||
sys_path rb 1024
|
||
file_name:
|
||
rb 1024 ;4096
|
||
library_path rb 1024
|
||
plugin_path rb 4096
|
||
openfile_path rb 4096
|
||
filename_area rb 256
|
||
mem:
|