You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
136 lines
2.8 KiB
136 lines
2.8 KiB
/*
|
|
generic interactive controller
|
|
Copyright (C) 1998 Martin Vogt
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU Library General Public License as published by
|
|
the Free Software Foundation.
|
|
|
|
For more information look at the file COPYRIGHT in this package
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Set for local include
|
|
#define DIRECT_INCLUDE
|
|
|
|
#include "../yafcore/yaf_control.h"
|
|
#include "../yafxplayer/inputDecoderYAF.h"
|
|
|
|
#include <iostream>
|
|
using namespace std;
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <math.h>
|
|
|
|
|
|
// we include our plugin here
|
|
#include "../../../lib/decoder/tplayPlugin.h"
|
|
|
|
|
|
#if defined(HAVE_GETOPT_H)
|
|
#include <getopt.h>
|
|
#endif
|
|
|
|
|
|
void control_tplay(InputInterface* input,OutputInterface* output,
|
|
InputDecoder* decoder) {
|
|
|
|
|
|
cout<< "Command:0 Msg:protocol yaf-0.1" << endl;
|
|
cout<< "Command:0 Msg:implements xplayer" << endl;
|
|
cout<< "Command:0 Msg:decoder tplay Version:0.5.5" << endl;
|
|
cout<< "Command:0 Msg:mimetypes audio/wav;audio/au;" << endl;
|
|
cout<< "Command:0 Msg:comment tplay by Ilkka Karvinen" << endl;
|
|
cout<< "Command:0 Msg:comment yaf port by mvogt@rhrk.uni-kl.de"<<endl;
|
|
cout<< "Command:0 Msg:comment based on sources from eMusic and tplay"<<endl;
|
|
cout<< "Command:0 Msg:comment enter 'help' " << endl;
|
|
|
|
|
|
|
|
|
|
|
|
yaf_control(input,output,decoder);
|
|
}
|
|
|
|
|
|
void usage() {
|
|
cout << "yaf-tplay is a interactive frontend for the tplay decoder"<<endl;
|
|
cout << "Usage : yaf-tplay [-a] [url]"<<endl;
|
|
cout << endl;
|
|
cout << "-a : no internal audio device"<<endl;
|
|
cout << "-y : autoplay off"<<endl;
|
|
cout << endl;
|
|
cout << "THIS SOFTWARE COMES WITH ABSOLUTELY NO WARRANTY! " \
|
|
<< "USE AT YOUR OWN RISK!"<<endl;
|
|
cout << endl;
|
|
cout << "for more help type 'help' in interactive mode"<<endl;
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
int c;
|
|
int lInternalAudio=true;
|
|
|
|
pow(6.0,3.0); // fixes bug in __math.h
|
|
InputInterface input;
|
|
OutputInterface output(&cout);
|
|
|
|
|
|
|
|
|
|
|
|
YafOutputStream* yafOutput=new YafOutputStream(&input);
|
|
TplayPlugin* plugin=new TplayPlugin();
|
|
|
|
plugin->setOutputPlugin(yafOutput);
|
|
InputDecoderYAF decoder(plugin,yafOutput);
|
|
|
|
|
|
|
|
while(1) {
|
|
c = getopt (argc, argv, "2yamh");
|
|
if (c == -1) break;
|
|
switch(c) {
|
|
case 'a': {
|
|
lInternalAudio=false;
|
|
break;
|
|
}
|
|
case 'y': {
|
|
decoder.setAutoPlay(false);
|
|
break;
|
|
}
|
|
case 'h': {
|
|
usage();
|
|
exit(0);
|
|
}
|
|
default:
|
|
printf ("?? getopt returned character code 0%o ??\n", c);
|
|
usage();
|
|
exit(-1);
|
|
}
|
|
}
|
|
if (optind < argc ) {
|
|
Buffer buffer(300);
|
|
buffer.append("open ");
|
|
buffer.append(argv[optind]);
|
|
buffer.append("\n");
|
|
|
|
input.addInputLine(&buffer);
|
|
|
|
}
|
|
|
|
yafOutput->internalDevice(lInternalAudio);
|
|
control_tplay(&input,&output,&decoder);
|
|
delete plugin;
|
|
delete yafOutput;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|