use of de.mossgrabers.framework.controller.valuechanger.IValueChanger in project DrivenByMoss by git-moss.
the class NoteMode method updateDisplay2.
/**
* {@inheritDoc}
*/
@Override
public void updateDisplay2(final IGraphicDisplay display) {
if (this.notes.isEmpty()) {
for (int i = 0; i < 8; i++) display.addOptionElement(i == 2 ? "Please select a note to edit..." : "", "", false, "", "", false, true);
return;
}
final GridStep noteInfo = this.notes.get(0);
final int channel = noteInfo.channel();
final int step = noteInfo.step();
final int note = noteInfo.note();
final IStepInfo stepInfo = this.clip.getStep(channel, step, note);
final IValueChanger valueChanger = this.model.getValueChanger();
if (this.page != Page.RECCURRENCE_PATTERN) {
final int size = this.notes.size();
final boolean isOneNote = size == 1;
final String stepBottomMenu = isOneNote ? "Step: " + (step + 1) : "Notes: " + size;
display.addParameterElementWithPlainMenu(MENU[0], this.page == Page.NOTE, stepBottomMenu, null, false, "Length", -1, this.formatLength(stepInfo.getDuration()), this.isKnobTouched(0), -1);
final boolean hasExpressions = this.host.supports(Capability.NOTE_EDIT_EXPRESSIONS);
final String topMenu = hasExpressions ? MENU[1] : " ";
final boolean isTopMenuOn = hasExpressions && this.page == Page.EXPRESSIONS;
final String bottomMenu = isOneNote ? Scales.formatNoteAndOctave(note, -3) : "*";
if (this.host.supports(Capability.NOTE_EDIT_MUTE)) {
final int value = stepInfo.isMuted() ? valueChanger.getUpperBound() : 0;
display.addParameterElementWithPlainMenu(topMenu, isTopMenuOn, bottomMenu, null, false, "Is Muted?", value, stepInfo.isMuted() ? "Yes" : "No", this.isKnobTouched(1), value);
} else
display.addParameterElementWithPlainMenu(topMenu, isTopMenuOn, bottomMenu, null, false, null, -1, null, false, -1);
}
switch(this.page) {
case NOTE:
final double noteVelocity = stepInfo.getVelocity();
final int parameterValue = valueChanger.fromNormalizedValue(noteVelocity);
display.addParameterElementWithPlainMenu(this.host.supports(Capability.NOTE_EDIT_REPEAT) ? MENU[2] : " ", false, null, null, false, "Velocity", parameterValue, StringUtils.formatPercentage(noteVelocity), this.isKnobTouched(2), parameterValue);
if (this.host.supports(Capability.NOTE_EDIT_VELOCITY_SPREAD)) {
final double noteVelocitySpread = stepInfo.getVelocitySpread();
final int parameterSpreadValue = valueChanger.fromNormalizedValue(noteVelocitySpread);
display.addParameterElementWithPlainMenu(MENU[3], false, null, null, false, "Vel-Spread", parameterSpreadValue, StringUtils.formatPercentage(noteVelocitySpread), this.isKnobTouched(3), parameterSpreadValue);
} else
display.addEmptyElement(true);
if (this.host.supports(Capability.NOTE_EDIT_RELEASE_VELOCITY)) {
final double noteReleaseVelocity = stepInfo.getReleaseVelocity();
final int parameterReleaseValue = valueChanger.fromNormalizedValue(noteReleaseVelocity);
display.addParameterElementWithPlainMenu(MENU[4], false, null, null, false, "R-Velocity", parameterReleaseValue, StringUtils.formatPercentage(noteReleaseVelocity), this.isKnobTouched(4), parameterReleaseValue);
} else
display.addEmptyElement(true);
if (this.host.supports(Capability.NOTE_EDIT_CHANCE)) {
final double chance = stepInfo.getChance();
final int chanceValue = valueChanger.fromNormalizedValue(chance);
display.addParameterElementWithPlainMenu(MENU[5], false, stepInfo.isChanceEnabled() ? "On" : "Off", null, false, "Chance", chanceValue, StringUtils.formatPercentage(chance), this.isKnobTouched(5), chanceValue);
} else
display.addEmptyElement(true);
if (this.host.supports(Capability.NOTE_EDIT_OCCURRENCE)) {
final NoteOccurrenceType occurrence = stepInfo.getOccurrence();
display.addParameterElementWithPlainMenu(MENU[6], false, stepInfo.isOccurrenceEnabled() ? "On" : "Off", null, false, "Occurrence", -1, StringUtils.optimizeName(occurrence.getName(), 9), this.isKnobTouched(6), -1);
} else
display.addEmptyElement(true);
if (this.host.supports(Capability.NOTE_EDIT_RECCURRENCE)) {
final int recurrence = stepInfo.getRecurrenceLength();
final String recurrenceStr = recurrence < 2 ? "Off" : Integer.toString(recurrence);
final int recurrenceVal = (recurrence - 1) * (this.model.getValueChanger().getUpperBound() - 1) / 7;
display.addParameterElementWithPlainMenu(MENU[7], false, stepInfo.isRecurrenceEnabled() ? "On" : "Off", null, false, "Recurrence", recurrenceVal, recurrenceStr, this.isKnobTouched(7), recurrenceVal);
} else
display.addEmptyElement(true);
break;
case EXPRESSIONS:
display.addParameterElementWithPlainMenu(MENU[2], false, null, null, false, null, -1, null, false, -1);
final double noteGain = stepInfo.getGain();
final int parameterGainValue = Math.min(1023, valueChanger.fromNormalizedValue(noteGain));
display.addParameterElementWithPlainMenu(MENU[3], false, null, null, false, "Gain", parameterGainValue, StringUtils.formatPercentage(noteGain), this.isKnobTouched(3), parameterGainValue);
final double notePan = stepInfo.getPan();
final int parameterPanValue = valueChanger.fromNormalizedValue((notePan + 1.0) / 2.0);
display.addParameterElementWithPlainMenu(MENU[4], false, null, null, false, "Pan", parameterPanValue, StringUtils.formatPercentage(notePan), this.isKnobTouched(4), parameterPanValue);
final double noteTranspose = stepInfo.getTranspose();
final int parameterTransposeValue = valueChanger.fromNormalizedValue((noteTranspose + 24.0) / 48.0);
display.addParameterElementWithPlainMenu(MENU[5], false, null, null, false, "Pitch", parameterTransposeValue, String.format("%.1f", Double.valueOf(noteTranspose)), this.isKnobTouched(5), parameterTransposeValue);
final double noteTimbre = stepInfo.getTimbre();
final int parameterTimbreValue = valueChanger.fromNormalizedValue((noteTimbre + 1.0) / 2.0);
display.addParameterElementWithPlainMenu(MENU[6], false, null, null, false, "Timbre", parameterTimbreValue, StringUtils.formatPercentage(noteTimbre), this.isKnobTouched(6), parameterTimbreValue);
final double notePressure = stepInfo.getPressure();
final int parameterPressureValue = valueChanger.fromNormalizedValue(notePressure);
display.addParameterElementWithPlainMenu(MENU[7], this.page == Page.RECCURRENCE_PATTERN, null, null, false, "Pressure", parameterPressureValue, StringUtils.formatPercentage(notePressure), this.isKnobTouched(7), parameterPressureValue);
break;
case REPEAT:
display.addParameterElementWithPlainMenu(MENU[2], true, null, null, false, null, -1, null, false, -1);
final int repeatCount = stepInfo.getRepeatCount();
final String repeatCountValue = stepInfo.getFormattedRepeatCount();
final int rc = (repeatCount + 127) * (this.model.getValueChanger().getUpperBound() - 1) / 254;
display.addParameterElementWithPlainMenu(MENU[3], false, stepInfo.isRepeatEnabled() ? "On" : "Off", null, false, "Count", rc, repeatCountValue, this.isKnobTouched(3), rc);
final double repeatCurve = stepInfo.getRepeatCurve();
final int repeatCurveValue = valueChanger.fromNormalizedValue((repeatCurve + 1.0) / 2.0);
display.addParameterElementWithPlainMenu(MENU[4], false, null, null, false, "Curve", repeatCurveValue, StringUtils.formatPercentage(repeatCurve), this.isKnobTouched(4), repeatCurveValue);
final double repeatVelocityCurve = stepInfo.getRepeatVelocityCurve();
final int repeatVelocityCurveValue = valueChanger.fromNormalizedValue((repeatVelocityCurve + 1.0) / 2.0);
display.addParameterElementWithPlainMenu(MENU[5], false, null, null, false, "Vel. Curve", repeatVelocityCurveValue, StringUtils.formatPercentage(repeatVelocityCurve), this.isKnobTouched(5), repeatVelocityCurveValue);
final double repeatVelocityEnd = stepInfo.getRepeatVelocityEnd();
final int repeatVelocityEndValue = valueChanger.fromNormalizedValue((repeatVelocityEnd + 1.0) / 2.0);
display.addParameterElementWithPlainMenu(MENU[6], false, null, null, false, "Vel. End", repeatVelocityEndValue, StringUtils.formatPercentage(repeatVelocityEnd), this.isKnobTouched(6), repeatVelocityEndValue);
display.addParameterElementWithPlainMenu(MENU[7], false, null, null, false, null, -1, null, false, -1);
break;
case RECCURRENCE_PATTERN:
final int recurrenceLength = stepInfo.getRecurrenceLength();
final int mask = stepInfo.getRecurrenceMask();
for (int i = 0; i < 8; i++) {
final boolean isOn = (mask & 1 << i) > 0;
ColorEx color = ColorEx.BLACK;
String label = "-";
if (i < recurrenceLength) {
color = isOn ? ColorEx.ORANGE : null;
label = isOn ? "On" : "Off";
}
if (i == 7) {
final int recurrence = stepInfo.getRecurrenceLength();
final String recurrenceStr = recurrence < 2 ? "Off" : Integer.toString(recurrence);
final int recurrenceVal = (recurrence - 1) * (this.model.getValueChanger().getUpperBound() - 1) / 7;
display.addParameterElementWithPlainMenu(MENU[i], i == 7, label, color, false, "Recurrence", recurrenceVal, recurrenceStr, this.isKnobTouched(7), recurrenceVal);
} else
display.addParameterElementWithPlainMenu(MENU[i], i == 7, label, color, false, null, -1, null, false, -1);
}
break;
}
}
use of de.mossgrabers.framework.controller.valuechanger.IValueChanger in project DrivenByMoss by git-moss.
the class DeviceParamsMode method updateDisplay2.
/**
* {@inheritDoc}
*/
@Override
public void updateDisplay2(final IGraphicDisplay display) {
final ICursorDevice cd = this.model.getCursorDevice();
if (!this.checkExists2(display, cd))
return;
final String channelColor = this.model.getCurrentTrackBank().getSelectedChannelColorEntry();
final ColorEx bottomMenuColor = DAWColor.getColorEntry(channelColor);
final ColorEx colorBackground = this.surface.getConfiguration().getColorBackground();
final IDeviceBank deviceBank = cd.getDeviceBank();
final IParameterBank parameterBank = cd.getParameterBank();
final IParameterPageBank parameterPageBank = cd.getParameterPageBank();
final int selectedPage = parameterPageBank.getSelectedItemIndex();
final boolean hasPinning = this.model.getHost().supports(Capability.HAS_PINNING);
final IValueChanger valueChanger = this.model.getValueChanger();
for (int i = 0; i < parameterBank.getPageSize(); i++) {
final boolean isTopMenuOn = this.getTopMenuEnablement(cd, hasPinning, i);
String bottomMenu;
final String bottomMenuIcon;
boolean isBottomMenuOn;
ColorEx color = bottomMenuColor;
if (this.showDevices) {
final IDevice device = deviceBank.getItem(i);
bottomMenuIcon = device.getName();
bottomMenu = device.doesExist() ? device.getName(12) : "";
isBottomMenuOn = i == cd.getIndex();
if (!device.isEnabled())
color = colorBackground;
} else {
bottomMenuIcon = cd.getName();
bottomMenu = parameterPageBank.getItem(i);
if (bottomMenu.length() > 12)
bottomMenu = bottomMenu.substring(0, 12);
isBottomMenuOn = i == selectedPage;
}
final IParameter param = parameterBank.getItem(i);
final boolean exists = param.doesExist();
final String parameterName = exists ? param.getName(9) : "";
final int parameterValue = valueChanger.toDisplayValue(exists ? param.getValue() : 0);
final String parameterValueStr = exists ? param.getDisplayedValue(8) : "";
final boolean parameterIsActive = this.isKnobTouched(i);
final int parameterModulatedValue = valueChanger.toDisplayValue(exists ? param.getModulatedValue() : -1);
display.addParameterElement(this.hostMenu[i], isTopMenuOn, bottomMenu, bottomMenuIcon, color, isBottomMenuOn, parameterName, parameterValue, parameterValueStr, parameterIsActive, parameterModulatedValue);
}
}
use of de.mossgrabers.framework.controller.valuechanger.IValueChanger in project DrivenByMoss by git-moss.
the class UserMode method updateDisplay2.
/**
* {@inheritDoc}
*/
@Override
public void updateDisplay2(final IGraphicDisplay display) {
final IValueChanger valueChanger = this.model.getValueChanger();
final String[] userPageNames = this.surface.getConfiguration().getUserPageNames();
final int pageSize = this.bank.getPageSize();
final int selectedPage = this.bank.getScrollPosition() / pageSize;
for (int i = 0; i < pageSize; i++) {
final boolean isBottomMenuOn = i == selectedPage;
final IParameter param = this.bank.getItem(i);
final boolean exists = param.doesExist();
final String parameterName = exists ? param.getName(9) : "";
final int parameterValue = valueChanger.toDisplayValue(exists ? param.getValue() : 0);
final String parameterValueStr = exists ? param.getDisplayedValue(8) : "";
final boolean parameterIsActive = this.isKnobTouched(i);
final int parameterModulatedValue = valueChanger.toDisplayValue(exists ? param.getModulatedValue() : -1);
display.addParameterElement("", false, userPageNames[i], "USER", isBottomMenuOn ? ColorEx.WHITE : ColorEx.GRAY, isBottomMenuOn, parameterName, parameterValue, parameterValueStr, parameterIsActive, parameterModulatedValue);
}
}
use of de.mossgrabers.framework.controller.valuechanger.IValueChanger in project DrivenByMoss by git-moss.
the class MasterMode method updateDisplay2.
/**
* {@inheritDoc}
*/
@Override
public void updateDisplay2(final IGraphicDisplay display) {
final IMasterTrack master = this.model.getMasterTrack();
final IProject project = this.model.getProject();
final IValueChanger valueChanger = this.model.getValueChanger();
final boolean enableVUMeters = this.surface.getConfiguration().isEnableVUMeters();
final int vuR = valueChanger.toDisplayValue(enableVUMeters ? master.getVuRight() : 0);
final int vuL = valueChanger.toDisplayValue(enableVUMeters ? master.getVuLeft() : 0);
final ICursorTrack cursorTrack = this.model.getCursorTrack();
display.addChannelElement(TAG_VOLUME, false, master.getName(), ChannelType.MASTER, master.getColor(), master.isSelected(), valueChanger.toDisplayValue(master.getVolume()), valueChanger.toDisplayValue(master.getModulatedVolume()), this.isKnobTouched(0) ? master.getVolumeStr(8) : "", valueChanger.toDisplayValue(master.getPan()), valueChanger.toDisplayValue(master.getModulatedPan()), this.isKnobTouched(1) ? master.getPanStr(8) : "", vuL, vuR, master.isMute(), master.isSolo(), master.isRecArm(), master.isActivated(), 0, master.isSelected() && cursorTrack.isPinned());
display.addChannelSelectorElement("Pan", false, "", null, ColorEx.BLACK, false, master.isActivated());
if (this.model.getHost().supports(Capability.CUE_VOLUME)) {
display.addChannelElement("Cue Volume", false, "Cue", ChannelType.MASTER, ColorEx.GRAY, false, valueChanger.toDisplayValue(project.getCueVolume()), -1, this.isKnobTouched(2) ? project.getCueVolumeStr(8) : "", valueChanger.toDisplayValue(project.getCueMix()), -1, this.isKnobTouched(3) ? project.getCueMixStr(8) : "", 0, 0, false, false, false, true, 0, false);
display.addChannelSelectorElement("Cue Mix", false, "", null, ColorEx.BLACK, false, true);
} else {
display.addOptionElement("", "", false, "", "", false, false);
display.addOptionElement("", "", false, "", "", false, false);
}
display.addOptionElement("", "", false, "Audio Engine", this.model.getApplication().isEngineActive() ? "Active" : "Off", false, false);
display.addOptionElement("", "", false, "", "", false, false);
display.addOptionElement("Project:", "", false, this.model.getProject().getName(), "Previous", false, false);
display.addOptionElement("", "", false, "", "Next", false, false);
}
use of de.mossgrabers.framework.controller.valuechanger.IValueChanger in project DrivenByMoss by git-moss.
the class SendMode method updateDisplay2.
/**
* {@inheritDoc}
*/
@SuppressWarnings("null")
@Override
public void updateDisplay2(final IGraphicDisplay display) {
this.updateTrackMenu(5 + this.sendIndex % 4);
final ITrackBank tb = this.model.getCurrentTrackBank();
final IValueChanger valueChanger = this.model.getValueChanger();
final int sendOffset = this.surface.getConfiguration().isSendsAreToggled() ? 4 : 0;
for (int i = 0; i < 8; i++) {
final ITrack t = tb.getItem(i);
final SendData[] sendData = new SendData[4];
for (int j = 0; j < 4; j++) {
final int sendPos = sendOffset + j;
final ISend send = t.getSendBank().getItem(sendPos);
final boolean exists = send != null && send.doesExist();
sendData[j] = new SendData(exists ? send.getName() : " ", exists && this.sendIndex == sendPos && this.isKnobTouched(i) ? send.getDisplayedValue(8) : "", valueChanger.toDisplayValue(exists ? send.getValue() : -1), valueChanger.toDisplayValue(exists ? send.getModulatedValue() : -1), this.sendIndex == sendPos);
}
final Pair<String, Boolean> pair = this.menu.get(i);
display.addSendsElement(pair.getKey(), pair.getValue().booleanValue(), t.doesExist() ? t.getName() : "", this.updateType(t), t.getColor(), t.isSelected(), sendData, false, t.isActivated(), t.isActivated());
}
}
Aggregations