| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using BansheeEngine;
- namespace BansheeEditor
- {
- /** @addtogroup Inspector
- * @{
- */
- /// <summary>
- /// Displays GUI for a serializable property containing a dictionary. Dictionary contents are displayed as rows of
- /// entries that can be shown, hidden or manipulated.
- /// </summary>
- public class InspectableDictionary : InspectableField
- {
- private InspectableDictionaryGUI dictionaryGUIField;
- /// <summary>
- /// Creates a new inspectable dictionary GUI for the specified property.
- /// </summary>
- /// <param name="parent">Parent Inspector this field belongs to.</param>
- /// <param name="title">Name of the property, or some other value to set as the title.</param>
- /// <param name="path">Full path to this property (includes name of this property and all parent properties).</param>
- /// <param name="depth">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.</param>
- /// <param name="layout">Parent layout that all the field elements will be added to.</param>
- /// <param name="property">Serializable property referencing the dictionary whose contents to display.</param>
- public InspectableDictionary(Inspector parent, string title, string path, int depth, InspectableFieldLayout layout,
- SerializableProperty property)
- : base(parent, title, path, SerializableProperty.FieldType.Dictionary, depth, layout, property)
- {
- }
- /// <inheritdoc/>
- public override GUILayoutX GetTitleLayout()
- {
- return dictionaryGUIField.GetTitleLayout();
- }
- /// <inheritdoc/>
- public override InspectableState Refresh(int layoutIndex)
- {
- return dictionaryGUIField.Refresh();
- }
- /// <inheritdoc/>
- protected internal override void Initialize(int layoutIndex)
- {
- GUILayout dictionaryLayout = layout.AddLayoutY(layoutIndex);
- dictionaryGUIField = InspectableDictionaryGUI.Create(parent, title, path, property, dictionaryLayout, depth);
- dictionaryGUIField.IsExpanded = parent.Persistent.GetBool(path + "_Expanded");
- dictionaryGUIField.OnExpand += x => parent.Persistent.SetBool(path + "_Expanded", x);
- }
- /// <summary>
- /// Creates GUI elements that allow viewing and manipulation of a <see cref="SerializableDictionary"/> referenced
- /// by a serializable property.
- /// </summary>
- public class InspectableDictionaryGUI : GUIDictionaryFieldBase
- {
- private SerializableProperty property;
- private IDictionary dictionary;
- private int numElements;
- private Inspector parent;
- private string path;
- private List<SerializableProperty> orderedKeys = new List<SerializableProperty>();
- /// <summary>
- /// Returns the parent inspector the array GUI belongs to.
- /// </summary>
- public Inspector Inspector
- {
- get { return parent; }
- }
- /// <summary>
- /// Returns a property path to the array field (name of the array field and all parent object fields).
- /// </summary>
- public string Path
- {
- get { return path; }
- }
- /// <summary>
- /// Constructs a new dictionary GUI.
- /// </summary>
- /// <param name="parent">Parent Inspector this field belongs to.</param>
- /// <param name="title">Label to display on the list GUI title.</param>
- /// <param name="path">Full path to this property (includes name of this property and all parent properties).
- /// </param>
- /// <param name="property">Serializable property referencing a dictionary</param>
- /// <param name="layout">Layout to which to append the list GUI elements to.</param>
- /// <param name="depth">Determines at which depth to render the background. Useful when you have multiple
- /// nested containers whose backgrounds are overlaping. Also determines background style,
- /// depths divisible by two will use an alternate style.</param>
- protected InspectableDictionaryGUI(Inspector parent, LocString title, string path, SerializableProperty property,
- GUILayout layout, int depth = 0)
- : base(title, layout, depth)
- {
- this.property = property;
- this.parent = parent;
- this.path = path;
- dictionary = property.GetValue<IDictionary>();
- if (dictionary != null)
- numElements = dictionary.Count;
- UpdateKeys();
- }
- /// <summary>
- /// Builds the inspectable dictionary GUI elements. Must be called at least once in order for the contents to
- /// be populated.
- /// </summary>
- /// <param name="parent">Parent Inspector this field belongs to.</param>
- /// <param name="title">Label to display on the list GUI title.</param>
- /// <param name="path">Full path to this property (includes name of this property and all parent properties).
- /// </param>
- /// <param name="property">Serializable property referencing a dictionary</param>
- /// <param name="layout">Layout to which to append the list GUI elements to.</param>
- /// <param name="depth">Determines at which depth to render the background. Useful when you have multiple
- /// nested containers whose backgrounds are overlaping. Also determines background style,
- /// depths divisible by two will use an alternate style.</param>
- public static InspectableDictionaryGUI Create(Inspector parent, LocString title, string path,
- SerializableProperty property, GUILayout layout, int depth = 0)
- {
- InspectableDictionaryGUI guiDictionary = new InspectableDictionaryGUI(parent, title, path, property,
- layout, depth);
- guiDictionary.BuildGUI();
- return guiDictionary;
- }
- /// <inheritdoc/>
- public override InspectableState Refresh()
- {
- // Check if any modifications to the array were made outside the inspector
- IDictionary newDict = property.GetValue<IDictionary>();
- if (dictionary == null && newDict != null)
- {
- dictionary = newDict;
- numElements = dictionary.Count;
- BuildGUI();
- }
- else if (newDict == null && dictionary != null)
- {
- dictionary = null;
- numElements = 0;
- BuildGUI();
- }
- else
- {
- if (dictionary != null)
- {
- if (numElements != dictionary.Count)
- {
- numElements = dictionary.Count;
- BuildGUI();
- }
- }
- }
- return base.Refresh();
- }
- /// <summary>
- /// Updates the ordered set of keys used for mapping sequential indexes to keys. Should be called whenever a
- /// dictionary key changes.
- /// </summary>
- private void UpdateKeys()
- {
- orderedKeys.Clear();
- if (dictionary != null)
- {
- SerializableDictionary dict = property.GetDictionary();
- foreach (var key in dictionary.Keys)
- orderedKeys.Add(dict.GetProperty(key).Key);
- }
- }
- /// <inheritdoc/>
- protected override GUIDictionaryFieldRow CreateRow()
- {
- return new InspectableDictionaryGUIRow();
- }
- /// <inheritdoc/>
- protected override int GetNumRows()
- {
- if (dictionary != null)
- return dictionary.Count;
- return 0;
- }
- /// <inheritdoc/>
- protected override bool IsNull()
- {
- return dictionary == null;
- }
- /// <inheritdoc/>
- protected internal override object GetKey(int rowIdx)
- {
- return orderedKeys[rowIdx];
- }
- /// <inheritdoc/>
- protected internal override object GetValue(object key)
- {
- SerializableProperty keyProperty = (SerializableProperty)key;
- SerializableDictionary dictionary = property.GetDictionary();
- return dictionary.GetProperty(keyProperty.GetValue<object>()).Value;
- }
- /// <inheritdoc/>
- protected internal override void SetValue(object key, object value)
- {
- // Setting the value should be done through the property
- throw new InvalidOperationException();
- }
- /// <inheritdoc/>
- protected internal override bool Contains(object key)
- {
- SerializableProperty keyProperty = (SerializableProperty)key;
- return dictionary.Contains(keyProperty.GetValue<object>()); ;
- }
- /// <inheritdoc/>
- protected internal override void EditEntry(object oldKey, object newKey, object value)
- {
- SerializableProperty oldKeyProperty = (SerializableProperty)oldKey;
- SerializableProperty newKeyProperty = (SerializableProperty)newKey;
- SerializableProperty valueProperty = (SerializableProperty)value;
- dictionary.Remove(oldKeyProperty.GetValue<object>());
- dictionary.Add(newKeyProperty.GetValue<object>(), valueProperty.GetValue<object>());
- numElements = dictionary.Count;
- UpdateKeys();
- }
- /// <inheritdoc/>
- protected internal override void AddEntry(object key, object value)
- {
- SerializableProperty keyProperty = (SerializableProperty)key;
- SerializableProperty valueProperty = (SerializableProperty)value;
- dictionary.Add(keyProperty.GetValue<object>(), valueProperty.GetValue<object>());
- numElements = dictionary.Count;
- UpdateKeys();
- }
- /// <inheritdoc/>
- protected internal override void RemoveEntry(object key)
- {
- SerializableProperty keyProperty = (SerializableProperty)key;
- dictionary.Remove(keyProperty.GetValue<object>());
- numElements = dictionary.Count;
- UpdateKeys();
- }
- /// <inheritdoc/>
- protected internal override object CreateKey()
- {
- SerializableDictionary dictionary = property.GetDictionary();
- DictionaryDataWrapper data = new DictionaryDataWrapper();
- data.value = SerializableUtility.Create(dictionary.KeyType);
- SerializableProperty keyProperty = new SerializableProperty(dictionary.KeyPropertyType,
- dictionary.KeyType,
- () => data.value, (x) => data.value = x);
- return keyProperty;
- }
- /// <inheritdoc/>
- protected internal override object CreateValue()
- {
- SerializableDictionary dictionary = property.GetDictionary();
- DictionaryDataWrapper data = new DictionaryDataWrapper();
- data.value = SerializableUtility.Create(dictionary.ValueType);
- SerializableProperty valueProperty = new SerializableProperty(dictionary.ValuePropertyType,
- dictionary.ValueType,
- () => data.value, (x) => data.value = x);
- return valueProperty;
- }
- /// <inheritdoc/>
- protected internal override KeyValuePair<object, object> CloneElement(int index)
- {
- SerializableProperty keyProperty = (SerializableProperty)GetKey(index);
- SerializableProperty valueProperty = (SerializableProperty)GetValue(keyProperty);
- SerializableDictionary dictionary = property.GetDictionary();
- DictionaryDataWrapper keyData = new DictionaryDataWrapper();
- keyData.value = SerializableUtility.Clone(keyProperty.GetValue<object>());
- SerializableProperty clonedKeyProperty = new SerializableProperty(dictionary.KeyPropertyType,
- dictionary.KeyType,
- () => keyData.value, (x) => keyData.value = x);
- DictionaryDataWrapper valueData = new DictionaryDataWrapper();
- valueData.value = SerializableUtility.Clone(valueProperty.GetValue<object>());
- SerializableProperty clonedValueProperty = new SerializableProperty(dictionary.ValuePropertyType,
- dictionary.ValueType,
- () => valueData.value, (x) => valueData.value = x);
- return new KeyValuePair<object,object>(clonedKeyProperty, clonedValueProperty);
- }
- /// <inheritdoc/>
- protected override void CreateDictionary()
- {
- dictionary = property.CreateDictionaryInstance();
- numElements = dictionary.Count;
- property.SetValue(dictionary);
- UpdateKeys();
- }
- /// <inheritdoc/>
- protected override void DeleteDictionary()
- {
- dictionary = null;
- numElements = 0;
- property.SetValue<object>(null);
- UpdateKeys();
- }
- /// <summary>
- /// Wraps a dictionary key or a value.
- /// </summary>
- class DictionaryDataWrapper
- {
- public object value;
- }
- }
- /// <summary>
- /// Contains GUI elements for a single key/value pair in the dictionary.
- /// </summary>
- private class InspectableDictionaryGUIRow : GUIDictionaryFieldRow
- {
- private GUILayoutY keyLayout;
- private InspectableField fieldKey;
- private InspectableField fieldValue;
- /// <inheritdoc/>
- protected override GUILayoutX CreateKeyGUI(GUILayoutY layout)
- {
- keyLayout = layout;
- InspectableDictionaryGUI dictParent = (InspectableDictionaryGUI)parent;
- SerializableProperty property = GetKey<SerializableProperty>();
- string entryPath = dictParent.Path + "Key[" + RowIdx + "]";
- fieldKey = CreateInspectable(dictParent.Inspector, "Key", entryPath, 0, Depth + 1,
- new InspectableFieldLayout(layout), property);
- return fieldKey.GetTitleLayout();
- }
- /// <inheritdoc/>
- protected override void CreateValueGUI(GUILayoutY layout)
- {
- InspectableDictionaryGUI dictParent = (InspectableDictionaryGUI)parent;
- SerializableProperty property = GetValue<SerializableProperty>();
- string entryPath = dictParent.Path + "Value[" + RowIdx + "]";
- fieldValue = CreateInspectable(dictParent.Inspector, "Value", entryPath, 0, Depth + 1,
- new InspectableFieldLayout(layout), property);
- }
- /// <inheritdoc/>
- protected override void OnEditModeChanged(bool editMode)
- {
- keyLayout.Disabled = !editMode;
- }
- /// <inheritdoc/>
- protected internal override InspectableState Refresh()
- {
- fieldKey.Property = GetKey<SerializableProperty>();
- fieldValue.Property = GetValue<SerializableProperty>();
- return fieldValue.Refresh(0);
- }
- }
- }
- /** @} */
- }
|