function amt_disp(msg,flag)
%amt_disp AMT-specific overload of the function 'disp'
% Usage: amt_disp(X);
% amt_disp(X,'volatile');
% amt_disp(X,'documentation');
% amp_disp();
%
% AMT_DISP(X); can be used to show message X in the command
% window. The output of AMT_DISP depends on the start-up
% configuration of the AMT.
%
% When the AMT is started in the default mode (verbose), AMT_DISP
% will display behaving as the Matlab/Octave funtion disp(), however,
% the output will not appear in the web documentation. When the AMT is
% started in the silent mode, AMT_DISP will never display.
% See amt_start for further explanation on the start-up configurations.
%
% AMT_DISP(X,'volatile'); can be used as volatile progress indicator.
% Any subsequent call of the AMT_DISP will delete the previous volatile
% message. This way a changing progress can be clearly shown even in loops.
% As the default messages, the volatile messages will not appear in the
% web documentation case. After the last usage of 'volatile'
% call AMT_DISP(); to fix the output and prevent subsequent deletions.
%
% AMT_DISP(X,'documentation'); can be used for information interesting
% to be displayed in the web documentation.
%
% AMT_DISP(X,'silent'); does not output at all. This is one of the
% available modes of the AMT.
%
% AMT_DISP(X,'no_debug'); does neither output at all.
% AMT_DISP(X,'debug'); does output and combined with no_debug, it
% can be used to implement a function in which the user defines the
% level of information to be displayed by passing a flag. For example,:
%
% definput.flags.disp = {'no_debug','debug'};
% [flags,kv]=ltfatarghelper({},definput,varargin);
% ...
% amt_disp('Displayed only when flag debug provided',flags.disp);
%
%
% See also: amt_start
%
% Url: http://amtoolbox.sourceforge.net/amt-0.10.0/doc/core/amt_disp.php
% Copyright (C) 2009-2020 Piotr Majdak and the AMT team.
% This file is part of Auditory Modeling Toolbox (AMT) version 1.0.0
%
% This program is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program. If not, see <http://www.gnu.org/licenses/>.
% #Author: Piotr Majdak, 2016
% last change: 17.5.2017, volatile added
mlock;
persistent CachedMsg;
flags=amt_flags;
% if no message provided: clear the volatile buffer, print EOL and terminate
if nargin==0,
if flags.do_verbose, fprintf('\n'); end
clear CachedMsg;
return;
end
% if empty message provided: clear the volatile buffer, print EOL and terminate
if isempty(msg)
if flags.do_verbose, fprintf('\n'); end
clear CachedMsg;
return;
end
% if string empty or with blanks only provided: clear the volatile buffer, print EOL and terminate
if ischar(msg)
if sum(msg==' ')==length(msg),
if flags.do_verbose, fprintf('\n'); end
clear CachedMsg;
return;
end
end
if exist('flag','var')
if ~strcmp(flag,'documentation') && ~strcmp(flag,'volatile') && ~strcmp(flag,'progress') && ~strcmp(flag,'silent') && ~strcmp(flag,'debug') && ~strcmp(flag,'verbose') && ~strcmp(flag,'no_debug')
error(['AMT_DISP: Unsupported flag ' flag]);
end
else
flag=''; % no flag --> we show the progress when being live only (no documentation mode)
end
%% AMT is in the default verbose mode --> print all messages
if flags.do_verbose
switch flag
case 'volatile'
if ~isempty(CachedMsg)
reversemsg = repmat(sprintf('\b'), 1, length(CachedMsg));
fprintf(reversemsg);
end
fprintf(strrep(msg,'\','\'));
CachedMsg=msg;
case {'silent', 'no_debug'}
% do nothing
case 'progress'
warning('PROGRESS flag is deprecated. Use amt_disp without a flag for the same behavior');
if ~isempty(CachedMsg)
reversemsg = repmat(sprintf('\b'), 1, length(CachedMsg));
fprintf(reversemsg);
CachedMsg=[];
end
disp(msg);
case {'', 'debug', 'verbose'}
if ~isempty(CachedMsg)
reversemsg = repmat(sprintf('\b'), 1, length(CachedMsg));
fprintf(reversemsg);
CachedMsg=[];
end
disp(msg);
case 'documentation'
disp(msg);
end
end
%% Compile messages for the web documentation, print 'documentation' messages only
if flags.do_documentation
switch flag
case {'', 'volatile'}
% do nothing
case 'progress'
warning('PROGRESS flag is deprecated. Use amt_disp() without flag for the same behavior');
% do nothing
case 'documentation'
disp(msg);
end
end
if flags.do_silent
% do nothing
end