home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 March / PCWorld_2002-03_cd.bin / Software / Komercni / far / Far165.exe / Addons / Tables / readme.txt < prev   
Encoding:
Text File  |  1998-05-31  |  1.9 KB  |  67 lines

  1. This folder contains character tables for viewer, editor and "Find file"
  2. command and character frequency distribution tables.
  3.  
  4. Read file descriptions for contents of the tables.
  5.  
  6. Character frequency distribution information is required in order to 
  7. autodetect the table in viewer and editor (you do not need it if you use 
  8. only one character table). It describes characters frequency for OEM codepage
  9. of concrete language. 0 corresponds to lowest frequency, 254 to highest,
  10. value 255 means that this character should be ignored when analysing file.
  11.  
  12. The simple C++ program below can be used to generate frequency distribution
  13. information for your language. It has only one parameter - the name of a
  14. large enough text file in OEM codepage which is typical of the language used.
  15.  
  16.  
  17. #include <stdio.h>
  18.  
  19. void main(int Argc, char *Argv[])
  20. {
  21.   if (Argc!=2)
  22.   {
  23.     printf("\nSyntax: DISTR <file>");
  24.     return;
  25.   }
  26.   FILE *SrcFile=fopen(Argv[1],"rb");
  27.   if (SrcFile==NULL)
  28.   {
  29.     printf("\nCannot open %s",Argv[1]);
  30.     return;
  31.   }
  32.   unsigned long Count[256],MaxCount=0;
  33.  
  34.   for (int I=0;I<sizeof(Count)/sizeof(Count[0]);I++)
  35.     Count[I]=0;
  36.  
  37.   int Ch,PrevCh=0;
  38.   while ((Ch=fgetc(SrcFile))!=EOF)
  39.     if (Ch!=PrevCh)
  40.       Count[Ch]++;
  41.   fclose(SrcFile);
  42.  
  43.   for (int I=128;I<sizeof(Count)/sizeof(Count[0]);I++)
  44.     if (MaxCount<Count[I])
  45.       MaxCount=Count[I];
  46.   int Divider=MaxCount/254;
  47.   if (Divider<10)
  48.   {
  49.     printf("\nSource file too small");
  50.     return;
  51.   }
  52.   printf("REGEDIT4\n\n[HKEY_CURRENT_USER\\Software\\Far\\CodeTables]\n\"Distribution\"=hex:\\\n    ");
  53.   for (int I=0;I<256;I++)
  54.   {
  55.     int Value;
  56.     if (I<128 && (I>=32 || Count[I]!=0))
  57.       Value=0xff;
  58.     else
  59.       if ((Value=Count[I]/Divider)>254)
  60.         Value=254;
  61.     printf("%02x%s",Value,I!=255 ? ",":"");
  62.     if (I%16==15 && I!=255)
  63.       printf("\\\n    ");
  64.   }
  65.   printf("\n");
  66. }
  67.