-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDJApplication.cpp
88 lines (77 loc) · 2.78 KB
/
DJApplication.cpp
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
/*
==============================================================================
DJApplication.cpp
Created: 2 Mar 2022 1:24:39pm
Author: 13z79
==============================================================================
*/
#include "DJApplication.h"
DJApplication::DJApplication(juce::AudioFormatManager& _formatManager) : formatManager(_formatManager) {
}
DJApplication::~DJApplication() {
}
//==============================================================================
void DJApplication::prepareToPlay(int samplesPerBlockExpected, double sampleRate) {
transportSource.prepareToPlay(samplesPerBlockExpected, sampleRate);
resampleSource.prepareToPlay(samplesPerBlockExpected, sampleRate);
}
void DJApplication::getNextAudioBlock(const juce::AudioSourceChannelInfo& bufferToFill) {
resampleSource.getNextAudioBlock(bufferToFill);
}
void DJApplication::releaseResources() {
transportSource.releaseResources();
resampleSource.releaseResources();
}
//==============================================================================
void DJApplication::loadURL(juce::URL audioURL) {
auto* reader = formatManager.createReaderFor(audioURL.createInputStream(false));
if (reader != nullptr) // good file!
{
std::unique_ptr<juce::AudioFormatReaderSource> newSource(new juce::AudioFormatReaderSource(reader, true));
transportSource.setSource(newSource.get(), 0, nullptr, reader->sampleRate);
readerSource.reset(newSource.release());
}
}
void DJApplication::setGain(double gain) {
if (gain < 0 || gain > 1) {
DBG("DJApplication::setGain the gain should be between 0 and 1!");
}
else {
transportSource.setGain(gain);
}
}
void DJApplication::setSpeed(double ratio) {
if (ratio < 0 || ratio > 100.0) {
DBG("DJApplication::setSpeed the ratio should be between 0 and 1!");
}
else {
resampleSource.setResamplingRatio(ratio);
}
}
void DJApplication::setPosition(double posInSecs) {
transportSource.setPosition(posInSecs);
}
void DJApplication::setPositionRelative(double pos) {
if (pos < 0 || pos > 1.0) {
DBG("DJApplication::setPositionRelative the ratio should be between 0 and 1!");
}
else {
double posInSecs = transportSource.getLengthInSeconds() * pos;
setPosition(posInSecs);
}
}
// get the relative position of the playhead
double const DJApplication::getPositionRelative() {
if (transportSource.getLengthInSeconds() != 0) {
return transportSource.getCurrentPosition() / transportSource.getLengthInSeconds();
}
else {
DBG("DJApplication::getPositionRelative, Please load the file at the beginning!");
}
}
void DJApplication::start() {
transportSource.start();
}
void DJApplication::stop() {
transportSource.stop();
}