mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0031714: Draw Harness - print command name with intense within help output
Added command "dputs" similar to "puts" but with extra arguments modifying text color/intensity. Command "help" now prints the name of command with intense style.
This commit is contained in:
parent
0fb210edbf
commit
63e5cfcaab
@ -23,6 +23,7 @@
|
|||||||
#include <Draw_ProgressIndicator.hxx>
|
#include <Draw_ProgressIndicator.hxx>
|
||||||
#include <Message.hxx>
|
#include <Message.hxx>
|
||||||
#include <Message_Messenger.hxx>
|
#include <Message_Messenger.hxx>
|
||||||
|
#include <Message_PrinterOStream.hxx>
|
||||||
#include <OSD.hxx>
|
#include <OSD.hxx>
|
||||||
#include <OSD_Chronometer.hxx>
|
#include <OSD_Chronometer.hxx>
|
||||||
#include <OSD_Environment.hxx>
|
#include <OSD_Environment.hxx>
|
||||||
@ -1103,6 +1104,99 @@ static int dtracelevel (Draw_Interpretor& theDI,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//==============================================================================
|
||||||
|
//function : dputs
|
||||||
|
//purpose :
|
||||||
|
//==============================================================================
|
||||||
|
static int dputs (Draw_Interpretor& ,
|
||||||
|
Standard_Integer theArgNb,
|
||||||
|
const char** theArgVec)
|
||||||
|
{
|
||||||
|
Standard_OStream* aStream = &std::cout;
|
||||||
|
bool isNoNewline = false, toIntense = false;
|
||||||
|
Message_ConsoleColor aColor = Message_ConsoleColor_Default;
|
||||||
|
for (Standard_Integer anArgIter = 1; anArgIter < theArgNb; ++anArgIter)
|
||||||
|
{
|
||||||
|
TCollection_AsciiString anArg (theArgVec[anArgIter]);
|
||||||
|
anArg.LowerCase();
|
||||||
|
if (anArg == "-nonewline")
|
||||||
|
{
|
||||||
|
isNoNewline = true;
|
||||||
|
}
|
||||||
|
else if (anArg == "stdcout")
|
||||||
|
{
|
||||||
|
aStream = &std::cout;
|
||||||
|
}
|
||||||
|
else if (anArg == "stdcerr")
|
||||||
|
{
|
||||||
|
aStream = &std::cerr;
|
||||||
|
}
|
||||||
|
else if (anArg == "-intense")
|
||||||
|
{
|
||||||
|
toIntense = true;
|
||||||
|
}
|
||||||
|
else if (anArg == "-black")
|
||||||
|
{
|
||||||
|
aColor = Message_ConsoleColor_Black;
|
||||||
|
}
|
||||||
|
else if (anArg == "-white")
|
||||||
|
{
|
||||||
|
aColor = Message_ConsoleColor_White;
|
||||||
|
}
|
||||||
|
else if (anArg == "-red")
|
||||||
|
{
|
||||||
|
aColor = Message_ConsoleColor_Red;
|
||||||
|
}
|
||||||
|
else if (anArg == "-blue")
|
||||||
|
{
|
||||||
|
aColor = Message_ConsoleColor_Blue;
|
||||||
|
}
|
||||||
|
else if (anArg == "-green")
|
||||||
|
{
|
||||||
|
aColor = Message_ConsoleColor_Green;
|
||||||
|
}
|
||||||
|
else if (anArg == "-yellow")
|
||||||
|
{
|
||||||
|
aColor = Message_ConsoleColor_Yellow;
|
||||||
|
}
|
||||||
|
else if (anArg == "-cyan")
|
||||||
|
{
|
||||||
|
aColor = Message_ConsoleColor_Cyan;
|
||||||
|
}
|
||||||
|
else if (anArg == "-magenta")
|
||||||
|
{
|
||||||
|
aColor = Message_ConsoleColor_Magenta;
|
||||||
|
}
|
||||||
|
else if (anArgIter + 1 == theArgNb)
|
||||||
|
{
|
||||||
|
if (toIntense || aColor != Message_ConsoleColor_Default)
|
||||||
|
{
|
||||||
|
Message_PrinterOStream::SetConsoleTextColor (aStream, aColor, toIntense);
|
||||||
|
}
|
||||||
|
|
||||||
|
*aStream << theArgVec[anArgIter];
|
||||||
|
if (!isNoNewline)
|
||||||
|
{
|
||||||
|
*aStream << std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (toIntense || aColor != Message_ConsoleColor_Default)
|
||||||
|
{
|
||||||
|
Message_PrinterOStream::SetConsoleTextColor (aStream, Message_ConsoleColor_Default, false);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Message::SendFail() << "Syntax error at '" << anArg << "'";
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Message::SendFail() << "Syntax error: wrong number of arguments";
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
void Draw::BasicCommands(Draw_Interpretor& theCommands)
|
void Draw::BasicCommands(Draw_Interpretor& theCommands)
|
||||||
{
|
{
|
||||||
static Standard_Boolean Done = Standard_False;
|
static Standard_Boolean Done = Standard_False;
|
||||||
@ -1164,4 +1258,10 @@ void Draw::BasicCommands(Draw_Interpretor& theCommands)
|
|||||||
__FILE__,dversion,g);
|
__FILE__,dversion,g);
|
||||||
theCommands.Add("dlocale", "set and / or query locate of C subsystem (function setlocale())",
|
theCommands.Add("dlocale", "set and / or query locate of C subsystem (function setlocale())",
|
||||||
__FILE__,dlocale,g);
|
__FILE__,dlocale,g);
|
||||||
|
|
||||||
|
theCommands.Add("dputs",
|
||||||
|
"dputs [-intense] [-black|-white|-red|-green|-blue|-yellow|-cyan|-magenta]"
|
||||||
|
"\n\t\t: [-nonewline] [stdcout|stdcerr] text"
|
||||||
|
"\n\t\t: Puts text into console output",
|
||||||
|
__FILE__,dputs,g);
|
||||||
}
|
}
|
||||||
|
@ -27,67 +27,56 @@ set tcl_prompt1 {
|
|||||||
|
|
||||||
set tcl_prompt2 {puts -nonewline "> "}
|
set tcl_prompt2 {puts -nonewline "> "}
|
||||||
|
|
||||||
|
|
||||||
#################################################
|
#################################################
|
||||||
# the help command in TCL
|
# the help command in TCL
|
||||||
#################################################
|
#################################################
|
||||||
|
|
||||||
|
|
||||||
proc help {{command ""} {helpstring ""} {group "Procedures"}} {
|
proc help {{command ""} {helpstring ""} {group "Procedures"}} {
|
||||||
|
global Draw_Helps Draw_Groups
|
||||||
global Draw_Helps Draw_Groups
|
if {$command == ""} {
|
||||||
|
|
||||||
if {$command == ""} {
|
|
||||||
|
|
||||||
# help general
|
# help general
|
||||||
foreach h [lsort [array names Draw_Groups]] {
|
foreach h [lsort [array names Draw_Groups]] {
|
||||||
puts ""
|
dputs -intense "\n\n$h"
|
||||||
puts ""
|
set i 0
|
||||||
puts $h
|
foreach f [lsort $Draw_Groups($h)] {
|
||||||
set i 0
|
|
||||||
foreach f [lsort $Draw_Groups($h)] {
|
|
||||||
if {$i == 0} {
|
if {$i == 0} {
|
||||||
puts ""
|
puts ""
|
||||||
puts -nonewline " "
|
puts -nonewline " "
|
||||||
}
|
}
|
||||||
puts -nonewline $f
|
puts -nonewline $f
|
||||||
for {set j [string length $f]} {$j < 15} {incr j} {
|
for {set j [string length $f]} {$j < 15} {incr j} {
|
||||||
puts -nonewline " "
|
puts -nonewline " "
|
||||||
}
|
}
|
||||||
incr i
|
incr i
|
||||||
if {$i == 4} {set i 0}
|
if {$i == 4} {set i 0}
|
||||||
}
|
}
|
||||||
puts ""
|
puts ""
|
||||||
}
|
}
|
||||||
} elseif {$helpstring == ""} {
|
} elseif {$helpstring == ""} {
|
||||||
|
|
||||||
# help function
|
# help function
|
||||||
set isfound 0
|
set isfound 0
|
||||||
foreach f [lsort [array names Draw_Helps]] {
|
foreach f [lsort [array names Draw_Helps]] {
|
||||||
if {[string match $command $f]} {
|
if {[string match $command $f]} {
|
||||||
puts -nonewline $f
|
dputs -nonewline -intense $f
|
||||||
for {set j [string length $f]} {$j < 15} {incr j} {
|
for {set j [string length $f]} {$j < 15} {incr j} {
|
||||||
puts -nonewline " "
|
puts -nonewline " "
|
||||||
}
|
}
|
||||||
puts " : $Draw_Helps($f)"
|
puts " : $Draw_Helps($f)"
|
||||||
set isfound 1
|
set isfound 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if {!$isfound} {
|
if {!$isfound} {
|
||||||
if {[string first * $command] != -1} {
|
if {[string first * $command] != -1} {
|
||||||
puts "No matching commands found!"
|
puts "No matching commands found!"
|
||||||
} else {
|
} else {
|
||||||
puts "No help found for '$command'! Please try 'help $command*' to find matching commands."
|
puts "No help found for '$command'! Please try 'help $command*' to find matching commands."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
# set help
|
# set help
|
||||||
lappend Draw_Groups($group) $command
|
lappend Draw_Groups($group) $command
|
||||||
set Draw_Helps($command) $helpstring
|
set Draw_Helps($command) $helpstring
|
||||||
}
|
}
|
||||||
|
flush stdout
|
||||||
flush stdout
|
|
||||||
}
|
}
|
||||||
|
|
||||||
help help {help pattern, or help command string group, to set help} {DRAW General Commands}
|
help help {help pattern, or help command string group, to set help} {DRAW General Commands}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user