summaryrefslogtreecommitdiff
path: root/src/wx
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-09-25 22:51:18 +0200
committerCarl Hetherington <cth@carlh.net>2020-09-25 22:51:18 +0200
commitba9fb85168d004d7643dc02f911fd173a136758b (patch)
tree8beb9b26c9bf47dfe933c8e0ccaccb4e30a69286 /src/wx
parentd7cf091bdbbeae8187e887104d1135e93bcdf5da (diff)
Add NamedChannel and use it to hide the never-used channels
when mapping into a DCP.
Diffstat (limited to 'src/wx')
-rw-r--r--src/wx/audio_mapping_view.cc84
-rw-r--r--src/wx/audio_mapping_view.h16
-rw-r--r--src/wx/config_dialog.cc8
3 files changed, 48 insertions, 60 deletions
diff --git a/src/wx/audio_mapping_view.cc b/src/wx/audio_mapping_view.cc
index 438b1e856..da08b66ad 100644
--- a/src/wx/audio_mapping_view.cc
+++ b/src/wx/audio_mapping_view.cc
@@ -191,9 +191,9 @@ AudioMappingView::paint_column_labels (wxDC& dc)
wxCoord label_width;
wxCoord label_height;
int N = 0;
- BOOST_FOREACH (string i, _output_channels) {
- dc.GetTextExtent (std_to_wx(i), &label_width, &label_height);
- dc.DrawText (std_to_wx(i), LEFT_WIDTH + GRID_SPACING * N + (GRID_SPACING - label_width) / 2, GRID_SPACING + (GRID_SPACING - label_height) / 2);
+ BOOST_FOREACH (NamedChannel const& i, _output_channels) {
+ dc.GetTextExtent (std_to_wx(i.name), &label_width, &label_height);
+ dc.DrawText (std_to_wx(i.name), LEFT_WIDTH + GRID_SPACING * N + (GRID_SPACING - label_width) / 2, GRID_SPACING + (GRID_SPACING - label_height) / 2);
++N;
}
@@ -226,9 +226,9 @@ AudioMappingView::paint_row_labels (wxDC& dc)
/* Row channel labels */
int N = 0;
- BOOST_FOREACH (string i, _input_channels) {
- dc.GetTextExtent (std_to_wx(i), &label_width, &label_height);
- dc.DrawText (std_to_wx(i), GRID_SPACING * 2 + (GRID_SPACING - label_width) / 2, TOP_HEIGHT + GRID_SPACING * N + (GRID_SPACING - label_height) / 2);
+ BOOST_FOREACH (NamedChannel const& i, _input_channels) {
+ dc.GetTextExtent (std_to_wx(i.name), &label_width, &label_height);
+ dc.DrawText (std_to_wx(i.name), GRID_SPACING * 2 + (GRID_SPACING - label_width) / 2, TOP_HEIGHT + GRID_SPACING * N + (GRID_SPACING - label_height) / 2);
++N;
}
@@ -305,7 +305,7 @@ AudioMappingView::paint_indicators (wxDC& dc)
)
);
- float const value_dB = linear_to_db(_map.get(y, x));
+ float const value_dB = linear_to_db(_map.get(_input_channels[y].index, _output_channels[x].index));
wxColour const colour = value_dB <= 0 ? wxColour(0, 255, 0) : wxColour(255, 150, 0);
int const range = 18;
int height = 0;
@@ -410,24 +410,24 @@ AudioMappingView::paint ()
restore (dc);
}
-optional<pair<int, int> >
+optional<pair<NamedChannel, NamedChannel> >
AudioMappingView::mouse_event_to_channels (wxMouseEvent& ev) const
{
int const x = ev.GetX() + _horizontal_scroll->GetThumbPosition();
int const y = ev.GetY() + _vertical_scroll->GetThumbPosition();
if (x <= LEFT_WIDTH || y < TOP_HEIGHT) {
- return optional<pair<int, int> >();
+ return optional<pair<NamedChannel, NamedChannel> >();
}
int const input = (y - TOP_HEIGHT) / GRID_SPACING;
int const output = (x - LEFT_WIDTH) / GRID_SPACING;
if (input >= int(_input_channels.size()) || output >= int(_output_channels.size())) {
- return optional<pair<int, int> >();
+ return optional<pair<NamedChannel, NamedChannel> >();
}
- return make_pair (input, output);
+ return make_pair (_input_channels[input], _output_channels[output]);
}
optional<string>
@@ -451,15 +451,15 @@ AudioMappingView::mouse_event_to_input_group_name (wxMouseEvent& ev) const
void
AudioMappingView::left_down (wxMouseEvent& ev)
{
- optional<pair<int, int> > channels = mouse_event_to_channels (ev);
+ optional<pair<NamedChannel, NamedChannel> > channels = mouse_event_to_channels (ev);
if (!channels) {
return;
}
- if (_map.get(channels->first, channels->second) > 0) {
- _map.set (channels->first, channels->second, 0);
+ if (_map.get(channels->first.index, channels->second.index) > 0) {
+ _map.set (channels->first.index, channels->second.index, 0);
} else {
- _map.set (channels->first, channels->second, 1);
+ _map.set (channels->first.index, channels->second.index, 1);
}
map_values_changed ();
@@ -468,13 +468,13 @@ AudioMappingView::left_down (wxMouseEvent& ev)
void
AudioMappingView::right_down (wxMouseEvent& ev)
{
- optional<pair<int, int> > channels = mouse_event_to_channels (ev);
+ optional<pair<NamedChannel, NamedChannel> > channels = mouse_event_to_channels (ev);
if (!channels) {
return;
}
- _menu_input = channels->first;
- _menu_output = channels->second;
+ _menu_input = channels->first.index;
+ _menu_output = channels->second.index;
PopupMenu (_menu, ev.GetPosition());
}
@@ -499,7 +499,7 @@ void
AudioMappingView::map_values_changed ()
{
Changed (_map);
- _last_tooltip_channels = optional<pair<int, int> >();
+ _last_tooltip_channels = optional<pair<NamedChannel, NamedChannel> >();
Refresh ();
}
@@ -530,84 +530,72 @@ AudioMappingView::set (AudioMapping map)
}
void
-AudioMappingView::set_input_channels (vector<string> const & names)
+AudioMappingView::set_input_channels (vector<NamedChannel> const& channels)
{
- _input_channels = names;
+ _input_channels = channels;
setup ();
Refresh ();
}
void
-AudioMappingView::set_output_channels (vector<string> const & names)
+AudioMappingView::set_output_channels (vector<NamedChannel> const & channels)
{
- _output_channels = names;
+ _output_channels = channels;
setup ();
Refresh ();
}
+
wxString
-AudioMappingView::safe_input_channel_name (int n) const
+AudioMappingView::input_channel_name_with_group (NamedChannel const& n) const
{
- if (n >= int(_input_channels.size())) {
- return wxString::Format ("%d", n + 1);
- }
-
optional<wxString> group;
BOOST_FOREACH (Group i, _input_groups) {
- if (i.from <= n && n <= i.to) {
+ if (i.from <= n.index && n.index <= i.to) {
group = std_to_wx (i.name);
}
}
if (group && !group->IsEmpty()) {
- return wxString::Format ("%s/%s", group->data(), std_to_wx(_input_channels[n]).data());
+ return wxString::Format ("%s/%s", group->data(), std_to_wx(n.name).data());
}
- return std_to_wx(_input_channels[n]);
+ return std_to_wx(n.name);
}
-wxString
-AudioMappingView::safe_output_channel_name (int n) const
-{
- if (n >= int(_output_channels.size())) {
- return wxString::Format ("%d", n + 1);
- }
-
- return std_to_wx(_output_channels[n]);
-}
void
AudioMappingView::motion (wxMouseEvent& ev)
{
- optional<pair<int, int> > channels = mouse_event_to_channels (ev);
+ optional<pair<NamedChannel, NamedChannel> > channels = mouse_event_to_channels (ev);
if (channels) {
if (channels != _last_tooltip_channels) {
wxString s;
- float const gain = _map.get(channels->first, channels->second);
+ float const gain = _map.get(channels->first.index, channels->second.index);
if (gain == 0) {
s = wxString::Format (
_("No audio will be passed from %s channel '%s' to %s channel '%s'."),
_from,
- safe_input_channel_name(channels->first),
+ input_channel_name_with_group(channels->first),
_to,
- safe_output_channel_name(channels->second)
+ std_to_wx(channels->second.name)
);
} else if (gain == 1) {
s = wxString::Format (
_("Audio will be passed from %s channel %s to %s channel %s unaltered."),
_from,
- safe_input_channel_name(channels->first),
+ input_channel_name_with_group(channels->first),
_to,
- safe_output_channel_name(channels->second)
+ std_to_wx(channels->second.name)
);
} else {
float const dB = linear_to_db(gain);
s = wxString::Format (
_("Audio will be passed from %s channel %s to %s channel %s with gain %.1fdB."),
_from,
- safe_input_channel_name(channels->first),
+ input_channel_name_with_group(channels->first),
_to,
- safe_output_channel_name(channels->second),
+ std_to_wx(channels->second.name),
dB
);
}
diff --git a/src/wx/audio_mapping_view.h b/src/wx/audio_mapping_view.h
index c65df4daf..f5626e524 100644
--- a/src/wx/audio_mapping_view.h
+++ b/src/wx/audio_mapping_view.h
@@ -24,6 +24,7 @@
*/
#include "lib/audio_mapping.h"
+#include "lib/types.h"
#include "lib/warnings.h"
DCPOMATIC_DISABLE_WARNINGS
#include <wx/wx.h>
@@ -51,8 +52,8 @@ public:
AudioMappingView (wxWindow *, wxString left_label, wxString from, wxString top_label, wxString to);
void set (AudioMapping);
- void set_input_channels (std::vector<std::string> const & names);
- void set_output_channels (std::vector<std::string> const & names);
+ void set_input_channels (std::vector<NamedChannel> const& channels);
+ void set_output_channels (std::vector<NamedChannel> const& channels);
struct Group
{
@@ -90,11 +91,10 @@ private:
void right_down (wxMouseEvent &);
void motion (wxMouseEvent &);
void mouse_wheel (wxMouseEvent &);
- boost::optional<std::pair<int, int> > mouse_event_to_channels (wxMouseEvent& ev) const;
+ boost::optional<std::pair<NamedChannel, NamedChannel> > mouse_event_to_channels (wxMouseEvent& ev) const;
boost::optional<std::string> mouse_event_to_input_group_name (wxMouseEvent& ev) const;
void setup ();
- wxString safe_input_channel_name (int n) const;
- wxString safe_output_channel_name (int n) const;
+ wxString input_channel_name_with_group (NamedChannel const& n) const;
void set_gain_from_menu (double linear);
void edit ();
@@ -113,9 +113,9 @@ private:
wxString _top_label;
wxString _to;
- std::vector<std::string> _input_channels;
- std::vector<std::string> _output_channels;
+ std::vector<NamedChannel> _input_channels;
+ std::vector<NamedChannel> _output_channels;
std::vector<Group> _input_groups;
- boost::optional<std::pair<int, int> > _last_tooltip_channels;
+ boost::optional<std::pair<NamedChannel, NamedChannel> > _last_tooltip_channels;
};
diff --git a/src/wx/config_dialog.cc b/src/wx/config_dialog.cc
index fe8e84795..40bb43407 100644
--- a/src/wx/config_dialog.cc
+++ b/src/wx/config_dialog.cc
@@ -1016,15 +1016,15 @@ SoundPage::config_changed ()
_map->set (Config::instance()->audio_mapping(channels));
- vector<string> input;
+ vector<NamedChannel> input;
for (int i = 0; i < MAX_DCP_AUDIO_CHANNELS; ++i) {
- input.push_back (short_audio_channel_name(i));
+ input.push_back (NamedChannel(short_audio_channel_name(i), i));
}
_map->set_input_channels (input);
- vector<string> output;
+ vector<NamedChannel> output;
for (int i = 0; i < channels; ++i) {
- output.push_back (dcp::raw_convert<string>(i));
+ output.push_back (NamedChannel(dcp::raw_convert<string>(i), i));
}
_map->set_output_channels (output);