X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Fgame%2Fg_panel.pas;h=d1a2c3bb6a98195ffea8e622349d27e3279c5417;hb=308e38b7e47d95142f20c5f020f176924b7f877e;hp=b522ae2beb5c49b38a31e602f7227bd238f2ae3a;hpb=88ce644db1b40111bdb380f4357fa59bdb5173be;p=d2df-sdl.git diff --git a/src/game/g_panel.pas b/src/game/g_panel.pas index b522ae2..d1a2c3b 100644 --- a/src/game/g_panel.pas +++ b/src/game/g_panel.pas @@ -1,3 +1,4 @@ +{$MODE DELPHI} unit g_panel; interface @@ -61,8 +62,8 @@ type implementation uses - g_basic, g_map, MAPDEF, g_game, e_graphics, - g_console, g_language; + SysUtils, g_basic, g_map, MAPDEF, g_game, e_graphics, + g_console, g_language, e_log; const PANEL_SIGNATURE = $4C4E4150; // 'PANL' @@ -197,7 +198,15 @@ begin SaveIt := True; // Åñëè íå ñïåöòåêñòóðà, òî çàäàåì ðàçìåðû: - if not g_Map_IsSpecialTexture(Textures[PanelRec.TextureNum].TextureName) then + if PanelRec.TextureNum > High(Textures) then + begin + e_WriteLog(Format('WTF?! PanelRec.TextureNum is out of limits! (%d : %d)', [PanelRec.TextureNum, High(Textures)]), MSG_FATALERROR); + FTextureWidth := 2; + FTextureHeight := 2; + FAlpha := 0; + FBlending := ByteBool(0); + end + else if not g_Map_IsSpecialTexture(Textures[PanelRec.TextureNum].TextureName) then begin FTextureWidth := Textures[PanelRec.TextureNum].Width; FTextureHeight := Textures[PanelRec.TextureNum].Height; @@ -233,7 +242,7 @@ begin begin // Àíèìèðîâàííàÿ òåêñòóðà if FTextureIDs[FCurTexture].AnTex = nil then Exit; - + for xx := 0 to (Width div FTextureWidth)-1 do for yy := 0 to (Height div FTextureHeight)-1 do FTextureIDs[FCurTexture].AnTex.Draw( @@ -356,7 +365,7 @@ begin else if AnimLoop = 2 then FTextureIDs[FCurTexture].AnTex.Loop := False; - + FTextureIDs[FCurTexture].AnTex.Reset(); end; @@ -396,7 +405,7 @@ begin else if AnimLoop = 2 then FTextureIDs[FCurTexture].AnTex.Loop := False; - + FTextureIDs[FCurTexture].AnTex.Reset(); end;