You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CrowdControl/Assets/Feel/NiceVibrations/Demo/_Common/Scripts/UI/MMSwitch.cs

123 lines
3.8 KiB
C#

2 months ago
// Copyright (c) Meta Platforms, Inc. and affiliates.
using UnityEngine;
using System.Collections;
using System;
using UnityEngine.UI;
using System.Collections.Generic;
using UnityEngine.Events;
namespace Lofelt.NiceVibrations
{
/// <summary>
/// A component to handle switches
/// </summary>
public class MMSwitch : MMTouchButton
{
[Header("Switch")]
/// a SpriteReplace to represent the switch knob
public Image SwitchKnob;
/// the possible states of the switch
public enum SwitchStates { Off, On }
/// the current state of the switch
public SwitchStates CurrentSwitchState { get; set; }
[Header("Knob")]
/// the state the switch should start in
public SwitchStates InitialState = SwitchStates.Off;
public Transform OffPosition;
public Transform OnPosition;
public AnimationCurve KnobMovementCurve = AnimationCurve.Linear(0f, 0f, 1f, 1f);
public float KnobMovementDuration = 0.2f;
[Header("Binding")]
/// the methods to call when the switch is turned on
public UnityEvent SwitchOn;
/// the methods to call when the switch is turned off
public UnityEvent SwitchOff;
protected float _knobMovementStartedAt = -50f;
/// <summary>
/// On init, we set our current switch state
/// </summary>
protected override void Initialization()
{
base.Initialization();
CurrentSwitchState = InitialState;
InitializeState();
}
public virtual void InitializeState()
{
if (CurrentSwitchState == SwitchStates.Off)
{
if (_animator != null)
{
_animator.Play("RollLeft");
}
SwitchKnob.transform.position = OffPosition.transform.position;
}
else
{
if (_animator != null)
{
_animator.Play("RollRight");
}
SwitchKnob.transform.position = OnPosition.transform.position;
}
}
protected override void Update()
{
base.Update();
if (Time.time - _knobMovementStartedAt < KnobMovementDuration)
{
float time = Remap(Time.time - _knobMovementStartedAt, 0f, KnobMovementDuration, 0f, 1f);
float value = KnobMovementCurve.Evaluate(time);
if (CurrentSwitchState == SwitchStates.Off)
{
SwitchKnob.transform.position = Vector3.Lerp(OnPosition.transform.position, OffPosition.transform.position, value);
}
else
{
SwitchKnob.transform.position = Vector3.Lerp(OffPosition.transform.position, OnPosition.transform.position, value);
}
}
}
/// <summary>
/// Use this method to go from one state to the other
/// </summary>
public virtual void SwitchState()
{
_knobMovementStartedAt = Time.time;
if (CurrentSwitchState == SwitchStates.Off)
{
CurrentSwitchState = SwitchStates.On;
if (_animator != null)
{
_animator?.SetTrigger("Right");
}
if (SwitchOn != null)
{
SwitchOn.Invoke();
}
}
else
{
CurrentSwitchState = SwitchStates.Off;
if (_animator != null)
{
_animator?.SetTrigger("Left");
}
if (SwitchOff != null)
{
SwitchOff.Invoke();
}
}
}
}
}