@Morphoice can you just remake the dsp in Hise on the PC? As in delete everything in the DSPNetworks folder, burn it all to the ground, and create it again
Posts made by DanH
-
RE: Faust suddenly Crashes on PC upon loading any project
-
RE: Faust suddenly Crashes on PC upon loading any project
@Morphoice right so you're moving the project from Mac to PC, correct?
If so try compiling the dll outside of Hise. Find the AutoGeneratedProject inside the DSPNetworks folder in your project, and run it in VS2022 from there. If and when that succeeds try reopening the project in Hise.
-
RE: Faust suddenly Crashes on PC upon loading any project
@Morphoice what are you truing to do exactly, compile the dll?
-
RE: Impulse Response File switching?
@Christoph-Hart Ah that would explain it! Ok will try, thanks!
-
RE: Impulse Response File switching?
@Christoph-Hart So I'm tentatively going to say that this could be a bug with the Default user Preset system and - in this case - Engine.loadAudioFilesIntoPool / ComboBox callback...
I've loaded some impulse responses into the convolution reverb module using Engine.loadAudioFilesIntoPool and used a combobox to select them. All is fine within HISE and Exported Plug-In.
However, when I set a specific preset as the Default User Preset in the project settings then whatever value that preset has saved in it for the combobox, it will reorder the array of impulse responses with that saved value at the top of the list. In HISE everything is ok - this only affects the exported plugin / standalone.
I tested the Default User Preset setting with different presets and changed the combobox value in those the presets and each time the combobox list would change to reflect this buggy order of putting the Default preset's value at the top of the combobox list.
So if the ComboBox list is A, B, C, and the Default User Preset has B saved in it, then when you export the plugin the list will now appear as B, A, C.
-
RE: Impulse Response File switching?
@d-healey thanks, I've renamed the actual file numerically so I'll see if that helps first!
-
RE: Impulse Response File switching?
@d.healey no joy there either. It's strange - this is a v2 of a project. v1 didn't have this issue yet the code is identical... Same version of Hise too...
I wonder if LAF changes to the combobox itself have made a difference?!
Is there a way to force the list settings? i.e create the list as I want it?
-
RE: Turning on the Spectrum Analyser makes Reaper UI laggy
@mehmethand get a floating tile and set it to custom settings.
Include
HISE_USE_OPENGL_FOR_PLUGIN=1
in your settings and then use the custom settings panel to toggle open gl on and off in your plugin and check if there's a difference.
I get a similar lag on my machines even with Open GL on though.
-
RE: Impulse Response File switching?
@d-healey .sort() = no joy. Will try natural.
-
RE: Turning on the Spectrum Analyser makes Reaper UI laggy
@mehmethand do you have a settings panel in your plugin where you can enable/disable OpenGL?
-
RE: Turning on the Spectrum Analyser makes Reaper UI laggy
@mehmethand you're on OSX I assume?
-
RE: Impulse Response File switching?
@d-healey Hi! I would post a new topic but I can't because the forum has gone weird.
Anyway the title would have been: Impulse Responses list in ComboBox different in compiled plug-in
So I have a load of impulse responses loaded into a Convolution Reverb module, and a ComboBox for the user to select the one they want. In the project the list is alphabetical but in the exported plugin one of the entries (Fender Twin) has jumped to the top of the list. Here's my code and images below... Any help much appreciated!
//Combo box IRs const irs = Engine.loadAudioFilesIntoPool(); const CabinetType = Synth.getAudioSampleProcessor("Cabinet Type"); //cmbIr const cmbIr = Content.getComponent("cmbIr"); inline function oncmbIrControl(component, value) { if (value > 0) CabinetType.setFile(irs[value - 1]); }; Content.getComponent("cmbIr").setControlCallback(oncmbIrControl); cmbIr.set("items", ""); for (x in irs) cmbIr.addItem(x.replace("{PROJECT_FOLDER}cabs/").replace(".wav"));
Images:
in Plug-In -
in Hise -
-
RE: Searching the forum
@d-healey forum is pretty buggered here. I can't post a new question as I can't select a category
-
RE: LFO not in compiled plugin?
@mmprod Probably better to send the whole project...
-
RE: Default user preset setting- the path format?
@DanH right so just 'FACTORY/YourCoolPreset' works... no need for .preset at the end or 'UserPresets' before :)
-
RE: Default user preset setting- the path format?
Will the below work for this? Do I need ' .preset ' at the end?
-
RE: LFO not in compiled plugin?
@mmprod not mono fx, but no reason not to either.