Browse Source

Removed images in README

tags/v1.0.1
Andrew Belt 7 years ago
parent
commit
ba430ab22d
2 changed files with 13 additions and 41 deletions
  1. +0
    -24
      README.md
  2. +13
    -17
      src/Tides.cpp

+ 0
- 24
README.md View File

@@ -16,28 +16,20 @@ After checking out AudibleInstruments in the `plugins/` directory, get external

### Macro Oscillator
Based on [Braids](https://mutable-instruments.net/modules/braids), [Manual](https://mutable-instruments.net/modules/braids/manual/)

![Macro Oscillator](https://vcvrack.com/images/AudibleInstruments/macro%20oscillator.png)
- Sync input doesn't work
- More settings could be supported

### Modal Synthesizer
Based on [Elements](https://mutable-instruments.net/modules/elements), [Manual](https://mutable-instruments.net/modules/elements/manual/)

![Modal Synthesizer](https://vcvrack.com/images/AudibleInstruments/modal%20synthesizer.png)

### Tidal Modulator
Based on [Tides](https://mutable-instruments.net/modules/tides), [Manual](https://mutable-instruments.net/modules/tides/manual/)

![Tidal Modulator](https://vcvrack.com/images/AudibleInstruments/tidal%20modulator.png)

### Wavetable Oscillator
Based on [Sheep](https://mutable-instruments.net/modules/tides/firmware/) (Tides alternative firmware)

### Texture Synthesizer
Based on [Clouds](https://mutable-instruments.net/modules/clouds), [Manual](https://mutable-instruments.net/modules/clouds/manual/)

![Texture Synthesizer](https://vcvrack.com/images/AudibleInstruments/texture%20synthesizer.png)
- edit buttons and lights
- freeze button
- right-click context menus to replace menu diving
@@ -45,46 +37,30 @@ Based on [Clouds](https://mutable-instruments.net/modules/clouds), [Manual](http
### Meta Modulator
Based on [Warps](https://mutable-instruments.net/modules/warps), [Manual](https://mutable-instruments.net/modules/warps/manual/)

![Meta Modulator](https://vcvrack.com/images/AudibleInstruments/meta%20modulator.png)

### Resonator
Based on [Rings](https://mutable-instruments.net/modules/rings), [Manual](https://mutable-instruments.net/modules/rings/manual/)

![Resonator](https://vcvrack.com/images/AudibleInstruments/resonator.png)

### Keyframer/Mixer
Based on [Frames](https://mutable-instruments.net/modules/frames), [Manual](https://mutable-instruments.net/modules/frames/manual/)

### Multiples
Based on [Links](https://mutable-instruments.net/modules/links), [Manual](https://mutable-instruments.net/modules/links/manual/)

![Multiples](https://vcvrack.com/images/AudibleInstruments/multiples.png)

### Utilities
Based on [Kinks](https://mutable-instruments.net/modules/kinks), [Manual](https://mutable-instruments.net/modules/kinks/manual/)

![Utilities](https://vcvrack.com/images/AudibleInstruments/utilities.png)

### Mixer
Based on [Shades](https://mutable-instruments.net/modules/shades), [Manual](https://mutable-instruments.net/modules/shades/manual/)

![Mixer](https://vcvrack.com/images/AudibleInstruments/mixer.png)

### Bernoulli Gate
Based on [Branches](https://mutable-instruments.net/modules/branches), [Manual](https://mutable-instruments.net/modules/branches/manual/)

![Bernoulli Gate](https://vcvrack.com/images/AudibleInstruments/bernoulli%20gate.png)

### Quad VC-polarizer
Based on [Blinds](https://mutable-instruments.net/modules/blinds), [Manual](https://mutable-instruments.net/modules/blinds/manual/)

![Quad VC-polarizer](https://vcvrack.com/images/AudibleInstruments/quad%20VC-polarizer.png)

### Quad VCA
Based on [Veils](https://mutable-instruments.net/modules/veils), [Manual](https://mutable-instruments.net/modules/veils/manual/)

![Quad VCA](https://vcvrack.com/images/AudibleInstruments/quad%20VCA.png)


## Not yet ported



+ 13
- 17
src/Tides.cpp View File

@@ -192,18 +192,6 @@ void Tides::step() {
}


struct TidesSheepItem : MenuItem {
Tides *tides;
void onAction(EventAction &e) override {
tides->sheep ^= true;
}
void step() override {
rightText = (tides->sheep) ? "✔" : "";
MenuItem::step();
}
};


struct TidesWidget : ModuleWidget {
SVGPanel *tidesPanel;
SVGPanel *sheepPanel;
@@ -271,11 +259,19 @@ struct TidesWidget : ModuleWidget {


void appendContextMenu(Menu *menu) override {
Tides *tides = dynamic_cast<Tides*>(module);
assert(tides);

menu->addChild(construct<MenuLabel>());
menu->addChild(construct<TidesSheepItem>(&MenuItem::text, "Sheep", &TidesSheepItem::tides, tides));
Tides *module = dynamic_cast<Tides*>(this->module);

struct SheepItem : MenuItem {
Tides *module;
void onAction(EventAction &e) override {
module->sheep ^= true;
}
};

menu->addChild(MenuEntry::create());
SheepItem *sheepItem = MenuItem::create<SheepItem>("Sheep", CHECKMARK(module->sheep));
sheepItem->module = module;
menu->addChild(sheepItem);
}
};



Loading…
Cancel
Save