//********************************** Banshee Engine (www.banshee3d.com) **************************************************//
//**************** Copyright (c) 2016 Marko Pintera (marko.pintera@gmail.com). All rights reserved. **********************//
using bs;
namespace bs.Editor
{
/** @addtogroup Inspector
* @{
*/
///
/// Displays GUI for a serializable property containing an integer value with a range.
///
public class InspectableRangedInt : InspectableRangedField
{
private GUISliderField guiIntField;
private InspectableState state;
///
/// Creates a new inspectable float GUI for the specified property with a range.
///
/// Context shared by all inspectable fields created by the same parent.
/// Name of the property, or some other value to set as the title.
/// Full path to this property (includes name of this property and all parent properties).
/// Determines how deep within the inspector nesting hierarchy is this field. Some fields may
/// contain other fields, in which case you should increase this value by one.
/// Parent layout that all the field elements will be added to.
/// Serializable property referencing the field whose contents to display.
/// Information about the range of the field.
public InspectableRangedInt(InspectableContext context, string title, string path, int depth, InspectableFieldLayout layout,
SerializableProperty property, InspectableFieldStyleInfo style)
: base(context, title, path, SerializableProperty.FieldType.Int, depth, layout, property, style)
{
}
///
protected internal override void Initialize(int layoutIndex)
{
if (property != null)
{
guiIntField = new GUISliderField(style.RangeStyle.Min, style.RangeStyle.Max, new GUIContent(title));
if (style != null && style.StepStyle != null && style.StepStyle.Step != 0)
guiIntField.Step = style.StepStyle.Step;
guiIntField.OnChanged += OnFieldValueChanged;
guiIntField.OnFocusLost += OnFieldValueConfirm;
guiIntField.OnFocusGained += StartUndo;
layout.AddElement(layoutIndex, guiIntField);
}
}
///
public override InspectableState Refresh(int layoutIndex)
{
if (guiIntField != null && !guiIntField.HasInputFocus)
guiIntField.Value = property.GetValue();
InspectableState oldState = state;
if (state.HasFlag(InspectableState.Modified))
state = InspectableState.NotModified;
return oldState;
}
///
public override void SetHasFocus(string subFieldName = null)
{
guiIntField.Focus = true;
}
///
/// Triggered when the user inputs a new integer value.
///
/// New value of the float field.
private void OnFieldValueChanged(float newValue)
{
property.SetValue((int)newValue);
state |= InspectableState.ModifyInProgress;
}
///
/// Triggered when the user confirms input in the int field.
///
private void OnFieldValueConfirm()
{
if (state.HasFlag(InspectableState.ModifyInProgress))
state |= InspectableState.Modified;
EndUndo();
}
}
/** @} */
}