eb9dfc009cf33fb4d2e3421cbc15b06ae4f8eda3
[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 #include <cx/array_list.h>
31
32 void PlayListInit(MainWindow *win) {
33     win->playlist.tracks = cxArrayListCreate(cxDefaultAllocator, NULL, CX_STORE_POINTERS, 64);
34     win->playlist.current_track = -1;
35 }
36
37 void PlayListAddFile(MainWindow *win, const char *file) {
38     char *f = strdup(file);
39     cxListAdd(win->playlist.tracks, f);
40 }
41
42 void PlayListPlayNext(MainWindow *win, bool force) {
43     CxList *tracks = win->playlist.tracks;
44     if(!tracks) return;
45     size_t len = tracks->size;
46     
47     int current = win->playlist.current_track;
48     if(win->playlist.repeatTrack) {
49         if(force) {
50             current++;
51         }
52     } else if(win->playlist.random) {
53         current = random() % len;
54     } else if(current < len) {
55         current++;
56     } else if(win->playlist.autoplayFolder) {
57         char *next_file = util_find_next_file(win->file);
58         cxListAdd(win->playlist.tracks, next_file);
59         current = len;
60     } else {
61         current = 0;
62     }
63     
64     PlayListPlayTrack(win, current);
65 }
66
67 void PlayListPlayTrack(MainWindow *win, int i) {
68     CxList *tracks = win->playlist.tracks;
69     if(i < tracks->size) {
70         char *file = cxListAt(tracks, i);
71         if(file) {
72             win->playlist.current_track = i;
73             win->file = file;
74             PlayerOpenFile(win);
75             win->playlist.current_track = i;
76         }
77     }
78 }