453 lines
14 KiB
Lua
453 lines
14 KiB
Lua
|
|
r2.Features.TimedSpawner = {}
|
|
|
|
local feature = r2.Features.TimedSpawner
|
|
|
|
feature.Name="Timed Spawner"
|
|
|
|
|
|
feature.Description=""
|
|
|
|
feature.Components = {}
|
|
|
|
local classTimedSpawnerVersion = 1
|
|
|
|
feature.Components.TimedSpawner =
|
|
{
|
|
--PropertySheetHeader = r2.getDisplayButtonHeader("r2.events:openEditor()", "uiR2EdEditEventsButton"),
|
|
BaseClass="LogicEntity",
|
|
Name="TimedSpawner",
|
|
InEventUI = true,
|
|
Menu="ui:interface:r2ed_feature_menu",
|
|
Version=classTimedSpawnerVersion ,
|
|
|
|
DisplayerProperties = "R2::CDisplayerLua",
|
|
DisplayerPropertiesParams = "timedSpawnerDisplayer",
|
|
|
|
|
|
DisplayerUI = "R2::CDisplayerLua",
|
|
DisplayerUIParams = "defaultUIDisplayer",
|
|
|
|
DisplayerVisual = "R2::CDisplayerVisualEntity",
|
|
-----------------------------------------------------------------------------------------------
|
|
Parameters = {},
|
|
ApplicableActions = {"activate", "deactivate", "trigger"},
|
|
Events = {"activation", "deactivation", "trigger"},
|
|
Conditions = {"is active", "is inactive"},
|
|
TextContexts = {},
|
|
TextParameters = {},
|
|
LiveParameters = {},
|
|
-----------------------------------------------------------------------------------------------
|
|
Prop =
|
|
{
|
|
{Name="InstanceId", Type="String", WidgetStyle="StaticText", Visible = false},
|
|
{Name="Name", Type="String", MaxNumChar="32"},
|
|
{Name="Active", Type="Number", WidgetStyle="Boolean", DefaultValue="1"},
|
|
{Name="MobNumber", Type="Number", Category="uiR2EDRollout_Mobs", WidgetStyle="EnumDropDown", Enum={"1", "2", "3", "4", "5"},
|
|
},
|
|
{Name="Mob1Id", Type="RefId", Category="uiR2EDRollout_Mobs",PickFunction="r2:canPickNpcOrGroup", SetRefIdFunction="r2:setNpcOrGroupRefIdTarget",
|
|
Translation="uiR2EdProp_Mob1Id", Visible= function(this) return this:displayRefId(1) end},
|
|
{Name="Mob2Id", Type="RefId", Category="uiR2EDRollout_Mobs",PickFunction="r2:canPickNpcOrGroup", SetRefIdFunction="r2:setNpcOrGroupRefIdTarget",
|
|
Translation="uiR2EdProp_Mob2Id", Visible= function(this) return this:displayRefId(2) end},
|
|
{Name="Mob3Id", Type="RefId", Category="uiR2EDRollout_Mobs",PickFunction="r2:canPickNpcOrGroup", SetRefIdFunction="r2:setNpcOrGroupRefIdTarget",
|
|
Translation="uiR2EdProp_Mob3Id", Visible= function(this) return this:displayRefId(3) end},
|
|
{Name="Mob4Id", Type="RefId", Category="uiR2EDRollout_Mobs",PickFunction="r2:canPickNpcOrGroup", SetRefIdFunction="r2:setNpcOrGroupRefIdTarget",
|
|
Translation="uiR2EdProp_Mob4Id", Visible= function(this) return this:displayRefId(4) end},
|
|
{Name="Mob5Id", Type="RefId", Category="uiR2EDRollout_Mobs",PickFunction="r2:canPickNpcOrGroup", SetRefIdFunction="r2:setNpcOrGroupRefIdTarget",
|
|
Translation="uiR2EdProp_Mob5Id", Visible= function(this) return this:displayRefId(5) end},
|
|
{Name="Minutes", Type="Number", Min="0", Max="60", DefaultValue="0"},
|
|
{Name="Secondes",Type="Number", Min="0", Max="60", DefaultValue="30"},
|
|
{Name="Components", Type="Table"},
|
|
|
|
},
|
|
-----------------------------------------------------------------------------------------------
|
|
-- from base class
|
|
getParentTreeNode = function(this)
|
|
return this:getFeatureParentTreeNode()
|
|
end,
|
|
---------------------------------------------------------------------------------------------------------
|
|
-- from base class
|
|
appendInstancesByType = function(this, destTable, kind)
|
|
assert(type(kind) == "string")
|
|
--this:delegate():appendInstancesByType(destTable, kind)
|
|
r2.Classes.LogicEntity.appendInstancesByType(this, destTable, kind)
|
|
for k, component in specPairs(this.Components) do
|
|
component:appendInstancesByType(destTable, kind)
|
|
end
|
|
end,
|
|
---------------------------------------------------------------------------------------------------------
|
|
-- from base class
|
|
getSelectBarSons = function(this)
|
|
return Components
|
|
end,
|
|
---------------------------------------------------------------------------------------------------------
|
|
-- from base class
|
|
canHaveSelectBarSons = function(this)
|
|
return false;
|
|
end,
|
|
|
|
onPostCreate = function(this)
|
|
--this:createGhostComponents()
|
|
if this.User.DisplayProp and this.User.DisplayProp == 1 then
|
|
r2:setSelectedInstanceId(this.InstanceId)
|
|
r2:showProperties(this)
|
|
this.User.DisplayProp = nil
|
|
end
|
|
end,
|
|
|
|
|
|
pretranslate = function(this, context)
|
|
r2.Translator.createAiGroup(this, context)
|
|
end,
|
|
|
|
translate = function(this, context)
|
|
r2.Translator.translateAiGroup(this, context)
|
|
r2.Translator.translateFeatureActivation(this, context)
|
|
end,
|
|
|
|
updateVersion = function(this, scenarioValue, currentValue )
|
|
|
|
end,
|
|
|
|
|
|
}
|
|
|
|
local component = feature.Components.TimedSpawner
|
|
|
|
function component:displayRefId(index)
|
|
local nbMobs = self.MobNumber + 1
|
|
if index <= nbMobs then
|
|
return true
|
|
end
|
|
return false
|
|
end
|
|
------------------------------------------------------------------------------------------------------------------
|
|
local timedSpawnerDisplayerTable = clone(r2:propertySheetDisplayer())
|
|
|
|
--
|
|
-- If the message is received by a client that didn't request the modification, we must make sure this client
|
|
-- doesn't modify the data because it has already been performed by the initial client.
|
|
--
|
|
local function checkPickedEntity(this, instanceId, attributeName)
|
|
if instanceId == "" then
|
|
return false
|
|
end
|
|
local tmpInstance = r2:getInstanceFromId(instanceId)
|
|
assert(tmpInstance)
|
|
local i = 1
|
|
while i < 6 do
|
|
local attrName = "Mob" ..i.. "Id"
|
|
if attrName ~= attributeName and this[attrName] == tmpInstance.InstanceId then
|
|
return false
|
|
end
|
|
i = i + 1
|
|
end
|
|
return true
|
|
end
|
|
|
|
|
|
|
|
function timedSpawnerDisplayerTable:onAttrModified(instance, attributeName)
|
|
if attributeName == "MobNumber" then
|
|
local propertySheet = r2:getPropertySheet(instance)
|
|
local nbMobs = instance.MobNumber + 1
|
|
local i = 1
|
|
while i <= 5 do
|
|
if i > nbMobs then
|
|
local name = "Mob"..tostring(i).."Id"
|
|
local refId = propertySheet:find(name)
|
|
local refIdName = refId:find("name")
|
|
refIdName.hardtext = "NONE"
|
|
r2.requestSetNode(instance.InstanceId, name, "")
|
|
end
|
|
i = i + 1
|
|
end
|
|
propertySheet.Env.updatePropVisibility()
|
|
return
|
|
end
|
|
|
|
if string.find(attributeName, "Id") == nil or attributeName == "InstanceId" then return end
|
|
|
|
local propertySheet = r2:getPropertySheet(instance)
|
|
local refId = propertySheet:find(attributeName)
|
|
if refId == nil then return end
|
|
local refIdName = refId:find("name")
|
|
|
|
local instanceId = instance[attributeName]
|
|
if instanceId == "" then
|
|
refIdName.hardtext = "NONE"
|
|
return
|
|
end
|
|
|
|
local inserted = checkPickedEntity(instance, instanceId, attributeName)
|
|
if inserted == true then
|
|
local tmpInstance = r2:getInstanceFromId(instanceId)
|
|
refIdName.hardtext = tmpInstance.Name
|
|
else
|
|
r2.requestSetNode(instance.InstanceId, attributeName, "")
|
|
end
|
|
instance.User.onHrcMove = false
|
|
end
|
|
|
|
function timedSpawnerDisplayerTable:onSelect(instance, isSelected)
|
|
r2:logicEntityPropertySheetDisplayer():onSelect(instance, isSelected)
|
|
end
|
|
|
|
function component:onTargetInstancePreHrcMove(targetAttr, targetIndexInArray)
|
|
|
|
local targetId = self[targetAttr]
|
|
local tmpInstance = r2:getInstanceFromId(targetId)
|
|
tmpInstance.User.SelfModified = true
|
|
|
|
end
|
|
|
|
|
|
local function reattributeIdOnHrcMove(timedSpawner, group, targetAttr)
|
|
local propertySheet = r2:getPropertySheet(timedSpawner)
|
|
local refId = propertySheet:find(targetAttr)
|
|
local refIdName = refId:find("name")
|
|
|
|
r2.requestSetNode(timedSpawner.InstanceId, targetAttr, group.InstanceId)
|
|
refIdName.hardtext = group.Name
|
|
timedSpawner.User.onHrcMove = true
|
|
|
|
end
|
|
|
|
|
|
function component:onTargetInstancePostHrcMove(targetAttr, targetIndexInArray)
|
|
|
|
local targetId = self[targetAttr]
|
|
|
|
local tmpInstance = r2:getInstanceFromId(targetId)
|
|
|
|
assert(tmpInstance)
|
|
if tmpInstance.User.SelfModified and tmpInstance.User.SelfModified == true then
|
|
local group = tmpInstance.ParentInstance
|
|
if group:isKindOf("NpcGrpFeature") then
|
|
reattributeIdOnHrcMove(self, group, targetAttr)
|
|
end
|
|
tmpInstance.User.SelfModified = false
|
|
end
|
|
|
|
end
|
|
|
|
|
|
function r2:timedSpawnerDisplayer()
|
|
return timedSpawnerDisplayerTable -- returned shared displayer to avoid wasting memory
|
|
end
|
|
--------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
component.getLogicAction = function(entity, context, action)
|
|
assert( action.Class == "ActionStep")
|
|
local component = r2:getInstanceFromId(action.Entity)
|
|
assert(component)
|
|
local rtNpcGrp = r2.Translator.getRtGroup(context, component.InstanceId)
|
|
assert(rtNpcGrp)
|
|
|
|
if (action.Action.Type == "trigger") then
|
|
local i = 1
|
|
local spawnActions = {}
|
|
while i <= 5 do
|
|
local attrName = "Mob"..i.."Id"
|
|
if component[attrName] ~= "" then
|
|
local rtMobGrp = r2.Translator.getRtGroup(context, component[attrName])
|
|
local actionSpawn = r2.Translator.createAction("spawn", rtMobGrp.Id)
|
|
table.insert(spawnActions, actionSpawn)
|
|
end
|
|
i = i + 1
|
|
end
|
|
|
|
if table.getn(spawnActions) ~= 0 then
|
|
local actionTrigger = r2.Translator.createAction("user_event_trigger", rtNpcGrp.Id, 6)
|
|
table.insert(spawnActions, actionTrigger)
|
|
local retAction = r2.Translator.createAction("condition_if", r2:getNamespace()..rtNpcGrp.Id..".Active == 1",
|
|
r2.Translator.createAction("multi_actions", spawnActions)
|
|
)
|
|
return retAction, retAction
|
|
end
|
|
return nil, nil
|
|
end
|
|
return r2.Translator.getFeatureActivationLogicAction(rtNpcGrp, action)
|
|
end
|
|
|
|
component.getLogicCondition = function(this, context, condition)
|
|
assert( condition.Class == "ConditionStep")
|
|
local component = r2:getInstanceFromId(condition.Entity)
|
|
assert(component)
|
|
local rtNpcGrp = r2.Translator.getRtGroup(context, component.InstanceId)
|
|
assert(rtNpcGrp)
|
|
|
|
return r2.Translator.getFeatureActivationCondition(condition, rtNpcGrp)
|
|
end
|
|
|
|
component.getLogicEvent = function(this, context, event)
|
|
assert( event.Class == "LogicEntityAction")
|
|
|
|
local component = this -- r2:getInstanceFromId(event.Entity)
|
|
assert(component)
|
|
local rtNpcGrp = r2.Translator.getRtGroup(context, component.InstanceId)
|
|
assert(rtNpcGrp)
|
|
|
|
if tostring(event.Event.Type) == "trigger" then
|
|
return r2.Translator.getComponentUserEvent(rtNpcGrp, 6)
|
|
end
|
|
|
|
return r2.Translator.getFeatureActivationLogicEvent(rtNpcGrp, event)
|
|
end
|
|
|
|
component.createGhostComponents= function(this, act)
|
|
|
|
local comp = this
|
|
|
|
local timer = r2.newComponent("Timer")
|
|
assert(timer)
|
|
timer.Name = r2:genInstanceName(i18n.get("uiR2EdTimer")):toUtf8()
|
|
timer.InheritPos = 0
|
|
timer.Position.x = comp.Position.x
|
|
timer.Position.y = comp.Position.y
|
|
timer.Position.z = comp.Position.z
|
|
timer.Minutes = comp.Minutes
|
|
timer.Secondes = comp.Secondes
|
|
--timer.Cyclic = comp.Cyclic
|
|
timer.Active = comp.Active
|
|
r2.requestInsertGhostNode(comp.InstanceId, "Components", -1, "", timer)
|
|
local nbMob = 0
|
|
|
|
for id = 1, 5 do
|
|
local propertyName = "Mob"..id.."Id"
|
|
if comp[propertyName] ~= nil and comp[propertyName] ~= "" then
|
|
local mob = r2:getInstanceFromId(comp[propertyName])
|
|
if mob then
|
|
nbMob = nbMob + 1
|
|
if mob:isKindOf("NpcGrpFeature") then
|
|
local instanceId = mob.Components[0].InstanceId
|
|
r2.requestSetGhostNode(instanceId, "AutoSpawn", 0)
|
|
else
|
|
r2.requestSetGhostNode(mob.InstanceId, "AutoSpawn", 0)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
if nbMob == 0 then
|
|
return
|
|
end
|
|
|
|
do
|
|
local type = "On Trigger"
|
|
|
|
local eventHandler = r2.newComponent("LogicEntityAction")
|
|
eventHandler.Event.Type = type
|
|
eventHandler.Event.Value = ""
|
|
eventHandler.Name = type
|
|
|
|
local action = r2.newComponent("ActionStep")
|
|
|
|
action.Entity = r2.RefId(comp.InstanceId)
|
|
action.Action.Type = "trigger"
|
|
action.Action.Value = ""
|
|
|
|
table.insert(eventHandler.Actions, action)
|
|
|
|
local behaviorId = timer.Behavior.InstanceId
|
|
assert(behaviorId)
|
|
r2.requestInsertGhostNode(behaviorId, "Actions", -1, "", eventHandler)
|
|
|
|
end
|
|
|
|
do
|
|
local eventHandler = r2.newComponent("LogicEntityAction")
|
|
eventHandler.Event.Type = "activation"
|
|
eventHandler.Value = ""
|
|
eventHandler.Name = "activation"
|
|
|
|
local action = r2.newComponent("ActionStep")
|
|
action.Entity = r2.RefId(timer.InstanceId)
|
|
action.Action.Type = "Activate"
|
|
action.Action.Value = ""
|
|
table.insert(eventHandler.Actions, action)
|
|
local behaviorId = comp.Behavior.InstanceId
|
|
assert(behaviorId)
|
|
r2.requestInsertGhostNode(behaviorId, "Actions", -1, "", eventHandler)
|
|
|
|
|
|
end
|
|
end
|
|
|
|
|
|
component.createComponent = function(x, y)
|
|
|
|
local comp = r2.newComponent("TimedSpawner")
|
|
assert(comp)
|
|
assert(comp.Position)
|
|
|
|
comp.Base = r2.Translator.getDebugBase("palette.entities.botobjects.user_event")
|
|
comp.Name = r2:genInstanceName(i18n.get("uiR2EdTimedSpawner")):toUtf8()
|
|
comp.Position.x = x
|
|
comp.Position.y = y
|
|
comp.Position.z = r2:snapZToGround(x, y)
|
|
|
|
return comp
|
|
end
|
|
|
|
component.create = function()
|
|
|
|
if not r2:checkAiQuota() then return end
|
|
|
|
|
|
|
|
local function posOk(x, y, z)
|
|
debugInfo("Validate creation of a Timed Spawner.")
|
|
if r2.mustDisplayInfo("TimedSpawner") == 1 then
|
|
r2.displayFeatureHelp("TimedSpawner")
|
|
end
|
|
r2.requestNewAction(i18n.get("uiR2EDNewTimedSpawnerFeatureAction"))
|
|
local component = feature.Components.TimedSpawner.createComponent( x, y)
|
|
r2:setCookie(component.InstanceId, "DisplayProp", 1)
|
|
r2.requestInsertNode(r2:getCurrentAct().InstanceId, "Features", -1, "", component)
|
|
end
|
|
|
|
local function posCancel() end
|
|
|
|
local creature = r2.Translator.getDebugCreature("object_component_user_event.creature")
|
|
r2:choosePos(creature, posOk, posCancel, "createFeatureTimedSpawner")
|
|
end
|
|
|
|
-----------------------------------------
|
|
--- register the curent Feature to menu
|
|
|
|
function component:getLogicTranslations()
|
|
-- register trad
|
|
local logicTranslations = {
|
|
["ApplicableActions"] = {
|
|
["activate"] = { menu=i18n.get( "uiR2AA0Activate" ):toUtf8(),
|
|
text=i18n.get( "uiR2AA1Activate" ):toUtf8()},
|
|
["deactivate"] = { menu=i18n.get( "uiR2AA0Deactivate" ):toUtf8(),
|
|
text=i18n.get( "uiR2AA1Deactivate" ):toUtf8()},
|
|
["trigger"] = { menu=i18n.get( "uiR2AA0Trigger" ):toUtf8(),
|
|
text=i18n.get( "uiR2AA1Trigger" ):toUtf8()},
|
|
},
|
|
["Events"] = {
|
|
["activation"] = { menu=i18n.get( "uiR2Event0Activation" ):toUtf8(),
|
|
text=i18n.get( "uiR2Event1Activation" ):toUtf8()},
|
|
["deactivation"] = { menu=i18n.get( "uiR2Event0Deactivation" ):toUtf8(),
|
|
text=i18n.get( "uiR2Event1Deactivation" ):toUtf8()},
|
|
["trigger"] = { menu=i18n.get( "uiR2Event0Trigger" ):toUtf8(),
|
|
text=i18n.get( "uiR2Event1Trigger" ):toUtf8()},
|
|
},
|
|
["Conditions"] = {
|
|
["is active"] = { menu=i18n.get( "uiR2Test0Active" ):toUtf8(),
|
|
text=i18n.get( "uiR2Test1Active" ):toUtf8()},
|
|
["is inactive"] = { menu=i18n.get( "uiR2Test0Inactive" ):toUtf8(),
|
|
text=i18n.get( "uiR2Test1Inactive" ):toUtf8()}
|
|
}
|
|
}
|
|
|
|
return logicTranslations
|
|
end
|
|
|
|
r2.Features["TimedSpawner"] = feature
|
|
|
|
|