• 0 Votes
    15 Posts
    2k Views
    David HealeyD

    @dannytaurus said in This script processor has a network that consumes the parameters:

    We should just use var everywhere and let the parser/compiler sort it out.

    😢 Probably true...

  • HISE Quits Unexpectedly on Mac

    Solved Bug Reports
    3
    0 Votes
    3 Posts
    112 Views
    V

    @ustk

    Thank you, that worked! I needed to delete the contents of the HISE Application Support folder.

  • Exporting plugin with expansions?

    General Questions
    8
    0 Votes
    8 Posts
    211 Views
    LindonL

    @David-Healey said in Exporting plugin with expansions?:

    @filipalex96 said in Exporting plugin with expansions?:

    The actual samples used by those samplemaps are in the MAIN Samples folder

    The expansion's samples should be in the expansion's folder.

    Well..... not the way I do it....you can put the samples in the Linkfile directory - where all your factory samples are, so in your sample map it just looks sorta normal e.g.

    FileName="{PROJECT_FOLDER}fatty_F#4.wav"

    Essentially the sample map tells HISE where the sample data is by using this {PROJECT_FOLDER} token, which means "the folder wherever the end user decided to keep the samples, who's location can be found in the Link file"

    You just need to tell your sampler where the sample maps are.... it already knows about your factory sample maps - they are shipped in the plugin, so you just need to tell it where each expansions maps are...

    So you will need some meta data to differentiate your "factory" maps from each of your expansion maps, so my factory meta data for this location looks like this:

    { "VoiceMapName": "FireBreak" } note theres no actual location data in here, HISE, and your product already know about this map so none is needed.

    whilst my expansion meta data looks like this, for an expansion called AlarmSemaphores:

    { "VoiceMapName": "{EXP::AlarmSemaphores}AS_Absentees" }

    OK so another of these token things.. this time {EXP::expansion folder name}, which tells HISE, and your product to go look in the expansions folder for a sub folder called AlarmSemaphores, and there to look in the SampleMaps folder

    So at this point you only need to set the expansion type to FilesOnly and have a way to place each expansions folder structure, which is entirely empty except for the sampleMaps folder which holds all the sample maps for your expansion.

    So your Expansion installer will need to:

    copy the sample data (.ch1 files) to the Linkfolder

    Create a folder structure in the products Expansion folder
    Here's an example:
    c05bee1c-3a62-45af-be64-e770c392ae99-image.png

    Inside each expansion folder create the std expansion folder structure:
    6cf9a22c-a4ba-4744-bfdd-634d0a309ec4-image.png

    inside the SampleMaps folder add the sample maps:

    34e59a36-b8f8-4049-940d-1a2c2f3e392f-image.png

    Create some meta data file that describes these maps and where they are so your product can find them...

    If all of this is "too hard" then once the Asset Manager is up and running I will add a (for fee) version of this system so getting up and running should be pretty painless...I've been using it on HoriZEN, and now Atmosia 3 for over a year and it seems to work fine.

  • 0 Votes
    3 Posts
    119 Views
    HISEnbergH

    @Jeetender This issue comes up every now and again, check here.

  • Icon Fonts - Syntax error in unicode escape sequence

    Solved Scripting
    15
    0 Votes
    15 Posts
    588 Views
    David HealeyD

    Following from Dan's suggestion I had Claude take a look and it extended String.fromCharCode to support hex strings in addition to integers. This has solved the issue.

    PR

  • Multichannel Inputs and Outputs

    General Questions
    2
    0 Votes
    2 Posts
    83 Views
    ustkU

    @l4ch standalone doesn’t provide audio inputs. That been said I have made a fork with audio inputs, but I still have some issues when exporting a standalone app on windows (the driver selection freezes the app) but it’s working on mac. If you export a plugin though there should be no issues.

    Another warning is that the audio inputs are directly sent to the output, creating a dangerous feedback if you have a microphone connected and speakers on ! This has to be kept in mind during development

    I’ll try to make this fork available soon when I’m back (not today)

    If you can use the plugin version of Hise, there’s a multichannel projucer project already available

  • drawFittedText has gone for a walk?

    Scripting
    3
    0 Votes
    3 Posts
    138 Views
    Christoph HartC

    haha actually that was one of the few lines of code that I wrote myself - I was testing out some new logic that catches deprecations but somehow I deleted that line.

    Funnily the documentation pipeline that I'm currently running over the entire codebase to recreate the API docs flagged this as an issue:

    Missing registration: drawFittedText has a wrapper (API_VOID_METHOD_WRAPPER_5) and full implementation but does NOT appear in the constructor's ADD_API_METHOD calls. It is present in the base JSON, meaning the Doxygen-based generator picks it up from the header declaration. Whether it is actually accessible at runtime is uncertain -- it may be silently unavailable if the ADD_API_METHOD is required for the scripting engine to find the method.

    But it then got lost in the noise - I have a system that populates a list of bugs / small issues that the doc generator discovers while chewing through the code, but here it didn't appear too:

    https://github.com/christoph-hart/hise_api_generator/blob/main/enrichment/issues.md

  • Expansion wide preset search

    General Questions
    3
    4 Votes
    3 Posts
    154 Views
    ChazroxC

    @David-Healey Killin it.

  • Build errors with latest commits

    Solved Bug Reports
    2
    0 Votes
    2 Posts
    129 Views
    David HealeyD

    @David-Healey Most of those errors were just stale files that a make clean didn't get rid of, I needed to remove the build folder completely.

    The error relating to DELETE is caused by one of the include files on Linux systems declaring a DELETE macro and this conflicts with your enum.

    A very minimal PR to unset the macro seems to solve it.

  • Building HISE with new JUCE system

    General Questions
    5
    0 Votes
    5 Posts
    130 Views
    David HealeyD

    @l4ch Yeah I try to keep it up to date. I think I'll be updating it again when the setup.hise.dev script is fully tested and has all the features across all platforms.

  • 0 Votes
    1 Posts
    64 Views
    No one has replied
  • Scriptnode EQ-issue on exported fx-plugin

    Unsolved General Questions
    2
    0 Votes
    2 Posts
    95 Views
    VorosMusicV

    Seems like the issue was the high-shelf node.
    The plugin functions fine without, but doesn't seem like a solution for the future to just not use it at all.

  • HISE Build Error Issue

    Bug Reports
    4
    0 Votes
    4 Posts
    107 Views
    B

    @Christoph-Hart Understood, thank you.

  • Regarding expansions

    General Questions
    5
    0 Votes
    5 Posts
    143 Views
    ulrikU

    @David-Healey Thanks!

  • What does this above value means

    General Questions
    5
    0 Votes
    5 Posts
    270 Views
    N

    @dannytaurus thank you so much, dont be sorry lol we are humans and humans make mistakes 😊
    thank you again🤙

  • 0 Votes
    5 Posts
    255 Views
    HISEnbergH

    @pratitghosh

    ggg.gif

  • 10 Votes
    15 Posts
    608 Views
    J

    @Sifres
    The storefront was easy to setup, but
    I have a half finished website. I was just testing it out, but seems to be really great so far.
    ...and I havent tried that JUCE module that can work with License activations.

  • Crash when clicking Parametriq EQ1 in module tree

    General Questions
    6
    0 Votes
    6 Posts
    259 Views
    pcs800P

    @David-Healey I found the issue.
    ParamEQ.setAttribute(band * 5 + 4, bandColors[band]);
    band * 5 + 4 is an invalid attribute index for the CurveEq

  • Absolute Samples - Windows 11

    Unsolved General Questions
    5
    0 Votes
    5 Posts
    210 Views
    L

    @David-Healey I had about 16, I just automated the find/replace in VScode and it worked really well. Thank you for the videos on exporting plugins, went back and followed them to the letter and they worked perfectly.

  • Something probably broken.

    Bug Reports
    2
    0 Votes
    2 Posts
    141 Views
    LindonL

    @Quemis what version of HISE are you using? have you compiled from the latest development version?