X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Feditor%2Ff_addresource_sky.pas;h=49034d2239db2e0ff74db35a9d7756ef21496e92;hb=b9e48f22d4c3357a3f14c47a4ec7151d811e9a12;hp=fb5bd5f1946d4528c06b58a64ddf7296069a4377;hpb=b72e164f0fb64e3301ae8ca217449daf6a9d301d;p=d2df-editor.git diff --git a/src/editor/f_addresource_sky.pas b/src/editor/f_addresource_sky.pas index fb5bd5f..49034d2 100644 --- a/src/editor/f_addresource_sky.pas +++ b/src/editor/f_addresource_sky.pas @@ -1,13 +1,13 @@ unit f_addresource_sky; -{$MODE Delphi} +{$INCLUDE ../shared/a_modes.inc} interface uses LCLIntf, LCLType, LMessages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, f_addresource, - ExtCtrls, StdCtrls; + ExtCtrls, StdCtrls, utils, Imaging, ImagingTypes, ImagingUtility; type TAddSkyForm = class (TAddResourceForm) @@ -31,104 +31,64 @@ var implementation uses - BinEditor, WADEDITOR, f_main, g_language; + WADEDITOR, f_main, g_language, g_resources; {$R *.lfm} -procedure SwapRGB(data: Pointer; Size: Integer); -asm - mov ebx, eax - mov ecx, size - -@@loop : - mov al,[ebx+0] - mov ah,[ebx+2] - mov [ebx+2],al - mov [ebx+0],ah - add ebx,3 - dec ecx - jnz @@loop -end; - 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; + x, y: Integer; BitMap: TBitMap; TextureData: Pointer; - WAD: TWADEditor_1; WADName: String; SectionName: String; ResourceName: String; begin Result := nil; - -// Загружаем ресурс текстуры из WAD: g_ProcessResourceStr(ResourceStr, WADName, SectionName, ResourceName); + g_ReadResource(WADName, SectionName, ResourceName, TextureData, ImageSize); - WAD := TWADEditor_1.Create(); - WAD.ReadFile(WADName); - - WAD.GetResource(SectionName, ResourceName, TextureData, ImageSize); - - 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;