/*
This file is part of Ingen.
Copyright 2007-2012 David Robillard
Ingen is free software: you can redistribute it and/or modify it under the
terms of the GNU Affero General Public License as published by the Free
Software Foundation, either version 3 of the License, or any later version.
Ingen is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU Affero General Public License for details.
You should have received a copy of the GNU Affero General Public License
along with Ingen. If not, see .
*/
#include
#include "raul/log.hpp"
#include "ganv/Module.hpp"
#include "ingen/Interface.hpp"
#include "ingen/shared/LV2URIMap.hpp"
#include "ingen/client/PatchModel.hpp"
#include "ingen/client/PortModel.hpp"
#include "App.hpp"
#include "Configuration.hpp"
#include "WidgetFactory.hpp"
#include "PatchWindow.hpp"
#include "Port.hpp"
#include "PortMenu.hpp"
#include "WindowFactory.hpp"
using namespace Ingen::Client;
using namespace std;
using namespace Raul;
namespace Ingen {
using namespace Shared;
namespace GUI {
//ArtVpathDash* Port::_dash;
Port*
Port::create(App& app,
Ganv::Module& module,
SharedPtr pm,
bool human_name,
bool flip)
{
Glib::ustring label(human_name ? "" : pm->path().symbol());
if (human_name) {
const Raul::Atom& name = pm->get_property(app.uris().lv2_name);
if (name.type() == app.forge().String) {
label = name.get_string();
} else {
const SharedPtr parent(PtrCast(pm->parent()));
if (parent && parent->plugin_model())
label = parent->plugin_model()->port_human_name(pm->index());
}
}
return new Port(app, module, pm, label, flip);
}
/** @a flip Make an input port appear as an output port, and vice versa.
*/
Port::Port(App& app,
Ganv::Module& module,
SharedPtr pm,
const string& name,
bool flip)
: Ganv::Port(module, name,
flip ? (!pm->is_input()) : pm->is_input(),
app.configuration()->get_port_color(pm.get()))
, _app(app)
, _port_model(pm)
, _pressed(false)
, _flipped(flip)
{
assert(pm);
//ArtVpathDash* dash = this->dash();
//_rect.property_dash() = dash;
set_border_width(1.0);
if (app.can_control(pm.get())) {
set_control_is_toggle(pm->is_toggle());
show_control();
pm->signal_property().connect(
sigc::mem_fun(this, &Port::property_changed));
pm->signal_value_changed().connect(
sigc::mem_fun(this, &Port::value_changed));
}
pm->signal_activity().connect(sigc::mem_fun(this, &Port::activity));
pm->signal_moved().connect(sigc::mem_fun(this, &Port::moved));
signal_value_changed.connect(sigc::mem_fun(this, &Port::on_value_changed));
update_metadata();
value_changed(pm->value());
}
Port::~Port()
{
_app.activity_port_destroyed(this);
}
void
Port::update_metadata()
{
SharedPtr pm = _port_model.lock();
if (_app.can_control(pm.get()) && pm->is_numeric()) {
boost::shared_ptr parent = PtrCast(pm->parent());
if (parent) {
float min = 0.0f;
float max = 1.0f;
parent->port_value_range(pm, min, max, _app.sample_rate());
set_control_min(min);
set_control_max(max);
}
}
}
bool
Port::show_menu(GdkEventButton* ev)
{
PortMenu* menu = NULL;
WidgetFactory::get_widget_derived("object_menu", menu);
menu->init(_app, model(), _flipped);
menu->popup(ev->button, ev->time);
return true;
}
void
Port::moved()
{
if (_app.configuration()->name_style() == Configuration::PATH)
set_label(model()->symbol().c_str());
}
void
Port::on_value_changed(GVariant* value)
{
if (!g_variant_is_of_type(value, G_VARIANT_TYPE_DOUBLE)) {
Raul::warn << "TODO: Non-float port value changed." << std::endl;
return;
}
const Raul::Atom atom = _app.forge().make(float(g_variant_get_double(value)));
if (atom != model()->value()) {
Ingen::Shared::World* const world = _app.world();
_app.engine()->set_property(model()->path(),
world->uris()->ingen_value,
atom);
}
PatchBox* box = get_patch_box();
if (box) {
box->show_port_status(model().get(), atom);
}
}
void
Port::value_changed(const Atom& value)
{
if (!_pressed && value.type() == _app.forge().Float) {
Ganv::Port::set_control_value(value.get_float());
}
}
bool
Port::on_event(GdkEvent* ev)
{
PatchBox* box = NULL;
switch (ev->type) {
case GDK_ENTER_NOTIFY:
box = get_patch_box();
if (box) {
box->object_entered(model().get());
}
break;
case GDK_LEAVE_NOTIFY:
box = get_patch_box();
if (box) {
box->object_left(model().get());
}
break;
case GDK_BUTTON_PRESS:
if (ev->button.button == 1) {
_pressed = true;
} else if (ev->button.button == 3) {
return show_menu(&ev->button);
}
break;
case GDK_BUTTON_RELEASE:
if (ev->button.button == 1) {
_pressed = false;
}
default:
break;
}
return Ganv::Port::on_event(ev);
}
/* Peak colour stuff */
static inline uint32_t
rgba_to_uint(uint8_t r, uint8_t g, uint8_t b, uint8_t a)
{
return ((((uint32_t)(r)) << 24) |
(((uint32_t)(g)) << 16) |
(((uint32_t)(b)) << 8) |
(((uint32_t)(a))));
}
static inline uint8_t
mono_interpolate(uint8_t v1, uint8_t v2, float f)
{
return ((int)rint((v2) * (f) + (v1) * (1 - (f))));
}
#define RGBA_R(x) (((uint32_t)(x)) >> 24)
#define RGBA_G(x) ((((uint32_t)(x)) >> 16) & 0xFF)
#define RGBA_B(x) ((((uint32_t)(x)) >> 8) & 0xFF)
#define RGBA_A(x) (((uint32_t)(x)) & 0xFF)
static inline uint32_t
rgba_interpolate(uint32_t c1, uint32_t c2, float f)
{
return rgba_to_uint(
mono_interpolate(RGBA_R(c1), RGBA_R(c2), f),
mono_interpolate(RGBA_G(c1), RGBA_G(c2), f),
mono_interpolate(RGBA_B(c1), RGBA_B(c2), f),
mono_interpolate(RGBA_A(c1), RGBA_A(c2), f));
}
inline static uint32_t
peak_color(float peak)
{
static const uint32_t min = 0x4A8A0EC0;
static const uint32_t max = 0xFFCE1FC0;
static const uint32_t peak_min = 0xFF561FC0;
static const uint32_t peak_max = 0xFF0A38C0;
if (peak < 1.0) {
return rgba_interpolate(min, max, peak);
} else {
return rgba_interpolate(peak_min, peak_max, fminf(peak, 2.0f) - 1.0f);
}
}
/* End peak colour stuff */
void
Port::activity(const Raul::Atom& value)
{
if (model()->is_a(_app.uris().lv2_AudioPort)) {
set_fill_color(peak_color(value.get_float()));
} else {
_app.port_activity(this);
}
}
PatchBox*
Port::get_patch_box() const
{
SharedPtr patch = PtrCast(model()->parent());
if (!patch) {
patch = PtrCast(model()->parent()->parent());
}
return _app.window_factory()->patch_box(patch);
}
void
Port::property_changed(const URI& key, const Atom& value)
{
const URIs& uris = _app.uris();
if (value.type() == uris.forge.Float) {
float val = value.get_float();
if (key == uris.ingen_value && !_pressed) {
Ganv::Port::set_control_value(val);
} else if (key == uris.lv2_minimum) {
if (model()->port_property(uris.lv2_sampleRate)) {
val *= _app.sample_rate();
}
set_control_min(val);
} else if (key == uris.lv2_maximum) {
if (model()->port_property(uris.lv2_sampleRate)) {
val *= _app.sample_rate();
}
set_control_max(val);
}
} else if (key == uris.lv2_portProperty) {
if (value == uris.lv2_toggled)
set_control_is_toggle(true);
} else if (key == uris.lv2_name) {
if (value.type() == uris.forge.String
&& _app.configuration()->name_style() == Configuration::HUMAN) {
set_label(value.get_string());
}
}
}
/*
ArtVpathDash*
Port::dash()
{
const URIs& uris = _app.uris();
SharedPtr pm = _port_model.lock();
if (!pm)
return NULL;
if (!_dash) {
_dash = new ArtVpathDash();
_dash->n_dash = 2;
_dash->dash = art_new(double, 2);
_dash->dash[0] = 4;
_dash->dash[1] = 4;
}
return _dash;
}
*/
void
Port::set_selected(gboolean b)
{
if (b != get_selected()) {
Ganv::Port::set_selected(b);
SharedPtr pm = _port_model.lock();
if (pm && b) {
SharedPtr node = PtrCast(pm->parent());
PatchWindow* win = _app.window_factory()->parent_patch_window(node);
if (win && node->plugin_model()) {
const std::string& doc = node->plugin_model()->port_documentation(
pm->index());
if (!doc.empty()) {
win->show_documentation(doc, false);
} else {
win->hide_documentation();
}
}
}
}
}
} // namespace GUI
} // namespace Ingen