From d4454e9bc7711e62446237421bc74d76fe3c886c Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Sat, 21 Mar 2020 16:05:09 +0100 Subject: [PATCH] Updated stations HUD UI --- .../entities/q_crafting_station/cl_init.lua | 52 +++++++++++-------- .../sv_crafting_stations_locations.lua | 3 +- 2 files changed, 30 insertions(+), 25 deletions(-) diff --git a/entities/entities/q_crafting_station/cl_init.lua b/entities/entities/q_crafting_station/cl_init.lua index cf8f254..70f2863 100644 --- a/entities/entities/q_crafting_station/cl_init.lua +++ b/entities/entities/q_crafting_station/cl_init.lua @@ -20,41 +20,47 @@ local barW, barH local scale = Quantum.Client.ResolutionScale local padding = 10 * scale +local txtAlpha = 0 +local plDist + function ENT:Draw() stationTbl = Quantum.Station.Get( self:GetNWInt( "q_station_id" ) ) - stationName = stationTbl.name - self:DrawModel() + if( stationTbl ) then + stationName = stationTbl.name - if( stationTbl.showname == true ) then - pos, ang = self:GetPos(), self:GetAngles() + self:DrawModel() - p, q = self:GetRenderBounds() - mdlHeight = q.z - p.z + if( stationTbl.showname == true ) then + pos, ang = self:GetPos(), self:GetAngles() - pos = pos + ang:Up() * (mdlHeight + 20) + p, q = self:GetRenderBounds() + mdlHeight = q.z - p.z - -- rotate around axis - ang:RotateAroundAxis( ang:Forward(), 90 ) - ang:RotateAroundAxis( ang:Right(), 90 ) + pos = pos + ang:Up() * (mdlHeight + 20) - ang.y = LocalPlayer():EyeAngles().y - 90 + -- rotate around axis + ang:RotateAroundAxis( ang:Forward(), 90 ) + ang:RotateAroundAxis( ang:Right(), 90 ) - cam.Start3D2D( pos, ang, 0.15 ) - surface.SetTextColor( Color( 255, 255, 255 ) ) - surface.SetFont( "q_title" ) - txtW, txtH = surface.GetTextSize( stationName ) + ang.y = LocalPlayer():EyeAngles().y - 90 - barW, barH = txtW + padding, txtH + padding + -- distance calc + plDist = LocalPlayer():GetPos():Distance( self:GetPos() ) + txtAlpha = Lerp( plDist/400, 255, 0 ) - surface.SetDrawColor( 0, 0, 0, 150 ) - surface.DrawRect( -barW/2, -padding/2, barW, barH ) + if( txtAlpha > 0 ) then + cam.Start3D2D( pos, ang, 0.15 ) + surface.SetTextColor( Color( 255, 255, 255, txtAlpha ) ) + surface.SetFont( "q_title" ) + txtW, txtH = surface.GetTextSize( stationName ) - surface.SetDrawColor( 255, 255, 255, 255 ) - surface.DrawOutlinedRect( -barW/2, -padding/2, barW, barH ) + barW, barH = txtW + padding, txtH + padding - surface.SetTextPos( -txtW/2, 0 ) - surface.DrawText( stationName ) - cam.End3D2D() + surface.SetTextPos( -txtW/2, 0 ) + surface.DrawText( stationName ) + cam.End3D2D() + end + end end end \ No newline at end of file diff --git a/gamemode/settings/sv_crafting_stations_locations.lua b/gamemode/settings/sv_crafting_stations_locations.lua index 031a02c..f055540 100644 --- a/gamemode/settings/sv_crafting_stations_locations.lua +++ b/gamemode/settings/sv_crafting_stations_locations.lua @@ -5,5 +5,4 @@ -- \ \ / ____ \| | | | | | | | __/ (__| | | | / / -- \_\ /_/ \_\_|_| |_| |_|_|\___|\___|_| |_| /_/ -Quantum.Server.Station.Register( "barrel", Vector( 747.13494873047, 10483.685546875, 7168.0317382813 ), Angle( 0, -118.23150634766, 0 ) ) -Quantum.Server.Station.Register( "barrel2", Vector( 885.861328125, 10542.946289063, 7168.03125 ), Angle( 0, -118.23150634766, 0 ) ) \ No newline at end of file +Quantum.Server.Station.Register( "barrel", Vector( 3815.68359375, -1565.5415039063, -129.41325378418 ), Angle( 0, 173.51203918457, 0 ) ) \ No newline at end of file