• UI and Concept opinions needed

    5
    0 Votes
    5 Posts
    435 Views
    d.healeyD

    I prefer the classic rhodes design

  • AAX dosen't recognized in Pro tools 2018

    9
    0 Votes
    9 Posts
    811 Views
    Christoph HartC

    Everything gets worse all the time ;)

  • A few questions relating to synthesis

    18
    0 Votes
    18 Posts
    2k Views
    hisefiloH

    @trivalve Oh. well, maybe this inspires you to start trying. 12 partials EP not the best but getting there https://soundcloud.com/user-830166644/additive-test

  • Add/Remove "Sound Generators" at runtime using scripting

    7
    0 Votes
    7 Posts
    770 Views
    Christoph HartC

    Nope, HISE as you know it will remain the same, it's just that for people who know C++, it's a real burden getting into the workflow of HISE (learning the GUI, figuring out the scripting language) and this will help them get things done faster.

    I have found myself in many situations where I would prefer having C++ at my fingertips (eg. writing the modular FX chains for HEXERACT was a nightmare which is a trivial task for C++).

  • 1 Filmstrip to display various parameters

    6
    0 Votes
    6 Posts
    592 Views
    JayJ

    @d-healey I know but I want to have a dedicated lcd kind of style to display this

  • Get name of attribute

    7
    0 Votes
    7 Posts
    766 Views
    Christoph HartC

    Yes the parameter indexes are constant properties of each module object. The autocomplete popup is your best friend in this case.

  • Embedded samples

    2
    0 Votes
    2 Posts
    234 Views
    d.healeyD

    Is there a way to embed samples

    No

  • New operator support in Javascript engine?

    6
    0 Votes
    6 Posts
    786 Views
    BastiaanB

    @Christoph-Hart: I see, your concerns about the GC are valid. Memory leaks in these type of application are horrible. Thanks for pointing out this behaviour of the Javascript Engine garbage collector. I will definitely take these into account.

    I have been refining and simplifying the method above:

    /* The helper manager that helps us instantiate new objects */ function ObjectManager(){ return { construct: function(prototype, parameters){ var instance = PrototypeFactory(prototype); if(typeof(instance.construct) === "function"){ instance.construct(parameters); } return instance; } } } /* Note: you need to add all your class definitions to this factory */ function PrototypeFactory(name){ switch(name){ case "Cat": return Cat(); } } /* Now we can just define classes in a modern Javascript fashion, like this Cat class with some properties and methods */ function Cat(){ return { name: "Garfield", construct: function(parameters){ this.age = parameters.age; }, printInformation: function(){ Console.print("Age: " + this.age); Console.print("Name: " + this.name); } } } /* Now we can instantiate objects of that class */ var cat = ObjectManager().construct("Cat", {age: 2}); cat.printInformation(); /* Outputs: Age: 2 Name: Garfield */ var olderCat = ObjectManager().construct("Cat", {age: 4}); olderCat.printInformation(); /* Outputs: Age: 4 Name: Garfield */

    Again, i'm still experimenting and planning my code design strategy. Is there a way that I can monitor the Javascript engine's object count thru the API? Something like (pseudocode):

    const var objectCountTimer = Engine.createTimerObject(); objectCountTimer.callback = function() { Console.print("Object count: " + Engine.getObjectCount()); }; objectCountTimer.startTimer(10000);

    Besides that fact that this would allow me to test my design strategy for memory leaks, I think it would be a really nice addition to the framework because it allows monitoring of object instance regression (at least during debugging) and analyzing the behaviour of the Javascript Engine GC.

    It's not that i'm planning to do very advanced OO Javascript stuff, so no inheritance etc. Just some basic prototyping and instantiation.. should that work (without memory leaks) than that would be my prefered strategy in contrast to using the C++ API. Just because i'm more comfortable with Javascript then C++ now-a-days.

    So the GUI design I have in mind for this particular plugin i'm building is a very dynamic in nature, i'm trying to dynamically modify the module backend (Effects & Modulators) based on the users input. So for this to work, the Javascript Engine must be able to free memory of (my custom Javascript UI) objects that are unreferenced and go out of scope, otherwise it will leak like hell (like you mentioned) and render my method (mentioned above) totally unusable. Today I'll try to attach some custom C++ code using the C++ API, try and see how that works out.

    Ps. It's good to know that a script panel can hold a custom data object, that would allow me to go for a more C stylish approach inside Javascript instead of the my custom OOP approach above. Like putting all the logic in a namespace and let the script panels cary their own data. Will give this approach a shot too, but I slowly getting the feeling that I need to go down the C++ road for my idea to work properly (and keep my code clean/maintainable).

    Update: I found out that the object oriented Javascript method failed when trying to access class properties from within a callback function:

    function DisplayComponent(){ return { backgroundColor: Colours.green, construct: function(parameters){ this.setPaintRoutine(); }, setPaintRoutine: function(){ var classthis = this; Display.setPaintRoutine(function(g) { g.fillAll(classthis.backgroundColor); }); } } }

    It just can't access that backgroundColor property from within that scope. I could not find any documentation or examples on how to implement custom C++ code so i'm going to see if i can do something with the data object holder inside Script panel and build my design around that.

  • Loading presets in development mode

    3
    0 Votes
    3 Posts
    504 Views
    BastiaanB

    Ah that makes sense. Thanks :)

  • Resizeable GUI with dragging

    2
    0 Votes
    2 Posts
    383 Views
  • Added sharing of image resources across plugin instances

    3
    0 Votes
    3 Posts
    370 Views
    d.healeyD

    @christoph-hart Your read my mind :)

  • One knob > many parameters

    3
    0 Votes
    3 Posts
    486 Views
    hisefiloH

    @d-healey thanks David :)

  • Debug vs Release

    54
    0 Votes
    54 Posts
    6k Views
    E

    @d-healey said in Debug vs Release:

    I was unable to find any references to the libraries like freetype and libcurl in the jucer file so I just added the missing ones to the makefile instead and that worked. I'm going to try now on Mint 17 again.

    Good afternoon all! First of all I wanted to thank for the remarkable designer on assembly of own musical instruments! I tested compilation and work of Hise on different versions Linux. Best of all everything works at Fedora 28. But it is necessary to establish similar libraries, answers on analogs are on the Internet. David thanks for lessons of the program, and Christoph for remarkably done work!

  • How to Enable the Piano/Keyboard below on exported VSTi?

    3
    0 Votes
    3 Posts
    597 Views
    L

    @christoph-hart
    Thank you for your help!
    Also thank you for the link,
    I don't know why but I was trying to find a solution for the "missing keyboard" on the Scripting API help-website. I think I'm not good at this :D
    so thanks for your help again!

    I will put a keyboard to my next test-HISE-sample-library which is going to be and electric guitar palm muted pluck library with round robins,
    I will upload some links to this forum when it's ready to use or test, it's going to be free here, but I want to make it good!

  • Pitch module resolution

    3
    0 Votes
    3 Posts
    347 Views
    hisefiloH

    @christoph-hart thanks!!!! Will try and tell u

  • Chorus

    11
    0 Votes
    11 Posts
    981 Views
    d.healeyD

    @hisefilo The STK license is fine. Basically it has to be permissive, so it allows you to do whatever you want with it. BSD, MIT, and Apache are common ones. This is one of my favourites - https://en.wikipedia.org/wiki/WTFPL ;)

  • ERROR at Exporting: "The system cannot find the file specified."

    19
    0 Votes
    19 Posts
    2k Views
    L

    @d-healey
    Sounds awesome, thank you for your efforts and help again!

    Now I will open another topic for another little problem, and I promise it's little :D

  • Polyphonic LFOs

    13
    0 Votes
    13 Posts
    1k Views
    d.healeyD

    @jon83 Oops, looks like I gave you the wrong repo. Examples are here - https://github.com/christophhart/hise_tutorial

  • bypassed to 2 buttons

    4
    0 Votes
    4 Posts
    492 Views
    JayJ

    @christoph-hart Thanks to david a long time ago I got something like this working for something else, I reused but it didn't work in this case.

    // ******************** Knobs(Sliders) Mappings ********************//
    const var knobs = [];

    // 1st Parameter Mapping (fx_enabled (bypassed)//
    knobs[0] = Content.getComponent("fx1Knob1");
    knobs[1] = Content.getComponent("fx1Knob2");

    knobs[0].setControlCallback(knobCB);
    knobs[1].setControlCallback(knobCB);

    inline function knobCB(control, value)
    {
    for (i = 0; i < 2; i++)
    {
    if (control == knobs[i]) continue; //Skip the knob that triggered the callback
    knobs[i].setValue(value);
    }

    //Dynamics.setAttribute(setBypassed, value); Dynamics.setBypassed;

    }

  • Error when saving: At least one of your JUCE module paths is invalid!

    2
    0 Votes
    2 Posts
    1k Views
    BastiaanB

    I managed to fix it by checking out the HISE master branch from Github, apparently those module folders were missing. So i'm a bit further now.

    0_1540045939667_Screenshot 2018-10-20 at 16.31.21.png

    0_1540046677927_Screenshot 2018-10-20 at 16.42.26.png

27

Online

1.6k

Users

11.5k

Topics

99.8k

Posts