tkgen.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:46k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* Generate tk script based upon config.in
  2.  *
  3.  * Version 1.0
  4.  * Eric Youngdale
  5.  * 10/95
  6.  *
  7.  * 1996 01 04
  8.  * Avery Pennarun - Aesthetic improvements.
  9.  *
  10.  * 1996 01 24
  11.  * Avery Pennarun - Bugfixes and more aesthetics.
  12.  *
  13.  * 1996 03 08
  14.  * Avery Pennarun - The int and hex config.in commands work right.
  15.  *                - Choice buttons are more user-friendly.
  16.  *                - Disabling a text entry line greys it out properly.
  17.  *                - dep_tristate now works like in Configure. (not pretty)
  18.  *                - No warnings in gcc -Wall. (Fixed some "interesting" bugs.)
  19.  *                - Faster/prettier "Help" lookups.
  20.  *
  21.  * 1996 03 15
  22.  * Avery Pennarun - Added new sed script from Axel Boldt to make help even
  23.  *                  faster. (Actually awk is downright slow on some machines.)
  24.  *                - Fixed a bug I introduced into Choice dependencies.  Thanks
  25.  *                  to Robert Krawitz for pointing this out.
  26.  *
  27.  * 1996 03 16
  28.  * Avery Pennarun - basic "do_make" support added to let sound config work.
  29.  *
  30.  * 1996 03 25
  31.  *     Axel Boldt - Help now works on "choice" buttons.
  32.  *
  33.  * 1996 04 06
  34.  * Avery Pennarun - Improved sound config stuff. (I think it actually works
  35.  *                  now!)
  36.  *                - Window-resize-limits don't use ugly /usr/lib/tk4.0 hack.
  37.  *                - int/hex work with tk3 again. (The "cget" error.)
  38.  *                - Next/Prev buttons switch between menus.  I can't take
  39.  *                  much credit for this; the code was already there, but
  40.  *                  ifdef'd out for some reason.  It flickers a lot, but
  41.  *                  I suspect there's no "easy" fix for that.
  42.  *                - Labels no longer highlight as you move the mouse over
  43.  *                  them (although you can still press them... oh well.)
  44.  *                - Got rid of the last of the literal color settings, to
  45.  *                  help out people with mono X-Windows systems. 
  46.  *                  (Apparently there still are some out there!)
  47.  *                - Tabstops seem sensible now.
  48.  *
  49.  * 1996 04 14
  50.  * Avery Pennarun - Reduced flicker when creating windows, even with "update
  51.  *                  idletasks" hack.
  52.  *
  53.  * 1997 12 08
  54.  * Michael Chastain - Remove sound driver special cases.
  55.  *
  56.  * 1997 11 15
  57.  * Michael Chastain - For choice buttons, write values for all options,
  58.  *                    not just the single chosen one.  This is compatible
  59.  *                    with 'make config' and 'make oldconfig', and is
  60.  *                    needed so smart-config dependencies work if the
  61.  *                    user switches from one configuration method to
  62.  *                    another.
  63.  *
  64.  * 1998 03 09
  65.  * Axel Boldt - Smaller layout of main menu - it's still too big for 800x600.
  66.  *            - Display help in text window to allow for cut and paste.
  67.  *            - Allow for empty lines in help texts.
  68.  *            - update_define should not set all variables unconditionally to
  69.  *              0: they may have been set to 1 elsewhere. CONFIG_NETLINK is
  70.  *              an example.
  71.  *
  72.  * 1999 01 04
  73.  * Michael Elizabeth Chastain <mec@shout.net>
  74.  * - Call clear_globalflags when writing out update_mainmenu.
  75.  *   This fixes the missing global/vfix lines for ARCH=alpha on 2.2.0-pre4.
  76.  *
  77.  * 8 January 1999, Michael Elizabeth Chastain <mec@shout.net>
  78.  * - Emit menus_per_column
  79.  *
  80.  * 14 January 1999, Michael Elizabeth Chastain <mec@shout.net>
  81.  * - Steam-clean this file.  I tested this by generating kconfig.tk for every
  82.  *   architecture and comparing it character-for-character against the output
  83.  *   of the old tkparse.
  84.  * - Fix flattening of nested menus.  The old code simply assigned items to
  85.  *   the most recent token_mainmenu_option, without paying attention to scope.
  86.  *   For example: "menu-1 bool-a menu-2 bool-b endmenu bool-c bool-d endmenu".
  87.  *   The old code would put bool-a in menu-1, bool-b in menu-2, and bool-c
  88.  *   and bool-d in *menu-2*.  This hosed the nested submenus in
  89.  *   drives/net/Config.in and other places.
  90.  * - Fix menu line wraparound at 128 menus (some fool used a 'char' for
  91.  *   a counter).
  92.  *
  93.  * 23 January 1999, Michael Elizabeth Chastain <mec@shout.net>
  94.  * - Remove bug-compatible code.
  95.  *
  96.  * 07 July 1999, Andrzej M. Krzysztofowicz <ankry@mif.pg.gda.pl>
  97.  * Some bugfixes, including
  98.  * - disabling "m" options when CONFIG_MODULES is set to "n" as well as "y"
  99.  *   option in dep_tristate when dependency is set to "m",
  100.  * - deactivating choices which should not be available,
  101.  * - basic validation for int and hex introduced if the entered one is not 
  102.  *   valid,
  103.  * - updates of all opened menus instead of the active only. I was afraid
  104.  *   that it would slow down updates, but I don't even see any speed difference
  105.  *   on my machine. If it slows you can still work with only a single menu
  106.  *   opened,
  107.  * - fixed error when focussing non-existent window (especially Help windows),
  108.  * Higher level submenus implemented.
  109.  */
  110. #include <stdio.h>
  111. #include <stdlib.h>
  112. #include <unistd.h>
  113. #include <string.h>
  114. #include "tkparse.h"
  115. /*
  116.  * Total number of menus.
  117.  */
  118. static int tot_menu_num = 0;
  119. /*
  120.  * Pointers to mainmenu_option and endmenu of each menu.
  121.  */
  122. struct kconfig * menu_first [100];
  123. struct kconfig * menu_last  [100];
  124. /*
  125.  * Generate portion of wish script for the beginning of a submenu.
  126.  * The guts get filled in with the various options.
  127.  */
  128. static void start_proc( char * label, int menu_num, int toplevel )
  129. {
  130.     if ( toplevel )
  131. printf( "menu_option menu%d %d "%s"n", menu_num, menu_num, label );
  132.     printf( "proc menu%d {w title} {n", menu_num );
  133.     printf( "tset oldFocus [focus]n" );
  134.     if ( menu_first[menu_num]->menu_number != 0 )
  135. printf( "tcatch {focus .menu%d}n",
  136. menu_first[menu_num]->menu_number );
  137.     printf( "tcatch {destroy $w; unregister_active %d}n", menu_num );
  138.     printf( "ttoplevel $w -class Dialogn" );
  139.     printf( "twm withdraw $wn" );
  140.     printf( "tglobal active_menusn" );
  141.     printf( "tset active_menus [lsort -integer [linsert $active_menus end %d]]n", menu_num );
  142.     printf( "tmessage $w.m -width 400 -aspect 300 -text \n" );
  143.     printf( "tt"%s"  -relief raisedn", label );
  144.     printf( "tpack $w.m -pady 10 -side top -padx 10n" );
  145.     printf( "twm title $w "%s" nn", label );
  146.     printf( "tbind $w <Escape> "catch {focus $oldFocus}; destroy $w; unregister_active %d; break"n", menu_num);
  147.     printf("tset nextscript ");
  148.     printf(""catch {focus $oldFocus}; " );
  149.     /* 
  150.      * We are checking which windows should be destroyed and which are 
  151.      * common parents with the next one. Remember that menu_num field
  152.      * in mainmenu_option record reports number of its *parent* menu.
  153.      */
  154.     if ( menu_num < tot_menu_num
  155.     && menu_first[menu_num + 1]->menu_number != menu_num )
  156.     {
  157. int to_destr;
  158. printf( "destroy $w; unregister_active %d; ", menu_num );
  159. to_destr = menu_first[menu_num]->menu_number;
  160. while ( to_destr > 0 && menu_first[menu_num + 1]->menu_number != to_destr )
  161. {
  162.     printf( "catch {destroy .menu%d}; unregister_active %d; ",
  163. to_destr, to_destr );
  164.     to_destr = menu_first[to_destr]->menu_number;
  165. }
  166.     }
  167.     printf( "menu%d .menu%d \"$title\""n",
  168. menu_num+1, menu_num+1 );
  169.     /*
  170.      * Attach the "Prev", "Next" and "OK" buttons at the end of the window.
  171.      */
  172.     printf( "tframe $w.fn" );
  173.     if ( toplevel )
  174. printf( "tbutton $w.f.back -text "Main Menu" \n" );
  175.     else
  176. printf( "tbutton $w.f.back -text "OK" \n" );
  177.     printf( "tt-width 15 -command "catch {focus $oldFocus}; destroy $w; unregister_active %d"n",
  178. menu_num );
  179.     printf( "tbutton $w.f.next -text "Next" -underline 0\n" );
  180.     printf( "tt-width 15 -command $nextscriptn");
  181.     if ( menu_num == tot_menu_num ) {
  182.       printf( "t$w.f.next configure -state disabledn" );
  183.         /* 
  184.          *  this is a bit hackish but Alt-n must be rebound
  185.          *  otherwise if the user press Alt-n on the last menu
  186.          *  it will give him/her the next menu of one of the 
  187.          *  previous options
  188.          */
  189.         printf( "tbind all <Alt-n> "puts \"no more menus\" "n");
  190.     }
  191.     else
  192.     {
  193.         /*
  194.          * I should be binding to $w not all - but if I do nehat I get the error "unknown path"
  195.          */
  196.         printf( "tbind all <Alt-n> $nextscriptn");
  197.     }
  198.     printf( "tbutton $w.f.prev -text "Prev" -underline 0\n" );
  199.     printf( "tt-width 15 -command "catch {focus $oldFocus}; destroy $w; unregister_active %d; menu%d .menu%d \"$title\""n",
  200. menu_num, menu_num-1, menu_num-1 );
  201.     if ( menu_num == 1 ) {
  202. printf( "t$w.f.prev configure -state disabledn" );
  203.     }
  204.     else
  205.     {
  206.         printf( "tbind $w <Alt-p> "catch {focus $oldFocus}; destroy $w; unregister_active %d; menu%d .menu%d \"$title\";break"n",
  207.             menu_num, menu_num-1, menu_num-1 );
  208.     }  
  209.     printf( "tpack $w.f.back $w.f.next $w.f.prev -side left -expand onn" );
  210.     printf( "tpack $w.f -pady 10 -side bottom -anchor w -fill xn" );
  211.     /*
  212.      * Lines between canvas and other areas of the window.
  213.      */
  214.     printf( "tframe $w.topline -relief ridge -borderwidth 2 -height 2n" );
  215.     printf( "tpack $w.topline -side top -fill xnn" );
  216.     printf( "tframe $w.botline -relief ridge -borderwidth 2 -height 2n" );
  217.     printf( "tpack $w.botline -side bottom -fill xnn" );
  218.     /*
  219.      * The "config" frame contains the canvas and a scrollbar.
  220.      */
  221.     printf( "tframe $w.confign" );
  222.     printf( "tpack $w.config -fill y -expand onnn" );
  223.     printf( "tscrollbar $w.config.vscroll -command "$w.config.canvas yview"n" );
  224.     printf( "tpack $w.config.vscroll -side right -fill ynn" );
  225.     /*
  226.      * The scrollable canvas itself, where the real work (and mess) gets done.
  227.      */
  228.     printf( "tcanvas $w.config.canvas -height 1\n" );
  229.     printf( "tt-relief flat -borderwidth 0 -yscrollcommand "$w.config.vscroll set" \n" );
  230.     printf( "tt-width [expr [winfo screenwidth .] * 1 / 2] n" );
  231.     printf( "tframe $w.config.fn" );
  232.     printf( "tbind $w <Key-Down> "$w.config.canvas yview scroll  1 unit;break;"n");
  233.     printf( "tbind $w <Key-Up> "$w.config.canvas yview scroll  -1 unit;break;"n");
  234.     printf( "tbind $w <Key-Next> "$w.config.canvas yview scroll  1 page;break;"n");
  235.     printf( "tbind $w <Key-Prior> "$w.config.canvas yview scroll  -1 page;break;"n");
  236.     printf( "tbind $w <Key-Home> "$w.config.canvas yview moveto 0;break;"n");
  237.     printf( "tbind $w <Key-End> "$w.config.canvas yview moveto 1 ;break;"n");
  238.     printf( "tpack $w.config.canvas -side right -fill yn" );
  239.     printf("nn");
  240. }
  241. /*
  242.  * Each proc we create needs a global declaration for any global variables we
  243.  * use.  To minimize the size of the file, we set a flag each time we output
  244.  * a global declaration so we know whether we need to insert one for a
  245.  * given function or not.
  246.  */
  247. static void clear_globalflags(void)
  248. {
  249.     int i;
  250.     for ( i = 1; i <= max_varnum; i++ )
  251. vartable[i].global_written = 0;
  252. }
  253. /*
  254.  * Output a "global" line for a given variable.  Also include the
  255.  * call to "vfix".  (If vfix is not needed, then it's fine to just printf
  256.  * a "global" line).
  257.  */
  258. void global( const char *var )
  259. {
  260.     printf( "tglobal %sn", var );
  261. }
  262. /*
  263.  * This function walks the chain of conditions that we got from cond.c
  264.  * and creates a TCL conditional to enable/disable a given widget.
  265.  */
  266. void generate_if( struct kconfig * cfg, struct condition * ocond,
  267.     int menu_num, int line_num )
  268. {
  269.     struct condition * cond;
  270.     struct dependency * tmp;
  271.     struct kconfig * cfg1;
  272.     if ( line_num >= -1 )
  273.     {
  274. if ( cfg->token == token_define_bool || cfg->token == token_define_hex
  275. ||   cfg->token == token_define_int || cfg->token == token_define_string
  276. ||   cfg->token == token_define_tristate || cfg->token == token_unset )
  277.     return;
  278. if ( cfg->token == token_comment && line_num == -1 )
  279.     return;
  280.     }
  281.     else
  282.     {
  283. if ( cfg->token == token_string || cfg->token == token_mainmenu_option )
  284.     return;
  285.     }
  286.     /*
  287.      * First write any global declarations we need for this conditional.
  288.      */
  289.     for ( cond = ocond; cond != NULL; cond = cond->next )
  290.     {
  291. switch ( cond->op )
  292. {
  293. default:
  294.     break;
  295. case op_variable:
  296.     if ( ! vartable[cond->nameindex].global_written )
  297.     {
  298. vartable[cond->nameindex].global_written = 1;
  299. global( vartable[cond->nameindex].name );
  300.     }
  301.     break;
  302. }
  303.     }
  304.     /*
  305.      * Now write this option.
  306.      */
  307.     if ( cfg->nameindex > 0 && ! vartable[cfg->nameindex].global_written )
  308.     {
  309. vartable[cfg->nameindex].global_written = 1;
  310. global( vartable[cfg->nameindex].name );
  311.     }
  312.     /*
  313.      * Generate the body of the conditional.
  314.      */
  315.     printf( "tif {" );
  316.     for ( cond = ocond; cond != NULL; cond = cond->next )
  317.     {
  318. switch ( cond->op )
  319. {
  320. default:
  321.     break;
  322. case op_bang:   printf( " ! "  ); break;
  323. case op_eq:     printf( " == " ); break;
  324. case op_neq:    printf( " != " ); break;
  325. case op_and:    printf( " && " ); break;
  326. case op_and1:   printf( " && " ); break;
  327. case op_or:     printf( " || " ); break;
  328. case op_lparen: printf( "("    ); break;
  329. case op_rparen: printf( ")"    ); break;
  330. case op_variable:
  331.     printf( "$%s", vartable[cond->nameindex].name );
  332.     break;
  333. case op_constant:
  334.     if      ( strcmp( cond->str, "y" ) == 0 ) printf( "1" );
  335.     else if ( strcmp( cond->str, "n" ) == 0 ) printf( "0" );
  336.     else if ( strcmp( cond->str, "m" ) == 0 ) printf( "2" );
  337.     else if ( strcmp( cond->str, "" ) == 0 )  printf( "4" );
  338.     else
  339. printf( ""%s"", cond->str );
  340.     break;
  341. }
  342.     }
  343.     printf( "} then {" );
  344.     /*
  345.      * Generate a procedure call to write the value.
  346.      * This code depends on procedures in header.tk.
  347.      */
  348.     if ( line_num >= -1 )
  349.     {
  350. int modtoyes = 0;
  351. switch ( cfg->token )
  352. {
  353. default:
  354.     printf( " }n" );
  355.     break;
  356. case token_dep_mbool:
  357.     modtoyes = 1;
  358. case token_dep_bool:
  359.     printf( "n" );
  360.     for ( tmp = cfg->depend; tmp; tmp = tmp->next )
  361. if ( ! vartable[get_varnum( tmp->name )].global_written )
  362. {
  363.     global( tmp->name );
  364. }
  365.     printf( "tset tmpvar_dep [effective_dep [list" );
  366.     for ( tmp = cfg->depend; tmp; tmp = tmp->next )
  367. printf( " $%s", tmp->name );
  368.     printf( "]];set %s [sync_bool $%s $tmpvar_dep %d];",
  369. vartable[cfg->nameindex].name, vartable[cfg->nameindex].name,
  370. modtoyes );
  371.     printf( "if {$tmpvar_dep != 1" );
  372.     if (modtoyes)
  373. printf( " && $tmpvar_dep != 2" );
  374.     printf( "} then {configure_entry .menu%d.config.f.x%d disabled {y};",
  375. menu_num, line_num );
  376.     printf( "} else {" );
  377.     printf( "configure_entry .menu%d.config.f.x%d normal {y};",
  378. menu_num, line_num );
  379.     printf( "}; " );
  380. case token_bool:
  381.     if ( cfg->token == token_bool )
  382. printf( "nt" );
  383.     printf( "configure_entry .menu%d.config.f.x%d normal {n l",
  384. menu_num, line_num );
  385.     if ( cfg->token == token_bool )
  386. printf( " y" );
  387.     printf( "}" );
  388.     printf( "} else {");
  389.     printf( "configure_entry .menu%d.config.f.x%d disabled {y n l}}n",
  390. menu_num, line_num );
  391.     break;
  392. case token_choice_header:
  393.     printf( "configure_entry .menu%d.config.f.x%d normal {x l}",
  394. menu_num, line_num );
  395.     printf( "} else {" );
  396.     printf( "configure_entry .menu%d.config.f.x%d disabled {x l}",
  397. menu_num, line_num );
  398.     printf( "}n" );
  399.     break;
  400. case token_choice_item:
  401.     fprintf( stderr, "Internal error on token_choice_itemn" );
  402.     exit( 1 );
  403. case token_dep_tristate:
  404.     printf( "n" );
  405.     for ( tmp = cfg->depend; tmp; tmp = tmp->next )
  406. if ( ! vartable[get_varnum( tmp->name )].global_written )
  407. {
  408.     global( tmp->name );
  409. }
  410.     printf( "tset tmpvar_dep [effective_dep [list" );
  411.     for ( tmp = cfg->depend; tmp; tmp = tmp->next )
  412. printf( " $%s", tmp->name );
  413.     printf( "]];set %s [sync_tristate $%s $tmpvar_dep];",
  414. vartable[cfg->nameindex].name, vartable[cfg->nameindex].name );
  415.     printf( "tif {$tmpvar_dep != 1} then {" );
  416.     printf( "configure_entry .menu%d.config.f.x%d disabled {y}",
  417. menu_num, line_num );
  418.     printf( "} else {" );
  419.     printf( "configure_entry .menu%d.config.f.x%d normal {y}",
  420. menu_num, line_num );
  421.     printf( "}; " );
  422.     printf( "if {$tmpvar_dep == 0} then {" );
  423.     printf( "configure_entry .menu%d.config.f.x%d disabled {m}",
  424. menu_num, line_num );
  425.     printf( "} else {" );
  426.     printf( "configure_entry .menu%d.config.f.x%d normal {m}",
  427. menu_num, line_num );
  428.     printf( "}; " );
  429. case token_tristate:
  430.     if ( cfg->token == token_tristate )
  431.     {
  432. printf( "ntconfigure_entry .menu%d.config.f.x%d normal {y}; ",
  433.     menu_num, line_num );
  434.     }
  435.     printf( "if {($CONFIG_MODULES == 1)} then {" );
  436.     printf( "configure_entry .menu%d.config.f.x%d normal {m}} else {",
  437. menu_num, line_num );
  438.     printf( "configure_entry .menu%d.config.f.x%d disabled {m}}; ",
  439. menu_num, line_num );
  440.     printf( "configure_entry .menu%d.config.f.x%d normal {n l}",
  441. menu_num, line_num );
  442. /*
  443.  * Or in a bit to the variable - this causes all of the radiobuttons
  444.  * to be deselected (i.e. not be red).
  445.  */
  446.     printf( "} else {" );
  447.     printf( "configure_entry .menu%d.config.f.x%d disabled {y n m l}}n",
  448. menu_num, line_num );
  449.     break;
  450. case token_hex:
  451. case token_int:
  452. case token_string:
  453.     printf( ".menu%d.config.f.x%d.x configure -state normal -foreground [ cget .ref -foreground ]; ",
  454. menu_num, line_num );
  455.     printf( ".menu%d.config.f.x%d.l configure -state normal; ",
  456. menu_num, line_num );
  457.     printf( "} else {" );
  458.     printf( ".menu%d.config.f.x%d.x configure -state disabled -foreground [ cget .ref -disabledforeground ]; ",
  459. menu_num, line_num );
  460.     printf( ".menu%d.config.f.x%d.l configure -state disabled}n",
  461. menu_num, line_num );
  462.     break;
  463. case token_comment:
  464. case token_mainmenu_option:
  465.     if ( line_num >= 0 )
  466.     {
  467. printf( "configure_entry .menu%d.config.f.x%d normal {m}",
  468.     menu_num, line_num );
  469. printf( "} else {" );
  470. printf( "configure_entry .menu%d.config.f.x%d disabled {m}}n",
  471.     menu_num, line_num );
  472.     }
  473.     else
  474. printf( ".f0.x%d configure -state normal } else { .f0.x%d configure -state disabled }n",
  475.     menu_num, menu_num );
  476.     break;
  477. }
  478.     }
  479.     else
  480.     {
  481. int modtoyes = 0;
  482. switch ( cfg->token )
  483. {
  484. default:
  485.     printf( " }n" );
  486.     break;
  487. case token_dep_mbool:
  488.     modtoyes = 1;
  489. case token_dep_bool:
  490.     printf( "n" );
  491.     for ( tmp = cfg->depend; tmp; tmp = tmp->next )
  492. if ( ! vartable[get_varnum( tmp->name )].global_written )
  493. {
  494.     global( tmp->name );
  495. }
  496.     printf( "tset tmpvar_dep [effective_dep [list" );
  497.     for ( tmp = cfg->depend; tmp; tmp = tmp->next )
  498. printf( " $%s", tmp->name );
  499.     printf( "]];set %s [sync_bool $%s $tmpvar_dep %d];",
  500. vartable[cfg->nameindex].name, vartable[cfg->nameindex].name,
  501. modtoyes );
  502. case token_bool:
  503.     if ( cfg->token == token_bool )
  504. printf( "nt" );
  505.     printf( "set %s [expr $%s&15]",
  506. vartable[cfg->nameindex].name, vartable[cfg->nameindex].name );
  507.     printf( "} else {");
  508.     printf( "set %s [expr $%s|16]}n",
  509. vartable[cfg->nameindex].name, vartable[cfg->nameindex].name );
  510.     break;
  511. case token_choice_header:
  512.     printf( "} else {" );
  513.     for ( cfg1  = cfg->next;
  514.   cfg1 != NULL && cfg1->token == token_choice_item;
  515.   cfg1  = cfg1->next )
  516. printf( "set %s 4;", vartable[cfg1->nameindex].name );
  517.     printf( "}n" );
  518.     break;
  519. case token_choice_item:
  520.     fprintf( stderr, "Internal error on token_choice_itemn" );
  521.     exit( 1 );
  522. case token_define_bool:
  523. case token_define_tristate:
  524.     if ( ! vartable[get_varnum( cfg->value )].global_written )
  525.     {
  526. global( cfg->value );
  527.     }
  528.     printf( "set %s $%s }n",
  529. vartable[cfg->nameindex].name, cfg->value );
  530.     break;
  531. case token_define_hex:
  532. case token_define_int:
  533.     printf( "set %s %s }n",
  534. vartable[cfg->nameindex].name, cfg->value );
  535.     break;
  536. case token_define_string:
  537.     printf( "set %s "%s" }n",
  538. vartable[cfg->nameindex].name, cfg->value );
  539.     break;
  540. case token_dep_tristate:
  541.     printf( "n" );
  542.     for ( tmp = cfg->depend; tmp; tmp = tmp->next )
  543. if ( ! vartable[get_varnum( tmp->name )].global_written )
  544. {
  545.     global( tmp->name );
  546. }
  547.     printf( "tset tmpvar_dep [effective_dep [list" );
  548.     for ( tmp = cfg->depend; tmp; tmp = tmp->next )
  549. printf( " $%s", tmp->name );
  550.     printf( "]]; set %s [sync_tristate $%s $tmpvar_dep]; ",
  551. vartable[cfg->nameindex].name, vartable[cfg->nameindex].name );
  552. case token_tristate:
  553.     if ( cfg->token == token_tristate )
  554. printf( "if {($CONFIG_MODULES == 0) && ($%s == 2)} then {set %s 1}; ",
  555.     vartable[cfg->nameindex].name,
  556.     vartable[cfg->nameindex].name );
  557. /*
  558.  * Or in a bit to the variable - this causes all of the radiobuttons
  559.  * to be deselected (i.e. not be red).
  560.  */
  561.     printf( "set %s [expr $%s&15]",
  562. vartable[cfg->nameindex].name, vartable[cfg->nameindex].name );
  563.     printf( "} else {" );
  564. /*
  565.  * Clear the disable bit to enable the correct radiobutton.
  566.  */
  567.     printf( "set %s [expr $%s|16]}n",
  568. vartable[cfg->nameindex].name, vartable[cfg->nameindex].name );
  569.     break;
  570. case token_hex:
  571. case token_int:
  572.     if ( cfg->value && *cfg->value == '$' )
  573.     {
  574. int i = get_varnum( cfg->value+1 );
  575. printf( "n" );
  576. if ( ! vartable[i].global_written )
  577. {
  578.     global( vartable[i].name );
  579. }
  580. printf( "t" );
  581.     }
  582.     if ( cfg->token == token_hex )
  583. printf( "validate_hex " );
  584.     else if ( cfg->token == token_int )
  585. printf( "validate_int " );
  586.     printf( "%s "$%s" %s}n",
  587. vartable[cfg->nameindex].name, vartable[cfg->nameindex].name,
  588. cfg->value );
  589.     break;
  590. case token_unset:
  591.     printf( "set %s 4}n", vartable[cfg->nameindex].name );
  592.     break;
  593. }
  594.     }
  595. }
  596. /*
  597.  * Generate a line that writes a variable to the output file.
  598.  */
  599. void generate_writeconfig( struct kconfig * cfg )
  600. {
  601.     struct condition * cond;
  602.     struct dependency * tmp;
  603.     int depmod = 2;
  604.     
  605.     /*
  606.      * Generate global declaration for this symbol.
  607.      */
  608.     if ( cfg->token != token_comment )
  609.     {
  610. if ( cfg->nameindex > 0 && ! vartable[cfg->nameindex].global_written )
  611. {
  612.     vartable[cfg->nameindex].global_written = 1;
  613.     global( vartable[cfg->nameindex].name );
  614. }
  615. if ( cfg->token == token_define_tristate || cfg->token == token_define_bool )
  616. {
  617.     if ( ! vartable[get_varnum( cfg->value )].global_written )
  618.     {
  619. vartable[get_varnum( cfg->value )].global_written = 1;
  620. global( cfg->value );
  621.     }
  622. }
  623. else if ( cfg->nameindex <= 0 && cfg->token == token_choice_header )
  624. {
  625.     printf( "tglobal tmpvar_%dn", -(cfg->nameindex) );
  626. }
  627.     }
  628.     /*
  629.      * Generate global declarations for the condition chain.
  630.      */
  631.     for ( cond = cfg->cond; cond != NULL; cond = cond->next )
  632.     {
  633. switch( cond->op )
  634. {
  635. default:
  636.     break;
  637. case op_variable:
  638.     if ( ! vartable[cond->nameindex].global_written )
  639.     {
  640. vartable[cond->nameindex].global_written = 1;
  641. global( vartable[cond->nameindex].name );
  642.     }
  643.     break;
  644. }
  645.     }
  646.     /*
  647.      * Generate indentation.
  648.      */
  649. printf( "t" );
  650.     /*
  651.      * Generate the conditional.
  652.      */
  653.     if ( cfg->cond != NULL )
  654.     {
  655. printf( "if {" );
  656. for ( cond = cfg->cond; cond != NULL; cond = cond->next )
  657. {
  658.     switch ( cond->op )
  659.     {
  660.     default:           break;
  661.     case op_bang:      printf( " ! "  ); break;
  662.     case op_eq:        printf( " == " ); break;
  663.     case op_neq:       printf( " != " ); break;
  664.     case op_and:       printf( " && " ); break;
  665.     case op_and1:      printf( " && " ); break;
  666.     case op_or:        printf( " || " ); break;
  667.     case op_lparen:    printf( "("    ); break;
  668.     case op_rparen:    printf( ")"    ); break;
  669.     case op_variable:
  670. printf( "$%s", vartable[cond->nameindex].name );
  671. break;
  672.     case op_constant:
  673. if      ( strcmp( cond->str, "n" ) == 0 ) printf( "0" );
  674. else if ( strcmp( cond->str, "y" ) == 0 ) printf( "1" );
  675. else if ( strcmp( cond->str, "m" ) == 0 ) printf( "2" );
  676. else if ( strcmp( cond->str, "" ) == 0 )  printf( "4" );
  677. else
  678.     printf( ""%s"", cond->str );
  679. break;
  680.     }
  681. }
  682. printf( "} then {" );
  683.     }
  684.     /*
  685.      * Generate a procedure call to write the value.
  686.      * This code depends on the write_* procedures in header.tk.
  687.      */
  688.     switch ( cfg->token )
  689.     {
  690.     default:
  691. if ( cfg->cond != NULL )
  692.     printf( " }" );
  693. printf( "n" );
  694. break;
  695.     case token_bool:
  696.     case token_tristate:
  697. printf( "write_tristate $cfg $autocfg %s $%s [list $notmod] 2", 
  698.     vartable[cfg->nameindex].name, vartable[cfg->nameindex].name );
  699. if ( cfg->cond != NULL )
  700.     printf( " }" );
  701. printf( "n" );
  702. break;
  703.     case token_choice_header:
  704. /*
  705.  * This is funky code -- it fails if there were any conditionals.
  706.  * Fortunately all the conditionals got stripped off somewhere
  707.  * else.
  708.  */
  709. {
  710.     struct kconfig * cfg1;
  711.     for ( cfg1  = cfg->next;
  712.   cfg1 != NULL && cfg1->token == token_choice_item;
  713.   cfg1  = cfg1->next )
  714.     {
  715. printf("ntif { $tmpvar_%d == "%s" } then { write_tristate $cfg $autocfg %s 1 [list $notmod] 2 } else { write_tristate $cfg $autocfg %s 0 [list $notmod] 2 }",
  716.     -(cfg->nameindex), cfg1->label,
  717.     vartable[cfg1->nameindex].name,
  718.     vartable[cfg1->nameindex].name );
  719.     }
  720. }
  721. if ( cfg->cond != NULL )
  722.     printf( "}" );
  723. printf( "n" );
  724. break;
  725.     case token_choice_item:
  726. fprintf( stderr, "Internal error on token_choice_itemn" );
  727. exit( 1 );
  728.     case token_comment:
  729. printf( "write_comment $cfg $autocfg "%s"",
  730.     cfg->label );
  731. if ( cfg->cond != NULL )
  732.     printf( "}" );
  733. printf( "n" );
  734. break;
  735.     case token_define_bool:
  736.     case token_define_tristate:
  737. if ( cfg->cond == NULL )
  738. {
  739.     printf( "write_tristate $cfg $autocfg %s $%s [list $notmod] 2n",
  740. vartable[cfg->nameindex].name, vartable[cfg->nameindex].name );
  741. }
  742. else
  743. {
  744.     printf( "write_tristate $cfg $autocfg %s $%s [list $notmod] 2 }n",
  745. vartable[cfg->nameindex].name, cfg->value );
  746. }
  747. break;
  748.     case token_dep_mbool:
  749. depmod = 1;
  750.     case token_dep_bool:
  751.     case token_dep_tristate:
  752. printf( "write_tristate $cfg $autocfg %s $%s [list",
  753.     vartable[cfg->nameindex].name, vartable[cfg->nameindex].name );
  754. for ( tmp = cfg->depend; tmp; tmp = tmp->next )
  755.     printf( " $%s", tmp->name );
  756. printf( "] %d", depmod );
  757. if ( cfg->cond != NULL )
  758.     printf( " }" );
  759. printf( "n" );
  760. break;
  761.     case token_define_hex:
  762. printf( "write_hex $cfg $autocfg %s %s $notmod",
  763.     vartable[cfg->nameindex].name, cfg->value );
  764. if ( cfg->cond != NULL )
  765.     printf( " }" );
  766. printf( "n" );
  767. break;
  768.     case token_define_int:
  769. printf( "write_int $cfg $autocfg %s %s $notmod",
  770.     vartable[cfg->nameindex].name, cfg->value );
  771. if ( cfg->cond != NULL )
  772.     printf( " }" );
  773. printf( "n" );
  774. break;
  775.     case token_define_string:
  776. printf( "write_string $cfg $autocfg %s "%s" $notmod",
  777.     vartable[cfg->nameindex].name, cfg->value );
  778. if ( cfg->cond != NULL )
  779.     printf( " }" );
  780. printf( "n" );
  781. break;
  782.     case token_hex:
  783. printf( "write_hex $cfg $autocfg %s $%s $notmod",
  784.     vartable[cfg->nameindex].name, vartable[cfg->nameindex].name );
  785. if ( cfg->cond != NULL )
  786.     printf( " }" );
  787. printf( "n" );
  788. break;
  789.     case token_int:
  790. printf( "write_int $cfg $autocfg %s $%s $notmod",
  791.     vartable[cfg->nameindex].name, vartable[cfg->nameindex].name );
  792. if ( cfg->cond != NULL )
  793.     printf( " }" );
  794. printf( "n" );
  795. break;
  796.     case token_string:
  797. printf( "write_string $cfg $autocfg %s "$%s" $notmod",
  798.     vartable[cfg->nameindex].name, vartable[cfg->nameindex].name );
  799. if ( cfg->cond != NULL )
  800.     printf( " }" );
  801. printf( "n" );
  802. break;
  803.     }
  804. }
  805. static void generate_update_var( struct kconfig * scfg, int menu_num )
  806. {
  807.     struct kconfig * cfg;
  808.     if ( menu_num>0 )
  809.     {
  810. printf( "proc update_define_menu%d {} {n", menu_num );
  811. printf( "tupdate_define_mainmenun" );
  812.     }
  813.     else
  814. printf( "proc update_define_mainmenu {} {n" );
  815.     clear_globalflags();
  816.     global( "CONFIG_MODULES" );
  817.     vartable[ get_varnum( "CONFIG_MODULES" ) ].global_written = 1;
  818.     for ( cfg = scfg; cfg != NULL; cfg = cfg->next )
  819.     {
  820. if ( cfg->menu_number == menu_num && (cfg->token == token_define_bool || cfg->token == token_define_tristate
  821. ||   cfg->token == token_define_hex || cfg->token == token_define_int
  822. ||   cfg->token == token_define_string || cfg->token == token_unset 
  823. ||   cfg->token == token_tristate) )
  824. {
  825.     if ( ! vartable[cfg->nameindex].global_written )
  826.     {
  827. vartable[cfg->nameindex].global_written = 1;
  828. global( vartable[cfg->nameindex].name );
  829.     }
  830. }
  831.     }
  832.     for ( cfg = scfg; cfg != NULL; cfg = cfg->next )
  833.     {
  834. char tmp[20];
  835. struct kconfig * cfg1;
  836. if ( cfg->menu_number == menu_num )
  837. {
  838.     switch ( cfg->token )
  839.     {
  840.     default:
  841.     case token_choice_item:
  842. break;
  843.     case token_choice_header:
  844. sprintf( tmp, "tmpvar_%d", -(cfg->nameindex) );
  845. global( tmp );
  846. for ( cfg1  = cfg->next;
  847.       cfg1 != NULL && cfg1->token == token_choice_item;
  848.       cfg1  = cfg1->next )
  849. {
  850.     vartable[cfg1->nameindex].global_written = 1;
  851.     global( vartable[cfg1->nameindex].name );
  852.     printf( "tif {$tmpvar_%d == "%s"} then {set %s 1} else {set %s 0}n",
  853. -(cfg->nameindex), cfg1->label,
  854. vartable[cfg1->nameindex].name,
  855. vartable[cfg1->nameindex].name );
  856. }
  857. break;
  858.     case token_bool:
  859.     case token_define_bool:
  860.     case token_define_tristate:
  861.     case token_define_hex:
  862.     case token_define_int:
  863.     case token_define_string:
  864.     case token_dep_bool:
  865.     case token_dep_tristate:
  866.     case token_dep_mbool:
  867.     case token_int:
  868.     case token_hex:
  869.     case token_mainmenu_option:
  870.     case token_tristate:
  871.     case token_unset:
  872. if ( cfg->cond != NULL )
  873.     generate_if( cfg, cfg->cond, menu_num, -2 );
  874. else switch ( cfg->token )
  875. {
  876. case token_tristate:
  877.     printf( "ntif {($CONFIG_MODULES == 0)} then {if {($%s == 2)} then {set %s 1}}n",
  878. vartable[cfg->nameindex].name, vartable[cfg->nameindex].name );
  879.     break;
  880. case token_define_bool:
  881. case token_define_tristate:
  882.     if ( ! vartable[get_varnum( cfg->value )].global_written )
  883.     {
  884. vartable[get_varnum( cfg->value )].global_written = 1;
  885. global( cfg->value );
  886.     }
  887.     printf( "tset %s $%sn", vartable[cfg->nameindex].name,
  888. cfg->value );
  889.     break;
  890. case token_define_hex:
  891. case token_define_int:
  892.     printf( "tset %s %sn", vartable[cfg->nameindex].name,
  893. cfg->value );
  894.     break;
  895. case token_define_string:
  896.     printf( "tset %s "%s"n", vartable[cfg->nameindex].name,
  897. cfg->value );
  898.     break;
  899. case token_unset:
  900.     printf( "tset %s 4n", vartable[cfg->nameindex].name );
  901. default:
  902.     break;
  903. }
  904.     }
  905. }
  906.     }
  907.     printf( "}nnn" );
  908. }
  909. /*
  910.  * Generates the end of a menu procedure.
  911.  */
  912. static void end_proc( struct kconfig * scfg, int menu_num )
  913. {
  914.     struct kconfig * cfg;
  915.     printf( "nnn" );
  916.     printf( "tfocus $wn" );
  917.     printf( "tupdate_activen" );
  918.     printf( "tglobal winx; global winyn" );
  919.     if ( menu_first[menu_num]->menu_number != 0 )
  920.     {
  921. printf( "tif {[winfo exists .menu%d] == 0} then ",
  922. menu_first[menu_num]->menu_number );
  923. printf( "{menu%d .menu%d "%s"}n",
  924. menu_first[menu_num]->menu_number, menu_first[menu_num]->menu_number,
  925. menu_first[menu_first[menu_num]->menu_number]->label );
  926. printf( "tset winx [expr [winfo x .menu%d]+30]; set winy [expr [winfo y .menu%d]+30]n",
  927. menu_first[menu_num]->menu_number, menu_first[menu_num]->menu_number );
  928.     }
  929.     else
  930. printf( "tset winx [expr [winfo x .]+30]; set winy [expr [winfo y .]+30]n" );
  931.     printf( "tif {[winfo exists $w]} then {wm geometry $w +$winx+$winy}n" );
  932.     /*
  933.      * Now that the whole window is in place, we need to wait for an "update"
  934.      * so we can tell the canvas what its virtual size should be.
  935.      *
  936.      * Unfortunately, this causes some ugly screen-flashing because the whole
  937.      * window is drawn, and then it is immediately resized.  It seems
  938.      * unavoidable, though, since "frame" objects won't tell us their size
  939.      * until after an update, and "canvas" objects can't automatically pack
  940.      * around frames.  Sigh.
  941.      */
  942.     printf( "tupdate idletasksn" );
  943.     printf( "tif {[winfo exists $w]} then  {$w.config.canvas create window 0 0 -anchor nw -window $w.config.fnn" );
  944.     printf( "t$w.config.canvas configure \n" );
  945.     printf( "tt-width [expr [winfo reqwidth $w.config.f] + 1]\n" );
  946.     printf( "tt-scrollregion "-1 -1 [expr [winfo reqwidth $w.config.f] + 1] \n" );
  947.     printf( "ttt [expr [winfo reqheight $w.config.f] + 1]"nn" );
  948.  
  949.     /*
  950.      * If the whole canvas will fit in 3/4 of the screen height, do it;
  951.      * otherwise, resize to around 1/2 the screen and let us scroll.
  952.      */
  953.     printf( "tset winy [expr [winfo reqh $w] - [winfo reqh $w.config.canvas]]n" );
  954.     printf( "tset scry [expr [winfo screenh $w] / 2]n" );
  955.     printf( "tset maxy [expr [winfo screenh $w] * 3 / 4]n" );
  956.     printf( "tset canvtotal [expr [winfo reqh $w.config.f] + 2]n" );
  957.     printf( "tif [expr $winy + $canvtotal < $maxy] {n" );
  958.     printf( "tt$w.config.canvas configure -height $canvtotaln" );
  959.     printf( "t} else {n" );
  960.     printf( "tt$w.config.canvas configure -height [expr $scry - $winy]n" );
  961.     printf( "tt}nt}n" );
  962.     /*
  963.      * Limit the min/max window size.  Height can vary, but not width,
  964.      * because of the limitations of canvas and our laziness.
  965.      */
  966.     printf( "tupdate idletasksn" );
  967.     printf( "tif {[winfo exists $w]} then {ntwm maxsize $w [winfo width $w] [winfo screenheight $w]n" );
  968.     printf( "twm minsize $w [winfo width $w] 100nn" );
  969.     printf( "twm deiconify $wn" );
  970.     printf( "}n}nn" );
  971.     /*
  972.      * Now we generate the companion procedure for the menu we just
  973.      * generated.  This procedure contains all of the code to
  974.      * disable/enable widgets based upon the settings of the other
  975.      * widgets, and will be called first when the window is mapped,
  976.      * and each time one of the buttons in the window are clicked.
  977.      */
  978.     printf( "proc update_menu%d {} {n", menu_num );
  979.     /*
  980.      * Clear all of the booleans that are defined in this menu.
  981.      */
  982.     clear_globalflags();
  983.     for ( cfg = scfg; cfg != NULL; cfg = cfg->next )
  984.     {
  985. if ( cfg->menu_number == menu_num
  986. &&   cfg->token != token_mainmenu_option
  987. &&   cfg->token != token_choice_item )
  988. {
  989.     if ( cfg->cond != NULL )
  990.     {
  991. int i;
  992. if ( (cfg->token == token_tristate || cfg->token == token_dep_tristate)
  993. && ! vartable[i = get_varnum( "CONFIG_MODULES" )].global_written )
  994. {
  995.     global( "CONFIG_MODULES" );
  996.     vartable[i].global_written = 1;
  997. }
  998. generate_if( cfg, cfg->cond, cfg->menu_number, cfg->menu_line );
  999.     }
  1000.     else
  1001.     {
  1002. if ( cfg->token == token_tristate )
  1003. {
  1004.     int i;
  1005.     if ( ! vartable[cfg->nameindex].global_written )
  1006.     {
  1007. vartable[cfg->nameindex].global_written = 1;
  1008. printf( "tglobal %sn", vartable[cfg->nameindex].name );
  1009.     }
  1010.     if ( ! vartable[i = get_varnum( "CONFIG_MODULES" )].global_written )
  1011.     {
  1012. global( "CONFIG_MODULES" );
  1013. vartable[i].global_written = 1;
  1014.     }
  1015.     printf( "ntif {($CONFIG_MODULES == 1)} then {configure_entry .menu%d.config.f.x%d normal {m}} else {configure_entry .menu%d.config.f.x%d disabled {m}}n",
  1016. menu_num, cfg->menu_line,
  1017. menu_num, cfg->menu_line );
  1018. }
  1019.     }
  1020. }
  1021. else if ( cfg->token == token_mainmenu_option
  1022.      &&   cfg->menu_number == menu_num
  1023.      &&   cfg->cond != NULL )
  1024. {
  1025.     generate_if( cfg, cfg->cond, menu_num, cfg->menu_line );
  1026. }
  1027.     }
  1028.     printf("}nnn");
  1029.     generate_update_var( scfg, menu_num );
  1030. }
  1031. /*
  1032.  * This is the top level function for generating the tk script.
  1033.  */
  1034. void dump_tk_script( struct kconfig * scfg )
  1035. {
  1036.     int menu_depth;
  1037.     int menu_num [64];
  1038.     int imenu, i;
  1039.     int top_level_num = 0;
  1040.     struct kconfig * cfg;
  1041.     struct kconfig * cfg1 = NULL;
  1042.     const char * name = "No Name";
  1043.     /*
  1044.      * Mark begin and end of each menu so I can omit submenus when walking
  1045.      * over a parent menu.
  1046.      */
  1047.     tot_menu_num = 0;
  1048.     menu_depth   = 0;
  1049.     menu_num [0] = 0;
  1050.     for ( cfg = scfg; cfg != NULL; cfg = cfg->next )
  1051.     {
  1052. switch ( cfg->token )
  1053. {
  1054. default:
  1055.     break;
  1056. case token_mainmenu_name:
  1057.     name = cfg->label;
  1058.     break;
  1059. case token_mainmenu_option:
  1060.     if ( ++menu_depth >= 64 )
  1061. { fprintf( stderr, "menus too deepn" ); exit( 1 ); }
  1062.     if ( ++tot_menu_num >= 100 )
  1063. { fprintf( stderr, "too many menusn" ); exit( 1 ); }
  1064.     menu_num   [menu_depth]   = tot_menu_num;
  1065.     menu_first [tot_menu_num] = cfg;
  1066.     menu_last  [tot_menu_num] = cfg;
  1067.     /*
  1068.      * Note, that menu_number is set to the number of parent 
  1069.      * (upper level) menu.
  1070.      */
  1071.     cfg->menu_number = menu_num[menu_depth - 1];
  1072.     if ( menu_depth == 1 )
  1073. ++top_level_num;
  1074.     break;
  1075. case token_endmenu:
  1076.     menu_last [menu_num [menu_depth]] = cfg;
  1077.     /* flatten menus with proper scoping */
  1078.     if ( --menu_depth < 0 )
  1079. { fprintf( stderr, "unmatched endmenun" ); exit( 1 ); }
  1080.     break;
  1081. case token_bool:
  1082. case token_choice_header:
  1083. case token_choice_item:
  1084. case token_comment:
  1085. case token_dep_bool:
  1086. case token_dep_tristate:
  1087. case token_dep_mbool:
  1088. case token_hex:
  1089. case token_int:
  1090. case token_string:
  1091. case token_tristate:
  1092.     cfg->menu_number = menu_num[menu_depth];
  1093.     if ( menu_depth == 0 )
  1094. { fprintf( stderr, "statement not in menun" ); exit( 1 ); }
  1095.     break;
  1096. case token_define_bool:
  1097. case token_define_hex:
  1098. case token_define_int:
  1099. case token_define_string:
  1100. case token_define_tristate:
  1101. case token_unset:
  1102.     cfg->menu_number = menu_num[menu_depth];
  1103.     break;
  1104. }
  1105.     }
  1106.     /*
  1107.      * Generate menus per column setting.
  1108.      * There are:
  1109.      *   four extra buttons for save/quit/load/store;
  1110.      *   one blank button
  1111.      *   add two to round up for division
  1112.      */
  1113.     printf( "set menus_per_column %dn", (top_level_num + 4 + 1 + 2) / 3 );
  1114.     printf( "set total_menus %dnn", tot_menu_num );
  1115.     printf( "proc toplevel_menu {num} {n" );
  1116.     for ( imenu = 1; imenu <= tot_menu_num; ++imenu )
  1117.     {
  1118. int parent = 1;
  1119. if ( menu_first[imenu]->menu_number == 0 )
  1120.     parent = menu_first[imenu]->menu_number;
  1121. else
  1122.     printf( "tif {$num == %d} then {return %d}n",
  1123. imenu, menu_first[imenu]->menu_number );
  1124.     }
  1125.     printf( "treturn $numn}nn" );
  1126.     /*
  1127.      * Generate the menus.
  1128.      */
  1129.     printf( "mainmenu_name "%s"n", name );
  1130.     for ( imenu = 1; imenu <= tot_menu_num; ++imenu )
  1131.     {
  1132. int menu_line = 0;
  1133. int nr_submenu = imenu;
  1134. int menu_name_omitted = 0;
  1135. int opt_count = 0;
  1136. clear_globalflags();
  1137. start_proc( menu_first[imenu]->label, imenu, 
  1138. !menu_first[imenu]->menu_number );
  1139. for ( cfg = menu_first[imenu]->next; cfg != NULL && cfg != menu_last[imenu]; cfg = cfg->next )
  1140. {
  1141.     switch ( cfg->token )
  1142.     {
  1143.     default:
  1144. break;
  1145.     case token_mainmenu_option:
  1146. while ( menu_first[++nr_submenu]->menu_number > imenu )
  1147.     ;
  1148. cfg->menu_line = menu_line++;
  1149. printf( "tsubmenu $w.config.f %d %d "%s" %dn",
  1150.     cfg->menu_number, cfg->menu_line, cfg->label, nr_submenu );
  1151. cfg = menu_last[nr_submenu];
  1152. break;
  1153.     case token_comment:
  1154. if ( !cfg->menu_line && !menu_name_omitted )
  1155. {
  1156.     cfg->menu_line = -1;
  1157.     menu_name_omitted = 1;
  1158. }
  1159. else
  1160. {
  1161.     menu_name_omitted = 1;
  1162.     cfg->menu_line = menu_line++;
  1163.     printf( "tcomment $w.config.f %d %d "%s"n",
  1164. cfg->menu_number, cfg->menu_line, cfg->label );
  1165. }
  1166. break;
  1167.     case token_bool:
  1168. cfg->menu_line = menu_line++;
  1169. printf( "tbool $w.config.f %d %d "%s" %sn",
  1170.     cfg->menu_number, cfg->menu_line, cfg->label,
  1171.     vartable[cfg->nameindex].name );
  1172. break;
  1173.     case token_choice_header:
  1174. /*
  1175.  * I need the first token_choice_item to pick out the right
  1176.  * help text from Documentation/Configure.help.
  1177.  */
  1178. cfg->menu_line = menu_line++;
  1179. printf( "tglobal tmpvar_%dn", -(cfg->nameindex) );
  1180. printf( "tminimenu $w.config.f %d %d "%s" tmpvar_%d %sn",
  1181.     cfg->menu_number, cfg->menu_line, cfg->label,
  1182.     -(cfg->nameindex), vartable[cfg->next->nameindex].name );
  1183. printf( "tmenu $w.config.f.x%d.x.menu -tearoffcommand "menutitle \"%s\""n",
  1184.     cfg->menu_line, cfg->label );
  1185. cfg1 = cfg;
  1186. opt_count = 0;
  1187. break;
  1188.     case token_choice_item:
  1189. /* note: no menu line; uses choice header menu line */
  1190. printf( "t$w.config.f.x%d.x.menu add radiobutton -label "%s" -variable tmpvar_%d -value "%s" -command "update_active"n",
  1191.     cfg1->menu_line, cfg->label, -(cfg1->nameindex),
  1192.     cfg->label );
  1193. opt_count++;
  1194. if ( cfg->next && cfg->next->token != token_choice_item ) {
  1195.     /* last option in the menu */
  1196.     printf( "tmenusplit $w $w.config.f.x%d.x.menu %dn",
  1197. cfg1->menu_line, opt_count );
  1198. }
  1199. break;
  1200.     case token_dep_bool:
  1201.     case token_dep_mbool:
  1202. cfg->menu_line = menu_line++;
  1203. printf( "tdep_bool $w.config.f %d %d "%s" %sn",
  1204.     cfg->menu_number, cfg->menu_line, cfg->label,
  1205.     vartable[cfg->nameindex].name );
  1206. break;
  1207.     case token_dep_tristate:
  1208. cfg->menu_line = menu_line++;
  1209. printf( "tdep_tristate $w.config.f %d %d "%s" %sn",
  1210.     cfg->menu_number, cfg->menu_line, cfg->label,
  1211.     vartable[cfg->nameindex].name );
  1212. break;
  1213.     case token_hex:
  1214. cfg->menu_line = menu_line++;
  1215. printf( "thex $w.config.f %d %d "%s" %sn",
  1216.     cfg->menu_number, cfg->menu_line, cfg->label,
  1217.     vartable[cfg->nameindex].name );
  1218. break;
  1219.     case token_int:
  1220. cfg->menu_line = menu_line++;
  1221. printf( "tint $w.config.f %d %d "%s" %sn",
  1222.     cfg->menu_number, cfg->menu_line, cfg->label,
  1223.     vartable[cfg->nameindex].name );
  1224. break;
  1225.     case token_string:
  1226. cfg->menu_line = menu_line++;
  1227. printf( "tistring $w.config.f %d %d "%s" %sn",
  1228.     cfg->menu_number, cfg->menu_line, cfg->label,
  1229.     vartable[cfg->nameindex].name );
  1230. break;
  1231.     case token_tristate:
  1232. cfg->menu_line = menu_line++;
  1233. printf( "ttristate $w.config.f %d %d "%s" %sn",
  1234.     cfg->menu_number, cfg->menu_line, cfg->label,
  1235.     vartable[cfg->nameindex].name );
  1236. break;
  1237.     }
  1238. }
  1239. end_proc( scfg, imenu );
  1240.     }
  1241.     /*
  1242.      * The top level menu also needs an update function.  When we update a
  1243.      * submenu, we may need to disable one or more of the submenus on
  1244.      * the top level menu, and this procedure will ensure that things are
  1245.      * correct.
  1246.      */
  1247.     clear_globalflags();
  1248.     printf( "proc update_mainmenu {}  {n" );
  1249.     for ( imenu = 1; imenu <= tot_menu_num; imenu++ )
  1250.     {
  1251. if ( menu_first[imenu]->cond != NULL && menu_first[imenu]->menu_number == 0 )
  1252.     generate_if( menu_first[imenu], menu_first[imenu]->cond, imenu, -1 );
  1253.     }
  1254.     printf( "}nnn" );
  1255.     clear_globalflags();
  1256.     /*
  1257.      * Generate code to load the default settings into the variables.
  1258.      * The script in tail.tk will attempt to load .config,
  1259.      * which may override these settings, but that's OK.
  1260.      */
  1261.     for ( cfg = scfg; cfg != NULL; cfg = cfg->next )
  1262.     {
  1263. switch ( cfg->token )
  1264. {
  1265. default:
  1266.     break;
  1267. case token_bool:
  1268. case token_choice_item:
  1269. case token_dep_bool:
  1270. case token_dep_tristate:
  1271. case token_dep_mbool:
  1272. case token_tristate:
  1273.     if ( ! vartable[cfg->nameindex].global_written )
  1274.     {
  1275. printf( "set %s 0n", vartable[cfg->nameindex].name );
  1276. vartable[cfg->nameindex].global_written = 1;
  1277.     }
  1278.     break;
  1279. case token_choice_header:
  1280.     printf( "set tmpvar_%d "(not set)"n", -(cfg->nameindex) );
  1281.     break;
  1282. case token_hex:
  1283. case token_int:
  1284.     if ( ! vartable[cfg->nameindex].global_written )
  1285.     {
  1286. printf( "set %s %sn", vartable[cfg->nameindex].name, cfg->value ? cfg->value : "0" );
  1287. vartable[cfg->nameindex].global_written = 1;
  1288.     }
  1289.     break;
  1290. case token_string:
  1291.     if ( ! vartable[cfg->nameindex].global_written )
  1292.     {
  1293. printf( "set %s "%s"n", vartable[cfg->nameindex].name, cfg->value );
  1294. vartable[cfg->nameindex].global_written = 1;
  1295.     }
  1296.     break;
  1297. }
  1298.     }
  1299.     /*
  1300.      * Define to an empty value all other variables (which are never defined)
  1301.      */
  1302.     for ( i = 1; i <= max_varnum; i++ )
  1303.     {
  1304. if ( ! vartable[i].global_written
  1305. &&   strncmp( vartable[i].name, "CONSTANT_", 9 ) )
  1306.     printf( "set %s 4n", vartable[i].name );
  1307.     }
  1308.     /*
  1309.      * Generate a function to write all of the variables to a file.
  1310.      */
  1311.     printf( "proc writeconfig {file1 file2} {n" );
  1312.     printf( "tset cfg [open $file1 w]n" );
  1313.     printf( "tset autocfg [open $file2 w]n" );
  1314.     printf( "tset notmod 1n" );
  1315.     printf( "tset notset 0n" );
  1316.     printf( "tputs $cfg "#"n");
  1317.     printf( "tputs $cfg "# Automatically generated make config: don't edit"n");
  1318.     printf( "tputs $cfg "#"n" );
  1319.     printf( "tputs $autocfg "/*"n" );
  1320.     printf( "tputs $autocfg " * Automatically generated C config: don't edit"n" );
  1321.     printf( "tputs $autocfg " */"n" );
  1322.     printf( "tputs $autocfg "#define AUTOCONF_INCLUDED"n" );
  1323.     clear_globalflags();
  1324.     for ( cfg = scfg; cfg != NULL; cfg = cfg->next )
  1325.     {
  1326. switch ( cfg->token )
  1327. {
  1328. default:
  1329.     break;
  1330. case token_bool:
  1331. case token_choice_header:
  1332. case token_comment:
  1333. case token_define_bool:
  1334. case token_define_hex:
  1335. case token_define_int:
  1336. case token_define_string:
  1337. case token_define_tristate:
  1338. case token_dep_bool:
  1339. case token_dep_tristate:
  1340. case token_dep_mbool:
  1341. case token_hex:
  1342. case token_int:
  1343. case token_string:
  1344. case token_tristate:
  1345.     generate_writeconfig( cfg );
  1346.     break;
  1347. }
  1348.     }
  1349.     printf( "tclose $cfgn" );
  1350.     printf( "tclose $autocfgn" );
  1351.     printf( "}nnn" );
  1352.     /*
  1353.      * Generate a simple function that updates the master choice
  1354.      * variable depending upon what values were loaded from a .config
  1355.      * file.  
  1356.      */
  1357.     printf( "proc clear_choices { } {n" );
  1358.     for ( cfg = scfg; cfg != NULL; cfg = cfg->next )
  1359.     {
  1360. if ( cfg->token == token_choice_header )
  1361. {
  1362.     for ( cfg1  = cfg->next; 
  1363.   cfg1 != NULL && cfg1->token == token_choice_item;
  1364.   cfg1  = cfg1->next )
  1365.     {
  1366. printf( "tglobal %s; set %s 0n",
  1367.     vartable[cfg1->nameindex].name,
  1368.     vartable[cfg1->nameindex].name );
  1369.     }
  1370. }
  1371.     }
  1372.     printf( "}nnn" );
  1373.     printf( "proc update_choices { } {n" );
  1374.     for ( cfg = scfg; cfg != NULL; cfg = cfg->next )
  1375.     {
  1376. if ( cfg->token == token_choice_header )
  1377. {
  1378.     printf( "tglobal tmpvar_%dn", -(cfg->nameindex) );
  1379.     printf("tset tmpvar_%d "%s"n", -(cfg->nameindex), cfg->value);
  1380.     for ( cfg1  = cfg->next; 
  1381.   cfg1 != NULL && cfg1->token == token_choice_item;
  1382.   cfg1  = cfg1->next )
  1383.     {
  1384. printf( "tglobal %sn", vartable[cfg1->nameindex].name );
  1385. printf( "tif { $%s == 1 } then { set tmpvar_%d "%s" }n",
  1386.     vartable[cfg1->nameindex].name,
  1387.     -(cfg->nameindex), cfg1->label );
  1388.     }
  1389. }
  1390.     }
  1391.     printf( "}nnn" );
  1392.     generate_update_var( scfg, 0 );
  1393.     /*
  1394.      * That's it.  We are done.  The output of this file will have header.tk
  1395.      * prepended and tail.tk appended to create an executable wish script.
  1396.      */
  1397. }