Skip to content

samlletas/syxg50-control-panel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Yamaha S-YXG50 Control Panel

Reaper JSFX plugin for controlling the Yamaha S-YXG50 synth, this project is a modified version of Shiru's plugin.

Screenshot

Description

The following features were added:

  • New overview tab for editing all 16 parts at once.
  • New editor tab for changing multi-part parameters (filter, envelopes, modulation, tuning, etc).
  • Default values for every parameter (obtained from both XGworks and the XG Specifications manual).
  • Adds the few missing reverb, chorus and variation effects.
  • UI improvements:
    • New colors and bigger font for increased readability.
    • New "XG" button to force re-send all parameters.
    • Highlight user-changed parameters.
    • Use full names for all voices (thanks @mkruselj).
    • Draw bipolar parameters with bipolar sliders (thanks @mkruselj).
    • Draw multi-option parameters with switch controls.
  • Plugin state is now updated on incoming MIDI CC and Bank Select+Program Change.
  • Serialize parameter values instead of slider positions to avoid inconsistencies due to float precision loss.
  • And many more small improvements and bug fixes.

💡 This modified version is NOT compatible with Shiru's original version due to serialization changes, if you need to open old projects then you should keep both versions installed.

Download & Install

Download the zip file from the Releases page, extract it and copy its contents to your Reaper effects folder.

Usage

In order to enable variation effects the Control Panel sends the variation connection sysex message, however this happens once during instantiation so variation effects won't work unless the FX Chain is created in the following order:

  1. Add the S-YXG50 synth into the FX Chain.
  2. Drag the Control Panel from the FX Browser and drop it ABOVE the S-YXG50 synth.

💡 Clicking on the XG button (located at the top-right corner) will force re-send all the parameters to the S-YXG50 synth. This can be useful if you already changed some parameters but forgot to move the Control Panel above the S-YXG50 synth in the FX Chain.

Controls

Parameters

  • Left click to change value.
  • Right click or Ctrl+Left click to reset to default value.
  • Scroll wheel to change value by small increments/decrements.

Part

  • Left click to select next part.
  • Right click to select previous part.
  • Scroll wheel to select next/previous part.
  • Number keys to change part (from 1 to 10).
  • QWERTY keys to change part (from 11 to 16).

FAQ

Why are variation effects not working?

The FX Chain needs to be setup in a specific way, please see the Usage section for more details.

Why does the S-YXG50 synth occasionally produces stuck midi notes and/or misses midi notes?

This seems to be an issue when bridging 32-bit plugins within the 64-bit version of Reaper. Since the S-YXG50 synth is a 32-bit plugin it is recommended to:

  • Use the 32-bit version of Reaper.
  • Use an alternative bridging solution like jBridge (make sure to use version 1.77beta or newer).
  • Host the S-YXG50 synth externally (e.g using vstdriver) and send Reaper's MIDI to it (similar to how you would send MIDI to external hardware).

Can I export the plugin's XG MIDI data to a MIDI file?

Yes, you can record the plugin's sysex output and export the MIDI file afterwards:

  1. Right click on the track's record button and set it to Record: output (MIDI).
  2. Start recording.
  3. Click on the "XG" button (located at the top-right corner) to force re-send all the plugin's sysex data.
  4. Stop recording.

Can I use the plugin in a different host other than Reaper?

This plugin is in JSFX format so it's intended for use within Reaper only, however there are tools that allow running JSFX plugins outside Reaper so it may be worth giving them a try:

Development & Contributing

If a new parameter needs to be serialized please add it after the previous ones to avoid breaking compatibility.

Making Commits

All commits should be made using the conventional commits specification, to help with this a git hook that validates commit messages can be installed with:

 cp -r -T .githooks .git/hooks