mirror of
https://github.com/celisej567/gm_construct_port.git
synced 2026-01-06 10:09:46 +03:00
90 lines
2.0 KiB
C#
90 lines
2.0 KiB
C#
namespace Sandbox.Tools
|
|
{
|
|
[Library( "tool_thruster", Title = "Thruster", Description = "A rocket type thing that can push forwards and backward", Group = "construction" )]
|
|
public partial class ThrusterTool : BaseTool
|
|
{
|
|
PreviewEntity previewModel;
|
|
bool massless = true;
|
|
|
|
public override void CreatePreviews()
|
|
{
|
|
if ( TryCreatePreview( ref previewModel, "models/thruster/thrusterprojector.vmdl" ) )
|
|
{
|
|
previewModel.RotationOffset = Rotation.FromAxis( Vector3.Right, -90 );
|
|
}
|
|
}
|
|
|
|
protected override bool IsPreviewTraceValid( TraceResult tr )
|
|
{
|
|
if ( !base.IsPreviewTraceValid( tr ) )
|
|
return false;
|
|
|
|
if ( tr.Entity is ThrusterEntity )
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
public override void Simulate()
|
|
{
|
|
if ( !Host.IsServer )
|
|
return;
|
|
|
|
using ( Prediction.Off() )
|
|
{
|
|
if ( Input.Pressed( InputButton.Attack2 ) )
|
|
{
|
|
massless = !massless;
|
|
}
|
|
|
|
if ( !Input.Pressed( InputButton.Attack1 ) )
|
|
return;
|
|
|
|
var startPos = Owner.EyePos;
|
|
var dir = Owner.EyeRot.Forward;
|
|
|
|
var tr = Trace.Ray( startPos, startPos + dir * MaxTraceDistance )
|
|
.Ignore( Owner )
|
|
.Run();
|
|
|
|
if ( !tr.Hit )
|
|
return;
|
|
|
|
if ( !tr.Entity.IsValid() )
|
|
return;
|
|
|
|
var attached = !tr.Entity.IsWorld && tr.Body.IsValid() && tr.Body.PhysicsGroup != null && tr.Body.Entity.IsValid();
|
|
|
|
if ( attached && tr.Entity is not Prop )
|
|
return;
|
|
|
|
CreateHitEffects( tr.EndPos );
|
|
|
|
if ( tr.Entity is ThrusterEntity )
|
|
{
|
|
// TODO: Set properties
|
|
|
|
return;
|
|
}
|
|
|
|
var ent = new ThrusterEntity
|
|
{
|
|
Position = tr.EndPos,
|
|
Rotation = Rotation.LookAt( tr.Normal, dir ) * Rotation.From( new Angles( 90, 0, 0 ) ),
|
|
PhysicsEnabled = !attached,
|
|
EnableSolidCollisions = !attached,
|
|
TargetBody = attached ? tr.Body : null,
|
|
Massless = massless
|
|
};
|
|
|
|
if ( attached )
|
|
{
|
|
ent.SetParent( tr.Body.Entity, tr.Body.PhysicsGroup.GetBodyBoneName( tr.Body ) );
|
|
}
|
|
|
|
ent.SetModel( "models/thruster/thrusterprojector.vmdl" );
|
|
}
|
|
}
|
|
}
|
|
}
|