12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- using Assets.StreetLight.Scripts;
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Collections.Specialized;
- using System.Drawing;
- using System.Linq;
- using System.Net;
- using TMPro;
- using Unity.VisualScripting;
- using UnityEditor.VersionControl;
- using UnityEngine;
- using UnityEngine.Timeline;
- public class CalibrationMarkerBehavior : MonoBehaviour
- {
- Vector3[] frustumCorners;
- List<Vector3> targetPositions;
- PersonManager PersonManager => personManagerLazy.Value;
- Lazy<PersonManager> personManagerLazy;
- public event EventHandler PathFinished;
- private void Awake()
- {
- personManagerLazy = new Lazy<PersonManager>(FindObjectOfType<PersonManager>);
- }
- // Start is called before the first frame update
- void Start()
- {
- var camera = Camera.main;
- frustumCorners = new Vector3[4];
- camera.CalculateFrustumCorners(camera.rect, camera.transform.position.y, camera.stereoActiveEye, frustumCorners);
- targetPositions = new List<Vector3>()
- {
- new Vector3(frustumCorners[0].x, 0, frustumCorners[0].y),
- new Vector3(frustumCorners[1].x, 0, frustumCorners[1].y),
- new Vector3(frustumCorners[2].x, 0, frustumCorners[2].y),
- new Vector3(frustumCorners[3].x, 0, frustumCorners[3].y),
- };
- int count = 1;
- const int increment = 2;
- while (count < 4)
- {
- targetPositions.Add(new Vector3(frustumCorners[0].x + count * increment, 0, frustumCorners[0].y + (count - 1) * increment));
- targetPositions.Add(new Vector3(frustumCorners[1].x + count * increment, 0, frustumCorners[1].y - count * increment));
- targetPositions.Add(new Vector3(frustumCorners[2].x - count * increment, 0, frustumCorners[2].y - count * increment));
- targetPositions.Add(new Vector3(frustumCorners[3].x - count * increment, 0, frustumCorners[3].y + count * increment));
- count += 1;
- }
- currentTarget = GameObject.Find("CalibrationMarker").transform.position;
- targetPositions.Add(currentTarget);
- enabled = false;
- PersonManager.DetectionReady += PersonManager_DetectionReady;
- }
- private void PersonManager_DetectionReady(object sender, EventArgs e)
- {
- enabled = true;
- }
- int targetIndex = -1;
- Vector3 currentTarget = Vector3.zero;
- Vector3 normalizedTranslationVector = Vector3.zero;
- // Update is called once per frame
- void Update()
- {
- var marker = GameObject.Find("CalibrationMarker");
- const float speed = 2.5f;
- if (Vector3.Distance(marker.transform.position, currentTarget) >= 0.05f)
- {
- marker.transform.position += Vector3.ClampMagnitude(speed * Time.deltaTime * normalizedTranslationVector, (currentTarget - marker.transform.position).magnitude);
- }
- else if (targetIndex < targetPositions.Count - 1)
- {
- targetIndex++;
- currentTarget = targetPositions[targetIndex];
- normalizedTranslationVector = (currentTarget - marker.transform.position).normalized;
- }
- else
- {
- PathFinished?.Invoke(this, EventArgs.Empty);
- }
- UnityEngine.Color color = UnityEngine.Color.Lerp(UnityEngine.Color.green, UnityEngine.Color.red, Time.deltaTime / 0.2f);
- Debug.Log(string.Format("<color=#{0:X2}{1:X2}{2:X2}>{3}</color>", (byte)(color.r * 255f), (byte)(color.g * 255f), (byte)(color.b * 255f), $"deltaTime: {Time.deltaTime}"));
- }
- }
|