Class: RSyntaxTree::BaseGraph
- Inherits:
-
Object
- Object
- RSyntaxTree::BaseGraph
- Defined in:
- lib/rsyntaxtree/base_graph.rb
Direct Known Subclasses
Instance Method Summary collapse
- #calculate_height(id = 1) ⇒ Object
- #calculate_indent ⇒ Object
- #calculate_level ⇒ Object
- #calculate_width(id = 1) ⇒ Object
- #draw_connector(id = 1) ⇒ Object
- #draw_elements ⇒ Object
- #get_leftmost(id = 1) ⇒ Object
- #get_rightmost(id = 1) ⇒ Object
-
#initialize(element_list, params, global) ⇒ BaseGraph
constructor
A new instance of BaseGraph.
- #make_balance(id = 1) ⇒ Object
- #node_centering ⇒ Object
- #parse_list ⇒ Object
Constructor Details
#initialize(element_list, params, global) ⇒ BaseGraph
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/rsyntaxtree/base_graph.rb', line 14 def initialize(element_list, params, global) @global = global @element_list = element_list @symmetrize = params[:symmetrize] case params[:color] # Okabe-Ito Color when "modern" @col_node = "#0072B2" # blue @col_leaf = "#009E73" # bluishgreen @col_path = "#CC79A7" # reddishpurple @col_extra = "#CC79A7" # orange @col_emph = "#D55E00" # vermillion # "#000000" black # "#56B4E9" skyblue # "#F0E442" yellow # "#999999" grey when "traditional" @col_node = "blue" @col_leaf = "green" @col_path = "purple" @col_extra = "purple" @col_emph = "red" else @col_node = "black" @col_leaf = "black" @col_path = "black" @col_extra = "black" end @col_bg = "none" @col_fg = "black" @col_line = if params[:hide_default_connectors] "none" else "black" end @leafstyle = params[:leafstyle] @fontset = params[:fontset] @fontsize = params[:fontsize] end |
Instance Method Details
#calculate_height(id = 1) ⇒ Object
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
# File 'lib/rsyntaxtree/base_graph.rb', line 93 def calculate_height(id = 1) target = @element_list.get_id(id) if id == 1 target.vertical_indent = 0 else parent = @element_list.get_id(target.parent) vertical_indent = if !target.triangle && (@leafstyle == "nothing" || @leafstyle == "none") && ETYPE_LEAF == target.type && parent.children.size == 1 parent.vertical_indent + parent.content_height else parent.vertical_indent + parent.content_height + @global[:height_connector] end target.vertical_indent = vertical_indent end if target.children.empty? target.height = target.content_height target.vertical_indent + target.content_height else accum_array = [] target.children.each do |c| accum_array << calculate_height(c) end target.height = accum_array.max - target.vertical_indent accum_array.max end end |
#calculate_indent ⇒ Object
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
# File 'lib/rsyntaxtree/base_graph.rb', line 150 def calculate_indent node_groups = @element_list.get_elements.group_by(&:parent) node_groups.each do |k, v| next if k.zero? parent = @element_list.get_id(k) if @symmetrize num_leaves = v.size partition_width = parent.width / num_leaves left_offset = parent.horizontal_indent + parent.content_width / 2.0 - parent.width / 2.0 v.each do |e| indent = left_offset + (partition_width - e.content_width) / 2.0 e.horizontal_indent = indent left_offset += partition_width end else left_offset = parent.horizontal_indent + parent.content_width / 2.0 - parent.width / 2.0 v.each do |e| indent = left_offset + (e.width - e.content_width) / 2.0 e.horizontal_indent = indent left_offset += e.width end end end end |
#calculate_level ⇒ Object
58 59 60 61 62 |
# File 'lib/rsyntaxtree/base_graph.rb', line 58 def calculate_level @element_list.get_elements.select { |e| e.type == 2 }.each do |e| e.level = @element_list.get_id(e.parent).level + 1 end end |
#calculate_width(id = 1) ⇒ Object
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/rsyntaxtree/base_graph.rb', line 64 def calculate_width(id = 1) target = @element_list.get_id(id) if target.children.empty? target.width = target.content_width + @global[:h_gap_between_nodes] * 4 parent = @element_list.get_id(target.parent) while parent && parent.children.size == 1 w = parent.content_width target.width = w + @global[:h_gap_between_nodes] * 4 if w > target.content_width parent = @element_list.get_id(parent.parent) end target.width else return target.width if target.width != 0 accum_array = [] target.children.each do |c| accum_array << calculate_width(c) end accum_width = if @symmetrize accum_array.max * target.children.size else accum_array.sum end target.width = [accum_width, target.content_width].max end end |
#draw_connector(id = 1) ⇒ Object
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 |
# File 'lib/rsyntaxtree/base_graph.rb', line 182 def draw_connector(id = 1) parent = @element_list.get_id(id) children = parent.children.map { |c| @element_list.get_id(c) } if children.size == 1 child = children[0] case @leafstyle when "auto" if child.contains_phrase || child.triangle triangle_to_parent(parent, child) else line_to_parent(parent, child) end when "bar" if child.triangle triangle_to_parent(parent, child) else line_to_parent(parent, child) end when "nothing", "none" if child.triangle triangle_to_parent(parent, child) elsif ETYPE_LEAF != child.type line_to_parent(parent, child) end end else children.each do |child| line_to_parent(parent, child) end end parent.children.each do |c| draw_connector(c) end end |
#draw_elements ⇒ Object
176 177 178 179 180 |
# File 'lib/rsyntaxtree/base_graph.rb', line 176 def draw_elements @element_list.get_elements.each do |element| draw_element(element) end end |
#get_leftmost(id = 1) ⇒ Object
219 220 221 222 223 224 |
# File 'lib/rsyntaxtree/base_graph.rb', line 219 def get_leftmost(id = 1) target = @element_list.get_id(id) target_indent = target.horizontal_indent children_indent = target.children.map { |c| get_leftmost(c) } (children_indent << target_indent).min end |
#get_rightmost(id = 1) ⇒ Object
226 227 228 229 230 231 |
# File 'lib/rsyntaxtree/base_graph.rb', line 226 def get_rightmost(id = 1) target = @element_list.get_id(id) target_right_end = target.horizontal_indent + target.content_width children_right_end = target.children.map { |c| get_rightmost(c) } (children_right_end << target_right_end).max end |
#make_balance(id = 1) ⇒ Object
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
# File 'lib/rsyntaxtree/base_graph.rb', line 123 def make_balance(id = 1) target = @element_list.get_id(id) if target.children.empty? parent = @element_list.get_id(target.parent) accum_array = [] parent.children.each do |c| accum_array << @element_list.get_id(c).width end max = accum_array.max parent.children.each do |c| @element_list.get_id(c).width = max end max else accum_array = [] target.children.each do |c| accum_array << make_balance(c) end accum_width = accum_array.max max = [accum_width, target.content_width].max target.children.each do |c| @element_list.get_id(c).width = max end target.width end end |
#node_centering ⇒ Object
233 234 235 236 237 238 239 240 241 242 |
# File 'lib/rsyntaxtree/base_graph.rb', line 233 def node_centering node_groups = @element_list.get_elements.group_by(&:parent) node_groups.sort_by { |k, _v| -k }.each do |k, v| next if k.zero? parent = @element_list.get_id(k) child_positions = v.map { |child| child.horizontal_indent + child.content_width / 2 } parent.horizontal_indent = child_positions.min + (child_positions.max - child_positions.min - parent.content_width) / 2 end end |
#parse_list ⇒ Object
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 |
# File 'lib/rsyntaxtree/base_graph.rb', line 244 def parse_list if @element_list.elements.size > 1 calculate_level calculate_width make_balance if @symmetrize calculate_indent node_centering end top = @element_list.get_id(1) diff = top.horizontal_indent @element_list.get_elements.each do |e| e.horizontal_indent -= diff end offset_l = (top.horizontal_indent - get_leftmost) + @global[:h_gap_between_nodes] @element_list.get_elements.each do |e| e.horizontal_indent += offset_l end calculate_height draw_elements draw_connector draw_paths width = get_rightmost - get_leftmost + @global[:h_gap_between_nodes] height = @element_list.get_id(1).height height = @height if @height > height { height: height, width: width } end |