mirrored from http://xwax.org/devel/xwax.git/
-
Notifications
You must be signed in to change notification settings - Fork 34
/
deck.c
189 lines (154 loc) · 4.13 KB
/
deck.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/*
* Copyright (C) 2024 Mark Hills <mark@xwax.org>
*
* This file is part of "xwax".
*
* "xwax" is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License, version 3 as
* published by the Free Software Foundation.
*
* "xwax" is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <https://www.gnu.org/licenses/>.
*
*/
#include <assert.h>
#include "controller.h"
#include "cues.h"
#include "deck.h"
#include "status.h"
#include "rig.h"
/*
* An empty record, is used briefly until a record is loaded
* to a deck
*/
static const struct record no_record = {
.artist = "",
.title = ""
};
/*
* Initialise a deck
*
* A deck is a logical grouping of the various components which
* reflects the user's view on a deck in the system.
*
* Pre: deck->device is valid
*/
int deck_init(struct deck *d, struct rt *rt,
struct timecode_def *timecode, const char *importer,
double speed, bool phono, bool protect)
{
unsigned int rate;
if (rt_add_device(rt, &d->device) == -1)
return -1;
d->ncontrol = 0;
d->record = &no_record;
d->punch = NO_PUNCH;
d->protect = protect;
assert(importer != NULL);
d->importer = importer;
rate = device_sample_rate(&d->device);
assert(timecode != NULL);
timecoder_init(&d->timecoder, timecode, speed, rate, phono);
player_init(&d->player, rate, track_acquire_empty(), &d->timecoder);
cues_reset(&d->cues);
/* The timecoder and player are driven by requests from
* the audio device */
device_connect_timecoder(&d->device, &d->timecoder);
device_connect_player(&d->device, &d->player);
return 0;
}
void deck_clear(struct deck *d)
{
/* FIXME: remove from rig and rt */
player_clear(&d->player);
timecoder_clear(&d->timecoder);
device_clear(&d->device);
}
bool deck_is_locked(const struct deck *d)
{
return (d->protect && player_is_active(&d->player));
}
/*
* Load a record from the library to a deck
*/
void deck_load(struct deck *d, struct record *record)
{
struct track *t;
if (deck_is_locked(d)) {
status_printf(STATUS_WARN, "Stop deck to load a different track");
return;
}
t = track_acquire_by_import(d->importer, record->pathname);
if (t == NULL)
return;
d->record = record;
player_set_track(&d->player, t); /* passes reference */
}
void deck_recue(struct deck *d)
{
if (deck_is_locked(d)) {
status_printf(STATUS_WARN, "Stop deck to recue");
return;
}
player_recue(&d->player);
}
void deck_clone(struct deck *d, const struct deck *from)
{
d->record = from->record;
player_clone(&d->player, &from->player);
}
/*
* Clear the cue point, ready to be set again
*/
void deck_unset_cue(struct deck *d, unsigned int label)
{
cues_unset(&d->cues, label);
}
/*
* Seek the current playback position to a cue point position,
* or set the cue point if unset
*/
void deck_cue(struct deck *d, unsigned int label)
{
double p;
p = cues_get(&d->cues, label);
if (p == CUE_UNSET)
cues_set(&d->cues, label, player_get_elapsed(&d->player));
else
player_seek_to(&d->player, p);
}
/*
* Seek to a cue point ready to return from it later. Overrides an
* existing punch operation.
*/
void deck_punch_in(struct deck *d, unsigned int label)
{
double p, e;
e = player_get_elapsed(&d->player);
p = cues_get(&d->cues, label);
if (p == CUE_UNSET) {
cues_set(&d->cues, label, e);
return;
}
if (d->punch != NO_PUNCH)
e -= d->punch;
player_seek_to(&d->player, p);
d->punch = p - e;
}
/*
* Return from a cue point
*/
void deck_punch_out(struct deck *d)
{
double e;
if (d->punch == NO_PUNCH)
return;
e = player_get_elapsed(&d->player);
player_seek_to(&d->player, e - d->punch);
d->punch = NO_PUNCH;
}