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