123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- #include "main.h"
- #include "resource.h"
- extern void ConvertEOF();
- int PlayQueue_OnEOF()
- {
- if (m_converting)
- {
- ConvertEOF();
- return 0;
- }
- LRESULT nextItem;
- g_fullstop = 1;
-
- nextItem = SendMessageW(hMainWindow, WM_WA_IPC, 0, IPC_GET_NEXT_PLITEM);
- if (nextItem != -1)
- {
- PlayList_setposition(nextItem);
- PlayList_getcurrent(FileName, FileTitle, FileTitleNum);
- StartPlaying();
- }
- else
- {
- if (PlayList_getlength() && !g_stopaftercur)
- {
- if (!config_pladv)
- {
- if (!config_repeat
- && !PlayList_current_hidden())
- goto fullstop;
- StartPlaying();
- }
- else if (!config_shuffle && PlayList_advance(HIDDEN_TRAP) < 0)
- {
- if (config_repeat)
- {
- PlayList_setposition(0);
- PlayList_getcurrent(FileName, FileTitle, FileTitleNum);
- StartPlaying();
- }
- else
- {
- g_fullstop = 2;
- StopPlaying(0);
- }
- }
- else
- {
- if (config_shuffle && !PlayList_current_hidden())
- {
- int lp = PlayList_getPosition();
- if ((PlayList_randpos(1) || PlayList_getlength() == 1)
- && !config_repeat)
- {
- g_fullstop = 2;
- StopPlaying(0);
- g_fullstop = 0;
- return 0;
- }
- if (PlayList_getPosition() == lp && PlayList_getlength() > 1)
- {
- PlayList_randpos(1);
- }
- }
- else
- {
-
-
-
- if (plcleared)
- {
- plcleared = 0;
- PlayList_setposition(0);
- }
- }
- PlayList_getcurrent(FileName, FileTitle, FileTitleNum);
- StartPlaying();
- }
- }
- else
- {
- HMENU m;
- fullstop:
- g_stopaftercur = 0;
- CheckMenuItem(main_menu, WINAMP_BUTTON4_CTRL, MF_UNCHECKED);
- m = GetSubMenu(top_menu, 3);
- CheckMenuItem(m, WINAMP_BUTTON4_CTRL, MF_UNCHECKED);
- g_fullstop = 2;
- StopPlaying(0);
- }
- }
- g_fullstop = 0;
- return 1;
- }
|