Это мой attempt:Где я ошибаюсь?
#include <iostream>
#include <functional>
class Voice;
class EnvelopeMultiPoints
{
public:
std::function<double(Voice &, double)> mCallback;
void SetupModulation(std::function<double(Voice &, double)> callback, int paramID) {
mCallback = callback;
}
};
class Voice
{
public:
EnvelopeMultiPoints mEnvelopeMultiPoints;
};
class VoiceManager
{
public:
Voice mVoices[16];
inline void UpdateVoices(std::function<void(Voice &)> callback) {
for (int i = 0; i < 16; i++) {
callback(mVoices[i]);
}
}
static void SetupEnvelopeMultiPointsModulation(Voice &voice, std::function<double(Voice &, double)> callback, int paramID) {
voice.mEnvelopeMultiPoints.SetupModulation(callback, paramID);
}
};
class Oscillator
{
public:
double ModulatePitch(Voice &voice, double currentValue) {
// somethings with voice
return currentValue * 10.0;
}
};
int main()
{
VoiceManager voiceManager;
Oscillator *pOscillator = new Oscillator();
int param = 100;
auto callback = std::bind(&Oscillator::ModulatePitch, pOscillator, std::placeholders::_1, std::placeholders::_2);
voiceManager.UpdateVoices(std::bind(&VoiceManager::SetupEnvelopeMultiPointsModulation, std::placeholders::_1, callback, param));
Voice voice = voiceManager.mVoices[0];
std::cout << voice.mEnvelopeMultiPoints.mCallback(voice, 1.0) << std::endl;
delete pOscillator;
}
создать своего рода Voice Updater «основной» итератора, который я могу передать какой-либо функции позже. Он выполняет итерацию всех голосов и передает функцию, которая мне нужна для этой итерации.
Но кажется, что я ошибаюсь, чтобы связать функцию Oscillator::ModulatePitch
, чтобы перейти к Updater?
Где я здесь не так?
Вы можете использовать лямбды? Использование 'auto callback = [pOscillator] (авто и голос, double d) {return pOscillator-> ModulatePitch (голос, d); }; 'работает для меня. Общее правило заключается в том, чтобы избежать «std :: bind», когда вы можете использовать lambdas. – Maikel
Рассматривали ли вы замену 'std :: bind' на lambdas? – nwp
, используя явный тип для 'callback', исправит его. 'std :: function callback = ...' Но я не могу точно объяснить, почему :) –
pergy