aboutsummaryrefslogtreecommitdiffstats
path: root/src/Queue.cxx (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-07-28song: convert header to C++Max Kellermann1-9/+9
2013-01-08Queue: use std::stable_sort() instead of g_qsort_with_data()Max Kellermann1-26/+8
2013-01-08song: don't use GLibMax Kellermann1-0/+2
2013-01-08Queue: allocate memory with new/deleteMax Kellermann1-5/+5
2013-01-08Queue: use signed integer instead of G_MAXUINTMax Kellermann1-1/+1
The check for unsigned underflow is fragile and unreliable.
2013-01-08Queue: move code to new class IdTableMax Kellermann1-36/+12
2013-01-08Queue: rename internal typesMax Kellermann1-13/+13
2013-01-08Queue: move GenerateId() and others into the classMax Kellermann1-82/+43
2013-01-07Queue: use C++ random instead of GLib's GRandMax Kellermann1-9/+16
2013-01-07Queue: move queue_shuffle_order_first() into the classMax Kellermann1-5/+4
2013-01-07Queue: move queue_shuffle_order_range() into the classMax Kellermann1-12/+7
2013-01-06Queue: use std::swapMax Kellermann1-4/+1
2013-01-06queue: convert all functions to methodsMax Kellermann1-179/+163
2013-01-06Queue: add constructor and destructorMax Kellermann1-27/+19
2013-01-04playlist: convert to C++Max Kellermann1-15/+15
2012-08-21queue_save: save song prioritiesMax Kellermann1-2/+2
2012-08-15queue: duplicate all song objectsMax Kellermann1-5/+6
Make sure the queue "owns" all song objects, so nobody else can free them.
2011-07-19queue: implement song "priorities"Max Kellermann1-5/+269
Sorts remaining songs by priority. This can be used for the much-demanded "queue feature".
2011-01-29copyright year 2011Max Kellermann1-1/+1
2010-05-31single mode: at the end of the song, pause on the next song instead of stopRomain Bignon1-8/+3
2010-01-16queue: don't repeat current song in consume modeMax Kellermann1-2/+2
Check consume mode in queue_next_order(), because the current song would be deleted as soon as it's finished; it cannot be played again.
2009-12-31Update copyright notices.Avuton Olrich1-1/+1
2009-11-12include config.h in all sourcesMax Kellermann1-0/+1
After we've been hit by Large File Support problems several times in the past week (which only occur on 32 bit platforms, which I don't have), this is yet another attempt to fix the issue.
2009-10-13queue: no CamelCaseMax Kellermann1-12/+12
Renamed idToPosition.
2009-03-30queue: queue_generate_id() is not necessary for export.Avuton Olrich1-1/+4
2009-03-30implemented the 'consume' modeRomain Bignon1-0/+1
Consume mode removes each song played
2009-03-27renamed smartstop to single and changed behaviorRomain Bignon1-3/+8
When single mode is enabled, after current song it stops playback, or it replay same song if repeat mode is activated.
2009-03-27implements the smartstop featureRomain Bignon1-0/+3
The smartstop feature is a way to tell mpd to stop playing after current song. This patche provides: - 'state' command returns 'smartstop' state (1 or 0) - 'smartstop' can activate or not the smartstop state - when song is terminated, mpd stops playing and smartstop is set to 0
2009-03-26queue/playlist/command: move rangeJeffrey Middleton1-0/+42
The move command now accepts a range for the first argument, in the same form as other range commands, e.g. move 15:17 3. The first song in the range is placed at the destination position. Note that as with other range commands, the range is inclusive on the left only; this example would move only songs 15 and 16, not 17. [mk: fixed signed/unsigned warnings; use G_MAXUINT instead of UINT_MAX]
2009-03-13all: Update copyright header.Avuton Olrich1-3/+4
This updates the copyright header to all be the same, which is pretty much an update of where to mail request for a copy of the GPL and the years of the MPD project. This also puts all committers under 'The Music Player Project' umbrella. These entries should go individually in the AUTHORS file, for consistancy.
2009-02-09queue: update order array after song moveMax Kellermann1-0/+14
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.
2009-01-25queue: added queue_shuffle_order_last()Max Kellermann1-0/+7
This function shuffles the last song of a range. This is used by addSongToPlaylist().
2009-01-23queue: update moved song versionsMax Kellermann1-0/+1
This patch fixes a regression introduced by commit aa9ffc.
2009-01-23queue: added queue_shuffle_order()Max Kellermann1-0/+11
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.
2009-01-23queue: merged songs, songMod, positionToId into struct queue_itemMax Kellermann1-45/+33
Move everything which belongs together into one common struct. This simplifies the implementation of several queue operations.
2009-01-22playlist: moved code to queue.cMax Kellermann1-0/+267
Attempt to untie the playlist.c knot: moved the playlist storage code to queue.c, struct queue.