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
|
#include "nw4r/snd/snd_Bank.h"
/* Original source:
* kiwi515/ogws
* src/nw4r/snd/snd_Bank.cpp
*/
/*******************************************************************************
* headers
*/
#include "common.h"
#include "nw4r/snd/snd_BankFile.h" // InstInfo
#include "nw4r/snd/snd_Channel.h"
#include "nw4r/snd/snd_NoteOnCallback.h" // NoteOnInfo
#include "nw4r/snd/snd_WaveFile.h" // WaveInfo
#include "nw4r/ut/ut_algorithm.h" // ut::Min
/*******************************************************************************
* functions
*/
namespace nw4r { namespace snd { namespace detail {
Bank::Bank(void const *bankData) :
mBankReader (bankData),
mWaveDataAddress (nullptr)
{
}
Bank::~Bank() {}
Channel *Bank::NoteOn(NoteOnInfo const ¬eOnInfo) const
{
bool result;
InstInfo instInfo;
result = mBankReader.ReadInstInfo(&instInfo, noteOnInfo.prgNo,
noteOnInfo.key, noteOnInfo.velocity);
if (!result)
return nullptr;
WaveInfo waveParam;
WaveInfo const *waveInfoAddress;
result = mBankReader.ReadWaveInfo(&waveParam, instInfo.waveDataLocation,
mWaveDataAddress, &waveInfoAddress);
if (!result)
return nullptr;
int voiceChannelCount =
ut::Min(waveParam.numChannels, Channel::CHANNEL_MAX);
Channel *ch_p = Channel::AllocChannel(voiceChannelCount,
noteOnInfo.voiceOutCount, noteOnInfo.priority,
noteOnInfo.channelCallback, noteOnInfo.channelCallbackData);
if (!ch_p)
return nullptr;
ch_p->SetKey(noteOnInfo.key);
ch_p->SetOriginalKey(instInfo.originalKey);
f32 initVolume = noteOnInfo.velocity / 127.0f;
initVolume *= initVolume;
initVolume *= instInfo.volume / 127.0f;
ch_p->SetInitVolume(initVolume);
ch_p->SetTune(instInfo.tune);
ch_p->SetAttack(instInfo.attack);
ch_p->SetHold(instInfo.hold);
ch_p->SetDecay(instInfo.decay);
ch_p->SetSustain(instInfo.sustain);
ch_p->SetRelease(instInfo.release);
f32 initPan = (instInfo.pan - 64) / 63.0f;
initPan += noteOnInfo.initPan / 63.0f;
ch_p->SetInitPan(initPan);
ch_p->SetInitSurroundPan(0.0f);
ch_p->SetAlternateAssignId(instInfo.alternateAssign);
ch_p->SetReleaseIgnore(instInfo.noteOffType
== InstInfo::NOTE_OFF_TYPE_IGNORE);
if (instInfo.waveDataLocation.type
== InstInfo::WaveDataLocation::WAVE_DATA_LOCATION_CALLBACK)
{
ch_p->SetWaveDataLocationCallback(instInfo.waveDataLocation.callback,
waveInfoAddress);
}
ch_p->Start(waveParam, noteOnInfo.length, 0);
return ch_p;
}
}}} // namespace nw4r::snd::detail
|