hedgewars/uConsts.pas
changeset 53 0e27949850e3
parent 49 3afe33c1cf06
child 55 e09f7c952a40
equal deleted inserted replaced
52:ae2950c5465c 53:0e27949850e3
    92 
    92 
    93       cTransparentColor: Cardinal = $000000;
    93       cTransparentColor: Cardinal = $000000;
    94 
    94 
    95       cMaxHHIndex      = 9;
    95       cMaxHHIndex      = 9;
    96       cMaxHHs          = 20;
    96       cMaxHHs          = 20;
    97       cMaxSpawnPoints  = 64;
    97       cMaxSpawnPoints  = 1024;
    98       cHHSurfaceWidth     = 512;
    98       cHHSurfaceWidth     = 512;
    99       cHHSurfaceHeigth    = 256;
    99       cHHSurfaceHeigth    = 256;
   100 
   100 
   101       cMaxEdgePoints = 16384;
   101       cMaxEdgePoints = 16384;
   102 
   102 
   103       cHHHalfHeight = 11;
   103       cHHRadius = 9;
   104 
   104 
   105       cKeyMaxIndex = 322;
   105       cKeyMaxIndex = 322;
   106 
   106 
   107       cMaxCaptions         = 4;
   107       cMaxCaptions = 4;
   108 
   108 
   109       cInactDelay = 1500;
   109       cInactDelay = 1500;
   110 
   110 
   111       gfForts = $00000001;
   111       gfForts = $00000001;
   112 
   112 
   174                                          (Height: 24;
   174                                          (Height: 24;
   175                                           Name: 'UN1251N.TTF')
   175                                           Name: 'UN1251N.TTF')
   176                                          );
   176                                          );
   177 
   177 
   178       Pathz: array[TPathType] of string[ 64] = (
   178       Pathz: array[TPathType] of string[ 64] = (
   179                                                'Data/',                         // ptData
   179                                                'Data',                          // ptData
   180                                                'Data/Graphics/',                // ptGraphics
   180                                                'Data/Graphics',                 // ptGraphics
   181                                                'Data/Themes/',                  // ptThemes
   181                                                'Data/Themes',                   // ptThemes
   182                                                'Data/Themes/Default/',          // ptThemeCurrent
   182                                                'Data/Themes/avematan',          // ptThemeCurrent
   183                                                'Data/Teams/',                   // ptTeams
   183                                                'Data/Teams',                    // ptTeams
   184                                                'Data/Maps/',                    // ptMaps
   184                                                'Data/Maps',                     // ptMaps
   185                                                'Data/Maps/Current/',            // ptMapCurrent
   185                                                '',                              // ptMapCurrent
   186                                                'Data/Demos/',                   // ptDemos
   186                                                'Data/Demos',                    // ptDemos
   187                                                'Data/Sounds/',                  // ptSounds
   187                                                'Data/Sounds',                   // ptSounds
   188                                                'Data/Graphics/Graves/',         // ptGraves
   188                                                'Data/Graphics/Graves',          // ptGraves
   189                                                'Data/Fonts/',                   // ptFonts
   189                                                'Data/Fonts',                    // ptFonts
   190                                                'Data/Forts/'                    // ptForts
   190                                                'Data/Forts'                     // ptForts
   191                                                );
   191                                                );
   192 
   192 
   193       StuffLoadData: array[TStuff] of record
   193       StuffLoadData: array[TStuff] of record
   194                                      FileName: String[31];
   194                                      FileName: String[31];
   195                                      Path    : TPathType;
   195                                      Path    : TPathType;