Subversion Repositories Kolibri OS

Rev

Rev 5825 | Blame | Last modification | View Log | Download | RSS feed

  1. //flac
  2. //do not open multiple threads
  3. //edit list manually
  4.  
  5. #define MEMSIZE 0xFFFFF
  6.  
  7. #include "..\lib\obj\proc_lib.h"
  8. #include "..\lib\patterns\simple_open_dialog.h"
  9. char default_dir[] = "/rd/1";
  10. od_filter filter2 = { "MP3", 0 };
  11.  
  12. #include "..\lib\file_system.h"
  13. #include "..\lib\list_box.h"
  14. #include "..\lib\gui.h"
  15.  
  16. #include "..\lib\obj\box_lib.h"
  17. #include "..\lib\obj\libio_lib.h"
  18. #include "..\lib\obj\libimg_lib.h"
  19. #include "..\lib\obj\libini.h"
  20.  
  21. #include "..\lib\patterns\libimg_load_skin.h"
  22.  
  23. #define ABOUT_MESSAGE "'Pixies Player v1.33\n\nOpen file: O key\nChange skin: F1/F2
  24. Play/Stop: Space or P key\nStart playing selected file: Enter
  25. Goto next/previous track: Ctrl + Left/Right
  26. Change sound volume: Left/Right key\nMute: M key' -St\n"
  27.  
  28. scroll_bar scroll1 = { 5,200,398,44,0,2,115,15,0,0xeeeeee,0xBBBbbb,0xeeeeee,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1};
  29.  
  30. proc_info Form;
  31. llist list;
  32.  
  33. char pixie_ini_path[4096];
  34.  
  35. enum {
  36.         BUTTON_WINDOW_CLOSE = 1,
  37.         BUTTON_WINDOW_MINIMIZE,
  38.         BUTTON_WINDOW_REDUCE,
  39.         BUTTON_PLAYBACK_PLAY_PAUSE = 10,
  40.         BUTTON_PLAYBACK_PREV,
  41.         BUTTON_PLAYBACK_NEXT
  42. };
  43.  
  44. int player_run_id,
  45.    notify_run_id;
  46.  
  47. int current_playing_file_n=0;
  48.  
  49. word win_x_normal, win_y_normal;
  50. word win_x_small, win_y_small;
  51.  
  52. byte window_mode;
  53. enum {
  54.         WINDOW_MODE_NORMAL,
  55.         WINDOW_MODE_SMALL
  56. };
  57.  
  58.  
  59. byte playback_mode;
  60. enum {
  61.         PLAYBACK_MODE_STOPED,
  62.         PLAYBACK_MODE_PLAYING
  63. };
  64.  
  65. char work_folder[4096],
  66.     current_filename[256];
  67.  
  68.  
  69. #include "get_files_list.h"
  70. #include "settings.h"
  71. #include "check_default_player.h"
  72.  
  73.  
  74. void OpenFolder(dword path111)
  75. {
  76.         if (ESBYTE[path111])
  77.         {
  78.                 strcpy(#work_folder, path111);
  79.                 work_folder[strrchr(#work_folder, '/')-1]='\0';
  80.                 OpenDirectory(#work_folder);
  81.                 SetOpenedFileFirst(path111);
  82.         }
  83.         list.SetFont(6, 9, 10000000b);
  84.         list.SetSizes(1, skin.h, skin.w-1, 198, 18);
  85.         if (list.count <= list.visible)
  86.         {
  87.                 list.h = list.count * list.item_h;
  88.                 list.visible = list.count;
  89.         }
  90.         else
  91.         {
  92.                 list.w -= scroll1.size_x;
  93.         }
  94.         MoveSize(OLD, OLD, OLD, skin.h + list.h);
  95.         list.KeyHome();
  96.         current_playing_file_n=0;
  97.         StopPlayingMp3();
  98.         StartPlayingMp3();     
  99. }
  100.  
  101. void main()
  102. {
  103.         int id;
  104.  
  105.         byte mouse_clicked;
  106.         dword tmp_x,tmp_y;
  107.         dword z1,z2;
  108.        
  109.         mem_Init();
  110.         load_dll(boxlib, #box_lib_init,0);
  111.         load_dll(libio, #libio_init,1);
  112.         load_dll(libimg, #libimg_init,1);
  113.         load_dll(libini, #lib_init,1);
  114.         load_dll(Proc_lib, #OpenDialog_init,0);
  115.         OpenDialog_init stdcall (#o_dialog);
  116.  
  117.         id = abspath("pixie.ini");
  118.         strcpy(#pixie_ini_path, id);
  119.         LoadIniConfig();
  120.         CheckDefaultForTheFirstStart();
  121.         OpenFolder(#param);
  122.         SetEventMask(0100111b);
  123.         loop()
  124.         {
  125.           WaitEventTimeout(10);
  126.           switch(EAX & 0xFF) {
  127.                 case evMouse:
  128.                         if (!CheckActiveProcess(Form.ID)) break;
  129.                         mouse.get();
  130.                         scrollbar_v_mouse (#scroll1);
  131.                         if (list.first != scroll1.position)
  132.                         {
  133.                                 list.first = scroll1.position;
  134.                                 DrawPlayList();
  135.                                 break;
  136.                         }
  137.                         if (list.MouseOver(mouse.x, mouse.y))
  138.                         {
  139.                                 if (mouse.vert) if (list.MouseScroll(mouse.vert)) DrawPlayList();
  140.                                 if (mouse.dblclick) {current_playing_file_n=list.cur_y; StartPlayingMp3();}
  141.                                 if (mouse.down) && (mouse.key&MOUSE_LEFT) if (list.ProcessMouse(mouse.x, mouse.y)) DrawPlayList();
  142.                                 if (mouse.down) && (mouse.key&MOUSE_RIGHT) NotifyAndBackFocus(ABOUT_MESSAGE);
  143.                         }
  144.                         //drag window - emulate windows header
  145.                         if(mouse.key&MOUSE_LEFT) && (mouse.y<skin.h) && (mouse.x < 13)
  146.                         {
  147.                                 tmp_x = mouse.x;
  148.                                 tmp_y = mouse.y;
  149.                                 do {
  150.                                         mouse.get();
  151.                                         if (tmp_x!=mouse.x) || (tmp_y!=mouse.y)
  152.                                         {
  153.                                                 z1 = Form.left + mouse.x - tmp_x;
  154.                                                 z2 = Form.top + mouse.y - tmp_y;
  155.                                                 if(z1<=10) || (z1>20000) z1=0; else if(z1>screen.width-Form.width-10)z1=screen.width-Form.width;
  156.                                                 if(z2<=10) || (z2>20000) z2=0; else if(z2>screen.height-Form.height-10)z2=screen.height-Form.height;
  157.                                                 MoveSize(z1 , z2, OLD, OLD);
  158.                                                 draw_window();
  159.                                         }
  160.                                         pause(1);
  161.                                 } while (mouse.lkm);
  162.                         }
  163.                         break;
  164.                 case evButton:
  165.                         id=GetButtonID();
  166.                         switch(id) {
  167.                                 case BUTTON_WINDOW_CLOSE:
  168.                                         StopPlayingMp3();
  169.                                         SaveIniConfig();
  170.                                         ExitProcess();
  171.                                         break;
  172.                                 case BUTTON_WINDOW_MINIMIZE:
  173.                                         MinimizeWindow();
  174.                                         break;
  175.                                 case BUTTON_WINDOW_REDUCE:
  176.                                         if (window_mode == WINDOW_MODE_NORMAL)
  177.                                         {
  178.                                                 window_mode = WINDOW_MODE_SMALL;
  179.                                                 win_x_normal = Form.left;
  180.                                                 win_y_normal = Form.top;
  181.                                                 MoveSize(OLD, OLD, 99, skin.h - 1);
  182.                                                 MoveSize(OLD, win_y_small, OLD, OLD);
  183.                                                 MoveSize(win_x_small, OLD, OLD, OLD);
  184.                                         }
  185.                                         else
  186.                                         {
  187.                                                 window_mode = WINDOW_MODE_NORMAL;
  188.                                                 win_x_small = Form.left;
  189.                                                 win_y_small = Form.top;
  190.                                                 MoveSize(win_x_normal, win_y_normal, skin.w -1 ,skin.h + list.h);
  191.                                         }
  192.                                         break;
  193.                                 case BUTTON_PLAYBACK_PREV: _PLAY_PREVIOUS:
  194.                                         current_playing_file_n--;
  195.                                         StartPlayingMp3();
  196.                                         break;
  197.                                 case BUTTON_PLAYBACK_NEXT: _PLAY_NEXT:
  198.                                         current_playing_file_n++;
  199.                                         StartPlayingMp3();
  200.                                         break;
  201.                                 case BUTTON_PLAYBACK_PLAY_PAUSE:
  202.                                         PlayAndPauseClick();
  203.                                         break;
  204.                         }
  205.                         break;   
  206.                 case evKey:
  207.                         GetKeys();
  208.                         if (key_modifier&KEY_LCTRL) || (key_modifier&KEY_RCTRL) {
  209.                                 if (key_scancode==SCAN_CODE_LEFT) goto _PLAY_PREVIOUS;
  210.                                 if (key_scancode==SCAN_CODE_RIGHT) goto _PLAY_NEXT;
  211.                                 break;
  212.                         }              
  213.                         if (key_scancode==024) { OpenDialog_start stdcall (#o_dialog); if (o_dialog.status==1) OpenFolder(#openfile_path); }
  214.                         if (key_scancode==059) SetColorThemeLight();
  215.                         if (key_scancode==060) SetColorThemeDark();
  216.                         if (key_scancode==SCAN_CODE_LEFT) RunProgram("@VOLUME", "-");
  217.                         if (key_scancode==SCAN_CODE_RIGHT) RunProgram("@VOLUME", "+");
  218.                         if (key_scancode==050) RunProgram("@VOLUME", "m");
  219.                         if (key_scancode==SCAN_CODE_ENTER) { current_playing_file_n=list.cur_y; StartPlayingMp3(); }
  220.                         if (key_scancode==025) || (key_scancode==SCAN_CODE_SPACE) PlayAndPauseClick();
  221.                         if (list.ProcessKey(key_scancode)) DrawPlayList();
  222.                         break;
  223.                 case evReDraw:
  224.                         if (window_mode == WINDOW_MODE_NORMAL) DefineAndDrawWindow(win_x_normal, win_y_normal, skin.w - 1, skin.h + list.h, 0x41,0,0,0);
  225.                         if (window_mode == WINDOW_MODE_SMALL) DefineAndDrawWindow(win_x_small, win_y_small, 99, skin.h - 1, 0x41,0,0,0);
  226.                         draw_window();
  227.                         break;
  228.                 default:
  229.                         if (playback_mode == PLAYBACK_MODE_PLAYING) && (!GetProcessSlot(player_run_id))
  230.                         {
  231.                                 current_playing_file_n++;
  232.                                 StartPlayingMp3();
  233.                         }
  234.           }
  235.   }
  236. }
  237.  
  238. void PlayAndPauseClick()
  239. {
  240.         if (playback_mode == PLAYBACK_MODE_PLAYING)
  241.         {
  242.                 playback_mode = PLAYBACK_MODE_STOPED;
  243.                 StopPlayingMp3();
  244.         }
  245.         else
  246.         {
  247.                 playback_mode = PLAYBACK_MODE_PLAYING;
  248.                 StartPlayingMp3();
  249.         }
  250. }
  251.  
  252.  
  253. void DrawPlayList()
  254. {
  255.         int i;
  256.         int yyy;
  257.         char temp_filename[4096];
  258.         for (i=0; i<list.visible; i++;)
  259.         {
  260.                 strcpy(#temp_filename, files_mas[i + list.first] * 304 + buf + 72);
  261.                 temp_filename[strlen(#temp_filename)-4] = '\0';
  262.                 if (strlen(#temp_filename)>47) strcpy(#temp_filename+44, "...");
  263.                
  264.                 yyy = i*list.item_h+list.y;
  265.                
  266.                 //this is selected file
  267.                 if (list.cur_y - list.first == i)
  268.                 {
  269.                         if (i>=list.count) continue;
  270.                         DrawBar(list.x, yyy, list.w, list.item_h, theme.color_list_active_bg);
  271.                         WriteText(12,yyy+list.text_y,0x80, theme.color_list_active_text, #temp_filename);
  272.                 }
  273.                 //this is not selected file
  274.                 else
  275.                 {
  276.                         if (i>=list.count) continue;
  277.                         DrawBar(list.x,yyy,list.w, list.item_h, theme.color_list_bg);
  278.                         WriteText(12,yyy+list.text_y,0x80, theme.color_list_text, #temp_filename);
  279.                 }
  280.                 //this is cur_y playing file
  281.                 if (i + list.first == current_playing_file_n) && (playback_mode == PLAYBACK_MODE_PLAYING)
  282.                 {
  283.                         WriteText(3, yyy+list.text_y,0x80, theme.color_list_active_pointer, "\x10");
  284.                         WriteText(12,yyy+list.text_y,0x80, theme.color_list_active_text, #temp_filename);
  285.                 }
  286.         }
  287.         DrawBar(list.x,list.visible * list.item_h + list.y, list.w, -list.visible * list.item_h + list.h, theme.color_list_bg);
  288.         DrawScroller();
  289. }
  290.  
  291.  
  292. void StopPlayingMp3()
  293. {
  294.         if (player_run_id) player_run_id = KillProcess(player_run_id);
  295.         if (notify_run_id) notify_run_id = KillProcess(notify_run_id);
  296.         playback_mode = PLAYBACK_MODE_STOPED;
  297.         DrawTopPanel();
  298.         DrawPlayList();
  299. }
  300.  
  301.  
  302. int NotifyAndBackFocus(dword msg)
  303. {
  304.         int nid;
  305.         nid = notify(msg);
  306.         pause(5);
  307.         Form.num_slot = GetProcessSlot(Form.ID);
  308.         if (Form.ID) ActivateWindow(Form.num_slot);
  309.         return nid;
  310. }
  311.  
  312.  
  313. void StartPlayingMp3()
  314. {
  315.         word i;
  316.         char item_path[4096];
  317.         char notify_message[512];
  318.         StopPlayingMp3();
  319.         if (!list.count) { NotifyAndBackFocus("'Pixie Player\nPress O key to open MP3 file' -St"); return; }
  320.         if (current_playing_file_n > list.count) { current_playing_file_n = list.count; return; }
  321.         if (current_playing_file_n < 0) { current_playing_file_n = 0; return; }
  322.         playback_mode = PLAYBACK_MODE_PLAYING;
  323.         strlcpy(#current_filename, Getcur_yItemName(), sizeof(current_filename));
  324.         sprintf(#item_path,"\"%s/%s\"",#work_folder,#current_filename);
  325.         DrawPlayList();
  326.         DrawTopPanel();
  327.         if (strcmpi(#item_path+strlen(#item_path)-4,".mp3")) player_run_id = RunProgram(abspath("minimp3"), #item_path);       
  328.         sprintf(#notify_message,"'Now playing:\n%s' -St",#current_filename);
  329.         for (i=2; i<strlen(#notify_message)-6; i++) if (notify_message[i]=='\'') notify_message[i]=96; //replace ' char to avoid @notify misunderstood
  330.         notify_run_id = NotifyAndBackFocus(#notify_message);
  331. }
  332.  
  333.  
  334. void draw_window() {
  335.         GetProcessInfo(#Form, SelfInfo);
  336.         DrawTopPanel();
  337.         IF (Form.status_window>=2) return;
  338.         if (window_mode == WINDOW_MODE_NORMAL)
  339.         {
  340.                 DrawListBorder(0, skin.h-1, skin.w-1, list.h+1, theme.color_list_border);
  341.                 DrawPlayList();
  342.         }
  343. }
  344.  
  345. void DrawTopPanel()
  346. {
  347.         char cur_y_playing_title[245];
  348.         img_draw stdcall(skin.image, 0, 0, Form.width - 14, skin.h, 0, 0);
  349.         img_draw stdcall(skin.image, Form.width - 14, 0, 15, skin.h, skin.w - 15, 0);
  350.         if (playback_mode == PLAYBACK_MODE_STOPED) img_draw stdcall(skin.image, 13, 0, 22, skin.h, 300, 0);
  351.         //Playing control buttons
  352.         DefineButton(13, 1, 21, 21, BUTTON_PLAYBACK_PLAY_PAUSE + BT_HIDE, 0);
  353.         DefineButton(36, 1, 21, 21, BUTTON_PLAYBACK_PREV + BT_HIDE, 0);
  354.         DefineButton(60, 1, 21, 21, BUTTON_PLAYBACK_NEXT + BT_HIDE, 0);
  355.         //Window control buttons
  356.         DefineButton(Form.width - 14,  1, 11, 11, BUTTON_WINDOW_CLOSE + BT_HIDE, 0);
  357.         DefineButton(Form.width - 14, 12, 12, 11, BUTTON_WINDOW_REDUCE + BT_HIDE, 0);
  358.         //Mode depended
  359.         if (window_mode == WINDOW_MODE_NORMAL)
  360.         {
  361.                 DefineButton(Form.width - 26,  1, 12, 11, BUTTON_WINDOW_MINIMIZE + BT_HIDE, 0);
  362.                 strcpy(#cur_y_playing_title, #current_filename);
  363.                 cur_y_playing_title[strlen(#cur_y_playing_title)-4] = '\0';
  364.                 if (strlen(#cur_y_playing_title) > 29) strcpy(#cur_y_playing_title + 26, "...");
  365.                 WriteText(90, 9, 0x80, theme.color_top_panel_text, #cur_y_playing_title);
  366.         }
  367.         else
  368.         {
  369.                 DefineButton(0, 0, 12, skin.h, 99 + BT_HIDE + BT_NOFRAME, 0);
  370.         }
  371. }
  372.  
  373.  
  374. void DrawScroller()
  375. {
  376.         scroll1.max_area = list.count;
  377.         scroll1.cur_area = list.visible;
  378.         scroll1.position = list.first;
  379.         scroll1.all_redraw = 0;
  380.         scroll1.start_x = skin.w - scroll1.size_x - 1;
  381.         scroll1.start_y = list.y-1;
  382.         scroll1.size_y = list.h+2;
  383.         if (list.count > list.visible) scrollbar_v_draw(#scroll1);
  384. }
  385.  
  386. void DrawListBorder(dword x,y,w,h,color1)
  387. {
  388.         DrawBar(x,y+h,w,1,color1);
  389.         DrawBar(x,y,1,h,color1);
  390.         DrawBar(x+w,y,1,h+1,color1);
  391. }
  392.  
  393.  
  394. stop:
  395.  
  396. char menu_stak[4096];