116 lines
5.4 KiB
C++
116 lines
5.4 KiB
C++
/****************************************************************/
|
|
/* NAME: wade */
|
|
/* ORGN: MIT Cambridge MA */
|
|
/* FILE: FaultHandle_Info.cpp */
|
|
/* DATE: Dec 29th 1963 */
|
|
/****************************************************************/
|
|
|
|
#include <cstdlib>
|
|
#include <iostream>
|
|
#include "FaultHandle_Info.h"
|
|
#include "ColorParse.h"
|
|
#include "ReleaseInfo.h"
|
|
|
|
using namespace std;
|
|
|
|
//----------------------------------------------------------------
|
|
// Procedure: showSynopsis
|
|
|
|
void showSynopsis()
|
|
{
|
|
blk("SYNOPSIS: ");
|
|
blk("------------------------------------ ");
|
|
blk(" The pFaultHandle application is used for ");
|
|
blk(" ");
|
|
blk(" ");
|
|
blk(" ");
|
|
blk(" ");
|
|
}
|
|
|
|
//----------------------------------------------------------------
|
|
// Procedure: showHelpAndExit
|
|
|
|
void showHelpAndExit()
|
|
{
|
|
blk(" ");
|
|
blu("=============================================================== ");
|
|
blu("Usage: pFaultHandle file.moos [OPTIONS] ");
|
|
blu("=============================================================== ");
|
|
blk(" ");
|
|
showSynopsis();
|
|
blk(" ");
|
|
blk("Options: ");
|
|
mag(" --alias","=<ProcessName> ");
|
|
blk(" Launch pFaultHandle with the given process name ");
|
|
blk(" rather than pFaultHandle. ");
|
|
mag(" --example, -e ");
|
|
blk(" Display example MOOS configuration block. ");
|
|
mag(" --help, -h ");
|
|
blk(" Display this help message. ");
|
|
mag(" --interface, -i ");
|
|
blk(" Display MOOS publications and subscriptions. ");
|
|
mag(" --version,-v ");
|
|
blk(" Display the release version of pFaultHandle. ");
|
|
blk(" ");
|
|
blk("Note: If argv[2] does not otherwise match a known option, ");
|
|
blk(" then it will be interpreted as a run alias. This is ");
|
|
blk(" to support pAntler launching conventions. ");
|
|
blk(" ");
|
|
exit(0);
|
|
}
|
|
|
|
//----------------------------------------------------------------
|
|
// Procedure: showExampleConfigAndExit
|
|
|
|
void showExampleConfigAndExit()
|
|
{
|
|
blk(" ");
|
|
blu("=============================================================== ");
|
|
blu("pFaultHandle Example MOOS Configuration ");
|
|
blu("=============================================================== ");
|
|
blk(" ");
|
|
blk("ProcessConfig = pFaultHandle ");
|
|
blk("{ ");
|
|
blk(" AppTick = 4 ");
|
|
blk(" CommsTick = 4 ");
|
|
blk(" ");
|
|
blk("} ");
|
|
blk(" ");
|
|
exit(0);
|
|
}
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
// Procedure: showInterfaceAndExit
|
|
|
|
void showInterfaceAndExit()
|
|
{
|
|
blk(" ");
|
|
blu("=============================================================== ");
|
|
blu("pFaultHandle INTERFACE ");
|
|
blu("=============================================================== ");
|
|
blk(" ");
|
|
showSynopsis();
|
|
blk(" ");
|
|
blk("SUBSCRIPTIONS: ");
|
|
blk("------------------------------------ ");
|
|
blk(" NODE_MESSAGE = src_node=alpha,dest_node=bravo,var_name=FOO, ");
|
|
blk(" string_val=BAR ");
|
|
blk(" ");
|
|
blk("PUBLICATIONS: ");
|
|
blk("------------------------------------ ");
|
|
blk(" Publications are determined by the node message content. ");
|
|
blk(" ");
|
|
exit(0);
|
|
}
|
|
|
|
//----------------------------------------------------------------
|
|
// Procedure: showReleaseInfoAndExit
|
|
|
|
void showReleaseInfoAndExit()
|
|
{
|
|
showReleaseInfo("pFaultHandle", "gpl");
|
|
exit(0);
|
|
}
|
|
|