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.
tdegames/kolf/main.cpp

94 lines
2.5 KiB

#include <tqcstring.h>
#include <tqfile.h>
#include <tdeapplication.h>
#include <tdelocale.h>
#include <tdecmdlineargs.h>
#include <tdeaboutdata.h>
#include <kdebug.h>
#include <kurl.h>
#include "kolf.h"
#include <iostream>
#include <kdemacros.h>
using namespace std;
static const char description[] =
I18N_NOOP("TDE Minigolf Game");
static const char version[] = "1.1.1";
static TDECmdLineOptions options[] =
{
{ "+file", I18N_NOOP("File"), 0 },
{ "course-info ", I18N_NOOP("Print course information and exit"), 0 },
TDECmdLineLastOption
};
extern "C" KDE_EXPORT int kdemain(int argc, char **argv)
{
TDEAboutData aboutData( "kolf", I18N_NOOP("Kolf"), version, description, TDEAboutData::License_GPL, "(c) 2002-2005, Jason Katz-Brown", 0, "http://www.katzbrown.com/kolf/");
aboutData.addAuthor("Jason Katz-Brown", I18N_NOOP("Main author"), "jason@katzbrown.com");
aboutData.addAuthor("Niklas Knutsson", I18N_NOOP("Advanced putting mode"), 0);
aboutData.addAuthor("Rik Hemsley", I18N_NOOP("Border around course"), 0);
aboutData.addAuthor("Ryan Cumming", I18N_NOOP("Vector class"), 0);
aboutData.addAuthor("Daniel Matza-Brown", I18N_NOOP("Working wall-bouncing algorithm"), 0);
aboutData.addAuthor("Timo A. Hummel", I18N_NOOP("Some good sound effects"), "timo.hummel@gmx.net");
aboutData.addCredit("Rob Renaud", I18N_NOOP("Wall-bouncing help"), 0);
aboutData.addCredit("Aaron Seigo", I18N_NOOP("Suggestions, bug reports"), 0);
TDECmdLineArgs::init(argc, argv, &aboutData);
TDECmdLineArgs::addCmdLineOptions(options);
// I've actually added this for my web site uploaded courses display
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
if (args->isSet("course-info"))
{
TDECmdLineArgs::enable_i18n();
TQString filename(TQFile::decodeName(args->getOption("course-info")));
if (TQFile::exists(filename))
{
CourseInfo info;
KolfGame::courseInfo(info, filename);
cout << info.name.latin1()
<< " - " << i18n("By %1").arg(info.author).latin1()
<< " - " << i18n("%1 holes").arg(info.holes).latin1()
<< " - " << i18n("par %1").arg(info.par).latin1()
<< endl;
return 0;
}
else
{
TDECmdLineArgs::usage(i18n("Course %1 does not exist.").arg(filename.latin1()));
}
}
TQApplication::setColorSpec(TQApplication::ManyColor);
TDEApplication a;
TDEGlobal::locale()->insertCatalogue("libtdegames");
Kolf *top = new Kolf;
if (args->count() >= 1)
{
KURL url = args->url(args->count() - 1);
top->openURL(url);
args->clear();
}
else
top->closeGame();
a.setMainWidget(top);
top->show();
return a.exec();
}