X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=tools%2Fctsimtext.cpp;h=54236af2434427345044bb3b9ded2f8d82c253e5;hp=c7b4d532eba0a79f465781fe84d1fca9786a51ac;hb=bd1d464294e037da19ccc80d8cc60475768eb2ca;hpb=6aff8409e37247fc071aae9b0d1bbbaaddce7175 diff --git a/tools/ctsimtext.cpp b/tools/ctsimtext.cpp index c7b4d53..54236af 100644 --- a/tools/ctsimtext.cpp +++ b/tools/ctsimtext.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: ctsimtext.cpp,v 1.17 2001/01/17 04:03:42 kevin Exp $ +** $Id: ctsimtext.cpp,v 1.20 2001/09/24 09:40:42 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -45,7 +45,7 @@ extern "C" { // If linked to ctsimtext, but executed as another name, eg pjrec, then program will use that // linked name as name of function. -static const char* const g_szIdStr = "$Id: ctsimtext.cpp,v 1.17 2001/01/17 04:03:42 kevin Exp $"; +static const char* const g_szIdStr = "$Id: ctsimtext.cpp,v 1.20 2001/09/24 09:40:42 kevin Exp $"; static const char* const s_szProgramName = "ctsimtext"; static const char* const s_szProgramName2 = "ctsimtext.exe"; static const char* const s_szProgramName3 = "ctsimtext-lam"; @@ -56,6 +56,8 @@ extern int ifexport_main (int argc, char* const argv[]); extern int ifinfo_main (int argc, char* const argv[]); extern int phm2if_main (int argc, char* const argv[]); extern int phm2pj_main (int argc, char* const argv[]); +extern int phm2helix_main (int argc, char* const argv[]); +extern int pjHinterp_main (int argc, char* const argv[]); extern int pj2if_main (int argc, char* const argv[]); extern int pjinfo_main (int argc, char* const argv[]); extern int pjrec_main (int argc, char* const argv[]); @@ -68,7 +70,11 @@ void ctsimtext_usage (const char *program) { std::cout << "usage: " << fileBasename(program) << " ctsim-function-name ctstim-function-parameters...\n"; - std::cout << "CTSim text shell\n\n"; + std::cout << "CTSim text shell"; +#ifdef VERSION + std::cout << ", Version " < 1){ + } else if (argc >= 1 && ! (strcmp(s_szProgramName, fileBasename (argv[0])) == 0 || strcmp(s_szProgramName2, fileBasename (argv[0])) == 0 || strcmp(s_szProgramName3, fileBasename (argv[0])) == 0)) { iReturn = processCommand (argc, argv); } else { s_bInteractive = true; char szPrompt[] = "CTSim> "; - std::cout << "CTSim Text Shell (Type \"quit\" to end)\n\n"; + std::cout << "CTSim Text Shell"; +#ifdef VERSION + std::cout << ", Version " << VERSION; +#endif + std::cout << " (Type \"quit\" to end)\n\n"; while (1) { #ifdef HAVE_READLINE @@ -242,6 +257,10 @@ processCommand (int argc, char* const argv[]) return phm2if_main (argc, argv); else if (strcasecmp (pszFunction, "phm2pj") == 0) return phm2pj_main (argc, argv); + else if (strcasecmp (pszFunction, "phm2helix") == 0) + return phm2helix_main (argc, argv); + else if (strcasecmp (pszFunction, "pjHinterp") == 0) + return pjHinterp_main (argc, argv); else if (strcasecmp (pszFunction, "pj2if") == 0) return pj2if_main (argc, argv); else if (strcasecmp (pszFunction, "pjinfo") == 0)