add single instance mode
[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.tracks->simple_destructor = free;
36     win->playlist.current_track = -1;
37 }
38
39 void PlayListAddFile(MainWindow *win, const char *file) {
40     char *f = strdup(file);
41     cxListAdd(win->playlist.tracks, f);
42 }
43
44 void PlayListPlayNext(MainWindow *win, bool force) {
45     CxList *tracks = win->playlist.tracks;
46     if(!tracks) return;
47     size_t len = tracks->size;
48     
49     int current = win->playlist.current_track;
50     if(win->playlist.repeatTrack) {
51         if(force) {
52             current++;
53         }
54     } else if(win->playlist.random) {
55         current = random() % len;
56     } else if(current < len) {
57         current++;
58     } else if(win->playlist.autoplayFolder) {
59         char *next_file = util_find_next_file(win->file);
60         cxListAdd(win->playlist.tracks, next_file);
61         current = len;
62     } else {
63         current = 0;
64     }
65     
66     PlayListPlayTrack(win, current);
67 }
68
69 void PlayListPlayTrack(MainWindow *win, int i) {
70     CxList *tracks = win->playlist.tracks;
71     if(i < tracks->size) {
72         char *file = cxListAt(tracks, i);
73         if(file) {
74             win->playlist.current_track = i;
75             win->file = file;
76             PlayerOpenFile(win);
77             win->playlist.current_track = i;
78         }
79     }
80 }
81
82 void PlayListClear(MainWindow *win) {
83     cxListClear(win->playlist.tracks);
84 }