X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=remote%2Fsource%2Fxinemacontrol.cpp;h=eb2ec47e5706b0a67016491cedde811468c31ede;hb=857fbdc12041b7f01f45d4dcf2208f9dccf29294;hp=76108b98f815425b32946dda8d8dec7b97990b19;hpb=1abfbdd94fa45883f6d742df00508715f79c9954;p=xinema.git diff --git a/remote/source/xinemacontrol.cpp b/remote/source/xinemacontrol.cpp index 76108b9..eb2ec47 100644 --- a/remote/source/xinemacontrol.cpp +++ b/remote/source/xinemacontrol.cpp @@ -1,6 +1,11 @@ #include "xinemacontrol.h" -XinemaControl::XinemaControl() +XinemaControl::XinemaControl(): + playback_state(STOPPED), + duration(0.0f), + position(0.0f), + current_audio_channel(-1), + current_spu_channel(-1) { QObject::connect(&socket, &QAbstractSocket::connected, this, &XinemaControl::connected); QObject::connect(&socket, &QAbstractSocket::disconnected, this, &XinemaControl::disconnected); @@ -33,6 +38,42 @@ void XinemaControl::play_file(const QString &fn) send_request("play_file "+fn); } +void XinemaControl::play() +{ + send_request("play"); +} + +void XinemaControl::seek(float time) +{ + send_request(QString("seek %1").arg(time)); +} + +void XinemaControl::pause() +{ + send_request("pause"); +} + +void XinemaControl::stop() +{ + send_request("stop"); +} + +void XinemaControl::select_audio_channel(int chan) +{ + if(chan<0) + send_request("select_audio off"); + else + send_request(QString("select_audio %1").arg(chan)); +} + +void XinemaControl::select_spu_channel(int chan) +{ + if(chan<0) + send_request("select_spu off"); + else + send_request(QString("select_spu %1").arg(chan)); +} + void XinemaControl::send_request(const QString &req) { socket.write(req.toUtf8()); @@ -41,12 +82,16 @@ void XinemaControl::send_request(const QString &req) void XinemaControl::data_available() { - char rbuf[1024]; - int len = socket.read(rbuf, sizeof(rbuf)); - if(len<0) - return; + while(socket.bytesAvailable()) + { + char rbuf[1024]; + int len = socket.read(rbuf, sizeof(rbuf)); + if(len<0) + break; + + buffer.append(rbuf, len); + } - buffer.append(rbuf, len); unsigned start = 0; while(1) { @@ -77,4 +122,71 @@ void XinemaControl::process_reply(const QString &reply) emit subdirectory_added(args); else if(keyword=="file") emit file_added(args); + else if(keyword=="state") + { + if(args=="STOPPED") + playback_state = STOPPED; + else if(args=="PAUSED") + playback_state = PAUSED; + else if(args=="PLAYING") + playback_state = PLAYING; + emit playback_state_changed(playback_state); + } + else if(keyword=="title") + { + title = args; + emit title_changed(title); + } + else if(keyword=="duration") + { + duration = args.toFloat(); + emit duration_changed(duration); + } + else if(keyword=="position") + { + position = args.toFloat(); + emit position_changed(position); + } + else if(keyword=="audio_count") + resize_list(audio_channels, args.toInt()); + else if(keyword=="audio") + { + space = args.indexOf(' '); + audio_channels[args.mid(0, space).toInt()] = args.mid(space+1); + } + else if(keyword=="spu_count") + resize_list(spu_channels, args.toInt()); + else if(keyword=="spu") + { + space = args.indexOf(' '); + spu_channels[args.mid(0, space).toInt()] = args.mid(space+1); + } + else if(keyword=="channels_end") + emit channels_changed(); + else if(keyword=="current_audio") + { + current_audio_channel = convert_channel(args); + emit current_audio_channel_changed(current_audio_channel); + } + else if(keyword=="current_spu") + { + current_spu_channel = convert_channel(args); + emit current_spu_channel_changed(current_spu_channel); + } +} + +int XinemaControl::convert_channel(const QString &arg) +{ + if(arg=="off") + return OFF; + else + return arg.toInt(); +} + +void XinemaControl::resize_list(QStringList &list, int size) +{ + while(list.size()>size) + list.removeLast(); + while(list.size()