Project1

标题: [腳本]半角文字轉全角文字 [打印本页]

作者: 雪流星    时间: 2010-12-20 11:54
标题: [腳本]半角文字轉全角文字
本帖最后由 雪流星 于 2010-12-19 21:56 编辑
  1. class Window_Base  < Window
  2.   def draw_fullshape(text, x, y)
  3.     text = text.to_s if text.is_a?(Numeric)
  4.     stext = text.clone
  5.     tx = x
  6.     while ((c = stext.slice!(/./m)) != nil)
  7.       cFS = get_fullshape(c)
  8.       c_width = self.contents.text_size(cFS).width
  9.       self.contents.draw_text(tx, y, c_width, WLH, cFS, 0)
  10.       tx += c_width
  11.     end
  12.    
  13.   end
  14.   def get_fullshape(c)
  15.     return c if /\w/!~c
  16.     text = text.to_s if text.is_a?(Numeric) # 確使數字變成字符串
  17.     alphanumericFS = {
  18.     "0"=>"0", "1"=>"1", "2"=>"2", "3"=>"3", "4"=>"4",
  19.     "5"=>"5", "6"=>"6", "7"=>"7", "8"=>"8", "9"=>"9",
  20.     "A"=>"A", "B"=>"B", "C"=>"C", "D"=>"D", "E"=>"E",
  21.     "F"=>"F", "G"=>"G", "H"=>"H", "I"=>"I", "J"=>"J",
  22.     "K"=>"K", "L"=>"L", "M"=>"M", "N"=>"N", "O"=>"O",
  23.     "P"=>"P", "Q"=>"Q", "R"=>"R", "S"=>"S", "T"=>"T",
  24.     "U"=>"U", "V"=>"V", "W"=>"W", "X"=>"X", "Y"=>"Y", "Z"=>"Z",
  25.     "a"=>"a", "b"=>"b", "c"=>"c", "d"=>"d", "e"=>"e",
  26.     "f"=>"f", "g"=>"g", "h"=>"h", "i"=>"i", "j"=>"j",
  27.     "k"=>"k", "l"=>"l", "m"=>"m", "n"=>"n", "o"=>"o",
  28.     "p"=>"p", "q"=>"q", "r"=>"r", "s"=>"s", "t"=>"t",
  29.     "u"=>"u", "v"=>"v", "w"=>"w", "x"=>"x", "y"=>"t", "z"=>"z"
  30.     }
  31.     return alphanumericFS.has_key?(c) ? alphanumericFS[c] : c
  32.   end
  33. end
复制代码
這個帖子裡面要求的,順便貼來發布區
作者: summer92    时间: 2010-12-20 12:42
顶好东西
作者: 沉影不器    时间: 2010-12-21 20:14
提示: 作者被禁止或删除 内容自动屏蔽
作者: www66ds    时间: 2012-7-11 16:57
好东西啊!




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