Project1
标题:
[腳本]半角文字轉全角文字
[打印本页]
作者:
雪流星
时间:
2010-12-20 11:54
标题:
[腳本]半角文字轉全角文字
本帖最后由 雪流星 于 2010-12-19 21:56 编辑
class Window_Base < Window
def draw_fullshape(text, x, y)
text = text.to_s if text.is_a?(Numeric)
stext = text.clone
tx = x
while ((c = stext.slice!(/./m)) != nil)
cFS = get_fullshape(c)
c_width = self.contents.text_size(cFS).width
self.contents.draw_text(tx, y, c_width, WLH, cFS, 0)
tx += c_width
end
end
def get_fullshape(c)
return c if /\w/!~c
text = text.to_s if text.is_a?(Numeric) # 確使數字變成字符串
alphanumericFS = {
"0"=>"0", "1"=>"1", "2"=>"2", "3"=>"3", "4"=>"4",
"5"=>"5", "6"=>"6", "7"=>"7", "8"=>"8", "9"=>"9",
"A"=>"A", "B"=>"B", "C"=>"C", "D"=>"D", "E"=>"E",
"F"=>"F", "G"=>"G", "H"=>"H", "I"=>"I", "J"=>"J",
"K"=>"K", "L"=>"L", "M"=>"M", "N"=>"N", "O"=>"O",
"P"=>"P", "Q"=>"Q", "R"=>"R", "S"=>"S", "T"=>"T",
"U"=>"U", "V"=>"V", "W"=>"W", "X"=>"X", "Y"=>"Y", "Z"=>"Z",
"a"=>"a", "b"=>"b", "c"=>"c", "d"=>"d", "e"=>"e",
"f"=>"f", "g"=>"g", "h"=>"h", "i"=>"i", "j"=>"j",
"k"=>"k", "l"=>"l", "m"=>"m", "n"=>"n", "o"=>"o",
"p"=>"p", "q"=>"q", "r"=>"r", "s"=>"s", "t"=>"t",
"u"=>"u", "v"=>"v", "w"=>"w", "x"=>"x", "y"=>"t", "z"=>"z"
}
return alphanumericFS.has_key?(c) ? alphanumericFS[c] : c
end
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