using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using Starpelly; using DG.Tweening; namespace RhythmHeavenMania.Editor { public class TimelineEventObj : MonoBehaviour { private float startPosX; private float startPosY; public bool isDragging; private Vector3 lastPos; [Header("Components")] [SerializeField] private RectTransform PosPreview; [SerializeField] private RectTransform PosPreviewRef; [SerializeField] public Image Icon; [Header("Properties")] private int enemyIndex; public float length; private bool eligibleToMove = false; private void Update() { if (Conductor.instance.NotStopped()) { Cancel(); return; } enemyIndex = GameManager.instance.Beatmap.entities.FindIndex(a => a.eventObj == this); if (isDragging == true) { Vector3 mousePos; mousePos = Input.mousePosition; mousePos = Camera.main.ScreenToWorldPoint(mousePos); this.transform.position = new Vector3(mousePos.x - startPosX, mousePos.y - startPosY - 0.40f, 0); this.transform.localPosition = new Vector3(Mathp.Round2Nearest(this.transform.localPosition.x, 0.25f), Mathp.Round2Nearest(this.transform.localPosition.y, 51.34f)); if (lastPos != transform.localPosition) OnMove(); lastPos = this.transform.localPosition; } if (Input.GetMouseButtonUp(0)) OnUp(); } private void OnMove() { if (GameManager.instance.Beatmap.entities.FindAll(c => c.beat == this.transform.localPosition.x && c.track == (int)(this.transform.localPosition.y / 51.34f * -1)).Count > 0) { // PosPreview.GetComponent().color = Color.red; eligibleToMove = false; } else { // PosPreview.GetComponent().color = Color.yellow; eligibleToMove = true; } } private void OnComplete() { var entity = GameManager.instance.Beatmap.entities[enemyIndex]; entity.beat = this.transform.localPosition.x; GameManager.instance.SortEventsList(); entity.track = (int)(this.transform.localPosition.y / 51.34f) * -1; // this.transform.localPosition = this.transform.localPosition; // transform.DOLocalMove(PosPreview.transform.localPosition, 0.15f).SetEase(Ease.OutExpo); } private void Cancel() { if (PosPreview) Destroy(PosPreview.gameObject); eligibleToMove = false; } public void OnDown() { Vector3 mousePos; /*PosPreview = Instantiate(PosPreviewRef, PosPreviewRef.transform.parent); PosPreview.sizeDelta = new Vector2(100 * transform.GetComponent().sizeDelta.x, transform.GetComponent().sizeDelta.y); PosPreview.transform.localPosition = this.transform.localPosition; PosPreview.GetComponent().enabled = true; PosPreview.GetComponent().color = Color.yellow;*/ mousePos = Input.mousePosition; mousePos = Camera.main.ScreenToWorldPoint(mousePos); startPosX = mousePos.x - this.transform.position.x; startPosY = mousePos.y - this.transform.position.y; isDragging = true; } public void OnUp() { isDragging = false; if (eligibleToMove) OnComplete(); Cancel(); } } }