Subversion Repositories Kolibri OS

Rev

Rev 6367 | Rev 6371 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. ;*******************************************************
  2. ;**************GRAPHICS EDITOR ANIMAGE *****************
  3. ;*******************************************************
  4. ; version: 1.51
  5. ; last update:  23.03.2016
  6. ; changes:      Use library 'kmenu.obj', update GUI
  7. ; autors:       IgorA, Veliant, Leency
  8. ;--------------------------------------------------------
  9. ; version: 1.4
  10. ; last update:  12.03.2016
  11. ; changes:      Use library 'libimg.obj'
  12. ; autors:       IgorA
  13. ;--------------------------------------------------------
  14. ; version: 1.3
  15. ; last update:  05.10.2010
  16. ; written by:   Marat Zakiyanov aka Mario79, aka Mario
  17. ; changes:      Fixed window flicker when redrawing,
  18. ;               Fixed memory leak for stack
  19. ;--------------------------------------------------------
  20. ; version: 1.2
  21. ; last update:  30.09.2010
  22. ; written by:   Marat Zakiyanov aka Mario79, aka Mario
  23. ; changes:      Program used function 68 instead 64 is now,
  24. ;               select path with OpenDialog
  25. ;--------------------------------------------------------
  26. ; version: 1.1
  27. ; last update:  09.12.2006
  28. ; autors:
  29. ; programming by andrew_programmer
  30. ; design by golus
  31.  
  32. use32
  33. org     0x0
  34.         db 'MENUET01'
  35.         dd 1, START, IM_END, I_END
  36.         dd stacktop, file_path, cur_dir_path
  37.  
  38. include '../../../config.inc' ;for nightbuild
  39. include '../../../macros.inc'
  40. include '../../../proc32.inc'
  41. include '../../../KOSfuncs.inc'
  42. include '../../../develop/libraries/box_lib/load_lib.mac'
  43. include '../../../dll.inc'
  44. include '../../../libio.inc'
  45. ;include '../../../develop/libraries/libs-dev/libimg/libimg.inc'
  46.  
  47. @use_library_mem mem.Alloc,mem.Free,mem.ReAlloc,dll.Load
  48.  
  49. ;---------------------------------------------------------
  50. ; *** ª®­áâ ­âë ¤«ï ¨­â¥àä¥©á  ***
  51. ; *** constants for interface  ***
  52.  
  53. ; ª®à४â¨à®¢ª¨ ­  ᪨­
  54. ci_offs_skin_w equ  5 ;ª®à४â¨à®¢ª  ­  è¨à¨­ã à ¬ª¨ ᪨­ 
  55. ci_offs_skin_h equ 24 ;ª®à४â¨à®¢ª  ­  ¢ëá®âã ᪨­ 
  56.  
  57. ; £« ¢­®¥ ®ª­®
  58. ci_wnd_min_siz_x equ 585 ;minimum size x
  59. ci_wnd_min_siz_y equ 400 ;minimum size y
  60.  
  61. ; ¯ ­¥«ì ¨­áâà㬥­â®¢
  62. ci_panel_x_pos equ  0 ;ª®®à¤¨­ â  x ¤«ï ¯ ­¥«¨
  63. ci_panel_y_pos equ 20 ;ª®®à¤¨­ â  y ¤«ï ¯ ­¥«¨
  64. ci_panel_but_y1 equ ci_panel_y_pos +5 ;ª®®à¤¨­ â  y ¤«ï 1-£® à鸞 ª­®¯®ª
  65. ci_panel_but_y2 equ ci_panel_y_pos+30 ;ª®®à¤¨­ â  y ¤«ï 2-£® à鸞 ª­®¯®ª
  66. ci_palete_y_pos equ ci_panel_y_pos+51 ;ª®®à¤¨­ â  y ¤«ï ¯ «¨âàë 梥⮢
  67.  
  68. ; ®ª­® । ªâ®à 
  69. ci_edit_wnd_x_pos  equ  0 ;ª®®à¤¨­ â  x ¤«ï ®ª­  । ªâ®à 
  70. ci_edit_wnd_y_pos  equ 71 ;ª®®à¤¨­ â  y ¤«ï ®ª­  । ªâ®à 
  71. ci_edit_wnd_border equ  3 ;à ¬ª  ¢®ªà㣠®ª­  । ªâ®à 
  72.  
  73. ; áªà®««¨­£¨
  74. ci_scroll_dim equ 22 ;à §¬¥àë áªà®««¨­£®¢
  75. ci_scrollh_coord_x_min equ (ci_edit_wnd_x_pos+3) ;¬¨­¨¬ «ì­ ï ¯®§¨æ¨ï ¯®«§ã­ª 
  76.         ;£®à¨§®­â «ì­®£® áªà®««¨­£ 
  77. ci_scrollv_coord_y_min equ (ci_edit_wnd_y_pos+3) ;¬¨­¨¬ «ì­ ï ¯®§¨æ¨ï ¯®«§ã­ª 
  78.         ;¢¥à⨪ «ì­®£® áªà®««¨­£ 
  79. ;---------------------------------------------------------
  80.  
  81. include 'bmplib.inc'
  82. include 'dialog2.inc'
  83. include 'design.inc'
  84. include 'graphlib.inc'
  85.  
  86. include 'cursors.inc'
  87. include 'memory.inc'
  88. include 'load_from_parameters.inc'
  89.  
  90. START:
  91.         mcall SF_SYS_MISC,SSF_HEAP_INIT
  92.         mcall SF_STYLE_SETTINGS, SSF_GET_COLORS, syscolors, syscolors_end-syscolors
  93.        
  94. load_libraries l_libs_start,end_l_libs
  95.  
  96.         cmp     eax,-1
  97.         jz      close
  98.  
  99.         mcall SF_SET_EVENTS_MASK,0x80000067 ; 1100111b
  100. ;---------------------------------------------------------
  101. ;-----------------------init data-------------------------
  102. ;---------------------------------------------------------
  103. include 'init_data.inc'
  104.  
  105. ;----------------------------------------------------------
  106. ;--------get memory and draw window of program-------------
  107. ;----------------------------------------------------------
  108.         call GetMemory
  109.         mov     [Current_instrument],10 ;pencil
  110.         call TakeButtonInstruments  ;set startup instrument
  111.         call cleare_work_arrea
  112.         call load_icons
  113.         call init_main_menu
  114.  
  115. ;load cursors
  116.         mov     eax,CursorsID
  117.         call load_cursors
  118.  
  119. ;---------------------------------------------------------
  120. ;---------check loading of file from parameters-----------
  121. ;---------------------------------------------------------
  122.         mov     eax,file_path
  123.         cmp [eax],byte 0
  124.         jz @f
  125.         call load_picture
  126.         call MovePictureToWorkScreen
  127. @@:
  128.  
  129. ;---------------------------------------------------------------------
  130.         mov     edi,filename_area
  131.         mov     esi,path4+5
  132.         call    copy_str_1
  133.  
  134.         mov     edi,file_path
  135.         cmp     [edi],byte 0
  136.         jne     @f
  137.         mov     esi,path4
  138.         call    copy_str_1
  139. @@:
  140. ;OpenDialog     initialisation
  141.         stdcall [OpenDialog_Init], OpenDialog_data
  142. ;---------------------------------------------------------------------
  143.  
  144. align 4
  145. red:
  146.         call drawwin
  147. ;----------------------------------------------------------
  148. ;---------------------main loop----------------------------
  149. ;----------------------------------------------------------
  150. align 4
  151. still:
  152.         mcall SF_WAIT_EVENT
  153.  
  154.         cmp     eax,1
  155.         je      red
  156.  
  157.         cmp     eax,2
  158.         je      keys
  159.  
  160.         cmp     eax,3
  161.         je      buttons
  162.  
  163.         cmp     eax,6
  164.         je      mouse
  165.  
  166.         jmp     still
  167.        
  168. ;---------------------------------------------------------------------
  169. copy_str_1:
  170.         xor     eax,eax
  171.         cld
  172. @@:
  173.         lodsb
  174.         stosb
  175.         test    eax,eax
  176.         jnz     @b
  177.         ret
  178. ;---------------------------------------------------------------------
  179. include 'events.inc'
  180. include 'events_of_window.inc'
  181. include 'events_of_keys.inc'
  182. include 'events_of_buttons.inc'
  183. include 'events_of_mouse.inc'
  184. include 'panel_engen.inc'
  185. include 'screen.inc'
  186. include 'menu_instruments.inc'
  187. include 'icons_instruments.inc'
  188. include 'icons.inc'
  189. include 'sprites.inc'
  190. include 'string.inc'
  191. include 'palette.inc'
  192. include 'files.inc'
  193. include 'time.inc'
  194. include 'menu.inc'
  195. ;-----------------------------------------------------------
  196. ;------------variables and data of program------------------
  197. ;-----------------------------------------------------------
  198. sound_havent_memory     db 150,64,0
  199.  
  200. include 'lib_data.inc'
  201. include 'panel_data.inc'
  202. include 'palitra256.inc'
  203. include 'brushes.inc'
  204. include 'spray.inc'
  205. include 'width_lines.inc'
  206. ;----------------------------------------------------------
  207. ;-------------------icon's picture-------------------------
  208. ;----------------------------------------------------------
  209. align 4
  210. panel_picture:
  211. file 'panel_buttons.png'
  212. .end:
  213. ;****************cursors******************
  214. brush_cursor:
  215. file 'brush.cur'
  216. flood_fill_cursor:
  217. file 'flood_fill.cur'
  218. lastik_cursor:
  219. file 'lastik.cur'
  220. other_cursor:
  221. file 'other.cur'
  222. pencil_cursor:
  223. file 'pencil.cur'
  224. pipette_cursor:
  225. file 'pipette.cur'
  226. spray_cursor:
  227. file 'spray.cur'
  228. zoom_cursor:
  229. file 'zoom.cur'
  230. ;----------------------------------------------------------
  231. align 4
  232. IM_END:
  233. ;-----------------------------------------------------------
  234. ;------------variables and data of program------------------
  235. ;-----------------------------------------------------------
  236. time                    rd 1
  237. PosX                    rd 1 ;scroll x file position
  238. PosY                    rd 1 ;scroll y file position
  239. PointerToIcons          rd 1
  240. ScreenPointer           rd 1
  241. PointerToPicture        rd 1
  242. PointerToCopyPicture    rd 1
  243. PointerToCopyPicture2   rd 1
  244. PointerToEditBufer      rd 1
  245. PointerToSpriteBufer    rd 1
  246. PointerToPalette        rd 1 ;㪠§ â¥«ì ­  ¯¨«¨âàã (­ã¦¥­ ¤«ï á®åà ­¥­¨ï ¢ *.bmp)
  247. Color                   rd 1
  248. SColor                  rd 1
  249. Number_Brush            rd 1
  250. Brush_SizeX             rd 1
  251. Brush_SizeY             rd 1
  252. Current_instrument      rd 1
  253. Last_instrument         rd 1
  254. OldX                    rd 1
  255. OldY                    rd 1
  256.  
  257. MouseX                  rd 1
  258. MouseY                  rd 1
  259. Window_SizeX            rd 1
  260. Window_SizeY            rd 1
  261. Window_CordinatX        rd 1
  262. Window_CordinatY        rd 1
  263. Picture_SizeX           rd 1
  264. Picture_SizeY           rd 1
  265. ScreenX                 rd 1 ;ª®®à¤¨­ â  x ªãàá®à  á ãç¥â®¬ ¬ áèâ ¡ 
  266. ScreenY                 rd 1 ;ª®®à¤¨­ â  y ªãàá®à  á ãç¥â®¬ ¬ áèâ ¡ 
  267. WorkScreen_SizeX        rd 1
  268. WorkScreen_SizeY        rd 1
  269. MaxWorkScreen_SizeX     rd 1
  270. MaxWorkScreen_SizeY     rd 1
  271. k                       rd 1 ;¬ áèâ ¡
  272.  
  273. ReserveArray            rd 1
  274. register                rd 1
  275. CounterX                rd 1
  276. CounterY                rd 1
  277. OffsetYPicture          rd 1
  278. OffsetYWorkScreen       rd 1
  279. OffsetYBigPixel         rd 1
  280.  
  281. Icon_X                  rd 1
  282. Icon_Y                  rd 1
  283. counter                 rd 1
  284. counter2                rd 1
  285. number_panel            rd 1
  286. number_menu             rd 1
  287.  
  288. Scroll1CoordinatX       rd 1 ;scroll x screen position
  289. Scroll1CoordinatY       rd 1 ;scroll y screen position
  290. Scroll1MaxSizeX         rd 1
  291. Scroll1MaxSizeY         rd 1
  292. Scroll1SizeX            rd 1 ;scroll polzunok size
  293. Scroll1FreeX            rd 1
  294.  
  295. Scroll2CoordinatX       rd 1
  296. Scroll2CoordinatY       rd 1
  297. Scroll2MaxSizeX         rd 1
  298. Scroll2MaxSizeY         rd 1
  299. Scroll2SizeY            rd 1
  300. Scroll2FreeY            rd 1
  301.  
  302. x                       rd 1
  303. y                       rd 1
  304.  
  305. Radius                  rd 1
  306. Dx_                     rd 1
  307. Dy_                     rd 1
  308. line_width              rd 1
  309. a_ellips                rd 1
  310. b_ellips                rd 1
  311.  
  312. used_OldX               rd 1 ;for draw hard contour
  313. used_OldY               rd 1
  314. rectangular_shade_x     rd 1 ;ª®®à¤¨­ â  x ®¡« á⨠¤«ï ª®¯¨à®¢ ­¨ï
  315. rectangular_shade_y     rd 1
  316. paste_img_w rd 1 ;è¨à¨­  ¢áâ ¢«ï¥¬®£® ¨§®¡à ¦¥­¨ï
  317. paste_img_h rd 1 ;¢ëá®â  ¢áâ ¢«ï¥¬®£® ¨§®¡à ¦¥­¨ï
  318. crossing_old_x          rd 1
  319. crossing_old_y          rd 1
  320. crossing                rd 1
  321. finishing_crossing      rd 1
  322. number_undo             rd 1
  323. SpriteSizeX             rd 1
  324. SpriteSizeY             rd 1
  325. SpriteCoordinatX        rd 1
  326. SpriteCoordinatY        rd 1
  327. SpriteOldCoordinatX     rd 1
  328. SpriteOldCoordinatY     rd 1
  329.  
  330. CursorsID       rd 10
  331.  
  332. Activate_instrument     rb 1
  333. save_flag               rb 1
  334. exit_from_work_arrea    rb 1
  335. lastik_is_active        rb 1
  336. instrument_used         rb 1
  337. DrawSprite_flag         rb 1
  338. Paste_flag              rb 1
  339. ;---------------------------------------------------------------------
  340. IncludeUGlobals
  341. ;---------------------------------------------------------------------
  342. align 4
  343. file_path rb 4096
  344. filename_area rb 256
  345. temp_dir_pach rb 4096
  346. library_path rb 4096
  347. cur_dir_path rb 4096
  348. procinfo: rb 1024
  349. align 4
  350. syscolors rb 192
  351. syscolors_end:
  352. ;---------------------------------------------------------------------
  353. align 4
  354.         rb 4096
  355. stacktop:
  356. ;---------------------------------------------------------------------
  357. I_END: