Changeset 447 for trunk/Direct.pas


Ignore:
Timestamp:
May 19, 2022, 10:39:34 PM (2 years ago)
Author:
chronos
Message:
  • Modified: Use first capital letter in identifiers.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Direct.pas

    r423 r447  
    2929    Gone: Boolean;
    3030    Quick: Boolean;
    31     procedure SetInfo(x: string);
    32     procedure SetState(x: integer);
     31    procedure SetInfo(X: string);
     32    procedure SetState(X: Integer);
    3333    procedure OnGo(var Msg: TMessage); message WM_GO;
    3434    procedure OnChangeClient(var Msg: TMessage); message WM_CHANGECLIENT;
     
    5757//  hMem: Cardinal;
    5858//  p: pointer;
    59   s: string;
     59  S: string;
    6060Begin
    6161  case ID of
     
    7272      if visible then
    7373      begin
    74         s := Format(Phrases.Lookup('BUSY_MOD'), [Brains[Index].Name]);
    75         while BiColorTextWidth(Canvas, s) + 64 > ClientWidth do
    76           Delete(s, Length(s), 1);
    77         SetInfo(s);
     74        S := Format(Phrases.Lookup('BUSY_MOD'), [Brains[Index].Name]);
     75        while BiColorTextWidth(Canvas, S) + 64 > ClientWidth do
     76          Delete(S, Length(S), 1);
     77        SetInfo(S);
    7878      end;
    7979    ntCreateWorld:
     
    111111          hMem := GlobalAlloc(GMEM_MOVEABLE or GMEM_DDESHARE,
    112112            Length(NotifyMessage));
    113           p := GlobalLock(hMem);
    114           if p <> nil then
    115             move(NotifyMessage[1], p^, Length(NotifyMessage));
     113          P := GlobalLock(hMem);
     114          if P <> nil then
     115            Move(NotifyMessage[1], P^, Length(NotifyMessage));
    116116          GlobalUnlock(hMem);
    117117          SetClipboardData(CF_TEXT, hMem);
     
    198198  begin
    199199    PostMessage(Handle, WM_GO, 0, 0);
    200     Gone := true;
     200    Gone := True;
    201201  end;
    202202end;
     
    209209procedure TDirectDlg.OnGo(var Msg: TMessage);
    210210var
    211   i: integer;
    212   s: string;
     211  I: Integer;
     212  S: string;
    213213  FileName: string;
    214214begin
     
    220220    Exit;
    221221  end;
    222   Quick := false;
     222  Quick := False;
    223223  if ParamCount > 0 then
    224224  begin
    225     s := ParamStr(1);
    226     if (s[1] = '-') {$IFDEF WINDOWS}or (s[1] = '/'){$ENDIF} then
     225    S := ParamStr(1);
     226    if (S[1] = '-') {$IFDEF WINDOWS}or (S[1] = '/'){$ENDIF} then
    227227    begin // special mode
    228       Delete(s, 1, 1);
    229       for i := 1 to Length(s) do
    230         if s[i] in ['a' .. 'z'] then
    231           dec(s[i], 32);
    232       if s = 'MAN' then
     228      Delete(S, 1, 1);
     229      for I := 1 to Length(S) do
     230        if S[I] in ['a' .. 'z'] then
     231          Dec(S[I], 32);
     232      if S = 'MAN' then
    233233      begin
    234         Quick := true;
     234        Quick := True;
    235235        DirectHelp(cHelpOnly);
    236236        Close;
     
    242242        Quick := True;
    243243        if not LoadGame(ExtractFilePath(ParamStr(1)), ExtractFileName(ParamStr(1)
    244         ), -1, false) then begin
     244        ), -1, False) then begin
    245245          SimpleMessage(Phrases.Lookup('LOADERR'));
    246246          Close;
     
    297297end;
    298298
    299 procedure TDirectDlg.SetInfo(x: string);
    300 begin
    301   Info := x;
     299procedure TDirectDlg.SetInfo(X: string);
     300begin
     301  Info := X;
    302302  Invalidate;
    303303  Update;
     
    307307end;
    308308
    309 procedure TDirectDlg.SetState(x: integer);
    310 begin
    311   if (x < 0) <> (State < 0) then begin
    312     State := x;
     309procedure TDirectDlg.SetState(X: Integer);
     310begin
     311  if (X < 0) <> (State < 0) then begin
     312    State := X;
    313313    Invalidate;
    314314    Update;
    315315  end
    316   else if x <> State then begin
    317     State := x;
     316  else if X <> State then begin
     317    State := X;
    318318    PaintProgressBar(Canvas, 6, ClientWidth div 2 - 64, 40, State, 128 - State,
    319319      128, MainTexture);
Note: See TracChangeset for help on using the changeset viewer.