From 51e21a316be6e052251b3dfc7d671061ebd67cee Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 21 Dec 2009 18:03:28 +0000 Subject: Removed the old trunk contents. About to load up m3 --- src/viewerplain.cpp | 87 ----------------------------------------------------- 1 file changed, 87 deletions(-) delete mode 100644 src/viewerplain.cpp (limited to 'src/viewerplain.cpp') diff --git a/src/viewerplain.cpp b/src/viewerplain.cpp deleted file mode 100644 index 3e65f21..0000000 --- a/src/viewerplain.cpp +++ /dev/null @@ -1,87 +0,0 @@ -#include "viewerplain.h" -#include "perform.h" -#include "bu/plugger.h" - -PluginInterface2( plain, ViewerPlain, Viewer, "Mike Buland", 0, 1 ); - -ViewerPlain::ViewerPlain() : - bRunClean( true ) -{ -} - -ViewerPlain::~ViewerPlain() -{ -} - -void ViewerPlain::beginCommand( Action::eAction nAct, const std::string &sTarget ) -{ - Cmd cmd; - if( sCmd.empty() ) - cmd.nLevel = 0; - else - cmd.nLevel = sCmd.front().nLevel+1; - - cmd.bCmdClean = true; - cmd.sTarget = sTarget; - - sCmd.push_front( cmd ); -} - -void ViewerPlain::endCommand() -{ - if( sCmd.front().bCmdClean == false ) - printf("\n"); - sCmd.pop_front(); -} - -void ViewerPlain::indent() -{ - if( sCmd.empty() ) return; - int jmax = sCmd.front().nLevel; - for( int j = 0; j < jmax; j++ ) - { - printf(" "); - } -} - -void ViewerPlain::printHead() -{ - if( sCmd.front().bCmdClean == true ) - { - bRunClean = false; - sCmd.front().bCmdClean = false; - indent(); - printf("--- %s ---\n", sCmd.front().sTarget.c_str() ); - } -} - -void ViewerPlain::beginRequiresCheck( bool bCached, const std::string &sName ) -{ - printHead(); - indent(); - printf(" deps: %s\n", sName.c_str() ); -} - -void ViewerPlain::endRequiresCheck() -{ -} - -void ViewerPlain::beginPerform( Perform *pPerform ) -{ - printHead(); - indent(); - printf(" %8s: %s\n", pPerform->getRule().c_str(), pPerform->getTarget().c_str() ); -} - -void ViewerPlain::endPerform() -{ -} - -void ViewerPlain::endAction() -{ - if( bRunClean == true ) - { - printf("Nothing to be done.\n\n"); - } -} - -- cgit v1.2.3