Sample map Expansion Tutorial
-
@d-healey said in Sample map Expansion Tutorial:
This part is easy. I'll make a snippet for you.
thank you, I can script it for the factory samplemaps just not for the expansions.
-
@bwsounds said in Sample map Expansion Tutorial:
just not for the expansions.
A lot has changed in the last year since Christoph made that tutorial.
HiseSnippet 1300.3ocyX0raaaDDlTxLMTMsMIHG5kBvJzCz.tBRINNEnHIxRVNUn9GAImfdn.AqIWIs0j6Rr6RW4V32o9Hz2f9pj2f1YWRJRJK3Jql3FcvPye67MyryLq7.NyCKDLtgo8IWDgMLum0nKnxocmhHTi96YX9EVBTXT.NDEIwBoQmKhPBA12vzr5qTJYZugg9y6dYGT.h5gyYYX7FFwCe.IjHy4Nn8ORBB1G4iOgDVP6sa22iQ6xBXw.fpZ0zHB4cFZB9HjRsJVFl2omOQx3ijH.LfNcX9WLZJ6WoI5+FhfbZ.VQzxXDbPIrM5NkD3OHKXEFFlVCxC8pIg9irNj3SlyOOEbes.mbKJlCLqbcPp0M.RlEfzFIP5AVi73jHYtDEd9Tq9TIlOFAo5hPIQWiJ+UEqtLPCprQH5L79bfXtEt6zr4VNve176qUCR2BoyHcAl2x44N5heiIXYJO25YBqmqOdVzOfn9.WvhdzIDJtgGGCweuYQHpfvnoxcUFkqdCAVNWktnffSg5q63XpmDX3h2r1uWy1K7zDedHJRnrvsNQhCE02xAmiLP3ADgzcyF+BiPcq+yz5aBN6xbTV5b.flkRfinKKLhQAB25kzREiWw8J63rf4vkQKoRpXkeIz.HU3jEONKWSWuLuuky4nf3jnlL1wUS47BmlaVyFXYGv7PANhrC.hg4lphh9PV4D7LoNIaqOgbc+5m6TuNbN11YEvFALj+bzjqJXs8k110tr.tOhIwGSc0Hq1k0bVTz3wKUVZDpK7KQrpamecF5RiCOEyKlWTJBsCk6wtyp0i4kTwKnHi1mRjGGgSo2mE3q5cTe+pcjFoWYT8loHDTUp6LueZmIbU5TVG1LChuZVYoBtgNLJNfz3082CIQYGHb1f+hvbIQEVl6gOGlVlz5aasGVbljEo0MsrCystAteVtq2q8E4DuncHBjYYlLM9JScf4cL+3.jr7PP0z9TAPUqzjG0zEnoVdQwf8FLYr40NYbUg3CrFPjdSWNFqrDLB0gODXLcexmY0a7XrmLGfaXs+OstKOVc2+UIt+gVijvP4PBcR5H.MFpYkMP38wp7nUdU9.NVO.h7aET6Oa2IFxQ7xb+i1ZWsaHKlVxWoHeHNBV1.k4B1b21CG9JNKNZQqd2K0WJNgCytgTQQAGSwPtVVLF6xYBwXHbzmknnnAw7IpbUNmg3ywbQYdGEGB0aJEGHTcXpVrWKvp5Kw6PjjSlUTasWZdBRWig22noas.8iWf9IKPu8BzOcA5cVf9Y4zyGVntYnde0BCZ+jUaPKb.CPPHWPyNjIyO7DNkGeTP044bMtJ7Ztk7Fo67g5YaarZcd+KKL93eVZoWYZmgwQDUopG8bnGE3nv3Cg8OiQwAxLtkmWbHixhlxnDuxcDvM7ISv7hXeoAztRIzPly4QsGhCvHQgV5uo8AvyoP7xM52nbwM+E2Ksd8kVIv0QMjy4+Rc6V8Z10tOr5JsO78NdW+ci2potOOcKoC3ct7i7578rzy0cTqg++BpCYwRX8Z1JNKXO3HX2uGt31vJpMrIzMyd+4HL0WS72vmTgsxVcpD1JSngW1QAwV520ul1rJlpVcnelW.rTNn3UZA7BCEjf0a2JnLD4wYu0K42Knv5c0b.TR0+aLrsNTQ6zJ6mGXY0rQSiPXW0a87TMBeKjgWtMOdMr4IqgMauF17z0vlcVCad1ZXy2cs1ndlvtwRVXxPRfwfdIWrL6M+hUUi+ArhMMP.
-
@d-healey
humm the combobox isn't loading anything, but its a good starting point for me. -
@bwsounds said in Sample map Expansion Tutorial:
humm the combobox isn't loading anything, but its a good starting point for me.
It doesn't load anything until you load an expansion.
-
@d-healey
Yep yep, thanks man I appreciate it. -
@bwsounds
ok, last question, so from my understanding you cant replace the EXP:... part of the expansion name but you can "split" it?I see this in the docs..
split
Splits the string into an array with the given separator.
String.split(var separatorString)But I also read in a post that that you could use substring as well...
What is the best way to go about doing this while using comboboxes?
-
@bwsounds Why not use
.replace()
? -
@d-healey
if im not mistaken, I think I read in a post where you said it wouldn't work. I may have read incorrectly. -
@bwsounds Explain the context and I'll provide a solution, I'm not 100% sure what you want to do.
-
@bwsounds this is what I do:
for (i = 0; i < sampleMapsed.length; i++) { sampleMapsed[i] = sampleMapsed[i].replace("{EXP::"); sampleMapsed[i] = sampleMapsed[i].replace("}"); sampleMapsed[i] = sampleMapsed[i].replace(expName); }
-
@d-healey
ok, so far I have this, which loads the samplemaps into a combobox(list1)...It works great, but the {EXP:..} text which is included with the samplemap text is a bit unappealing.
So what I want to do is remove it {EXP:..} , but im lost on how...
const var expHandler = Engine.createExpansionHandler(); const var expansions = expHandler.getExpansionList(); expHandler.setAllowedExpansionTypes([expHandler.FileBased, expHandler.Intermediate, expHandler.Encrypted]); const var expansionNames = []; for(e in expHandler.getExpansionList()) expansionNames.push(e.getProperties().Name); const Sampler1 = Synth.getSampler("Sampler1"); const list1 = Content.getComponent("list1"); list1.setControlCallback(onlist1Control); const var namesExp = []; inline function onlist1Control(component, value) { if (value > 0) { local sampleMap = component.getItemText(); if (sampleMap != "") Sampler1.loadSampleMap(sampleMap); { namesExp.clear(); var smname = expSampleMaps[value]; for (e in smname) e.replace("{EXP::" + getExpansionName() + "}", ""); list1.set("items", smname.join("\n")); } } } expHandler.setExpansionCallback(function(e) { list1.set("items", e.getSampleMapList().join("\n")); });
no iterable type keeps popping up, so I know im way off. Did a search on it but nothing came up.
-
@danh said in Sample map Expansion Tutorial:
for (i = 0; i < sampleMapsed.length; i++)
{
sampleMapsed[i] = sampleMapsed[i].replace("{EXP::");
sampleMapsed[i] = sampleMapsed[i].replace("}");
sampleMapsed[i] = sampleMapsed[i].replace(expName);}
humm.. I tried something like that but the sampler didn't recognize the samplemaps..
I look into it again -
@bwsounds I excecute this in an expansionSelector callback - which in my case is a combobox. How are you selecting and switching between expansions? And do you have 'factory' presets as well?
If what you want is similar to mine I can send over my code when back at my machine tomorrow
-
@danh
That would be great!
And no factory presest, I was planning on having an expansion titled "FACTORY"
also Im using the preset browser to switch between expansions. -
@bwsounds said in Sample map Expansion Tutorial:
no iterable type keeps popping up, so I know im way off. Did a search on it but nothing came up.
This video was made for you
And you should read this - https://docs.hise.audio/scripting/scripting-in-hise/hise-script-coding-standards.html
-
@bwsounds here it is, essentially it's all dealt with with the 'expHandler.setExpansionCallback' function. 'SAMPLEBOX' is my combo box which lists the available sample maps for the user to browse, and the 'sampleMapsed' array is the list of expansion sample maps (so I guess you can ignore the 'sampleMaps' array). It also removes all the Expansion text so you just get the name of your sample map in the combo box.
const var expHandler = Engine.createExpansionHandler(); const var expansions = expHandler.getExpansionList(); expHandler.setAllowedExpansionTypes([expHandler.FileBased, expHandler.Intermediate, expHandler.Encrypted]); const var expansionNames = []; /// Push 'FACTORY" into the available expansion packs list so users can navigate back to factory presets expansionNames.push("FACTORY"); for(e in expHandler.getExpansionList()) expansionNames.push(e.getProperties().Name); const var ExpansionSelector = Content.getComponent("ExpansionSelector"); ExpansionSelector.set("items", expansionNames.join("\n")); // Implement the expansion switch inline function onExpansionSelectorControl(component, value) { local expansionToLoad = component.getItemText(); // We want the first item to reset the current expansion // so we need to change it to an empty string if(expansionToLoad == expansionNames[0]) expansionToLoad = ""; expHandler.setCurrentExpansion(expansionToLoad); }; Content.getComponent("ExpansionSelector").setControlCallback(onExpansionSelectorControl); var sampleMaps = Sampler.getSampleMapList(); var sampleMapsed = Sampler.getSampleMapList(); inline function newcombobox(newExpansion) { if(isDefined(newExpansion)) { local cx = expHandler.getCurrentExpansion(); sampleMaps = cx.getSampleMapList(); sampleMapsed = cx.getSampleMapList(); local expansionProps = cx.getProperties(); local expName = expansionProps.Name; for (i = 0; i < sampleMapsed.length; i++) { sampleMapsed[i] = sampleMapsed[i].replace("{EXP::"); sampleMapsed[i] = sampleMapsed[i].replace("}"); sampleMapsed[i] = sampleMapsed[i].replace(expName); } SAMPLEBOX.set("items", ""); SAMPLEBOX.set("items", sampleMapsed.join("\n")); } else { sampleMaps = Sampler.getSampleMapList(); SAMPLEBOX.set("items", ""); SAMPLEBOX.set("items", mySampleMapNames.join("\n")); } } expHandler.setExpansionCallback(newcombobox); newcombobox(undefined);
-
@danh
Thank you!
But im still having the same issue... when I do this// sampleMapsed[i] = sampleMapsed[i].replace("{EXP::"); // sampleMapsed[i] = sampleMapsed[i].replace("}"); // sampleMapsed[i] = sampleMapsed[i].replace(expName);
the samplemaps load up, but if I remove the
//
the samplemaps load up.... i'll dig around and mess with this a bit, maybe im missing something... thank you.
-
@danh
ok, after a few days I figured it mostly out, thank you.
one issue still remains... once I switch back to "factory" my combobox doesn't populate those samplemaps... What could cause that? -
-
list1 is my combobox
// // // E X P A N S I O N // // // const var expHandler = Engine.createExpansionHandler(); const var expansions = expHandler.getExpansionList(); expHandler.setAllowedExpansionTypes([expHandler.FileBased, expHandler.Intermediate, expHandler.Encrypted]); const var expansionNames = []; expansionNames.push("FACTORY"); for(e in expHandler.getExpansionList()) expansionNames.push(e.getProperties().Name); const var ExpansionSelector = Content.getComponent("ExpansionSelector"); inline function onExpansionSelectorControl(component, value) { local expansionToLoad = component.getItemText(); // We want the first item to reset the current expansion // so we need to change it to an empty string if(expansionToLoad == expansionNames[0]) expansionToLoad = ""; expHandler.setCurrentExpansion(expansionToLoad); }; Content.getComponent("ExpansionSelector").setControlCallback(onExpansionSelectorControl); const Sampler1 = Synth.getSampler("Sampler1"); const list1 = Content.getComponent("list1"); list1.setControlCallback(onlist1Control); const var namesExp = []; var sampleMaps = Sampler.getSampleMapList(); var sampleMapsed = Sampler.getSampleMapList(); inline function newcombobox(newExpansion) { if(isDefined(newExpansion)) { local cx = expHandler.getCurrentExpansion(); sampleMaps = cx.getSampleMapList(); sampleMapsed = cx.getSampleMapList(); local expansionProps = cx.getProperties(); local expName = expansionProps.Name; list1.set("items", ""); list1.set("items", sampleMapsed.join("\n")); } else { sampleMaps = Sampler.getSampleMapList(); list1.set("items", ""); } } expHandler.setExpansionCallback(newcombobox); newcombobox(undefined); inline function onlist1Control(component, value) { if (value > 0) { local sampleMap = component.getItemText(); if (sampleMap != "") Sampler1.loadSampleMap(sampleMap); } } inline function onlist2Control(component, value) { if (value > 0) { local sampleMap = component.getItemText(); if (sampleMap != "") Sampler2.loadSampleMap(sampleMap); } } ExpansionSelector.set("items", expansionNames.join("\n")); list1.set("items", sampleMaps.join("\n")); list2.set("items", sampleMaps.join("\n"));