📄 fnavform.pas
字号:
unit FNavForm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
Dialogs, GR32_Image, HeightTileFile, GR32, GR32_Layers;
type
TNavForm = class(TForm)
Image: TImage32;
procedure ImageMouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer; Layer: TCustomLayer);
private
{ Private declarations }
FPickX, FPickY : Integer;
public
{ Public declarations }
function Execute(htf : THeightTileFile) : Boolean;
property PickX : Integer read FPickX;
property PickY : Integer read FPickY;
end;
var
NavForm: TNavForm;
implementation
{$R *.dfm}
uses FViewerForm;
function TNavForm.Execute(htf : THeightTileFile) : Boolean;
var
i, x, y, w, s, wx, wy : Integer;
begin
// Computes scaling so that preview window isn't too small
with htf do begin
wx:=(SizeX+TileSize div 2) div TileSize;
wy:=(SizeY+TileSize div 2) div TileSize;
end;
if wx<wy then
w:=wy
else w:=wx;
s:=1;
while w<256 do begin
w:=w*2;
s:=s*2;
end;
Image.Scale:=s;
// Prepare the world tile map
with Image.Bitmap do begin
Width:=wx;
Height:=wy;
Clear(clGray32);
for i:=0 to htf.TileCount-1 do with htf.Tiles[i]^ do begin
x:=(left+(width div 2)) div htf.TileSize;
y:=(top+(height div 2)) div htf.TileSize;
PixelS[x, y]:=heightColor[average];
end;
end;
// Couldn't get the form's AutoSize to work...
Image.Width:=wx*s;
Image.Height:=wy*s;
Width:=Image.Width;
Height:=Image.Height;
// Show the Nav map
Result:=(ShowModal=mrOk);
// Convert back to world coordinates
if Result then begin
FPickX:=(FPickX*htf.TileSize) div s - htf.TileSize;
FPickY:=(FPickY*htf.TileSize) div s - htf.TileSize;
end;
end;
procedure TNavForm.ImageMouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer; Layer: TCustomLayer);
begin
FPickX:=X;
FPickY:=Y;
ModalResult:=mrOk;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -