summaryrefslogtreecommitdiff
path: root/src/command.c
blob: a8c0534ec07b59c566a8b547c1341125ff7930ee (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
/*
 * pa-sink-ctl - NCurses based Pulseaudio control client
 * Copyright (C) 2011  Benjamin Franzke <benjaminfranzke@googlemail.com>
 * Copyright (C) 2010  Jan Klemkow <web2p10@wemelug.de>
 * 
 * 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 3 of the License, or
 * (at your option) any later version.
 * 
 * This program 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 General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <glib.h>

#include "pa-sink-ctl.h"
#include "interface.h"
#include "ctl.h"
#include "command.h"

static struct vol_ctl *
ctl_last_child_or_ctl(struct vol_ctl *ctl)
{
	int len;

	if (ctl->childs_len && (len = ctl->childs_len(ctl)) > 0)
		return ctl->get_nth_child(ctl, len-1);

	return ctl;
}

static void
up(struct context *ctx, int key)
{
	struct interface *ifc = &ctx->interface;
	struct vol_ctl *ctl, *prev;
	GList *last;

	if (!ctx->context_ready)
		return;

	ctl = ifc->current_ctl;
	if (ctl == NULL)
		return;

	prev = ctl->prev_ctl(ctl);
	if (prev) {
		ifc->current_ctl = ctl_last_child_or_ctl(prev);
	} else if (ctl->get_parent) {
		ifc->current_ctl = ctl->get_parent(ctl);
	} else {
		struct main_ctl *mctl = (struct main_ctl *) ctl;

		if (*mctl->list == ctx->source_list &&
		    (last = g_list_last(ctx->sink_list)) != NULL)
			ifc->current_ctl = ctl_last_child_or_ctl(last->data);
	}

	interface_redraw(ifc);
}

static void
down(struct context *ctx, int key)
{
	struct interface *ifc = &ctx->interface;
	struct vol_ctl *ctl, *next = NULL, *tmp, *parent;

	if (!ctx->context_ready)
		return;

	ctl = ifc->current_ctl;
	if (ctl == NULL)
		return;

	if (ctl->childs_len && ctl->childs_len(ctl) > 0) {
		next = ctl->get_nth_child(ctl, 0);
	} else if ((tmp = ctl->next_ctl(ctl)) != NULL) {
		next = tmp;
	} else if (ctl->get_parent) {
		parent = ctl->get_parent(ctl);
		next = parent->next_ctl(parent);
		if (!next)
			ctl = parent; /* parent for end-of-sink list lookup */
	}

	if (!next) {
		struct main_ctl *mctl = (struct main_ctl *) ctl;

		if (*mctl->list == ctx->sink_list &&
		    g_list_first(ctx->source_list) != NULL)
			next = g_list_first(ctx->source_list)->data;
	}

	if (next) {
		ifc->current_ctl = next;
		interface_redraw(ifc);
	}
}

static void
volume_change(struct context *ctx, gboolean volume_increment)
{
	struct vol_ctl *ctl;
	pa_cvolume volume;
	const pa_volume_t inc = 2 * PA_VOLUME_NORM / 100;
	pa_operation *o;

	if (!ctx->context_ready)
		return;

	ctl = ctx->interface.current_ctl;
	if (!ctl || !ctl->volume_set)
		return;

	volume.channels = ctl->channels;
	pa_cvolume_set(&volume, volume.channels, ctl->vol);

	if (volume_increment)
		if (PA_VOLUME_NORM > ctl->vol &&
		    PA_VOLUME_NORM - ctl->vol > inc)
			pa_cvolume_inc(&volume, inc);
		else
			pa_cvolume_set(&volume, volume.channels,
				       PA_VOLUME_NORM);
	else
		pa_cvolume_dec(&volume, inc);


	o = ctl->volume_set(ctx->context, ctl->index, &volume, NULL,NULL);
	pa_operation_unref(o);
}

static void
volume_down(struct context *ctx, int key)
{
	volume_change(ctx, FALSE);
}

static void
volume_up(struct context *ctx, int key)
{
	volume_change(ctx, TRUE);
}

static void
toggle_mute(struct context *ctx, int key)
{
	struct vol_ctl *ctl;
	pa_operation *o;

	if (!ctx->context_ready)
		return;

	ctl = ctx->interface.current_ctl;
	if (!ctl || !ctl->mute_set)
		return;

	o = ctl->mute_set(ctx->context, ctl->index, !ctl->mute, NULL, NULL);
	pa_operation_unref(o);
}

static void
switch_sink(struct context *ctx, int key)
{
	struct vol_ctl *cslave;
	struct main_ctl *mcparent, *ctl;
	pa_operation *o;
	GList *el;

	if (!ctx->context_ready)
		return;

	cslave = ctx->interface.current_ctl;
	if (!cslave || !cslave->get_parent)
		return;

	mcparent = (struct main_ctl *) cslave->get_parent(cslave);
	if (g_list_length(*mcparent->list) <= 1)
		return;

	el = g_list_find(*mcparent->list, mcparent);
	g_assert(el != NULL);
	if (el->next)
		el = el->next;
	else
		el = g_list_first(*mcparent->list);

	ctl = el->data;
	o = ctl->move_child(ctx->context,
			    cslave->index, ctl->base.index, NULL, NULL);
	pa_operation_unref(o);
}

static void
quit_cmd(struct context *ctx, int key)
{
	quit(ctx);
}

struct command_cb_descriptor command_cbs[] = {
	{ "up",          up },
	{ "down",        down },
	{ "volume-down", volume_down },
	{ "volume-up",   volume_up },
	{ "mute",        toggle_mute },
	{ "switch",      switch_sink },
	{ "quit",        quit_cmd },
	{ NULL,          NULL }
};