2 # calc KanjiNetwork by eto 2003-0305
9 class KanjiNetwork #======================================================================漢字間のネットワークを計算する。
12 @formatter = GraphvizFormatter.new(self)
13 # @formatter = XSpringiesFormatter.new(self)
21 def make_network(list) #@h, @listに結果を入れていく。
27 def make_network_one(ch) #実質的にこれが本体。再帰で呼ばれる。
31 @list << ch #登場文字リストに追加
35 if ids.char_length == 1 #分割できない文字は、リンクを探す。
36 link = char.ids_represent if char.ids_represent
37 link = char.ids_link if char.ids_link
39 @h[ch] << link #親字に追加する。
44 ids.each_char {|idsch|
46 next if idschar.is_ids?
47 @h[ch] << idsch #親字に追加する。
49 make_network_one(idsch) #再帰する。
54 def nodes_and_edges() #これを二つのarrayで返す
57 @list.sort.uniq.each_with_index {|ch, index|
64 edgear << [nodeh[ch], nodeh[idsch]]
71 open(filename, "w"){|out| out.print to_s }
73 def to_s() @formatter.to_s; end
76 class GraphvizFormatter #====================================================================== Graphviz関係
77 def initialize(network)
80 def to_s() #Graphvizのフォーマット、dotフォーマットに変換する。
82 page.size = "5.5, 5.5"
91 @network.list.sort.uniq.each {|ch|
93 node = DotNode.new(char.to_i)
94 node.label = char.map_ucs_er #node.label = char.to_utf8
95 node.fontsize = (node.label =~ /^&#/) ? 12 : 6
96 #node.fontsize = (node.label =~ /^&#/) ? 24 : 6
97 node.shape = "plaintext"
98 node.fontname = "MS-Mincho" #呪われてるがしかたがない
99 #node.fontname = "Arial-Unicode-MS" #ダメ
103 @network.h.each {|ch, ar|
107 edge = DotEdge.new(char.to_i, idschar.to_i)
111 edge.color = "lightgray"
119 class XSpringiesFormatter #======================================================================
120 def initialize(network)
123 def to_s # #1.0 *** XSpringies data file
125 @network.list.sort.uniq.each {|ch|
128 label = char.map_ucs_er
129 str << "mass #{num}\n"
131 @network.h.each {|ch, ar|
137 str << "spng #{from} #{to}\n"
145 #----------------------------------------------------------------------end.