|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #pragma once
- #include "common.hpp"
- #include "engine/Module.hpp"
- #include "engine/Wire.hpp"
- #include <vector>
-
-
- namespace rack {
-
-
- struct Engine {
- /** Plugins should not manipulate other modules or wires unless that is the entire purpose of the module.
- Your plugin needs to have a clear purpose for manipulating other modules and wires and must be done with a good UX.
- */
- std::vector<Module*> modules;
- std::vector<Wire*> wires;
- bool paused = false;
-
- struct Internal;
- Internal *internal;
-
- Engine();
- ~Engine();
- /** Starts engine thread */
- void start();
- /** Stops engine thread */
- void stop();
- /** Does not transfer pointer ownership */
- void addModule(Module *module);
- void removeModule(Module *module);
- void resetModule(Module *module);
- void randomizeModule(Module *module);
- /** Does not transfer pointer ownership */
- void addWire(Wire *wire);
- void removeWire(Wire *wire);
- void setParam(Module *module, int paramId, float value);
- void setParamSmooth(Module *module, int paramId, float value);
- int getNextModuleId();
-
- void setSampleRate(float sampleRate);
- float getSampleRate();
- /** Returns the inverse of the current sample rate */
- float getSampleTime();
- };
-
-
- } // namespace rack
|