From 99949c8f6fad1e2ef6aec5b742c8048d67b8280c Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 24 Dec 2011 11:20:02 +0100 Subject: command: new command "seekcur" For simpler seeking within current song. --- src/playlist_control.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'src/playlist_control.c') diff --git a/src/playlist_control.c b/src/playlist_control.c index 998294845..0dea7676a 100644 --- a/src/playlist_control.c +++ b/src/playlist_control.c @@ -262,3 +262,27 @@ playlist_seek_song_id(struct playlist *playlist, struct player_control *pc, return playlist_seek_song(playlist, pc, song, seek_time); } + +enum playlist_result +playlist_seek_current(struct playlist *playlist, struct player_control *pc, + float seek_time, bool relative) +{ + if (!playlist->playing) + return PLAYLIST_RESULT_NOT_PLAYING; + + if (relative) { + struct player_status status; + pc_get_status(pc, &status); + + if (status.state != PLAYER_STATE_PLAY && + status.state != PLAYER_STATE_PAUSE) + return PLAYLIST_RESULT_NOT_PLAYING; + + seek_time += (int)status.elapsed_time; + } + + if (seek_time < 0) + seek_time = 0; + + return playlist_seek_song(playlist, pc, playlist->current, seek_time); +} -- cgit v1.2.3