godot-psd-training/sceen/total.gd
2024-07-09 17:27:43 +08:00

449 lines
22 KiB
GDScript

extends Node3D
class_name TotalScene
##车来且开屏蔽门和车门
func trainComeAndOpenScreenDoor ()-> void:
$AllTimer/trainComeDelay.start()
$trainComing.play()
func _on_train_come_delay_timeout() -> void:
$train.trainCome()
$AllTimer/BeginTimer.start()
##关屏蔽门和车门且车走
func closeScreenDoorAndTrainLeave ()-> void:
closeScreenDoor()
$AllTimer/EndTimer.start()
func _on_end_timer_timeout() -> void:
trainLeave()
##开屏蔽门和车门
func openScreenDoor() -> void:
$train.openLeftTrainDoorALL()
$platform.openScreenDoorALL()
##关屏蔽门和车门
func closeScreenDoor() -> void:
$train.closeLeftTrainDoorALL()
$platform.closeScreenDoorALL()
##只关屏蔽门
func closeOnlyScreenDoor() -> void:
$platform.closeScreenDoorALL()
##只关车门
func closeOnlyTrainDoor() -> void:
$train.closeLeftTrainDoorALL()
##车走
func trainLeave(ActionGestureCommandDeparture = false) -> bool:
var InterlockReleaseSwitch=NodeUtils.find_child_by_name($platform.get_node('psl'),'InterlockReleaseSwitch')
var isOpenLight = NodeUtils.find_child_by_name(InterlockReleaseSwitch,'openLight').visible
if $platform.allScreenDoorClose() or isOpenLight or ActionGestureCommandDeparture :
$AllTimer/trainLeaveDelay.start()
return true
return false
func _on_train_leave_delay_timeout() -> void:
$train.trainLeave()
## 车门名字的枚举
enum TrainDoor_name{
trainDoor1=1,
trainDoor2,
trainDoor3,
trainDoor4,
}
##设置指定车门不开门
func setAssignTrainDoorsOpenFault (trainDoorNames:Array)-> void:
setAssignTrainDoorsFault(trainDoorNames,TrainDoor.TrainDoor_Fault_State.openFault)
##设置指定车门不关门
func setAssignTrainDoorsCloseFault (trainDoorNames:Array)-> void:
setAssignTrainDoorsFault(trainDoorNames,TrainDoor.TrainDoor_Fault_State.closeFault)
func setAssignTrainDoorsFault (trainDoorNames:Array,faultType:TrainDoor.TrainDoor_Fault_State)-> void:
for child in $train.leftTrainDoorALL:
var trainDoorName=String(child.name)
var trainDoorIndex=int(trainDoorName[trainDoorName.length() - 1])
if trainDoorIndex in trainDoorNames:
child.setTrainDoorFault(faultType)
##移除车设置的故障
func removeAssignTrainDoorsFault (trainDoorNames:Array)-> void:
for child in $train.leftTrainDoorALL:
var trainDoorName=String(child.name)
var trainDoorIndex=int(trainDoorName[trainDoorName.length() - 1])
if trainDoorIndex in trainDoorNames:
child.removeTrainDoorFault()
##车开关门到位信号
signal trainDoorOpenConfirmSignal(trainDoor:TrainDoor)
signal trainDoorCloseConfirmSignal(trainDoor:TrainDoor)
func emitTrainDoorOpenSignal(trainDoor:TrainDoor) -> void:
trainDoorOpenConfirmSignal.emit(trainDoor)
func emitTrainDoorCloseSignal(trainDoor:TrainDoor) -> void:
trainDoorCloseConfirmSignal.emit(trainDoor)
## 屏蔽门名字的枚举
enum ScreenDoor_name{
screenDoor1=1,
screenDoor2,
screenDoor3,
screenDoor4,
}
##设置指定屏蔽门开门故障
func setAssignScreenDoorsOpenFault (screenDoorNames:Array)-> void:
setAssignScreenDoorsFault(screenDoorNames,ScreenDoor.ScreenDoor_Fault_State.openFault)
##设置指定屏蔽门关门故障
func setAssignScreenDoorsCloseFault (screenDoorNames:Array)-> void:
setAssignScreenDoorsFault(screenDoorNames,ScreenDoor.ScreenDoor_Fault_State.closeFault)
##设置指定屏蔽门玻璃破碎故障
func setAssignScreenDoorsGlassBreakageFault (screenDoorNames:Array)-> void:
setAssignScreenDoorsFault(screenDoorNames,ScreenDoor.ScreenDoor_Fault_State.glassBreakage)
##设置指定屏蔽门夹人故障
func setAssignScreenDoorsPinchPeopleFault (screenDoorNames:Array)-> void:
setAssignScreenDoorsFault(screenDoorNames,ScreenDoor.ScreenDoor_Fault_State.pinchPeople)
##移除屏蔽门设置的故障
func removeAssignScreenDoorsFault (screenDoorNames:Array)-> void:
for child in $platform.screenDoorALL:
var screenDoorName=String(child.name)
var screenDoorIndex=int(screenDoorName[screenDoorName.length() - 1])
if screenDoorIndex in screenDoorNames:
child.removeScreenDoorFault()
func setAssignScreenDoorsFault (screenDoorNames:Array,faultType:ScreenDoor.ScreenDoor_Fault_State)-> void:
for child in $platform.screenDoorALL:
var screenDoorName=String(child.name)
var screenDoorIndex=int(screenDoorName[screenDoorName.length() - 1])
if screenDoorIndex in screenDoorNames:
child.setScreenDoorFault(faultType)
##屏蔽门开关门到位信号和lcb状态变化信号
signal screenDoorOpenConfirmSignal(screenDoor:ScreenDoor)
signal screenDoorCloseConfirmSignal(screenDoor:ScreenDoor)
signal screenDoorLcbStateChangeSignal(screenDoor:ScreenDoor,knob_state: LcbWindow.KNOB_STATE)
func emitScreenDoorOpenSignal(screenDoor:ScreenDoor) -> void:
screenDoorOpenConfirmSignal.emit(screenDoor)
func emitScreenDoorCloseSignal(screenDoor:ScreenDoor) -> void:
screenDoorCloseConfirmSignal.emit(screenDoor)
func emitScreenDoorLcbStateChangeSignal(currenScreenDoor: ScreenDoor, knob_state: LcbWindow.KNOB_STATE) -> void:
screenDoorLcbStateChangeSignal.emit(currenScreenDoor,knob_state)
## 实训模式枚举
enum Training_Mode{
Teach,#教学模式
Practice,# 练习模式
Exam,# 考试模式
}
var trainingMode = Training_Mode.Teach
##当前点击和需要点击节点以及校验是否点击正确
var currentClickNode = null
var currenNeedClickNode = null
signal currentClickCheckSignal(isCorrect:bool)
var allLCBKeys = ['LCB_Key1','LCB_Key2','LCB_Key3','LCB_Key4']
func checkCurrentClick() -> bool:
if trainingMode == Training_Mode.Exam:
return true
else :
if currentClickNode == currenNeedClickNode or (currentClickNode in allLCBKeys and currenNeedClickNode in allLCBKeys):
return true
else :
return false
func _on_platform_all_click_platform_signal(equipmentName: String,equipmentInfo=null) -> void:
currentClickNode = equipmentName
var isClickCorrect = checkCurrentClick()
currentClickCheckSignal.emit(isClickCorrect)
equipmentInfo.allowHandle = isClickCorrect
const NodeUtils = preload("res://util/NodeUtils.gd")
##所有交互操作平面坐标
func allClickEquipmentPostion(equipmentName: String) -> Vector2:
if equipmentName in ['LCB_Key1','LCB_Key2','LCB_Key3','LCB_Key4','JJTC_Key','PSL_Key','HSJC_Key','SDJS_Key','confirmUseKey'] : ##钥匙面板
var keysWindow = $platform.get_node('stationKeys')
var lcbWindowPos = keysWindow.position
if equipmentName == 'confirmUseKey':
var confirmUseKeyPos=NodeUtils.find_child_by_name(keysWindow,'Button').get_global_position()
return Vector2(lcbWindowPos.x+confirmUseKeyPos.x+30,lcbWindowPos.y+confirmUseKeyPos.y)
var LCB_KeyPos=NodeUtils.find_child_by_name(keysWindow,equipmentName).get_global_position()
return Vector2(lcbWindowPos.x+LCB_KeyPos.x+70,lcbWindowPos.y+LCB_KeyPos.y+20)
elif equipmentName == 'LCB1' : ##LCB以及LCB面板
return getScreenPosition($platform.get_node('screenDoor1').get_node('LCB').get_node('LCB_body'))
elif equipmentName == 'LCB2' :
return getScreenPosition($platform.get_node('screenDoor2').get_node('LCB').get_node('LCB_body'))
elif equipmentName == 'LCB3' :
return getScreenPosition($platform.get_node('screenDoor3').get_node('LCB').get_node('LCB_body'))
elif equipmentName == 'LCB4' :
return getScreenPosition($platform.get_node('screenDoor4').get_node('LCB').get_node('LCB_body'))
elif equipmentName in ['LCB1LeftRotate','LCB2LeftRotate','LCB3LeftRotate','LCB4LeftRotate'] :
var lcbPos = $platform.get_node('LCB').position
var leftRotatePos = $platform.get_node('LCB').get_node('LCB2_Left_Rotate').get_global_position()
return Vector2(lcbPos.x+leftRotatePos.x,lcbPos.y+leftRotatePos.y)
elif equipmentName in ['LCB1RightRotate','LCB2RightRotate','LCB3RightRotate','LCB4RightRotate'] :
var lcbPos = $platform.get_node('LCB').position
var rightRotatePos = $platform.get_node('LCB').get_node('LCB2_Right_Rotate').get_global_position()
return Vector2(lcbPos.x+rightRotatePos.x,lcbPos.y+rightRotatePos.y)
elif equipmentName in ['removeKeyOfWindowLCB1','removeKeyOfWindowLCB2','removeKeyOfWindowLCB3','removeKeyOfWindowLCB4'] :
var lcbPos = $platform.get_node('LCB').position
var removePos = $platform.get_node('LCB').get_node('TextureRect2').get_global_position()
return Vector2(lcbPos.x+removePos.x-25,lcbPos.y+removePos.y-5)
elif equipmentName == 'PSL' : ##PSL以及PSL面板
return getScreenPosition($platform.get_node('PSL').get_node('PSL_body'))
elif equipmentName in ['PSLAllowLeftRotate','PSLAllowRightRotate','InterlockReleaseSwitchLeftRotate','InterlockReleaseSwitchRightRotate','CloseDoorButton','OpenDoorButton','LightTestButton','trainDepartsButton','interconnectedCloseButton','interconnectedOpenButton','removePSLKeyOfWindowPsl','removeHSJCKeyOfWindowPsl'] :
var pslWindow = $platform.get_node('psl')
var pslWindowPos = pslWindow.position
if equipmentName in ['PSLAllowLeftRotate','PSLAllowRightRotate']:
var keySwitch=NodeUtils.find_child_by_name(pslWindow,'PSLAllow')
if equipmentName == 'PSLAllowLeftRotate' :
var leftRotatePos = NodeUtils.find_child_by_name(keySwitch,'Left_Rotate').get_global_position()
return Vector2(pslWindowPos.x+leftRotatePos.x,pslWindowPos.y+leftRotatePos.y)
else :
var rightRotatePos = NodeUtils.find_child_by_name(keySwitch,'Right_Rotate').get_global_position()
return Vector2(pslWindowPos.x+rightRotatePos.x,pslWindowPos.y+rightRotatePos.y)
elif equipmentName in ['InterlockReleaseSwitchLeftRotate','InterlockReleaseSwitchRightRotate']:
var keySwitch=NodeUtils.find_child_by_name(pslWindow,'InterlockReleaseSwitch')
if equipmentName == 'InterlockReleaseSwitchLeftRotate' :
var leftRotatePos = NodeUtils.find_child_by_name(keySwitch,'Left_Rotate').get_global_position()
return Vector2(pslWindowPos.x+leftRotatePos.x,pslWindowPos.y+leftRotatePos.y)
else :
var rightRotatePos = NodeUtils.find_child_by_name(keySwitch,'Right_Rotate').get_global_position()
return Vector2(pslWindowPos.x+rightRotatePos.x,pslWindowPos.y+rightRotatePos.y)
elif equipmentName == 'removePSLKeyOfWindowPsl':
var PSLAllow=NodeUtils.find_child_by_name(pslWindow,'PSLAllow')
var removeKeyPos = NodeUtils.find_child_by_name(PSLAllow,'Keyhole').get_global_position()
return Vector2(pslWindowPos.x+removeKeyPos.x,pslWindowPos.y+removeKeyPos.y)
elif equipmentName == 'removeHSJCKeyOfWindowPsl':
var InterlockReleaseSwitch=NodeUtils.find_child_by_name(pslWindow,'InterlockReleaseSwitch')
var removeKeyPos = NodeUtils.find_child_by_name(InterlockReleaseSwitch,'Keyhole').get_global_position()
return Vector2(pslWindowPos.x+removeKeyPos.x,pslWindowPos.y+removeKeyPos.y)
var Psl_KeyPos=NodeUtils.find_child_by_name(pslWindow,equipmentName).get_global_position()
return Vector2(pslWindowPos.x+Psl_KeyPos.x+50,pslWindowPos.y+Psl_KeyPos.y+20)
elif equipmentName == 'JJTC' : ##JJTC以及JJTC面板
return getScreenPosition($platform.get_node('JJTC').get_node('JJTC_body'))
elif equipmentName in ['JJTCLeftRotate','JJTCRightRotate','JJTCButton','JJTCCloseBox'] :
var jjtcWindow = $platform.get_node('jjtc')
var jjtcWindowPos = jjtcWindow.position
if equipmentName == 'JJTCLeftRotate':
var Close_Click_Area_pos=NodeUtils.find_child_by_name(jjtcWindow,'JJTC_Left_Rotate').get_global_position()
return Vector2(jjtcWindowPos.x+Close_Click_Area_pos.x,jjtcWindowPos.y+Close_Click_Area_pos.y)
elif equipmentName == 'JJTCRightRotate':
var Close_Click_Area_pos=NodeUtils.find_child_by_name(jjtcWindow,'JJTC_Right_Rotate').get_global_position()
return Vector2(jjtcWindowPos.x+Close_Click_Area_pos.x,jjtcWindowPos.y+Close_Click_Area_pos.y)
elif equipmentName == 'JJTCButton':
var Close_Click_Area_pos=NodeUtils.find_child_by_name(jjtcWindow,'JJTC_Button').get_global_position()
return Vector2(jjtcWindowPos.x+Close_Click_Area_pos.x+45,jjtcWindowPos.y+Close_Click_Area_pos.y+3)
else :
var Close_Click_Area_pos=NodeUtils.find_child_by_name(jjtcWindow,'Close_Click_Area').get_global_position()
return Vector2(jjtcWindowPos.x+Close_Click_Area_pos.x+30,jjtcWindowPos.y+Close_Click_Area_pos.y+100)
elif equipmentName == 'screenDoor1RightClick' : ##屏蔽门右键以及屏蔽门右键面板
var pos = getScreenPosition($platform.get_node('screenDoor1').get_node('dimiantishi'))
return Vector2(pos.x-50,pos.y-200)
elif equipmentName == 'screenDoor2RightClick' :
var pos = getScreenPosition($platform.get_node('screenDoor2').get_node('dimiantishi'))
return Vector2(pos.x-50,pos.y-200)
elif equipmentName == 'screenDoor3RightClick' :
var pos = getScreenPosition($platform.get_node('screenDoor3').get_node('dimiantishi'))
return Vector2(pos.x-200,pos.y-200)
elif equipmentName == 'screenDoor4RightClick' :
var pos = getScreenPosition($platform.get_node('screenDoor4').get_node('dimiantishi'))
return Vector2(pos.x-50,pos.y-200)
elif equipmentName in ['clickAdhesiveTapeOfscreenDoor1','clickAdhesiveTapeOfscreenDoor2','clickAdhesiveTapeOfscreenDoor3','clickAdhesiveTapeOfscreenDoor4'] :
var ScreenDoorOperateWindow = $platform.get_node('ScreenDoorOperate')
var ScreenDoorOperateWindowPos = ScreenDoorOperateWindow.position
var AdhesiveTapePos = NodeUtils.find_child_by_name(ScreenDoorOperateWindow,'AdhesiveTape').get_global_position()
return Vector2(ScreenDoorOperateWindowPos.x+AdhesiveTapePos.x+50,ScreenDoorOperateWindowPos.y+AdhesiveTapePos.y)
elif equipmentName in ['clickIsolationStripOfscreenDoor1','clickIsolationStripOfscreenDoor2','clickIsolationStripOfscreenDoor3','clickIsolationStripOfscreenDoor4'] :
var ScreenDoorOperateWindow = $platform.get_node('ScreenDoorOperate')
var ScreenDoorOperateWindowPos = ScreenDoorOperateWindow.position
var IsolationStripPos=NodeUtils.find_child_by_name(ScreenDoorOperateWindow,'IsolationStrip').get_global_position()
return Vector2(ScreenDoorOperateWindowPos.x+IsolationStripPos.x+50,ScreenDoorOperateWindowPos.y+IsolationStripPos.y)
elif equipmentName in ['escalatorKey','handheldRadio','hoarding','picketline','metalBarrier','noticeSigns'] :
var shortcutToolNode = $platform.get_node('ShortcutTool')
var shortcutToolPos=NodeUtils.find_child_by_name(shortcutToolNode,equipmentName).get_global_position()
return Vector2(shortcutToolPos.x+25,shortcutToolPos.y)
elif equipmentName in ['escalatorKeyModel','handheldRadioModel','hoardingModel','picketlineModel','metalBarrierModel','noticeSignsModel'] :
return getScreenPosition($platform.get_node('ShortcutToolModel').get_node(equipmentName))
elif equipmentName in ['hoardingAtEscalatorUp','hoardingAtEscalatorDown','picketlineModelAtB','picketlineModelAtA','picketlineModelAtGateB','picketlineModelAtGateA','noticeSignsModelAtAEntrance','noticeSignsModelAtBEntrance','noticeSignsModelAtCEntrance','noticeSignsModelAtDEntrance','metalBarrierModelAtCEntrance','metalBarrierModelAtStationHallCExit','metalBarrierModelAtDEntrance','metalBarrierModelAtStationHallDExit'] :
if equipmentName in ['metalBarrierModelAtCEntrance','metalBarrierModelAtDEntrance'] :
return Vector2(960,540)
var equipmentPos = getScreenPosition($platform.get_node('ShortcutToolModel2').get_node(equipmentName))
return Vector2(equipmentPos.x,equipmentPos.y-50)
else :
if equipmentName == 'StaionHallBack' :
return Vector2(1400,80)
else :
var cameraSwitchUi = $platform.get_node('CameraSwitchUi')
var cameraSwitchUiPos=NodeUtils.find_child_by_name(cameraSwitchUi,equipmentName).get_global_position()
return Vector2(cameraSwitchUiPos.x+40,cameraSwitchUiPos.y-20)
@onready var currentActiveCamera = $Camera3D
func getScreenPosition(node):
var screenPostion = currentActiveCamera.unproject_position(node.global_transform.origin)
return screenPostion
##所有交互操作汇总
const allClickEquipmentInfo = {
"LCB_Key1": "请选择LCB钥匙", ##钥匙面板
"LCB_Key2": "请选择LCB钥匙",
"LCB_Key3": "请选择LCB钥匙",
"LCB_Key4": "请选择LCB钥匙",
"JJTC_Key": "请选择紧急停车钥匙",
"PSL_Key": "请选择PSL钥匙",
"HSJC_Key": "请选择互锁解除钥匙",
"SDJS_Key": "请选择手动解锁钥匙",
"confirmUseKey": "请确认使用钥匙",
"LCB1": "请点击打开屏蔽门1的LCB面板", ##LCB以及LCB面板
"LCB2": "请点击打开屏蔽门2的LCB面板",
"LCB3": "请点击打开屏蔽门3的LCB面板",
"LCB4": "请点击打开屏蔽门4的LCB面板",
"LCB1LeftRotate": "请向左旋转LCB钥匙",
"LCB1RightRotate": "请向右旋转LCB钥匙",
"LCB2LeftRotate": "请向左旋转LCB钥匙",
"LCB2RightRotate": "请向右旋转LCB钥匙",
"LCB3LeftRotate": "请向左旋转LCB钥匙",
"LCB3RightRotate": "请向右旋转LCB钥匙",
"LCB4LeftRotate": "请向左旋转LCB钥匙",
"LCB4RightRotate": "请向右旋转LCB钥匙",
"removeKeyOfWindowLCB1": "请移除LCB钥匙",
"removeKeyOfWindowLCB2": "请移除LCB钥匙",
"removeKeyOfWindowLCB3": "请移除LCB钥匙",
"removeKeyOfWindowLCB4": "请移除LCB钥匙",
"PSL": "请打开PSL面板", ##PSL以及PSL面板
"PSLAllowLeftRotate": "请向左旋转",
"PSLAllowRightRotate": "请向右旋转",
"InterlockReleaseSwitchLeftRotate": "请向左旋转",
"InterlockReleaseSwitchRightRotate": "请向右旋转",
"CloseDoorButton": "请点击关门按钮",
"OpenDoorButton": "请点击开门按钮",
"LightTestButton": "请点击灯测试按钮",
"trainDepartsButton": "请点击发车按钮",
"interconnectedCloseButton": "请点击联动关门按钮",
"interconnectedOpenButton": "请点击联动开门按钮",
"removePSLKeyOfWindowPsl": "请移除PSK钥匙",
"removeHSJCKeyOfWindowPsl": "请移除互锁解除钥匙",
"JJTC": "请打开紧急停车面板", ##JJTC以及JJTC面板
"JJTCLeftRotate": "请向左旋转打开紧急停车按钮盒",
"JJTCRightRotate": "请向右旋转拔出紧急停车钥匙",
"JJTCButton": "请点击紧急停车按钮",
"JJTCCloseBox": "请点击盒子边框关闭紧急停车按钮盒",
"screenDoor1RightClick": "请右键点击屏蔽门1", ##屏蔽门右键以及屏蔽门右键面板
"screenDoor2RightClick": "请右键点击屏蔽门2",
"screenDoor3RightClick": "请右键点击屏蔽门3",
"screenDoor4RightClick": "请右键点击屏蔽门4",
"clickAdhesiveTapeOfscreenDoor1": "请选择粘贴胶带",
"clickIsolationStripOfscreenDoor1": "请选择放置隔离带",
"clickAdhesiveTapeOfscreenDoor2": "请选择粘贴胶带",
"clickIsolationStripOfscreenDoor2": "请选择放置隔离带",
"clickAdhesiveTapeOfscreenDoor3": "请选择粘贴胶带",
"clickIsolationStripOfscreenDoor3": "请选择放置隔离带",
"clickAdhesiveTapeOfscreenDoor4": "请选择粘贴胶带",
"clickIsolationStripOfscreenDoor4": "请选择放置隔离带",
"escalatorKey": "请选择电扶梯钥匙", ##快捷工具
"handheldRadio": "请选择手提广播",
"hoarding": "请选择围挡",
"picketline": "请选择警戒线",
"metalBarrier": "请选择铁马",
"noticeSigns": "请选择警示牌",
"escalatorKeyModel": "请选择电扶梯钥匙", ##快捷工具对应的模型
"handheldRadioModel": "请选择手提广播",
"hoardingModel": "请选择围挡",
"picketlineModel": "请选择警戒线",
"metalBarrierModel": "请选择铁马",
"noticeSignsModel": "请选择警示牌",
"hoardingAtEscalatorUp": "请选择围挡", ##快捷工具对应的模型2
"hoardingAtEscalatorDown": "请选择围挡",
"picketlineModelAtB": "请选择警戒线",
"picketlineModelAtA": "请选择警戒线",
"picketlineModelAtGateB": "请选择警戒线",
"picketlineModelAtGateA": "请选择警戒线",
"noticeSignsModelAtAEntrance": "请选择警示牌",
"noticeSignsModelAtBEntrance": "请选择警示牌",
"noticeSignsModelAtCEntrance": "请选择警示牌",
"noticeSignsModelAtDEntrance": "请选择警示牌",
"metalBarrierModelAtCEntrance": "请选择铁马",
"metalBarrierModelAtStationHallCExit": "请选择铁马",
"metalBarrierModelAtDEntrance": "请选择铁马",
"metalBarrierModelAtStationHallDExit": "请选择铁马",
"VehicleControlRoom": "请选择车控室视口", ##相机
"SparePartsCabinet": "请选择备品柜视口",
"PartsArea": "请选择备品区视口",
"StationHall": "请选择站厅视口",
"UpPlatform": "请选择上行站台视口",
"DownPlatform": "请选择下行站台视口",
"APassageway": "请选择A出入口视口",
"StationHallAExit": "请选择站厅A出口视口",
"AEntrance": "请选择A入口视口",
"APassage": "请选择A口通道视口",
"BPassageway": "请选择B出入口视口",
"StationHallBExit": "请选择站厅B出口视口",
"BEntrance": "请选择B入口视口",
"BPassage": "请选择B口通道视口",
"CPassageway": "请选择C出入口视口",
"StationHallCExit": "请选择站厅C出口视口",
"CEntrance": "请选择C入口视口",
"CPassage": "请选择C口通道视口",
"DPassageway": "请选择D出入口视口",
"StationHallDExit": "请选择站厅D出口视口",
"DEntrance": "请选择D入口视口",
"DPassage": "请选择D口通道视口",
"StaionHallA": "请选择站厅A端视口",
"ALowerStepSwitch": "请选择A端扶梯下部开关视口",
"ATVM": "请选择A端TVM视口",
"AInboundGate": "请选择A端进站闸机视口",
"AExitGate": "请选择A端出站闸机视口",
"AUpperStep": "请选择A端扶梯上部视口",
"ALowerStep": "请选择A端扶梯下部视口",
"AGangway": "请选择A端站厅步梯口视口",
"StationHallB": "请选择站厅B端视口",
"BLowerStepSwitch": "请选择B端扶梯下部开关视口",
"BTVM": "请选择B端TVM视口",
"BInboundGate": "请选择B端进站闸机视口",
"BExitGate": "请选择B端出站闸机视口",
"BUpperStep": "请选择B端扶梯上部视口",
"BLowerStep": "请选择B端扶梯下部视口",
"BGangway": "请选择B端站厅步梯口视口",
"Back": "请选择返回上级视口",
"StaionHallBack": "请选择返回上级视口",
}
func _ready():
var stationKeys = $platform.get_node('stationKeys')
var psl = $platform.get_node('psl')
stationKeys.visible = true
stationKeys.position = Vector2(2100,1100)
psl.visible = true
psl.position = Vector2(2100,1100)
$AllTimer/openAllwindow.start()
func _on_open_allwindow_timeout() -> void:
var stationKeys = $platform.get_node('stationKeys')
var psl = $platform.get_node('psl')
stationKeys.visible = false
stationKeys.position = Vector2(1133,325)
psl.visible = false
psl.position = Vector2(568,190)