277 lines
7.6 KiB
C#
277 lines
7.6 KiB
C#
using SHADE;
|
|
using SHADE_Scripting;
|
|
using SHADE_Scripting.Audio;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using static PlayerController;
|
|
using static Item;
|
|
|
|
public class PickAndThrow : Script
|
|
{
|
|
public Vector3 throwForce = new Vector3(10.0f, 8.0f, 10.0f);
|
|
public Vector3 cameraArmOffSet = new Vector3(0.0f, 0.25f, 0.0f);
|
|
public GameObject item { get; set; }
|
|
public float delayTimer = 1.0f;
|
|
public float aimingLength = 1.5f;
|
|
|
|
private float timer;
|
|
private PlayerController pc;
|
|
private Transform itemTransform;
|
|
private RigidBody itemRidigBody;
|
|
private Collider itemCollider;
|
|
private Item itemScript;
|
|
private Transform raccoonHoldLocation;
|
|
public ThirdPersonCamera tpc { get; set; }
|
|
private float lastXDir;
|
|
private float lastZDir;
|
|
private bool inRange = false;
|
|
public bool throwItem = false;
|
|
public Vector3 prevTargetOffSet { get; set; }
|
|
|
|
[Tooltip("Lenght of ray")]
|
|
public float rayDistance = 1;
|
|
|
|
[Tooltip("Height of ray")]
|
|
public float rayHeight = 0.1f;
|
|
|
|
protected override void awake()
|
|
{
|
|
pc = GetScript<PlayerController>();
|
|
if(!pc)
|
|
Debug.LogError("PLAYER CONTROLLER EMPTY");
|
|
|
|
raccoonHoldLocation = GetComponentInChildren<Transform>();
|
|
if (!raccoonHoldLocation)
|
|
Debug.LogError("CHILD EMPTY");
|
|
|
|
tpc = GetScriptInChildren<ThirdPersonCamera>();
|
|
if(!tpc)
|
|
Debug.LogError("TPC EMPTY");
|
|
|
|
AudioHandler.audioClipHandlers["SFXThrow"] = Audio.CreateAudioClip("event:/Raccoon/raccoon_throw");
|
|
|
|
timer = delayTimer;
|
|
}
|
|
protected override void update()
|
|
{
|
|
if (GameManager.Instance.GamePause || !GameManager.Instance.stealFoodPopUpDone)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (timer <= delayTimer)
|
|
timer += Time.DeltaTimeF;
|
|
|
|
CalculateDir();
|
|
CastRay();
|
|
|
|
if (pc && itemRidigBody && itemTransform && itemCollider)
|
|
{
|
|
if (pc.holdItem)
|
|
{
|
|
itemTransform.LocalPosition = raccoonHoldLocation.GlobalPosition;
|
|
itemTransform.LocalRotation = pc.tranform.LocalRotation;
|
|
itemRidigBody.LinearVelocity = Vector3.Zero;
|
|
itemRidigBody.AngularVelocity = Vector3.Zero;
|
|
|
|
if (Input.GetMouseButtonDown(Input.MouseCode.LeftButton))
|
|
{
|
|
pc.isAiming = true;
|
|
pc.camArm.ArmLength = aimingLength;
|
|
prevTargetOffSet = pc.camArm.TargetOffset;
|
|
pc.camArm.TargetOffset = cameraArmOffSet;
|
|
pc.cam.FOV = Settings.cameraFOV + 5;
|
|
}
|
|
|
|
if (Input.GetMouseButtonUp(Input.MouseCode.LeftButton) && pc.isAiming)
|
|
{
|
|
AudioHandler.audioClipHandlers["SFXThrow"].Play();
|
|
itemRidigBody.IsGravityEnabled = true;
|
|
itemCollider.GetCollisionShape(0).IsTrigger = false;
|
|
pc.isAiming = false;
|
|
pc.camArm.TargetOffset = prevTargetOffSet;
|
|
pc.cam.FOV = Settings.cameraFOV;
|
|
if (tpc)
|
|
pc.camArm.ArmLength = tpc.armLength;
|
|
pc.holdItem = false;
|
|
inRange = false;
|
|
throwItem = true;
|
|
timer = 0.0f;
|
|
}
|
|
|
|
if (Input.GetMouseButtonDown(Input.MouseCode.RightButton) && !pc.isAiming)
|
|
{
|
|
pc.holdItem = false;
|
|
inRange = false;
|
|
itemRidigBody.IsGravityEnabled = true;
|
|
itemCollider.GetCollisionShape(0).IsTrigger = false;
|
|
ResetItemObject();
|
|
}
|
|
|
|
if (Input.GetMouseButtonDown(Input.MouseCode.RightButton) && pc.isAiming)
|
|
{
|
|
pc.isAiming = false;
|
|
pc.cam.FOV = Settings.cameraFOV;
|
|
pc.camArm.TargetOffset = prevTargetOffSet;
|
|
if (tpc)
|
|
pc.camArm.ArmLength = tpc.armLength;
|
|
}
|
|
|
|
}
|
|
else if (!pc.holdItem)
|
|
{
|
|
itemRidigBody.IsGravityEnabled = true;
|
|
itemCollider.GetCollisionShape(0).IsTrigger = false;
|
|
}
|
|
}
|
|
|
|
if (timer > delayTimer && pc && !pc.holdItem && inRange && Input.GetMouseButtonDown(Input.MouseCode.LeftButton))
|
|
{
|
|
if (pc.currentState == RaccoonStates.WALKING || pc.currentState == RaccoonStates.IDLE)
|
|
{
|
|
pc.holdItem = true;
|
|
RetrieveItemComponets();
|
|
}
|
|
}
|
|
}
|
|
|
|
protected override void fixedUpdate()
|
|
{
|
|
if (GameManager.Instance.GamePause || !GameManager.Instance.stealFoodPopUpDone)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (throwItem && itemRidigBody && pc)
|
|
{
|
|
if (itemScript)
|
|
{
|
|
Vector3 vec = new Vector3(throwForce.x * lastXDir, throwForce.y + (throwForce.y * GetPitchRatioRange()), throwForce.z * lastZDir);
|
|
if (itemScript.currCategory == ItemCategory.LIGHT)
|
|
itemRidigBody.AddForce(vec * 0.2f);
|
|
if (itemScript.currCategory == ItemCategory.MEDIUM)
|
|
itemRidigBody.AddForce(vec * 0.75f);
|
|
if (itemScript.currCategory == ItemCategory.HEAVY)
|
|
itemRidigBody.AddForce(vec);
|
|
}
|
|
itemRidigBody.LinearVelocity += pc.rb.LinearVelocity;
|
|
throwItem = false;
|
|
ResetItemObject();
|
|
}
|
|
}
|
|
|
|
public void ResetItemObject()
|
|
{
|
|
itemRidigBody = null;
|
|
itemTransform = null;
|
|
itemCollider = null;
|
|
itemScript = null;
|
|
item = new GameObject();
|
|
}
|
|
|
|
private void RetrieveItemComponets()
|
|
{
|
|
//get the transform of the given item
|
|
if (item.GetScript<Item>() && !itemTransform && !itemRidigBody)
|
|
{
|
|
itemRidigBody = item.GetComponent<RigidBody>();
|
|
if (!itemRidigBody)
|
|
Debug.Log("Item rb EMPTY");
|
|
else
|
|
{
|
|
itemRidigBody.IsGravityEnabled = false;
|
|
}
|
|
|
|
itemTransform = item.GetComponent<Transform>();
|
|
if (!itemTransform)
|
|
Debug.Log("Item transform EMPTY");
|
|
else
|
|
{
|
|
itemTransform.LocalEulerAngles = Vector3.Zero;
|
|
}
|
|
|
|
itemCollider = item.GetComponent<Collider>();
|
|
if (!itemCollider)
|
|
Debug.Log("Item collider EMPTY");
|
|
else
|
|
{
|
|
itemCollider.GetCollisionShape(0).IsTrigger = true;
|
|
}
|
|
|
|
itemScript = item.GetScript<Item>();
|
|
if(!itemScript)
|
|
Debug.Log("Item script EMPTY");
|
|
}
|
|
}
|
|
|
|
private void CalculateDir()
|
|
{
|
|
if (pc && pc.cam)
|
|
{
|
|
Vector3 camerAixs = pc.cam.GetForward();
|
|
camerAixs.y = 0;
|
|
camerAixs.Normalise();
|
|
lastXDir = camerAixs.x;
|
|
lastZDir = camerAixs.z;
|
|
}
|
|
}
|
|
|
|
private void CastRay()
|
|
{
|
|
if (pc != null)
|
|
{
|
|
Vector3 dirNor = pc.tranform.Forward;
|
|
Vector3 playerRayPos = pc.tranform.GlobalPosition;
|
|
playerRayPos.y += rayHeight;
|
|
dirNor.Normalise();
|
|
List<RaycastHit> rayList1 = Physics.Raycast(new Ray(playerRayPos, Vector3.RotateY(dirNor, SHADE.Math.DegreesToRadians(22.5f))), rayDistance, false, (ushort)65535);
|
|
List<RaycastHit> rayList2 = Physics.Raycast(new Ray(playerRayPos, Vector3.RotateY(dirNor, SHADE.Math.DegreesToRadians(-22.5f))), rayDistance, false, (ushort)65535);
|
|
List<RaycastHit> rayList3 = Physics.Raycast(new Ray(playerRayPos, dirNor), rayDistance * 0.75f, false, (ushort)65535);
|
|
|
|
if (rayList1.Count > 0)
|
|
{
|
|
RaycastHit ray1 = rayList1[0];
|
|
inRange = CheckForItem(ray1);
|
|
return;
|
|
}
|
|
else if (rayList2.Count > 0)
|
|
{
|
|
RaycastHit ray2 = rayList2[0];
|
|
inRange = CheckForItem(ray2);
|
|
return;
|
|
}
|
|
else if (rayList3.Count > 0)
|
|
{
|
|
RaycastHit ray3 = rayList3[0];
|
|
inRange = CheckForItem(ray3);
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
inRange = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
private bool CheckForItem(RaycastHit ray)
|
|
{
|
|
if (ray.Hit)
|
|
{
|
|
if (ray.Other.Value.GetScript<Item>() && !pc.holdItem)
|
|
{
|
|
item = ray.Other.Value;
|
|
return true;
|
|
}
|
|
else
|
|
return false;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
private float GetPitchRatioRange()
|
|
{
|
|
return (pc.camArm.Pitch - tpc.pitchUpperClamp) / (tpc.pitchLowerClamp - tpc.pitchUpperClamp);
|
|
}
|
|
|
|
|
|
} |