diff --git a/htdocs/index.html b/htdocs/index.html index 0149a87..dd48574 100644 --- a/htdocs/index.html +++ b/htdocs/index.html @@ -134,6 +134,9 @@ + diff --git a/htdocs/js/mpd.js b/htdocs/js/mpd.js index b6db9af..6e92436 100644 --- a/htdocs/js/mpd.js +++ b/htdocs/js/mpd.js @@ -325,6 +325,11 @@ function webSocketConnect() { else $('#btnsingle').removeClass("active"); + if(obj.data.crossfade) + $('#btncrossfade').addClass("active") + else + $('#btncrossfade').removeClass("active"); + if(obj.data.repeat) $('#btnrepeat').addClass("active") else @@ -488,6 +493,9 @@ $('#btnconsume').on('click', function (e) { $('#btnsingle').on('click', function (e) { socket.send("MPD_API_TOGGLE_SINGLE," + ($(this).hasClass('active') ? 0 : 1)); }); +$('#btncrossfade').on('click', function(e) { + socket.send("MPD_API_TOGGLE_CROSSFADE," + ($(this).hasClass('active') ? 0 : 1)); +}); $('#btnrepeat').on('click', function (e) { socket.send("MPD_API_TOGGLE_REPEAT," + ($(this).hasClass('active') ? 0 : 1)); }); diff --git a/src/mpd_client.c b/src/mpd_client.c index ea10178..5e2d30e 100644 --- a/src/mpd_client.c +++ b/src/mpd_client.c @@ -102,6 +102,10 @@ int callback_mpd(struct mg_connection *c) if(sscanf(c->content, "MPD_API_TOGGLE_SINGLE,%u", &uint_buf)) mpd_run_single(mpd.conn, uint_buf); break; + case MPD_API_TOGGLE_CROSSFADE: + if(sscanf(c->content, "MPD_API_TOGGLE_CROSSFADE,%u", &uint_buf)) + mpd_run_crossfade(mpd.conn, uint_buf); + break; case MPD_API_SET_VOLUME: if(sscanf(c->content, "MPD_API_SET_VOLUME,%ud", &uint_buf) && uint_buf <= 100) mpd_run_set_volume(mpd.conn, uint_buf); @@ -335,7 +339,7 @@ int mpd_put_state(char *buffer, int *current_song_id, unsigned *queue_version) len = snprintf(buffer, MAX_SIZE, "{\"type\":\"state\", \"data\":{" " \"state\":%d, \"volume\":%d, \"repeat\":%d," - " \"single\":%d, \"consume\":%d, \"random\":%d, " + " \"single\":%d, \"crossfade\":%d, \"consume\":%d, \"random\":%d, " " \"songpos\": %d, \"elapsedTime\": %d, \"totalTime\":%d, " " \"currentsongid\": %d" "}}", @@ -343,6 +347,7 @@ int mpd_put_state(char *buffer, int *current_song_id, unsigned *queue_version) mpd_status_get_volume(status), mpd_status_get_repeat(status), mpd_status_get_single(status), + mpd_status_get_crossfade(status), mpd_status_get_consume(status), mpd_status_get_random(status), mpd_status_get_song_pos(status), diff --git a/src/mpd_client.h b/src/mpd_client.h index 7879722..165bb5b 100644 --- a/src/mpd_client.h +++ b/src/mpd_client.h @@ -60,6 +60,7 @@ X(MPD_API_TOGGLE_RANDOM) \ X(MPD_API_TOGGLE_CONSUME) \ X(MPD_API_TOGGLE_SINGLE) \ + X(MPD_API_TOGGLE_CROSSFADE) \ X(MPD_API_TOGGLE_REPEAT) enum mpd_cmd_ids {