1b311800fd8d211e4ee8745aa15c4b4e156992db
[uwplayer.git] / application / playlist.c
1 /*
2  * Copyright 2022 Olaf Wintermann
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a 
5  * copy of this software and associated documentation files (the "Software"), 
6  * to deal in the Software without restriction, including without limitation 
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense, 
8  * and/or sell copies of the Software, and to permit persons to whom the 
9  * Software is furnished to do so, subject to the following conditions:
10  * 
11  * The above copyright notice and this permission notice shall be included in 
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 
17  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
19  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
20  * DEALINGS IN THE SOFTWARE.
21  */
22
23 #include "playlist.h"
24
25 #include <stdlib.h>
26
27 #include "player.h"
28 #include "utils.h"
29
30 void PlayListInit(MainWindow *win) {
31     win->playlist.current_track = -1;
32 }
33
34 void PlayListAddFile(MainWindow *win, const char *file) {
35     char *f = strdup(file);
36     win->playlist.tracks = ucx_list_append(win->playlist.tracks, f);
37 }
38
39 void PlayListPlayNext(MainWindow *win, bool force) {
40     UcxList *tracks = win->playlist.tracks;
41     if(!tracks) return;
42     size_t len = ucx_list_size(tracks);
43     
44     int current = win->playlist.current_track;
45     if(win->playlist.repeatTrack) {
46         if(force) {
47             current++;
48         }
49     } else if(win->playlist.random) {
50         current = random() % len;
51     } else if(current < len) {
52         current++;
53     } else if(win->playlist.autoplayFolder) {
54         char *next_file = util_find_next_file(win->file);
55         win->playlist.tracks = ucx_list_append(win->playlist.tracks, next_file);
56         current = len;
57     } else {
58         current = 0;
59     }
60     
61     PlayListPlayTrack(win, current);
62 }
63
64 void PlayListPlayTrack(MainWindow *win, int i) {
65     UcxList *tracks = win->playlist.tracks;
66     if(i < ucx_list_size(tracks)) {
67         win->playlist.current_track = i;
68         UcxList *fileElm = ucx_list_get(tracks, i);
69         if(fileElm) {
70             win->file = fileElm->data;
71             PlayerOpenFile(win);
72             win->playlist.current_track = i;
73         }
74     }
75 }