summaryrefslogtreecommitdiff
path: root/src/audtool/handlers_playback.c
blob: 8a812b7ecbae6cb580e206783e304d5fc1891259 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
 * handlers_playback.c
 * Copyright 2005-2013 George Averill, William Pitcock, Matti Hämäläinen, and
 *                     John Lindgren
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 *    this list of conditions, and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 *    this list of conditions, and the following disclaimer in the documentation
 *    provided with the distribution.
 *
 * This software is provided "as is" and without any warranty, express or
 * implied. In no event shall the authors be liable for any damages arising from
 * the use of this software.
 */

#include <stdlib.h>

#include "audtool.h"

void playback_play (int argc, char * * argv)
{
    obj_audacious_call_play_sync (dbus_proxy, NULL, NULL);
}

void playback_pause (int argc, char * * argv)
{
    obj_audacious_call_pause_sync (dbus_proxy, NULL, NULL);
}

void playback_playpause (int argc, char * * argv)
{
    obj_audacious_call_play_pause_sync (dbus_proxy, NULL, NULL);
}

void playback_stop (int argc, char * * argv)
{
    obj_audacious_call_stop_sync (dbus_proxy, NULL, NULL);
}

void playback_playing (int argc, char * * argv)
{
    gboolean playing = FALSE;
    obj_audacious_call_playing_sync (dbus_proxy, & playing, NULL, NULL);

    exit (! playing);
}

void playback_paused (int argc, char * * argv)
{
    gboolean paused = FALSE;
    obj_audacious_call_paused_sync (dbus_proxy, & paused, NULL, NULL);

    exit (! paused);
}

void playback_stopped (int argc, char * * argv)
{
    gboolean stopped = FALSE;
    obj_audacious_call_stopped_sync (dbus_proxy, & stopped, NULL, NULL);

    exit (! stopped);
}

void playback_status (int argc, char * * argv)
{
    char * status = NULL;
    obj_audacious_call_status_sync (dbus_proxy, & status, NULL, NULL);

    if (! status)
        exit (1);

    audtool_report ("%s", status);
    g_free (status);
}

void playback_seek (int argc, char * * argv)
{
    if (argc < 2)
    {
        audtool_whine_args (argv[0], "<position>");
        exit (1);
    }

    obj_audacious_call_seek_sync (dbus_proxy, MAX (0, atof (argv[1]) * 1000), NULL, NULL);
}

void playback_seek_relative (int argc, char * * argv)
{
    if (argc < 2)
    {
        audtool_whine_args (argv[0], "<position>");
        exit (1);
    }

    unsigned oldtime = 0;
    obj_audacious_call_time_sync (dbus_proxy, & oldtime, NULL, NULL);
    obj_audacious_call_seek_sync (dbus_proxy, MAX (0, oldtime + atof (argv[1]) * 1000), NULL, NULL);
}

void playback_record (int argc, char * * argv)
{
    obj_audacious_call_record_sync (dbus_proxy, NULL, NULL);
}

void playback_recording (int argc, char * * argv)
{
    gboolean recording = FALSE;
    obj_audacious_call_recording_sync (dbus_proxy, & recording, NULL, NULL);

    exit (! recording);
}