aboutsummaryrefslogtreecommitdiff
path: root/src/queue.c
Commit message (Collapse)AuthorAge
* queue: update order array after song moveMax Kellermann2009-02-09
| | | | | | | Commit f78cddb4 introduced a regression: after a song was moved, the order array was not updated (in random mode). This caused MPD to think the "current" song has changed when you moved something to the position of the current song.
* queue: added queue_shuffle_order_last()Max Kellermann2009-01-25
| | | | | This function shuffles the last song of a range. This is used by addSongToPlaylist().
* queue: update moved song versionsMax Kellermann2009-01-23
| | | | This patch fixes a regression introduced by commit aa9ffc.
* queue: added queue_shuffle_order()Max Kellermann2009-01-23
| | | | | | | | | | | The function shuffles the virtual order of songs, but does not move them physically. This is used in random mode. The new function replaces playlist.c's randomizeOrder() function, which was aware of playlist.current and playlist.queued. The latter is always -1 anyway, and the former as preserved by the caller, by converting playlist.current to a position, and then back to an order number.
* queue: merged songs, songMod, positionToId into struct queue_itemMax Kellermann2009-01-23
| | | | | Move everything which belongs together into one common struct. This simplifies the implementation of several queue operations.
* playlist: moved code to queue.cMax Kellermann2009-01-22
Attempt to untie the playlist.c knot: moved the playlist storage code to queue.c, struct queue.