Add crossfade support. Not sure about the icon/glyph though
authorajs124 <git@ajs124.de>
Tue, 17 Feb 2015 14:45:26 +0000 (15:45 +0100)
committerajs124 <git@ajs124.de>
Tue, 17 Feb 2015 14:45:26 +0000 (15:45 +0100)
htdocs/index.html
htdocs/js/mpd.js
src/mpd_client.c
src/mpd_client.h

index 0149a87..dd48574 100644 (file)
             <button id="btnsingle" type="button" class="btn btn-default">
               <span class="glyphicon glyphicon-star"></span> Single
             </button>
+            <button id="btncrossfade" type="button" class="btn btn-default">
+              <span class="glyphicon glyphicon-link"></span> Crossfade
+            </button>
             <button id="btnrepeat" type="button" class="btn btn-default">
               <span class="glyphicon glyphicon-repeat"></span> Repeat
             </button>
index b6db9af..6e92436 100644 (file)
@@ -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));
 });
index ea10178..5e2d30e 100644 (file)
@@ -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),
index 7879722..165bb5b 100644 (file)
@@ -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 {