//********************************** Banshee Engine (www.banshee3d.com) **************************************************//
//**************** Copyright (c) 2018 Marko Pintera (marko.pintera@gmail.com). All rights reserved. **********************//
using bs;
namespace bs.Editor
{
/** @addtogroup Inspector
* @{
*/
///
/// Displays GUI for a serializable property containing a quaternion.
///
public class InspectableQuaternion : InspectableField
{
private GUIVector4Field guiField;
private InspectableState state;
///
/// Creates a new inspectable quaternion GUI for the specified property.
///
/// 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.
public InspectableQuaternion(InspectableContext context, string title, string path, int depth, InspectableFieldLayout layout,
SerializableProperty property)
: base(context, title, path, SerializableProperty.FieldType.Quaternion, depth, layout, property)
{
}
///
protected internal override void Initialize(int layoutIndex)
{
if (property.Type == SerializableProperty.FieldType.Quaternion)
{
guiField = new GUIVector4Field(new GUIContent(title));
guiField.OnValueChanged += OnFieldValueChanged;
guiField.OnConfirm += x => OnFieldValueConfirm();
guiField.OnFocusLost += OnFieldValueConfirm;
guiField.OnFocusGained += StartUndo;
layout.AddElement(layoutIndex, guiField);
}
}
///
public override InspectableState Refresh(int layoutIndex)
{
if (guiField != null && !guiField.HasInputFocus)
{
Quaternion quaternion = property.GetValue();
guiField.Value = new Vector4(quaternion.x, quaternion.y, quaternion.z, quaternion.w);
}
InspectableState oldState = state;
if (state.HasFlag(InspectableState.Modified))
state = InspectableState.NotModified;
return oldState;
}
///
public override void SetHasFocus(string subFieldName = null)
{
guiField.Focus = true;
}
///
/// Triggered when the user changes the field value.
///
/// New value of the 3D vector field.
private void OnFieldValueChanged(Vector4 newValue)
{
StartUndo();
Quaternion quaternion = new Quaternion(newValue.x, newValue.y, newValue.y, newValue.w);
property.SetValue(quaternion);
state |= InspectableState.ModifyInProgress;
EndUndo();
}
///
/// Triggered when the user confirms input in the 3D vector field.
///
private void OnFieldValueConfirm()
{
if (state.HasFlag(InspectableState.ModifyInProgress))
state |= InspectableState.Modified;
}
}
/** @} */
}