Project1

标题: 输出部分脚本 [打印本页]

作者: taroxd    时间: 2014-6-14 20:37
标题: 输出部分脚本
本帖最后由 taroxd 于 2014-7-28 12:36 编辑

需要用到这个功能的人自然知道怎么用

RUBY 代码复制
  1. #==============================================================================
  2. # ★ 输出脚本
  3. #==============================================================================
  4.  
  5. path = 'scripts'
  6. ext  = '.rb'
  7.  
  8. output = lambda do
  9.   Dir.mkdir(path) unless File.directory?(path)
  10.   $RGSS_SCRIPTS.each_with_index do |(_, tag, _, contents), i|
  11.     next unless tag.start_with?('★')..tag.start_with?('☆')
  12.     next if contents.force_encoding("utf-8").empty?
  13.     filename = tag.delete('/:*?"<>|\\')
  14.     if filename.empty?
  15.       msgbox "Warning: script #{i} with an invalid tag"
  16.     else
  17.       File.open("#{path}/#{filename}#{ext}", "wb") {|f| f << contents }
  18.     end
  19.   end
  20.   msgbox 'Scripts output successfully.'
  21.   exit
  22. end
  23.  
  24. #~ output.call if $TEST





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1