|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /*
- ZynAddSubFX - a software synthesizer
-
- Fl_Osc_Output.cpp - OSC Based Value Output
- Copyright (C) 2016 Mark McCurry
-
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
- */
- #include "Fl_Osc_Output.H"
- #include <cstdlib>
- #include <cstring>
- #include <cmath>
- #include <cassert>
- #include <sstream>
-
- static void callback_fn_output(Fl_Widget *w, void *)
- {
- ((Fl_Osc_Output*)w)->cb();
- }
-
- Fl_Osc_Output::Fl_Osc_Output(int X, int Y, int W, int H, const char *label)
- :Fl_Value_Output(X,Y,W,H, label), Fl_Osc_Widget(this)
- {
- Fl_Value_Output::callback(callback_fn_output);
- }
-
-
- void Fl_Osc_Output::init(const char *path)
- {
- ext = path;
- oscRegister(path);
- };
-
- void Fl_Osc_Output::callback(Fl_Callback *cb, void *p)
- {
- cb_data.first = cb;
- cb_data.second = p;
- }
-
- void Fl_Osc_Output::OSC_value(char v)
- {
- newvalue_ = v;
- value(v);
-
- //Hide the fact that this widget is async
- if(cb_data.first)
- cb_data.first(this, cb_data.second);
- }
-
- void Fl_Osc_Output::OSC_value(float v)
- {
- newvalue_ = v;
- value(v);
-
- //Hide the fact that this widget is async
- if(cb_data.first)
- cb_data.first(this, cb_data.second);
- }
-
- void Fl_Osc_Output::update(void)
- {
- oscWrite(ext);
- }
-
- float Fl_Osc_Output::newvalue(void) const
- {
- return newvalue_;
- }
-
- void Fl_Osc_Output::cb(void)
- {
- oscWrite(ext);
- }
|