Physical modeling engine: Ripplerx: lv2 installation pull request & merged

OK! This is done in vangelis. Now displayPriority also works in groups, so:

  • You can re-order groups by simply changing its displayPriority
  • You can sort parameters in a group without worrying about other groups.

Regards,

3 Likes

Right on cue!

Are we hunting a grip of death to allow us to move forward and backwards in the queue of groups?

If we have a group concept within parameters, Do we allow an end of group screen to contain only one parameter if you are moving withing a group that may be made up of 9 or 13 parameters.
or Do we always enforce groups butting up against each other such that a highly prioritized control will move around if groups are re-ordered?

When we are in grey screen page select mode within Parameters we have 3 other encoders doing nothing.
Could these be used at this stage to manipulate groups and their ordering on the central screen area?

Lose the top and bottom page list entries and substitute descriptive grouping information which scroll on another specified encoder, with the next group items displayed aon the top and bottom page lies at the right of the central display area
ā€¦?

2 Likes

Hmmmā€¦ Nice observation. Maybe we can reserve one of these free encoders to skip to the next/previous effect in a chain.

1 Like

I donā€™t know if I understand your concept correctly. You mean to place the first control of the next group on the same page of the last controller of the previous group in case the previous group doesnā€™t contain 4*X controls?

If so, I would rather opt for creating meaningful groups of <=4 within a group of >4 manually.

No, the proposal is that, after bold SELECT to show the page selector, the SELECT encoder moves through the pages of parameters. We could use another encoder to move through processors in the chain which is a recent feature request. That is an excellent idea @wyleu & @niels.

1 Like

Might be related.

I am unfortunatly back at the infinite update notifier problem.

error: The following untracked working tree files would be overwritten by merge:
        lv2-custom/RipplerX.lv2/dsp.ttl
Please move or remove them before you merge.

Deleting the file manually worked, but I hoped it would just overwrite it.

GIT never lets anything go, if it can possibly prevent it.

git stash

typed in the respective directory, is one way out of it. Depends how wedded you are to the development code.

Use

git status

to find out where the problem is in by moving between the different zynthian directories

is something I use to get out of that problem.

Now if some could suggest how I get zynthian-data to checkout vangelis whilst itā€™s stuck on oram, Iā€™d be obliged. It means I canā€™t get to the new ripplerx ttl file. Such is irony.

Why, thank you.

In fact we could extend the concept across the entire snapshot and bring all the Attack parameters for example, under one grouping . . .
By chain or Snapshot wide.

Got it on the cajon, with the updates

1 Like

Anouncement on synthopia:

Nice, and already in Zynthian :wink: like
Regards

So does anybody want to try to compile this? Iā€™d do the ttl thing then.

Iā€™ve downloaded it and following the build instructionsā€¦

But itā€™s failing on the first make, with an error that doesnā€™t sound like a missing dependencyā€¦

And it is reported as unbuildable on ARMā€¦

What a shame. Thank you for the effort!

(What does it mean, ā€œnothing provides JUCE7-sourceā€ [ā€¦]. Is it a dependency issue? Something with submodules and the two mentioned packages?

Iā€™m not Cā€™ish so tend to treat these operations as cut and paste.

Hopefully someone with more familiarity will pronounce canonically.

There is a tremendous opportunity for someone to make me eat my words once againā€¦

The error says that the library exchange (c++ 14 feature) was not found under the std:: namespace. So there must be some package missing inplementing c++ 14 features?) I donā€™t know.

DId you

sudo apt-get install libasound2-dev libxcursor-dev libxinerama-dev libxrandr-dev freeglut3-dev libjack-jackd2-dev libfreetype6-dev lv2-dev

? (But I donā€™t expect any of them causing the issue)

Well there a brute force approach and a slightly more surgical one.

I suggest the later.

Can we identify the missing dependency rather than unleash a lot of apt install nonsense?

It would be good to be specific.

    steps:
    - name: Install Linux Deps
      if: runner.os == 'Linux'
      run: |
        sudo apt-get update
        sudo apt install libasound2-dev libcurl4-openssl-dev libx11-dev libxinerama-dev libxext-dev libfreetype6-dev libwebkit2gtk-4.0-dev libglu1-mesa-dev libjack-jackd2-dev lv2-dev
        sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 9
        sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-9 9
    
    - name: Get latest CMake
      uses: lukka/get-cmake@latest

(From here)

Seems the build expects g++ and gcc version 9 or above. Since these include C++14 libs it should go past the std::exchange namespace error at least? Seems you can choose the g++ and gcc version to be used with update-alternatives.

But maybe someone who knows the more surgical approach should try.

But you could try

gcc -v
g++ -v

and see if itā€™s <9

Iā€™ve been getting increasingly brutal having added.

sudo apt-get install freeglut3-dev
sudo apt-get install webkit2gtk-4.0
sudo apt-get install lv2-dev

Still failing at the same point.

gcc version 12.2.0 (Debian 12.2.0-14)

sudo apt-get install libcurl4-openssl-dev

Phew, I have no other idea. Maybe it should be exactly gcc and g++ version 9, because the plugin might need i c++ feature which was changed in later versions?