summaryrefslogtreecommitdiff
path: root/plugingui/maintab.cc
blob: 05c5e6fbd5db8b996d5666a817e86f751b20c2e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/* -*- Mode: c++ -*- */
/***************************************************************************
 *            maintab.cc
 *
 *  Fri Mar 24 20:39:59 CET 2017
 *  Copyright 2017 André Nusser
 *  andre.nusser@googlemail.com
 ****************************************************************************/

/*
 *  This file is part of DrumGizmo.
 *
 *  DrumGizmo is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU Lesser General Public License as published by
 *  the Free Software Foundation; either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  DrumGizmo 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 Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public License
 *  along with DrumGizmo; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
 */
#include "maintab.h"

#include <translation.h>

namespace GUI
{

MainTab::MainTab(Widget* parent,
                 Settings& settings,
                 SettingsNotifier& settings_notifier,
                 Config& config)
	: Widget(parent)
	, drumkitframe_content{this, settings, settings_notifier, config}
	, statusframe_content{this, settings_notifier}
	, humanizerframe_content{this, settings, settings_notifier}
	, diskstreamingframe_content{this, settings, settings_notifier}
	, bleedcontrolframe_content{this, settings, settings_notifier}
	, resamplingframe_content{this, settings, settings_notifier}
	, timingframe_content{this, settings, settings_notifier}
	, sampleselectionframe_content{this, settings, settings_notifier}
	, visualizerframe_content{this, settings, settings_notifier}
	, powerframe_content{this, settings, settings_notifier}
	, settings(settings)
	, settings_notifier(settings_notifier)
{
	layout.setSpacing(0);

	const std::string humanizer_tip = std::string(
		_("The first two knobs influence how DrumGizmo simulates the\n")) +
		_("stamina of a physical drummers, ie. the fact that they\n") +
		_("loose power in their strokes when playing fast notes:\n") +
		_("  * pAttack: How quickly the velocity gets reduced when\n") +
		_("     playing fast notes.\n") +
		_("     Lower values result in faster velocity reduction.\n") +
		_("  * pRelease: How quickly the drummer regains the velocity\n") +
		_("     when there are spaces between the notes.\n") +
		_("     Lower values result in faster regain.\n") +
		_("\n") +
		_("The last knob controls the randomization of the sample selection:\n") +
		_("  * pStdDev: The standard-deviation for the sample selection.\n") +
		_("     Higher value makes it more likely that a sample further\n") +
		_("     away from the input velocity will be played.");

	const std::string timing_tip = std::string(
		_("These three knobs influence how DrumGizmo simulates the tightness\n")) +
		_("of the drummer.\n") +
		_("The drifting is defined as the difference between\n") +
		_("the perfect metronome (defined by the note positions) and the 'internal'\n") +
		_("metronome of the drummer which can then drift back and forth in a\n") +
		_("controlled fashion:\n") +
		_("  * pTightness: For each note how much is the drummer allowed to drift.\n") +
		_("     Higher value make the drummer more tight, ie. drift less.\n") +
		_("  * pTimingRegain: Once the drifted, how fast does the drummer's 'internal'\n") +
		_("     metronome get back in sync with the perfect metronome.\n") +
		_("     Higher values moves the timing back towards perfect faster.\n") +
		_("  * pLaidback: Add or subtract a fixed delay in ms to all notes. This will\n") +
		_("     alter the feel of a beat.\n") +
		_("     Positive values are up-beat, negative values are back on the beat.\n") +
		_("\n") +
		_("NOTE: Enabling timing humanization will introduce a fixed delay into the\n") +
		_("audio stream.\n") +
		_("So this feature should be disabled when using DrumGizmo in\n") +
		_("a real-time scenario such as live with a MIDI drumkit.");

	const std::string sampleselection_tip = std::string(
		_("These three knobs influence how DrumGizmo selects\n")) +
		_("its samples in the following way:\n") +
		_("  * pClose: The importance given to choosing a sample close\n") +
		_("     to the actual MIDI value (after humanization)\n") +
		_("  * pDiversity: The importance given to choosing samples\n") +
		_("     which haven't been played recently.\n") +
		_("  * pRandom: The amount of randomness added.");

	const std::string visualizer_tip = std::string(
		_("This graph visualizes the time and velocity offsets of last note\n")) +
		_("played according to it's ideal input time and velocity.\n") +
		_("The green lines indicate the ideal time and velocity positions.\n") +
		_("The pink areas indicate the spread of the position and velocity\n") +
		_("of the next note in line.\n") +
		_("The wider the area the more the note can move in time and velocity.");

	const std::string power_tip = std::string(
		_("This function controls how the input powers are mapped to the powers\n")) +
		_("that DrumGizmo uses for selecting samples.\n") +
		_("You can control the function by dragging and dropping the\n") +
		_("three colorful control points.\n") +
		_("Additionally, you can either use a shelf, which draws a horizontal line\n") +
		_("from the green and red control points to the left/right side.\n") +
		_("Or you can turn off the shelf, and then the function goes through\n") +
		_("the lower left corner, then the three control points, and then\n") +
		_("the upper right corner, enabling to draw more complicated functions.");

	layout.setResizeChildren(true);

	add(_("Drumkit"), drumkit_frame, drumkitframe_content, 12, 0);
	add(_("Status"), status_frame, statusframe_content, 14, 0);
	add(_("Resampling"), resampling_frame, resamplingframe_content, 9, 0);
	add(_("Disk Streaming"), diskstreaming_frame, diskstreamingframe_content, 7, 0);
	add(_("Bleed Control"), bleedcontrol_frame, bleedcontrolframe_content, 7, 0);

	add(_("Velocity Humanizer"), humanizer_frame, humanizerframe_content, 8, 1);
	humanizer_frame.setHelpText(humanizer_tip);
	add(_("Timing Humanizer"), timing_frame, timingframe_content, 8, 1);
	timing_frame.setHelpText(timing_tip);
	add(_("Sample Selection"), sampleselection_frame,
	    sampleselectionframe_content, 8, 1);
	sampleselection_frame.setHelpText(sampleselection_tip);
	add(_("Visualizer"), visualizer_frame, visualizerframe_content, 8, 1);
	visualizer_frame.setHelpText(visualizer_tip);
	add(_("Velocity Curve"), power_frame, powerframe_content, 17, 1);
	power_frame.setHelpText(power_tip);

	humanizer_frame.setOnSwitch(settings.enable_velocity_modifier);
	bleedcontrol_frame.setOnSwitch(settings.enable_bleed_control);
	resampling_frame.setOnSwitch(settings.enable_resampling);
	timing_frame.setOnSwitch(settings.enable_latency_modifier);

	// FIXME:
	bleedcontrol_frame.setEnabled(false);

	CONNECT(this, settings_notifier.enable_velocity_modifier,
	        &humanizer_frame, &FrameWidget::setOnSwitch);
	CONNECT(this, settings_notifier.enable_resampling,
	        &resampling_frame, &FrameWidget::setOnSwitch);
	CONNECT(this, settings_notifier.has_bleed_control,
	        &bleedcontrol_frame, &FrameWidget::setEnabled);
	CONNECT(&humanizer_frame, onSwitchChangeNotifier,
	        this, &MainTab::humanizerOnChange);
	CONNECT(&bleedcontrol_frame, onSwitchChangeNotifier,
	        this, &MainTab::bleedcontrolOnChange);
	CONNECT(&resampling_frame, onSwitchChangeNotifier,
	        this, &MainTab::resamplingOnChange);
	CONNECT(&timing_frame, onSwitchChangeNotifier,
	        this, &MainTab::timingOnChange);
	CONNECT(&bleedcontrol_frame, onEnabledChanged,
	        &bleedcontrolframe_content, &BleedcontrolframeContent::setEnabled);

	CONNECT(&settings_notifier, enable_powermap,
	        &power_frame, &FrameWidget::setOnSwitch);
	CONNECT(&power_frame, onSwitchChangeNotifier,
	        this, &MainTab::powerOnChange);
}

void MainTab::resize(std::size_t width, std::size_t height)
{
	Widget::resize(width, height);

	// DrumGizmo logo
	Painter painter(*this);
	painter.clear();
	painter.drawImage(width - logo.width(), height - logo.height(), logo);
}

void MainTab::humanizerOnChange(bool on)
{
	settings.enable_velocity_modifier.store(on);
}

void MainTab::bleedcontrolOnChange(bool on)
{
	settings.enable_bleed_control.store(on);
}

void MainTab::resamplingOnChange(bool on)
{
	settings.enable_resampling.store(on);
}

void MainTab::timingOnChange(bool on)
{
	settings.enable_latency_modifier.store(on);
}

void MainTab::powerOnChange(bool on)
{
	settings.enable_powermap.store(on);
}

void MainTab::add(std::string const& title, FrameWidget& frame, Widget& content,
                  std::size_t height, int column)
{
	layout.addItem(&frame);
	frame.setTitle(title);
	frame.setContent(&content);

	auto grid_start = layout.lastUsedRow(column) + 1;
	auto range = GridLayout::GridRange{column,
	                                   column + 1,
	                                   grid_start,
	                                   grid_start + int(height)};
	layout.setPosition(&frame, range);
}

} // GUI::