/// <summary> /// Get a list of integer fields. /// </summary> /// <param name="data">Current data for this action field.</param> /// <param name="indexShift">Make sure we are using the correct field type.</param> /// <returns>A list of integer fields.</returns> public static List <IntField> GetItemsFromList(IntegerFieldData data, int indexShift = 0) { List <IntField> items = new List <IntField>(); int fieldType = data.fieldType + indexShift; // Local Variable if (fieldType == 1 && data.targetHeroObject != null) { items = data.targetHeroObject.lists.ints.items; } // Property else if (fieldType == 2 && data.targetHeroObject != null) { List <HeroProperties> heroProperties = data.targetHeroObject.propertiesList.properties; if (heroProperties != null && heroProperties.Count > 0) { items = heroProperties[data.propertyID - 1].itemProperties.ints.items; } } // Global Variable else if (fieldType == 3) { items = HeroKitCommon.GetGlobals().globals.ints.items; } return(items); }
/// <summary> /// Get a value from an integer field in a hero object template. /// This is for a field that contains Variable, Property, Global. /// </summary> /// <param name="title">Title for action field.</param> /// <param name="actionParams">Action field parameters.</param> /// <param name="actionField">Action field.</param> /// <param name="heroObject">Hero object that is the target of this action.</param> /// <param name="titleToLeft">Show the title on the left?</param> public static void BuildFieldC(string title, HeroActionParams actionParams, HeroActionField actionField, HeroObject heroObject, bool titleToLeft = false) { IntegerFieldData data = CreateFieldData(title, actionField, actionParams.heroObject); //----------------------------------------- // Display this title above the field //----------------------------------------- if (data.title != "" && !titleToLeft) { SimpleLayout.Label(data.title); } SimpleLayout.BeginHorizontal(); if (data.title != "" && titleToLeft) { SimpleLayout.Label(data.title); } //----------------------------------------- // Get the type of field you want to work with. //----------------------------------------- data.fieldType = new HeroField.ValueTypeFieldB().SetValues(data.fieldType, 0); //----------------------------------------- // Get the type of game object we are working with // Option 1: This game object // Option 2: Another game object in the Game Object list attached to this game object // Option 3: Another game object in the scene //----------------------------------------- data.targetHeroObject = heroObject; //----------------------------------------- // Get the integer list you want to work with. // The integer list is in hero object editor > Variables //----------------------------------------- data = SetPropertyID(data); List <IntField> items = GetItemsFromList(data); data = BuildItemFieldList(data, items); //----------------------------------------- // assign values back to hero object fields //----------------------------------------- actionField.heroObjects[0] = data.targetHeroObject; actionField.ints[0] = data.objectType; actionField.ints[1] = data.objectID; actionField.ints[2] = data.fieldID; actionField.ints[3] = data.fieldType; actionField.ints[4] = data.heroGUID; actionField.ints[6] = data.propertyID; actionField.strings[0] = data.objectName; actionField.ints[5] = data.fieldValue; //----------------------------------------- // Visual stuff //----------------------------------------- SimpleLayout.Space(); SimpleLayout.EndHorizontal(); }
/// <summary> /// Create a drop-down list of integer fields in the action field. /// </summary> /// <param name="data">Current data for this action field.</param> /// <param name="items">A list of integer fields.</param> /// <returns>The data for this action field.</returns> public static IntegerFieldData BuildItemFieldList(IntegerFieldData data, List <IntField> items) { bool drawValues = ActionCommon.InitItemFieldList(ref data, items, "Integers"); if (drawValues) { data.fieldID = HeroField.IntListField.SetValues(items, data.fieldID, 0); } return(data); }
// -------------------------------------------------------------- // Helpers // -------------------------------------------------------------- /// <summary> /// If we are working with a hero property list, get the ID of the property we are using. /// </summary> /// <param name="data">Current data for this action field.</param> /// <param name="indexShift">Make sure we are using the correct field type.</param> /// <returns>Current data for this action field.</returns> private static IntegerFieldData SetPropertyID(IntegerFieldData data, int indexShift = 0) { int fieldType = data.fieldType + indexShift; // Property if (fieldType == 2 && data.targetHeroObject != null) { data.propertyID = HeroField.HeroPropertyListField.SetValues(data.targetHeroObject.propertiesList.properties.ToArray(), data.propertyID, 0); } return(data); }
// -------------------------------------------------------------- // Initialize Action Field // -------------------------------------------------------------- /// <summary> /// Create the subfields that we need for this action field. /// </summary> /// <param name="title">The title of the action.</param> /// <param name="actionField">The action field.</param> /// <param name="heroObject">The hero object that contains this action field.</param> /// <returns>The data for this action field.</returns> public static IntegerFieldData CreateFieldData(string title, HeroActionField actionField, HeroObject heroObject) { IntegerFieldData data = new IntegerFieldData(); data.Init(ref actionField); data.title = title; data.heroObject = heroObject; data.targetHeroObject = actionField.heroObjects[0]; data.objectType = actionField.ints[0]; data.objectID = actionField.ints[1]; data.fieldID = actionField.ints[2]; data.fieldType = actionField.ints[3]; data.heroGUID = actionField.ints[4]; data.fieldValue = actionField.ints[5]; data.propertyID = actionField.ints[6]; data.objectName = actionField.strings[0]; return(data); }
/// <summary> /// Get a value from an integer field on an event. /// This is for a field that contains Value, Variable, Property, Global. /// </summary> /// <param name="title">Title for action field.</param> /// <param name="boolData">Current data for this action field.</param> /// <param name="heroObject">Hero object that is the target of this action.</param> public static void BuildEventField(string title, ConditionIntField eventData, HeroObject heroObject) // string title, ref int fieldType, ref int objectType, ref int objectID, ref int fieldID, ref int heroGUID) { IntegerFieldData data = new IntegerFieldData(); data.heroObject = heroObject; data.targetHeroObject = eventData.targetHeroObject; data.objectType = eventData.objectType; data.objectID = eventData.objectID; data.fieldID = eventData.fieldID; data.fieldType = eventData.fieldType; data.heroGUID = eventData.heroGUID; data.propertyID = eventData.propertyID; data.objectName = eventData.objectName; data.fieldValue = eventData.fieldValue; SimpleLayout.Label(title); //----------------------------------------- // Get the type of field you want to work with. //----------------------------------------- data.fieldType = new HeroField.ValueTypeField().SetValues(data.fieldType, 0); //----------------------------------------- // Get the type of game object we are working with // Option 1: This game object (game object that this hero object is attached to) // Option 2: Another game object (another game object in the scene that has a hero object attached to it) // 2 = Local Variable, 3 = Property //----------------------------------------- if (data.fieldType == 2 || data.fieldType == 3) { data = ActionCommon.GetTargetHeroObject(data); } //----------------------------------------- // Get the integer list you want to work with. // The integer list is in hero object editor > Variables //----------------------------------------- // if this is a field, draw field (1=number) if (data.fieldType == 1) { data.fieldValue = SimpleLayout.IntField(data.fieldValue, 149); } // if this is a list, draw ints (2=integers, 3=properties) if (data.fieldType != 1) { data = SetPropertyID(data, -1); List <IntField> items = GetItemsFromList(data, -1); data = BuildItemFieldList(data, items); } //----------------------------------------- // assign values back to hero object fields //----------------------------------------- eventData.objectType = data.objectType; eventData.objectID = data.objectID; eventData.fieldID = data.fieldID; eventData.fieldType = data.fieldType; eventData.heroGUID = data.heroGUID; eventData.propertyID = data.propertyID; eventData.targetHeroObject = data.targetHeroObject; eventData.objectName = data.objectName; eventData.fieldValue = data.fieldValue; }
/// <summary> /// Get a value from an integer field. /// This is for a field that contains Value, Variable, Property, Global. /// </summary> /// <param name="title">Title for action field.</param> /// <param name="actionParams">Action field parameters.</param> /// <param name="actionField">Action field.</param> /// <param name="titleToLeft">Show the title on the left?</param> public static void BuildFieldA(string title, HeroActionParams actionParams, HeroActionField actionField, bool titleToLeft = false, SliderData sliderData = new SliderData()) { // create the fields IntegerFieldData data = CreateFieldData(title, actionField, actionParams.heroObject); //----------------------------------------- // Display this title above the field //----------------------------------------- if (data.title != "" && !titleToLeft) { SimpleLayout.Label(data.title); } SimpleLayout.BeginHorizontal(); if (data.title != "" && titleToLeft) { SimpleLayout.Label(data.title); } //----------------------------------------- // Get the type of field you want to work with. //----------------------------------------- data.fieldType = new HeroField.ValueTypeField().SetValues(data.fieldType, 0); //----------------------------------------- // Get the type of game object we are working with // Option 1: This game object (game object that this hero object is attached to) // Option 2: Another game object (another game object in the scene that has a hero object attached to it) // 2 = Local Variable, 3 = Property //----------------------------------------- if (data.fieldType == 2 || data.fieldType == 3) { data = ActionCommon.GetTargetHeroObject(data); } //----------------------------------------- // Get the integer list you want to work with. // The integer list is in hero object editor > Variables //----------------------------------------- // if this is a field, draw field (1=number) if (data.fieldType == 1) { if (!sliderData.useSlider) { data.fieldValue = SimpleLayout.IntField(data.fieldValue, 149); } else { data.fieldValue = (int)SimpleLayout.SliderField(data.fieldValue, 250, sliderData.min, sliderData.max); if (data.fieldValue > sliderData.max) { data.fieldValue = (int)sliderData.max; } else if (data.fieldValue < sliderData.min) { data.fieldValue = (int)sliderData.min; } } } // if this is a list, draw ints (2=integers, 3=properties) if (data.fieldType != 1) { data = SetPropertyID(data, -1); List <IntField> items = GetItemsFromList(data, -1); data = BuildItemFieldList(data, items); } //----------------------------------------- // assign values back to hero object fields //----------------------------------------- actionField.ints[0] = data.objectType; actionField.ints[1] = data.objectID; actionField.ints[2] = data.fieldID; actionField.ints[3] = data.fieldType; actionField.ints[4] = data.heroGUID; actionField.heroObjects[0] = data.targetHeroObject; actionField.strings[0] = data.objectName; actionField.ints[5] = data.fieldValue; actionField.ints[6] = data.propertyID; //----------------------------------------- // Visual stuff //----------------------------------------- SimpleLayout.Space(); SimpleLayout.EndHorizontal(); }