0
0
mirror of https://gitlab.com/YuukiPS/GC-Resources.git synced 2025-04-28 17:15:22 +00:00
GC-Resources/Resources/Scripts/Scene/5/scene5_group155005329.lua
Yuuki b09934e7b9 Revert "remove local in defs"
This reverts commit 7e0a645ef33da87ddd5c402c6a64180001c6b03d.
2023-11-23 23:27:47 +08:00

214 lines
5.8 KiB
Lua

-- 基础信息
local base_info = {
group_id = 155005329
}
-- Trigger变量
local defs = {
group_ID = 155005329
}
-- DEFS_MISCS
local Controllers = {}
local EnvControlGadgets = {329004}
local Worktops = {}
local DayAppearGadgets = {}
local NightAppearGadgets = {329003}
--[[
Variable:
ScriptLib.GetGroupVariableValue(context, name)
ScriptLib.GetGroupVariableValueByGroup(context, name, group_id)
ScriptLib.SetGroupVariableValue(context, name, value)
ScriptLib.SetGroupVariableValueByGroup(context, name, value, group_id)
GadgetState:
ScriptLib.GetGadgetStateByConfigId(context, group_id, config_id)
ScriptLib.SetGroupGadgetStateByConfigId(context, group_id, config_id, gadget_state)
Option:
ScriptLib.SetWorktopOptionsByGroupId(context, group_id, config_id, {option_table})
ScriptLib.DelWorktopOptionByGroupId(context, group_id, config_id, option_id)
SuiteControll:
ScriptLib.GoToGroupSuite(context, group_id, suite_index)
ScriptLib.AddExtraGroupSuite(context, group_id, suite_index)
TimeAxis:
ScriptLib.InitTimeAxis(context, key, timer, is_loop)
ScriptLib.EndTimeAxis(context, key)
ScriptLib.PauseTimeAxis(context, key)
ScriptLib.ContinueTimeAxis(context, key)
ScriptLib.SetPlatformPointArray(context, gadget_id, pointarray_id, {pointarrayindexlist}, { route_type = 0 })
]]
local gameplayStateFuncitons =
{
["0"] = function(context)
ScriptLib.SetGroupVariableValue(context,"is_daynight_finish",1)
end,
["1"] = function(context)
ScriptLib.SetGroupVariableValue(context,"is_daynight_finish",0)
ScriptLib.AddExtraGroupSuite(context, defs.group_ID, 2)
DayNight_Gadget_Unlock(context,329004)
end,
["2"] = function(context)
ScriptLib.SetGroupVariableValue(context,"is_daynight_finish",0)
ScriptLib.AddExtraGroupSuite(context, defs.group_ID, 3)
DayNight_Gadget_Finish(context,329004)
ScriptLib.SetGadgetStateByConfigId(context, 329003, 202)
ScriptLib.SetGadgetStateByConfigId(context, 329005, 201)
end
}
function UpdateGamePlayState(context)
local state = ScriptLib.GetGroupVariableValue(context, "gameplayState")
gameplayStateFuncitons[tostring(state)](context)
end
--================================================================
--
-- 配置
--
--================================================================
-- 怪物
monsters = {
}
-- NPC
npcs = {
}
-- 装置
gadgets = {
{ config_id = 329003, gadget_id = 70360315, pos = { x = 520.485, y = 182.790, z = 647.052 }, rot = { x = 2.595, y = 29.457, z = 357.851 }, level = 36, area_id = 200 },
{ config_id = 329004, gadget_id = 70360309, pos = { x = 519.405, y = 183.387, z = 647.090 }, rot = { x = 357.606, y = 299.572, z = 357.221 }, level = 36, area_id = 200 },
{ config_id = 329005, gadget_id = 70350006, pos = { x = 516.520, y = 183.657, z = 650.020 }, rot = { x = 0.026, y = 302.069, z = 358.241 }, level = 36, persistent = true, area_id = 200 }
}
-- 区域
regions = {
}
-- 触发器
triggers = {
-- 初始化
{ config_id = 1329001, name = "GROUP_LOAD_329001", event = EventType.EVENT_GROUP_LOAD, source = "", condition = "", action = "action_EVENT_GROUP_LOAD_329001", trigger_count = 0 },
-- 监听gameplayState变化
{ config_id = 1329002, name = "VARIABLE_CHANGE_329002", event = EventType.EVENT_VARIABLE_CHANGE, source = "gameplayState", condition = "condition_EVENT_VARIABLE_CHANGE_329002", action = "action_EVENT_VARIABLE_CHANGE_329002", trigger_count = 0 },
{ config_id = 1329006, name = "GADGET_STATE_CHANGE_329006", event = EventType.EVENT_GADGET_STATE_CHANGE, source = "", condition = "condition_EVENT_GADGET_STATE_CHANGE_329006", action = "action_EVENT_GADGET_STATE_CHANGE_329006", trigger_count = 0 }
}
-- 变量
variables = {
{ config_id = 1, name = "gameplayState", value = 1, no_refresh = true }
}
--================================================================
--
-- 初始化配置
--
--================================================================
-- 初始化时创建
init_config = {
suite = 1,
end_suite = 0,
rand_suite = false
}
--================================================================
--
-- 小组配置
--
--================================================================
suites = {
{
-- suite_id = 1,
-- description = 静态逻辑,
monsters = { },
gadgets = { },
regions = { },
triggers = { "GROUP_LOAD_329001", "VARIABLE_CHANGE_329002" },
rand_weight = 100
},
{
-- suite_id = 2,
-- description = 玩法开启,
monsters = { },
gadgets = { 329004, 329005 },
regions = { },
triggers = { "GADGET_STATE_CHANGE_329006" },
rand_weight = 100
},
{
-- suite_id = 3,
-- description = 玩法完成,
monsters = { },
gadgets = { 329004, 329005 },
regions = { },
triggers = { },
rand_weight = 100
}
}
--================================================================
--
-- 触发器
--
--================================================================
-- 触发操作
function action_EVENT_GROUP_LOAD_329001(context, evt)
UpdateGamePlayState(context)
return 0
end
-- 触发条件
function condition_EVENT_VARIABLE_CHANGE_329002(context, evt)
if evt.param1 == evt.param2 then return false end
-- 判断变量"gameplayState"为0
if ScriptLib.GetGroupVariableValue(context, "gameplayState") == 0 then
return false
end
return true
end
-- 触发操作
function action_EVENT_VARIABLE_CHANGE_329002(context, evt)
UpdateGamePlayState(context)
return 0
end
-- 触发条件
function condition_EVENT_GADGET_STATE_CHANGE_329006(context, evt)
if 322 ~= ScriptLib.GetGadgetStateByConfigId(context, 155005329, 329004) then
return false
end
return true
end
-- 触发操作
function action_EVENT_GADGET_STATE_CHANGE_329006(context, evt)
-- 将本组内变量名为 "gameplayState" 的变量设置为 2
if 0 ~= ScriptLib.SetGroupVariableValue(context, "gameplayState", 2) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_groupVariable")
return -1
end
return 0
end
require "V2_4/EnvState"