commit ec695a6a1879f4eff20e51d39249a40d96390b0d
parent 43e3b6964d5eed745116bbfb0af45d87c5b790f2
Author: Adam M <[email protected]>
Date: Sat, 28 Mar 2020 23:10:19 -0500
Merge branch 'master' into goly-penerator
Diffstat:
3 files changed, 297 insertions(+), 199 deletions(-)
diff --git a/src/ComputerscareDebug.cpp b/src/ComputerscareDebug.cpp
@@ -97,6 +97,40 @@ struct ComputerscareDebug : Module {
}
void process(const ProcessArgs &args) override;
+
+ json_t *dataToJson() override {
+ json_t *rootJ = json_object();
+
+ json_object_set_new(rootJ, "outputRange", json_integer(outputRangeEnum));
+
+ json_t *sequencesJ = json_array();
+
+ for (int i = 0; i < 16; i++) {
+ json_t *sequenceJ = json_real(logLines[i]);
+ json_array_append_new(sequencesJ, sequenceJ);
+ }
+ json_object_set_new(rootJ, "lines", sequencesJ);
+ return rootJ;
+ }
+
+ void dataFromJson(json_t *rootJ) override {
+ float val;
+
+ json_t *outputRangeEnumJ = json_object_get(rootJ, "outputRange");
+ if (outputRangeEnumJ) { outputRangeEnum = json_integer_value(outputRangeEnumJ); }
+
+ json_t *sequencesJ = json_object_get(rootJ, "lines");
+
+ if (sequencesJ) {
+ for (int i = 0; i < 16; i++) {
+ json_t *sequenceJ = json_array_get(sequencesJ, i);
+ if (sequenceJ)
+ val = json_real_value(sequenceJ);
+ logLines[i] = val;
+ }
+ }
+
+ }
// For more advanced Module features, read Rack's engine.hpp header file
// - toJson, fromJson: serialization of internal data
// - onSampleRateChange: event triggered by a change of sample rate
@@ -187,6 +221,9 @@ void ComputerscareDebug::process(const ProcessArgs &args) {
strValue = defaultStrValue;
}
outputs[POLY_OUTPUT].setChannels(16);
+ /*for(unsigned int i=0; i < NUM_LINES;i++) {
+ outputs[POLY_OUTPUT].setVoltage(logLines[i], i);
+ }*/
stepCounter++;
if (stepCounter > 1025) {
@@ -338,7 +375,7 @@ struct ComputerscareDebugWidget : ModuleWidget {
debug = module;
}
- json_t *toJson() override
+ /*json_t *toJson() override
{
json_t *rootJ = ModuleWidget::toJson();
json_object_set_new(rootJ, "outputRange", json_integer(debug->outputRangeEnum));
@@ -351,7 +388,7 @@ struct ComputerscareDebugWidget : ModuleWidget {
}
json_object_set_new(rootJ, "lines", sequencesJ);
return rootJ;
- }
+ }*/
void fromJson(json_t *rootJ) override
{
float val;
diff --git a/src/ComputerscareILoveCookies.cpp b/src/ComputerscareILoveCookies.cpp
@@ -68,20 +68,34 @@ struct ComputerscareILoveCookies : Module {
AbsoluteSequence newABSQueue[numFields];
std::string currentFormula[numFields];
+ std::string currentTextFieldValue[numFields];
+
+ std::string upcomingFormula[numFields];
std::string lastValue[numFields];
- bool manualSet[numFields] = {false};
+ bool manualSet[numFields];
+ bool inError[numFields];
bool shouldChange[numFields] = {false};
bool changeImminent[numFields] = {false};
int activeKnobIndex[numFields] = {0};
+ int knobRangeEnum = 0;
+
+ int checkCounter = 0;
+ int checkCounterLimit = 10000;
+
+ bool jsonLoaded = false;
+
std::vector<ParamWidget*> smallLetterKnobs;
ComputerscareILoveCookies() {
config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS);
for (int i = 0; i < numFields; i++) {
+ manualSet[i] = false;
+ inError[i] = false;
+
currentFormula[i] = "";
lastValue[i] = "";
setNextAbsoluteSequence(i);
@@ -89,8 +103,73 @@ struct ComputerscareILoveCookies : Module {
resetOneOfThem(i);
}
for (int k = 0; k < numKnobs; k++) {
- configParam( KNOB_PARAM + k, 0.f, 10.f, 0.0f, string::f("knob %c",knoblookup[k]), " volts");
+ configParam( KNOB_PARAM + k, 0.f, 10.f, 0.0f, string::f("knob %c", knoblookup[k]));
+ }
+ }
+ json_t *dataToJson() override {
+ json_t *rootJ = json_object();
+
+ json_t *sequencesJ = json_array();
+ json_t *knobRangeJ = json_integer(knobRangeEnum);
+
+ for (int i = 0; i < numFields; i++) {
+ json_t *sequenceJ = json_string(currentTextFieldValue[i].c_str());
+ json_array_append_new(sequencesJ, sequenceJ);
+
+
+ }
+ json_object_set_new(rootJ, "sequences", sequencesJ);
+ json_object_set_new(rootJ, "knobRange", knobRangeJ);
+
+ return rootJ;
+ }
+
+ void dataFromJson(json_t *rootJ) override {
+ std::string val;
+ int count;
+ json_t *sequencesJ = json_object_get(rootJ, "sequences");
+ if (sequencesJ) {
+ for (int i = 0; i < numFields; i++) {
+
+ json_t *sequenceJ = json_array_get(sequencesJ, i);
+ if (sequenceJ) {
+ val = json_string_value(sequenceJ);
+
+ // currentFormula[i] = val;
+ //currentTextFieldValue[i] = val;
+ currentTextFieldValue[i] = val;
+
+ manualSet[i] = true;
+ }
+ }
+ jsonLoaded = true;
}
+ else {
+ json_t *textJLegacy = json_object_get(rootJ, "data");
+ if (textJLegacy) {
+ json_t *seqJLegacy = json_object_get(textJLegacy, "sequences");
+
+ if (seqJLegacy) {
+ for (int i = 0; i < numFields; i++) {
+ json_t *sequenceJ = json_array_get(seqJLegacy, i);
+ if (sequenceJ)
+ val = json_string_value(sequenceJ);
+ // currentFormula[i] = val;
+ //lastValue[i] = val;
+ currentTextFieldValue[i] = val;
+ //upcomingFormula[i]=val;
+ manualSet[i] = true;
+
+ }
+ }
+ }
+ }
+ json_t *knobRangeJ = json_object_get(rootJ, "knobRange");
+ if (knobRangeJ) {
+ knobRangeEnum = json_integer_value(knobRangeJ);
+ }
+
+
}
void process(const ProcessArgs &args) override;
@@ -110,37 +189,46 @@ struct ComputerscareILoveCookies : Module {
}
}
}
- void randomizeTextFields() {
+ std::string randomCookieFormula() {
std::string mainlookup = knoblookup;
std::string str = "";
std::string randchar = "";
float ru;
int length = 0;
- for (int i = 0; i < numFields; i++) {
-
- length = floor(random::uniform() * 12) + 2;
- str = "";
- for (int j = 0; j < length; j++) {
- randchar = mainlookup[floor(random::uniform() * mainlookup.size())];
- str = str + randchar;
- ru = random::uniform();
- if (ru < 0.1) {
- str = "(" + str + ")";
- }
+ length = floor(random::uniform() * 12) + 2;
+ str = "";
+ for (int j = 0; j < length; j++) {
+ randchar = mainlookup[floor(random::uniform() * mainlookup.size())];
+ str = str + randchar;
+ ru = random::uniform();
+ if (ru < 0.1) {
+ str = "(" + str + ")";
}
- currentFormula[i] = str;
- manualSet[i] = true;
+ }
+ return str;
+ }
- setNextAbsoluteSequence(i);
+ void randomizeAllFields() {
+ for (int i = 0; i < numFields; i++) {
+ randomizeAField(i);
}
}
+
+ void randomizeAField(int i) {
+ currentTextFieldValue[i] = randomCookieFormula();
+ manualSet[i] = true;
+ setNextAbsoluteSequence(i);
+
+
+ }
void setNextAbsoluteSequence(int index) {
- newABSQueue[index] = AbsoluteSequence(currentFormula[index], knobandinputlookup);
+ newABSQueue[index] = AbsoluteSequence(upcomingFormula[index], knobandinputlookup);
shouldChange[index] = true;
}
void setAbsoluteSequenceFromQueue(int index) {
newABS[index] = newABSQueue[index];
+ currentFormula[index] = upcomingFormula[index];
newABS[index].incrementAndCheck();
}
void checkIfShouldChange(int index) {
@@ -177,35 +265,46 @@ struct ComputerscareILoveCookies : Module {
}
float mapKnobValue(float rawValue, int rowIndex) {
// raw value is between 0 and +10
- /*
- 0: -10,10
- 1: -5,5
- 2: 0,10
- 3: 0,5
- 4: 0,1
- 5: -1,1
- 6: 0,2
- 7: 0,3
- 8: -2,2
- */
+
float mappedValue = 0.f;
- int mapEnum = 2;
+ int mapEnum = knobRangeEnum;
switch (mapEnum) {
- case 0: mappedValue = mapValue(rawValue, -5.f, 2.f); break;
- case 1: mappedValue = mapValue(rawValue, -5.f, 1.f); break;
- case 2: mappedValue = rawValue; break;
- case 3: mappedValue = mapValue(rawValue, 0.f, 0.5); break;
- case 4: mappedValue = mapValue(rawValue, 0.f, 0.1); break;
- case 5: mappedValue = mapValue(rawValue, -5, 0.2); break;
- case 6: mappedValue = mapValue(rawValue, 0.f, 0.2); break;
- case 7: mappedValue = mapValue(rawValue, 0.f, 1 / 3); break;
- case 8: mappedValue = mapValue(rawValue, -5.f, 0.4); break;
+ case 0: mappedValue = rawValue; break;//0..10
+ case 1: mappedValue = mapValue(rawValue, 0.f, 0.5); break;//0..5
+ case 2: mappedValue = mapValue(rawValue, 0.f, 0.2); break;//0..2
+ case 3: mappedValue = mapValue(rawValue, 0.f, 0.1); break;//0..1
+
+
+ case 4: mappedValue = mapValue(rawValue, -5, 2.f); break;//-10..10
+ case 5: mappedValue = mapValue(rawValue, -5, 1.f); break;//-5..5
+
+ case 6: mappedValue = mapValue(rawValue, -5, 0.4); break;//-2..2
+
+ case 7: mappedValue = mapValue(rawValue, -5, 0.2); break;//-1..1
}
return mappedValue;
}
float mapValue(float input, float offset, float multiplier) {
return (input + offset) * multiplier;
}
+ void checkTextField(int channel) {
+ std::string textFieldValue = currentTextFieldValue[channel];
+
+ if (textFieldValue != currentFormula[channel] && textFieldValue != upcomingFormula[channel]) {
+
+ AbsoluteSequence pendingSequence = AbsoluteSequence(textFieldValue, knobandinputlookup);
+ if (!pendingSequence.inError && matchParens(textFieldValue)) {
+ upcomingFormula[channel] = textFieldValue;
+ setNextAbsoluteSequence(channel);
+ inError[channel] = false;
+ }
+ else {
+ DEBUG("Channel %i in error", channel);
+ inError[channel] = true;
+ }
+ }
+
+ }
};
@@ -226,6 +325,28 @@ void ComputerscareILoveCookies::process(const ProcessArgs &args) {
bool currentResetTriggered;
bool currentManualResetClicked;
float knobRawValue = 0.f;
+
+ if (checkCounter > checkCounterLimit) {
+ if (!jsonLoaded) {
+ for (int i = 0; i < numFields; i++) {
+ //currentTextFieldValue[i] = i < numFields - 1 ? std::to_string(i + 1) : "abcd";
+ manualSet[i] = true;
+ }
+ for (int i = 0; i < numFields; i++) {
+ checkTextField(i);
+ checkIfShouldChange(i);
+ }
+ jsonLoaded = true;
+ }
+ else {
+ for (int i = 0; i < numFields; i++) {
+ checkTextField(i);
+ }
+ }
+ checkCounter = 0;
+ }
+ checkCounter++;
+
for (int i = 0; i < numFields; i++) {
activeStep = false;
currentResetActive = inputs[RESET_INPUT + i].isConnected();
@@ -308,10 +429,21 @@ struct RandomizeTextFieldsMenuItem : MenuItem {
ComputerscareILoveCookies *cookies;
void onAction(const event::Action &e) override {
srand(time(0));
- cookies->randomizeTextFields();
+ cookies->randomizeAllFields();
}
};
+struct CookiesKnobRangeItem : MenuItem {
+ ComputerscareILoveCookies *cookies;
+ int knobRangeEnum;
+ void onAction(const event::Action &e) override {
+ cookies->knobRangeEnum = knobRangeEnum;
+ }
+ void step() override {
+ rightText = CHECKMARK(cookies->knobRangeEnum == knobRangeEnum);
+ MenuItem::step();
+ }
+};
struct CookiesTF2 : ComputerscareTextField
{
ComputerscareILoveCookies *module;
@@ -328,26 +460,12 @@ struct CookiesTF2 : ComputerscareTextField
if (module)
{
if (module->manualSet[rowIndex]) {
- text = module->currentFormula[rowIndex];
+ text = module->currentTextFieldValue[rowIndex];
module->manualSet[rowIndex] = false;
}
std::string value = text.c_str();
- if (value != module->lastValue[rowIndex])
- {
- //LaundrySoupSequence lss = LaundrySoupSequence(value);
-
- module->lastValue[rowIndex] = value;
- AbsoluteSequence abs = AbsoluteSequence(value, knobandinputlookup);
- if ((!abs.inError) && matchParens(value)) {
- module->currentFormula[rowIndex] = value;
- inError = false;
- module->setNextAbsoluteSequence(this->rowIndex);
- }
- else {
- inError = true;
- }
-
- }
+ module->currentTextFieldValue[rowIndex] = value;
+ inError = module->inError[rowIndex];
}
else {
text = "we,love{}@9,cook(ies)";
@@ -534,34 +652,24 @@ struct ComputerscareILoveCookiesWidget : ModuleWidget {
}
cookies = module;
}
- json_t *toJson() override
- {
- json_t *rootJ = ModuleWidget::toJson();
- json_t *sequencesJ = json_array();
- for (int i = 0; i < numFields; i++) {
- json_t *sequenceJ = json_string(cookiesTextFields[i]->text.c_str());
- json_array_append_new(sequencesJ, sequenceJ);
- }
- json_object_set_new(rootJ, "sequences", sequencesJ);
-
- return rootJ;
- }
void fromJson(json_t *rootJ) override
{ std::string val;
ModuleWidget::fromJson(rootJ);
- json_t *sequencesJ = json_object_get(rootJ, "sequences");
+ json_t *sequencesJ = json_object_get(rootJ, "sequences");//legacy
if (sequencesJ) {
for (int i = 0; i < numFields; i++) {
json_t *sequenceJ = json_array_get(sequencesJ, i);
- if (sequenceJ)
+ if (sequenceJ) {
val = json_string_value(sequenceJ);
- cookiesTextFields[i]->text = val;
- cookies->currentFormula[i] = val;
+ cookies->currentTextFieldValue[i] = val;
+ cookies->manualSet[i] = true;
+ }
}
+ cookies->jsonLoaded = true;
}
- else {
+ /*else {
json_t *textJLegacy = json_object_get(rootJ, "data");
if (textJLegacy) {
json_t *seqJLegacy = json_object_get(textJLegacy, "sequences");
@@ -576,9 +684,10 @@ struct ComputerscareILoveCookiesWidget : ModuleWidget {
}
}
}
- }
+ }*/
}
+
ComputerscareILoveCookies *cookies;
CookiesTF2 *textField;
@@ -618,5 +727,23 @@ void ComputerscareILoveCookiesWidget::appendContextMenu(Menu *menu) {
randomizeTextFieldsMenuItem->cookies = cookiesModule;
menu->addChild(randomizeTextFieldsMenuItem);
+
+ menu->addChild(construct<MenuLabel>());
+ menu->addChild(construct<MenuLabel>(&MenuLabel::text, "Knob Range"));
+ menu->addChild(construct<CookiesKnobRangeItem>(&MenuItem::text, " 0v ... +10v", &CookiesKnobRangeItem::cookies, cookiesModule, &CookiesKnobRangeItem::knobRangeEnum, 0));
+ menu->addChild(construct<CookiesKnobRangeItem>(&MenuItem::text, " 0v ... +5v", &CookiesKnobRangeItem::cookies, cookiesModule, &CookiesKnobRangeItem::knobRangeEnum, 1));
+ menu->addChild(construct<CookiesKnobRangeItem>(&MenuItem::text, " 0v ... +2v", &CookiesKnobRangeItem::cookies, cookiesModule, &CookiesKnobRangeItem::knobRangeEnum, 2));
+ menu->addChild(construct<CookiesKnobRangeItem>(&MenuItem::text, " 0v ... +1v", &CookiesKnobRangeItem::cookies, cookiesModule, &CookiesKnobRangeItem::knobRangeEnum, 3));
+ menu->addChild(construct<CookiesKnobRangeItem>(&MenuItem::text, "-10v ... +10v", &CookiesKnobRangeItem::cookies, cookiesModule, &CookiesKnobRangeItem::knobRangeEnum, 4));
+ menu->addChild(construct<CookiesKnobRangeItem>(&MenuItem::text, " -5v ... +5v", &CookiesKnobRangeItem::cookies, cookiesModule, &CookiesKnobRangeItem::knobRangeEnum, 5));
+ menu->addChild(construct<CookiesKnobRangeItem>(&MenuItem::text, " -2v ... +2v", &CookiesKnobRangeItem::cookies, cookiesModule, &CookiesKnobRangeItem::knobRangeEnum, 6));
+ menu->addChild(construct<CookiesKnobRangeItem>(&MenuItem::text, " -1v ... +1v", &CookiesKnobRangeItem::cookies, cookiesModule, &CookiesKnobRangeItem::knobRangeEnum, 7));
+
};
+
+
+
+
+
+
Model *modelComputerscareILoveCookies = createModel<ComputerscareILoveCookies, ComputerscareILoveCookiesWidget>("computerscare-i-love-cookies");
diff --git a/src/ComputerscareOhPeas.cpp b/src/ComputerscareOhPeas.cpp
@@ -12,92 +12,10 @@ struct ComputerscareOhPeas;
const int numChannels = 4;
-struct PeasTextField;
struct ComputerscareOhPeas;
-struct PeasTextField : LedDisplayTextField
-{
- std::shared_ptr<Font> font;
- math::Vec textOffset;
- NVGcolor color;
- int fontSize = 16;
- int rowIndex = 0;
- bool inError = false;
- ComputerscareOhPeas *module;
- PeasTextField();
- //void draw(const DrawArgs &args) override;
- //int getTextPosition(math::Vec mousePos) ;
- void setModule(ComputerscareOhPeas *_module)
- {
- module = _module;
- }
- void onEnter(const event::Enter &e) override;
-
- /*int getTextPosition(Vec mousePos) override {
- bndSetFont(font->handle);
- int textPos = bndIconLabelTextPosition(gVg, textOffset.x, textOffset.y,
- box.size.x - 2*textOffset.x, box.size.y - 2*textOffset.y,
- -1, fontSize, text.c_str(), mousePos.x, mousePos.y);
- bndSetFont(gGuiFont->handle);
- return textPos;
- }*/
- int getTextPosition(math::Vec mousePos) override
- {
- bndSetFont(font->handle);
- int textPos = bndIconLabelTextPosition(APP->window->vg, textOffset.x, textOffset.y,
- box.size.x - 2 * textOffset.x, box.size.y - 2 * textOffset.y,
- -1, 12, text.c_str(), mousePos.x, mousePos.y);
- bndSetFont(APP->window->uiFont->handle);
- return textPos;
- }
- void draw(const DrawArgs &args) override
- {
- if (module)
- {
- nvgScissor(args.vg, 0, 0, box.size.x, box.size.y);
-
- // Background
- nvgFontSize(args.vg, fontSize);
- nvgBeginPath(args.vg);
- nvgRoundedRect(args.vg, 0, 0, box.size.x, box.size.y, 10.0);
-
- if (inError)
- {
- nvgFillColor(args.vg, COLOR_COMPUTERSCARE_PINK);
- }
- else
- {
- nvgFillColor(args.vg, nvgRGB(0x00, 0x00, 0x00));
- }
- nvgFill(args.vg);
-
- // Text
- if (font->handle >= 0)
- {
- bndSetFont(font->handle);
-
- NVGcolor highlightColor = color;
- highlightColor.a = 0.5;
- int begin = fmin(cursor, selection);
- // int end = (this == gFocusedWidget) ? fmax(cursor, selection) : -1;
-
- int end = fmax(cursor, selection);
- //bndTextField(args.vg,textOffset.x,textOffset.y+2, box.size.x, box.size.y, -1, 0, 0, const char *text, int cbegin, int cend);
- bndIconLabelCaret(args.vg, textOffset.x, textOffset.y - 3,
- box.size.x - 2 * textOffset.x, box.size.y - 2 * textOffset.y,
- -1, color, fontSize, text.c_str(), highlightColor, begin, end);
-
- bndSetFont(font->handle);
- }
-
- nvgResetScissor(args.vg);
- };
-
- }
-};
-
struct ComputerscareOhPeas : Module
{
@@ -136,13 +54,18 @@ struct ComputerscareOhPeas : Module
int numDivisions = 12;
int globalTranspose = 0;
bool evenQuantizeMode = true;
+ bool manualSet=false;
+
+ int checkCounter=9999;
+ int checkPeriod=1000;
std::string currentFormula = "221222";
+ std::string lastFormula="52";
+
+
std::string numDivisionsString = "";
SmallLetterDisplay *numDivisionsDisplay;
SmallLetterDisplay *globalTransposeDisplay;
- PeasTextField *textField;
- // this one throws an error I think
Quantizer quant;
ComputerscareOhPeas()
@@ -160,28 +83,54 @@ struct ComputerscareOhPeas : Module
}
- quant = Quantizer(currentFormula, 12, 0);
-
}
void process(const ProcessArgs &args) override;
+ json_t *dataToJson() override {
+ json_t *rootJ = json_object();
+
+ json_t *sequenceJ = json_string(currentFormula.c_str());
+
+ json_object_set_new(rootJ, "sequences", sequenceJ);
+
+ return rootJ;
+ }
+
+ void dataFromJson(json_t *rootJ) override {
+ std::string val;
+ json_t *textJ = json_object_get(rootJ, "sequences");
+ if (textJ) {
+ currentFormula = json_string_value(textJ);
+ manualSet=true;
+ }
+
+ }
void setQuant()
{
this->quant = Quantizer(this->currentFormula.c_str(), this->numDivisions, this->globalTranspose);
}
+ void checkForChange() {
+ if(lastFormula != currentFormula) {
+ setQuant();
+ }
+ lastFormula=currentFormula;
+ }
// For more advanced Module features, read Rack's engine.hpp header file
// - toJson, fromJson: serialization of internal data
// - onSampleRateChange: event triggered by a change of sample rate
// - onReset, onRandomize, onCreate, onDelete: implements special behavior when user clicks these from the context menu
};
-void PeasTextField::onEnter(const event::Enter &e)
-{
- module->setQuant();
-}
+
void ComputerscareOhPeas::process(const ProcessArgs &args)
{
+ if(checkCounter > checkPeriod) {
+ checkForChange();
+ checkCounter=0;
+ }
+ checkCounter++;
+
float A, B, C, D, Q, a, b, c, d;
int numDivisionsKnobValue = floor(params[NUM_DIVISIONS].getValue());
@@ -213,7 +162,7 @@ void ComputerscareOhPeas::process(const ProcessArgs &args)
numOffsetCVChannels = inputs[OFFSET_CV + i].getChannels();
outputs[SCALED_OUTPUT + i].setChannels(numInputChannels);
outputs[QUANTIZED_OUTPUT + i].setChannels(numInputChannels);
- for (int ch = 0; ch < std::max(numInputChannels,1); ch++) {
+ for (int ch = 0; ch < std::max(numInputChannels, 1); ch++) {
a = params[SCALE_VAL + i].getValue();
@@ -272,12 +221,19 @@ struct PeasTF2 : ComputerscareTextField
{
if (module)
{
+ if(module->manualSet) {
+ text=module->currentFormula;
+ printf("manualSet to %s\n",text.c_str());
+ module->manualSet=false;
+ }
if (text.c_str() != module->currentFormula)
{
module->currentFormula = text.c_str();
- module->setQuant();
}
}
+ else {
+ text="2212221";
+ }
ComputerscareTextField::draw(args);
}
@@ -329,9 +285,7 @@ void quantizationModeMenuItemAdd(ComputerscareOhPeas *peas, Menu *menu, bool eve
struct ComputerscareOhPeasWidget : ModuleWidget
{
float randAmt = 0.f;
- //PeasTextField* textFieldTemp;
- //TextField *textFieldTemp;
ComputerscareOhPeasWidget(ComputerscareOhPeas *module)
{
setModule(module);
@@ -362,7 +316,6 @@ struct ComputerscareOhPeasWidget : ModuleWidget
textFieldTemp->box.size = mm2px(Vec(44, 7));
textFieldTemp->multiline = false;
textFieldTemp->color = nvgRGB(0xC0, 0xE7, 0xDE);
- textFieldTemp->text = "221222";
addChild(textFieldTemp);
ndd = new PeasSmallDisplay(1);
@@ -408,15 +361,7 @@ struct ComputerscareOhPeasWidget : ModuleWidget
addOutput(createOutput<InPort>(mm2px(Vec(xx + 1, y + 108)), module, ComputerscareOhPeas::QUANTIZED_OUTPUT + i));
}
- }
- json_t *toJson() override
- {
- json_t *rootJ = ModuleWidget::toJson();
-
- // text
- json_object_set_new(rootJ, "sequences", json_string(textFieldTemp->text.c_str()));
-
- return rootJ;
+ peas=module;
}
void fromJson(json_t *rootJ) override
@@ -424,29 +369,18 @@ struct ComputerscareOhPeasWidget : ModuleWidget
std::string val;
ModuleWidget::fromJson(rootJ);
- // text
+ // legacy
json_t *textJ = json_object_get(rootJ, "sequences");
- if (textJ)
- textFieldTemp->text = json_string_value(textJ);
-
- json_t *textJLegacy = json_object_get(rootJ, "data");
- if (textJLegacy) {
- json_t *seqJLegacy = json_object_get(textJLegacy, "sequences");
-
- if (seqJLegacy) {
- json_t *theSequence = json_array_get(seqJLegacy, 0);
- if (theSequence) {
- val = json_string_value(theSequence);
- printf("yep there is json from Rack 0.6 %s\n", val.c_str());
- textFieldTemp->text = val;
-
- }
- }
+ if (textJ) {
+ DEBUG("we got legacy");
+ //textFieldTemp->text = json_string_value(textJ);
+ peas->currentFormula=json_string_value(textJ);
+ peas->manualSet=true;
}
}
-
+ ComputerscareOhPeas *peas;
PeasTF2 *textFieldTemp;
SmallLetterDisplay *trimPlusMinus;
PeasSmallDisplay *ndd;