$next_event_param = {} # [index, value]
class Interpreter
alias al_execute_command execute_command
def execute_command
$next_event_param.each{|id, value|
@list[@index].parameters[id]=value
}
$next_event_param.clear
al_execute_command
end
def 参数(*args) # 从1开始!!
while args.size>0
index = args.shift
value = args.shift
$next_event_param[index-1]=value
end
end
end
$next_event_param = {} # [index, value]
class Interpreter
alias al_execute_command execute_command
def execute_command
$next_event_param.each{|id, value|
@list[@index].parameters[id]=value
}
$next_event_param.clear
al_execute_command
end
def 参数(*args) # 从1开始!!
while args.size>0
index = args.shift
value = args.shift
$next_event_param[index-1]=value
end
end
end