home *** CD-ROM | disk | FTP | other *** search
/ The Best of Select: Games 3 / cd.iso / games / wordy / xfind.c < prev    next >
C/C++ Source or Header  |  1994-11-04  |  6KB  |  220 lines

  1. /**************************************************************************/
  2. /*                              XFIND UTILITY                          */
  3. /*                                                            */
  4. /*                                 M\Cooper                            */
  5. /*                        3425 Chestnut Ridge Rd.                        */
  6. /*                        Grantsville, MD 21536-9801                    */
  7. /*                        --------------------------                    */
  8. /*                        Email:  thegrendel@aol.com                    */
  9. /*                                                                        */
  10. /*                $2.00 to register the entire WORDY package             */
  11. /*                                                            */    
  12. /**************************************************************************/
  13.  
  14.  
  15. /**********************************WORDTEST********************************/
  16. /*       Function tests if word is constructible from Letterset            */
  17. /*                 Args in: char *letterset, char *word                          */
  18. /*   Returns: error_flag == TRUE (1) if constructible, FALSE (0) if not   */
  19. /**************************************************************************/
  20.  
  21. #include <conio.h>
  22. #include "srch.h"
  23. //srch.h (source) is part of the WORDY package
  24.  
  25.  
  26. #define FILE_OPENING_ERROR 3
  27. #define FILENAME_MAXLEN 8
  28. #define CR "\n"
  29. #define FILE_SUFFIX ".fnd"
  30. #define MAXLEN 30
  31. #define LINE_LEN 80
  32. #define NOARGS 1
  33. #define INCREMENT 1
  34. #define SPACE ' '
  35. #define DBLBAR 205
  36. #define WILDCARD '?'
  37. //Wildcard character in command line, may be changed
  38.  
  39. char ad[] =
  40. "XFIND utility by M\\Cooper, 3425 Chestnut Ridge Rd., Grantsville, MD 21536-9801";
  41.  
  42.  
  43. void getword( char *lset );
  44. void center( char *strng );
  45.  
  46. typedef enum { FALSE, TRUE } Boolean;
  47.  
  48. void main( int argc, char **argv )
  49. {
  50.  
  51.    char letterset[ MAXLEN ];
  52.  
  53.      if( argc == NOARGS )
  54.         {
  55.         clrscr();
  56.         puts( "Enter a LETTER PATTERN to test [example ab?c??e... " );
  57.         gets( letterset );
  58.         }
  59.      else
  60.         strcpy( letterset, *( argv + 1 ) );
  61.  
  62.      getword( letterset );
  63. }
  64.  
  65.  
  66.  
  67. Boolean wordtest( char *letterset, char *word )
  68. {
  69.     Boolean error_flag;
  70.     static char dup_lset[ MAXLEN ];
  71.     register unsigned int cnt = 0,
  72.                       u,
  73.                       v;
  74.  
  75.      strcpy( dup_lset, letterset );
  76.          
  77.      u = strlen( word );
  78.       v = strlen( letterset );
  79.  
  80.      while( ( *letterset == *word ) || *letterset == WILDCARD )
  81.         {
  82.         letterset++;
  83.         word++;
  84.         cnt++;
  85.         }
  86.  
  87.      if( u <= cnt && u == v )
  88.         error_flag = TRUE;
  89.      else
  90.         error_flag = FALSE;
  91.  
  92.  
  93.         return( error_flag );
  94. }
  95.  
  96. /*************************************************************/
  97. void getword( char *letter_set )
  98. {
  99.  
  100.     char    l_set [ MAXLEN ],
  101.         word [ MAXLEN ],
  102.         tempstr [ MAXLEN + 1 ],
  103.         targetfile [ MAXLEN ],
  104.         bar [ LINE_LEN + 1 ],
  105.         double_bar [ LINE_LEN + 1 ],
  106.         messg [7];
  107.  
  108.     FILE *fptr,
  109.         *tfile;
  110.     int fnamelen;
  111.     long wcount = 0L;
  112.  
  113.        memset( bar, '*', LINE_LEN );
  114.        *( bar + LINE_LEN ) = NULL;
  115.        memset( double_bar, DBLBAR, LINE_LEN );
  116.        *( double_bar + LINE_LEN ) = NULL;
  117.  
  118.        /*************opening credits*************/
  119.        clrscr();
  120.        printf( double_bar );
  121.        strcpy( tempstr, ad );
  122.        center ( tempstr );
  123.        printf( tempstr );
  124.        printf( CR );
  125.        printf( double_bar );
  126.        printf( CR );
  127.        /****************************************/
  128.  
  129.  
  130.        strcpy ( l_set, letter_set );
  131.        strcat ( letter_set, CR );
  132.  
  133.        /*   Create name of file to store derived words in   */
  134.        /*********************************************************/
  135.        strcpy( targetfile, "matched.wds" );
  136.        /*********************************************************/
  137.  
  138.        if( !( fptr = fopen( Wordfile, "rt" ) ) )
  139.          {
  140.          printf( "\7\7\7Cannot open Wordfile!" );
  141.          exit( FILE_OPENING_ERROR );
  142.          }
  143.  
  144.        if( !( tfile = fopen( targetfile, "wt" ) ) )
  145.          {
  146.          printf( "\7\7\7Cannot open file to save words in!" );
  147.          exit ( FILE_OPENING_ERROR + 1 );
  148.          }
  149.  
  150.        /**************'Wait' Message************/
  151.        printf( CR CR );
  152.        printf( "WORKING...\n\n" );
  153.        printf( "This will take from 10 seconds or less [fast 486 machine]\n" );
  154.        printf( "to 5 minutes or more [slow 8088 with old hard drive].\n\n" );
  155.        printf( "Now searching 94,000 word file and writing file of valid words.\n\n" );
  156.        /*****************************************/
  157.  
  158.  
  159.  
  160.  
  161.  
  162.        sprintf( tempstr, "Words fitting the pattern of: %s\n", strupr( l_set ) );
  163.        center( tempstr );
  164.        fprintf( tfile, double_bar );
  165.        fprintf( tfile, tempstr );
  166.        fprintf( tfile, double_bar );
  167.        fprintf( tfile, CR );
  168.  
  169.  
  170.          /*********************Main Loop*************/     
  171.           while( fgets( word, MAXLEN, fptr ) != NULL )
  172.  
  173.             if( wordtest( letter_set, word ) )
  174.                {
  175.                fprintf( tfile, "%s", word );
  176.                wcount++;
  177.                }
  178.           /*******************************************/
  179.  
  180.           fprintf( tfile, bar );
  181.           sprintf( tempstr, "%ld words fit the pattern of %s.",
  182.                  wcount, l_set );
  183.           center( tempstr );              
  184.           fprintf( tfile, tempstr );
  185.           fprintf( tfile, "\n\n" );
  186.  
  187.           center( ad );
  188.           fprintf( tfile, ad );
  189.  
  190.           fcloseall();
  191.  
  192.           if( wcount == INCREMENT )
  193.             strcpy( messg, "word" );
  194.           else
  195.             strcpy( messg, "words" );
  196.           sprintf( tempstr,
  197.                  "The file %s has %ld %s fitting the pattern of %s\7.",
  198.                  targetfile, wcount, messg, l_set );
  199.           center( tempstr );
  200.           printf( CR CR );
  201.           printf( tempstr );
  202.  
  203. }
  204.  
  205.  
  206.  
  207. void center( char *str )
  208. {
  209.    int padding;
  210.    char st [ LINE_LEN + INCREMENT ];
  211.  
  212.      padding = LINE_LEN / 2 - strlen( str ) / 2;
  213.      memset( st, SPACE, padding );
  214.      *( st + padding ) = NULL;  //Terminate string
  215.      strcat( st, str );
  216.      strcpy( str, st );
  217.  
  218.      return;
  219. }
  220.