commit cc3d22b19a3c7d44e5446e8e7e2f37f631a68e62
parent 420f438ad084a86341d5dc5d690d57fabcb7cc95
Author: Steven Atkinson <[email protected]>
Date: Sat, 16 Nov 2024 21:51:33 -0600
Refactor control updates that depend on a model. Fix model info in settings page (#527)
Diffstat:
2 files changed, 30 insertions(+), 20 deletions(-)
diff --git a/NeuralAmpModeler/NeuralAmpModeler.cpp b/NeuralAmpModeler/NeuralAmpModeler.cpp
@@ -387,20 +387,7 @@ void NeuralAmpModeler::OnIdle()
if (auto* pGraphics = GetUI())
{
pGraphics->GetControlWithTag(kCtrlTagOutNorm)->SetDisabled(!mModel->HasLoudness());
- ModelInfo modelInfo;
- modelInfo.sampleRate.known = true;
- modelInfo.sampleRate.value = mModel->GetEncapsulatedSampleRate();
- modelInfo.inputCalibrationLevel.known = mModel->HasInputLevel();
- modelInfo.inputCalibrationLevel.value = mModel->HasInputLevel() ? mModel->GetInputLevel() : 0.0;
- modelInfo.outputCalibrationLevel.known = mModel->HasOutputLevel();
- modelInfo.outputCalibrationLevel.value = mModel->HasOutputLevel() ? mModel->GetOutputLevel() : 0.0;
-
- static_cast<NAMSettingsPageControl*>(pGraphics->GetControlWithTag(kCtrlTagSettingsBox))->SetModelInfo(modelInfo);
-
- const bool disableInputCalibrationControls = !mModel->HasInputLevel();
- pGraphics->GetControlWithTag(kCtrlTagCalibrateInput)->SetDisabled(disableInputCalibrationControls);
- pGraphics->GetControlWithTag(kCtrlTagInputCalibrationLevel)->SetDisabled(disableInputCalibrationControls);
-
+ _UpdateControlsFromModel();
mNewModelLoadedInDSP = false;
}
}
@@ -479,12 +466,7 @@ void NeuralAmpModeler::OnUIOpen()
if (mModel != nullptr)
{
- auto* pGraphics = GetUI();
- assert(pGraphics != nullptr);
- pGraphics->GetControlWithTag(kCtrlTagOutNorm)->SetDisabled(!mModel->HasLoudness());
- const bool disableInputCalibrationControls = !mModel->HasInputLevel();
- pGraphics->GetControlWithTag(kCtrlTagCalibrateInput)->SetDisabled(disableInputCalibrationControls);
- pGraphics->GetControlWithTag(kCtrlTagInputCalibrationLevel)->SetDisabled(disableInputCalibrationControls);
+ _UpdateControlsFromModel();
}
}
@@ -939,6 +921,31 @@ int NeuralAmpModeler::_UnserializeStateLegacy_0_7_9(const IByteChunk& chunk, int
return pos;
}
+void NeuralAmpModeler::_UpdateControlsFromModel()
+{
+ if (mModel == nullptr)
+ {
+ return;
+ }
+ if (auto* pGraphics = GetUI())
+ {
+ ModelInfo modelInfo;
+ modelInfo.sampleRate.known = true;
+ modelInfo.sampleRate.value = mModel->GetEncapsulatedSampleRate();
+ modelInfo.inputCalibrationLevel.known = mModel->HasInputLevel();
+ modelInfo.inputCalibrationLevel.value = mModel->HasInputLevel() ? mModel->GetInputLevel() : 0.0;
+ modelInfo.outputCalibrationLevel.known = mModel->HasOutputLevel();
+ modelInfo.outputCalibrationLevel.value = mModel->HasOutputLevel() ? mModel->GetOutputLevel() : 0.0;
+
+ static_cast<NAMSettingsPageControl*>(pGraphics->GetControlWithTag(kCtrlTagSettingsBox))->SetModelInfo(modelInfo);
+
+ const bool disableInputCalibrationControls = !mModel->HasInputLevel();
+ pGraphics->GetControlWithTag(kCtrlTagOutNorm)->SetDisabled(!mModel->HasLoudness());
+ pGraphics->GetControlWithTag(kCtrlTagCalibrateInput)->SetDisabled(disableInputCalibrationControls);
+ pGraphics->GetControlWithTag(kCtrlTagInputCalibrationLevel)->SetDisabled(disableInputCalibrationControls);
+ }
+}
+
void NeuralAmpModeler::_UpdateLatency()
{
int latency = 0;
diff --git a/NeuralAmpModeler/NeuralAmpModeler.h b/NeuralAmpModeler/NeuralAmpModeler.h
@@ -251,6 +251,9 @@ private:
int _UnserializeStateLegacy_0_7_9(const iplug::IByteChunk& chunk, int startPos);
// And other legacy unsrializations if/as needed...
+ // Update all controls that depend on a model
+ void _UpdateControlsFromModel();
+
// Make sure that the latency is reported correctly.
void _UpdateLatency();