Changeset 460 for trunk/LocalPlayer/NatStat.pas
- Timestamp:
- Nov 28, 2023, 3:16:24 PM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LocalPlayer/NatStat.pas
r447 r460 5 5 6 6 uses 7 Protocol, ClientTools, Term,ScreenTools, BaseWin, LCLIntf, LCLType, SysUtils,7 Protocol, ClientTools, ScreenTools, BaseWin, LCLIntf, LCLType, SysUtils, 8 8 Classes, Graphics, Controls, Forms, ButtonB, ButtonC, Menus, EOTButton; 9 9 … … 37 37 procedure OffscreenPaint; override; 38 38 private 39 pView, AgePrepared, LinesDown: Integer; 40 SelfReport, CurrentReport: PEnemyReport; 41 ShowContact, ContactEnabled: Boolean; 42 Back, Template: TBitmap; 39 pView: Integer; 40 AgePrepared: Integer; 41 LinesDown: Integer; 42 SelfReport: PEnemyReport; 43 CurrentReport: PEnemyReport; 44 ShowContact: Boolean; 45 ContactEnabled: Boolean; 46 Back: TBitmap; 47 Template: TBitmap; 43 48 ReportText: TStringList; 44 49 procedure GenerateReportText; 45 50 end; 46 51 47 var48 NatStatDlg: TNatStatDlg;49 50 52 51 53 implementation … … 54 56 55 57 uses 56 Messg, Tribes, Directories;58 Term, Messg, Tribes, Directories; 57 59 58 60 const … … 193 195 [I * 100 div (G.lx * G.ly)]); 194 196 end; 195 end 197 end; 196 198 end; 197 199 … … 254 256 ps: PChar; 255 257 Extinct: Boolean; 256 257 258 begin 258 259 inherited; … … 279 280 1 + Tribe[pView].facepix mod 10 * 65, 280 281 1 + Tribe[pView].facepix div 10 * 49); 281 frame(Offscreen.Canvas, 18 - 1, yIcon - 4 - 1, 18 + 64, yIcon - 4 + 48,282 Frame(Offscreen.Canvas, 18 - 1, yIcon - 4 - 1, 18 + 64, yIcon - 4 + 48, 282 283 $000000, $000000); 283 284 end; … … 392 393 Phrases2.Lookup('MENU_TELLAI')); 393 394 end; 395 394 396 ContactBtn.SetBack(Offscreen.Canvas, ContactBtn.Left, ContactBtn.Top); 395 397
Note:
See TracChangeset
for help on using the changeset viewer.