X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Fgame%2Fg_player.pas;h=137ab818e6c4d7bbee6ec089ca7abb7c72c12dd5;hb=c1f5ac16c0ee5054cc0321f88e590a7a64cb3b71;hp=fa2dcfce5243696c55b09cc25aee27d9c44229f9;hpb=0f19f863e4ed346794b6ce5a56571027b4c8cd0b;p=d2df-sdl.git diff --git a/src/game/g_player.pas b/src/game/g_player.pas index fa2dcfc..137ab81 100644 --- a/src/game/g_player.pas +++ b/src/game/g_player.pas @@ -313,6 +313,7 @@ type procedure DrawPickup(); procedure DrawRulez(); procedure DrawAim(); + procedure DrawIndicator(); procedure DrawBubble(); procedure DrawGUI(); procedure Update(); virtual; @@ -549,6 +550,7 @@ var gFly: Boolean = False; gAimLine: Boolean = False; gChatBubble: Byte = 0; + gPlayerIndicator: Boolean = True; gNumBots: Word = 0; gLMSPID1: Word = 0; gLMSPID2: Word = 0; @@ -2310,6 +2312,25 @@ begin inherited; end; +procedure TPlayer.DrawIndicator(); +var + indX, indY: Integer; + indW, indH: Word; + ID: DWORD; +begin + if FAlive then + begin + indX := FObj.X+FObj.Rect.X; + indY := FObj.Y - 12; + if g_Texture_Get('TEXTURE_PLAYER_INDICATOR', ID) then + begin + e_GetTextureSize(ID, @indW, @indH); + e_Draw(ID, indX + indW div 2, indY, 0, True, False); + end; + end; + //e_TextureFontPrint(indX, indY, FName, gStdFont); // Shows player name overhead +end; + procedure TPlayer.DrawBubble(); var bubX, bubY: Integer;