X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fclient.cpp;h=0130846f92c888a6838756a499f33df4357425d8;hb=f6ea07afd139ecfe76f9a72e4c736d94a1e67820;hp=604779662b5f0fc6944bf07542bd686ce390bdfb;hpb=a4982bb4d3fd9908aa01c824ac6202ac8618ac24;p=xinema.git diff --git a/source/client.cpp b/source/client.cpp index 6047796..0130846 100644 --- a/source/client.cpp +++ b/source/client.cpp @@ -74,6 +74,14 @@ XineStream &Client::get_stream() const throw runtime_error("No stream"); } +int Client::convert_channel(const string &arg) +{ + if(arg=="off") + return XineStream::OFF; + else + return lexical_cast(arg); +} + void Client::process_command(const string &cmd) { string::size_type space = cmd.find(' '); @@ -95,9 +103,9 @@ void Client::process_command(const string &cmd) else if(keyword=="stop") get_stream().stop(); else if(keyword=="select_audio") - set_audio_channel(args); + get_stream().select_audio_channel(convert_channel(args)); else if(keyword=="select_spu") - set_spu_channel(args); + get_stream().select_spu_channel(convert_channel(args)); else throw runtime_error("Invalid command"); } @@ -128,24 +136,8 @@ void Client::list_directory(const FS::Path &dn) else send_reply("file "+*i); } -} -void Client::set_audio_channel(const string &arg) -{ - XineStream &stream = get_stream(); - if(arg=="off") - stream.set_audio_off(); - else - stream.set_audio_channel(lexical_cast(arg)); -} - -void Client::set_spu_channel(const string &arg) -{ - XineStream &stream = get_stream(); - if(arg=="off") - stream.set_spu_off(); - else - stream.set_spu_channel(lexical_cast(arg)); + send_reply("directory_end"); } void Client::stream_created(XineStream &stream) @@ -155,6 +147,8 @@ void Client::stream_created(XineStream &stream) stream.signal_duration_changed.connect(sigc::mem_fun(this, &Client::stream_duration_changed)); stream.signal_position_changed.connect(sigc::mem_fun(this, &Client::stream_position_changed)); stream.signal_channels_changed.connect(sigc::mem_fun(this, &Client::stream_channels_changed)); + stream.signal_current_audio_channel_changed.connect(sigc::mem_fun(this, &Client::stream_audio_channel_changed)); + stream.signal_current_spu_channel_changed.connect(sigc::mem_fun(this, &Client::stream_spu_channel_changed)); MutexLock lock(stream.get_mutex()); stream_state_changed(stream.get_state()); @@ -164,9 +158,14 @@ void Client::stream_created(XineStream &stream) send_reply("title "+title); if(const Time::TimeDelta &dur = stream.get_duration()) + { stream_duration_changed(dur); + stream_position_changed(stream.get_position()); + } stream_channels_changed(); + stream_audio_channel_changed(stream.get_current_audio_channel()); + stream_spu_channel_changed(stream.get_current_spu_channel()); } void Client::stream_destroyed() @@ -214,3 +213,19 @@ void Client::stream_channels_changed() send_reply("channels_end"); } + +void Client::stream_audio_channel_changed(int chan) +{ + if(chan==XineStream::OFF) + send_reply("current_audio off"); + else + send_reply(format("current_audio %d", chan)); +} + +void Client::stream_spu_channel_changed(int chan) +{ + if(chan==XineStream::OFF) + send_reply("current_spu off"); + else + send_reply(format("current_spu %d", chan)); +}