From 6869d799c63b2909e4e0c3b2cd0b486903518ae2 Mon Sep 17 00:00:00 2001 From: fgsfds Date: Tue, 5 Sep 2017 18:04:34 +0300 Subject: [PATCH] sky preview now also uses vampimg; now freeing vamp images after use --- src/editor/f_addresource_sky.pas | 68 +++++++++++----------------- src/editor/f_addresource_texture.pas | 8 +--- 2 files changed, 28 insertions(+), 48 deletions(-) diff --git a/src/editor/f_addresource_sky.pas b/src/editor/f_addresource_sky.pas index 2f2c25f..9211205 100644 --- a/src/editor/f_addresource_sky.pas +++ b/src/editor/f_addresource_sky.pas @@ -7,7 +7,7 @@ interface uses LCLIntf, LCLType, LMessages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, f_addresource, - ExtCtrls, StdCtrls, utils; + ExtCtrls, StdCtrls, utils, Imaging, ImagingTypes, ImagingUtility; type TAddSkyForm = class (TAddResourceForm) @@ -37,24 +37,14 @@ uses function ShowTGATexture(ResourceStr: String): TBitMap; var - TGAHeader: packed record // Header type for TGA images - FileType: Byte; - ColorMapType: Byte; - ImageType: Byte; - ColorMapSpec: Array[0..4] of Byte; - OrigX: Array [0..1] of Byte; - OrigY: Array [0..1] of Byte; - Width: Array [0..1] of Byte; - Height: Array [0..1] of Byte; - BPP: Byte; - ImageInfo: Byte; - end; - image: Pointer; {or PRGBTRIPLE} + img: TImageData; + clr: TColor32Rec; + ii: PByte; Width, Height: Integer; ColorDepth: Integer; ImageSize: Integer; - I: Integer; + I, x, y: Integer; BitMap: TBitMap; TextureData: Pointer; @@ -76,44 +66,38 @@ begin WAD.Free(); -// Заголовок TGA: - CopyMemory(@TGAHeader, TextureData, SizeOf(TGAHeader)); - - if TGAHeader.ImageType <> 2 then - Exit; - if TGAHeader.ColorMapType <> 0 then - Exit; - if TGAHeader.BPP < 24 then + InitImage(img); + if not LoadImageFromMemory(TextureData, ImageSize, img) then Exit; - Width := TGAHeader.Width[0]+TGAHeader.Width[1]*256; - Height := TGAHeader.Height[0]+TGAHeader.Height[1]*256; - ColorDepth := TGAHeader.BPP; + Width := img.width; + Height := img.height; + ColorDepth := 24; ImageSize := Width*Height*(ColorDepth div 8); -// Само изображение: - GetMem(Image, ImageSize); - - CopyMemory(Image, Pointer(Integer(TextureData)+SizeOf(TGAHeader)), ImageSize); - BitMap := TBitMap.Create(); + BitMap.PixelFormat := pf24bit; - if TGAHeader.BPP = 24 then - BitMap.PixelFormat := pf24bit - else - BitMap.PixelFormat := pf32bit; - BitMap.Width := Width; BitMap.Height := Height; -// Копируем изображение в BitMap: - for I := Height-1 downto 0 do - CopyMemory(BitMap.ScanLine[Height-1-I], - Pointer(Integer(Image)+(Width*I*(TGAHeader.BPP div 8))), - Width*(TGAHeader.BPP div 8)); +// Копируем в BitMap: + ii := BitMap.RawImage.Data; + for y := 0 to height-1 do + begin + for x := 0 to width-1 do + begin + clr := GetPixel32(img, x, y); + // assuming sky has no alpha + // TODO: check for ARGB/RGBA/BGRA/ABGR somehow? + ii^ := clr.b; Inc(ii); + ii^ := clr.g; Inc(ii); + ii^ := clr.r; Inc(ii); + end; + end; - FreeMem(Image, ImageSize); FreeMem(TextureData); + FreeImage(img); Result := BitMap; end; diff --git a/src/editor/f_addresource_texture.pas b/src/editor/f_addresource_texture.pas index 7319645..d1210cd 100644 --- a/src/editor/f_addresource_texture.pas +++ b/src/editor/f_addresource_texture.pas @@ -7,8 +7,7 @@ interface uses LCLIntf, LCLType, LMessages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, f_addresource, - StdCtrls, ExtCtrls, utils, Imaging, ImagingTypes, ImagingUtility, - e_log; + StdCtrls, ExtCtrls, utils, Imaging, ImagingTypes, ImagingUtility; type TAddTextureForm = class (TAddResourceForm) @@ -268,10 +267,7 @@ begin InitImage(img); if not LoadImageFromMemory(Data, DataSize, img) then - begin - e_WriteLog('Invalid image format?', MSG_WARNING); Exit; - end; Width := img.width; Height := img.height; @@ -303,7 +299,7 @@ begin // ii^ := clr.a; Inc(ii); end; end; - + FreeImage(img); Result := BitMap; end; -- 2.29.2