home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / scripts / miscellaneous / menu.m < prev    next >
Text File  |  1996-09-28  |  2KB  |  77 lines

  1. # Copyright (C) 1993, 1994, 1995 John W. Eaton
  2. # This file is part of Octave.
  3. # Octave is free software; you can redistribute it and/or modify it
  4. # under the terms of the GNU General Public License as published by the
  5. # Free Software Foundation; either version 2, or (at your option) any
  6. # later version.
  7. # Octave is distributed in the hope that it will be useful, but WITHOUT
  8. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  9. # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  10. # for more details.
  11. # You should have received a copy of the GNU General Public License
  12. # along with Octave; see the file COPYING.  If not, write to the Free
  13. # Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  14.  
  15. function num = menu (t, ...)
  16.  
  17. # usage: menu (title, opt1, ...)
  18. #
  19. # See also: disp, printf, input
  20.  
  21.   if (nargin < 2)
  22.     usage ("menu (title, opt1, ...)");
  23.   endif
  24.  
  25. # Force pending output to appear before the menu.
  26.  
  27.   fflush (stdout);
  28.  
  29. # Don't send the menu through the pager since doing that can cause
  30. # major confusion.
  31.  
  32.   save_page_screen_output = page_screen_output;
  33.  
  34.   unwind_protect
  35.  
  36.     page_screen_output = "false";
  37.  
  38.     if (! isempty (t))
  39.       disp (t);
  40.       printf ("\n");
  41.     endif
  42.  
  43.     nopt = nargin - 1;
  44.  
  45.     while (1)
  46.       va_start ();
  47.       for i = 1:nopt
  48.     printf ("  [%2d] ", i);
  49.     disp (va_arg ());
  50.       endfor
  51.       printf ("\n");
  52.       s = "";
  53.       s = input ("pick a number, any number: ", "s");
  54.       if (strcmp (s, ""))
  55.     printf ("\n");
  56.     continue;
  57.       endif
  58.       eval (sprintf ("num = %s;", s));
  59.       if (! is_scalar (num) || num < 1 || num > nopt)
  60.     printf ("\nerror: input invalid or out of range\n\n");
  61.       else
  62.     break;
  63.       endif
  64.     endwhile
  65.  
  66.   unwind_protect_cleanup
  67.  
  68.     page_screen_output = save_page_screen_output;
  69.  
  70.   end_unwind_protect
  71.  
  72. endfunction
  73.