SamsonGame/Assets/Sources/Feel/MMTools/Tools/MMDebugMenu/Scripts/UIClasses/MMDebugMenuRadioButton.cs

64 lines
1.7 KiB
C#
Raw Normal View History

2021-12-29 20:50:11 +03:00
using UnityEngine;
using System.Collections;
using System;
using MoreMountains.Tools;
using UnityEngine.UI;
using System.Collections.Generic;
namespace MoreMountains.Tools
{
/// <summary>
/// A class to handle radio buttons.
/// To group them, just use the same RadioButtonGroupName string for all radio buttons in the group
/// </summary>
public class MMDebugMenuRadioButton : MMDebugMenuSpriteReplace
{
/// The name of the radio button group. Use the same one for each buttons in the group
public string RadioButtonGroupName;
protected List<MMDebugMenuRadioButton> _group;
/// <summary>
/// On Init, we grab all buttons from the group
/// </summary>
public override void Initialization()
{
base.Initialization ();
FindAllRadioButtonsFromTheSameGroup ();
}
/// <summary>
/// Finds all radio buttons from the same group.
/// </summary>
protected virtual void FindAllRadioButtonsFromTheSameGroup ()
{
_group = new List<MMDebugMenuRadioButton> ();
MMDebugMenuRadioButton[] radioButtons = FindObjectsOfType(typeof(MMDebugMenuRadioButton)) as MMDebugMenuRadioButton[];
foreach (MMDebugMenuRadioButton radioButton in radioButtons)
{
if ((radioButton.RadioButtonGroupName == RadioButtonGroupName)
&& (radioButton != this))
{
_group.Add (radioButton);
}
}
}
/// <summary>
/// When turning the button on, we turn off all other buttons in the group
/// </summary>
protected override void SpriteOn()
{
base.SpriteOn ();
if (_group.Count >= 1)
{
foreach (MMDebugMenuRadioButton radioButton in _group)
{
radioButton.SwitchToOffSprite ();
}
}
}
}
}