/* This file is part of moses. Its use is licensed under the GNU Lesser General Public License version 2.1 or, at your option, any later version. */ var xmlns="http://www.w3.org/2000/svg"; var RECOMBINED = 0; var FROM = 1; var TO = 2; var OUTPUT = 3; var ALIGNMENT = 4; var CHILDREN = 5; var RULE_SCORE = 6; var HEURISTIC_RULE_SCORE = 7; var HYP_SCORE = 8; var LHS = 9; var DERIVATION_SCORE = 10; var CHART_WIDTH = window.innerWidth * 0.8; var CHART_HEIGHT = window.innerHeight; var CELL_WIDTH = CHART_WIDTH/input.length; var CELL_HEIGHT = CHART_HEIGHT/(input.length+1); var CELL_MARGIN = 4; var CELL_BORDER = 2; var CELL_PADDING = 2; if (input.length < 6) { CELL_MARGIN = 5; CELL_BORDER = 3; CELL_PADDING = 3; } if (input.length > 10) { CELL_MARGIN = 1; CELL_BORDER = 1; CELL_PADDING = 2; } if (input.length > 20) { CELL_MARGIN = 0; CELL_BORDER = 0; CELL_PADDING = 1; } var BUTTON_WIDTH = 170; var BUTTON_HEIGHT = 30; var OPTION_WIDTH = 60; var OPTION_HEIGHT = BUTTON_HEIGHT; var CELL_HIGHLIGHT_COLOR = "#c0ffc0"; var CELL_REGULAR_COLOR = "#ffff80"; var INPUT_HIGHLIGHT_COLOR = "#c0c0c0"; var INPUT_REGULAR_COLOR = "#ffffff"; var SORT_OPTION = 2; var ZOOM = 0; var ZOOM_FROM = 0; var ZOOM_TO = input.length+1; var ZOOM_WIDTH = input.length; var length = input.length; var chart = document.getElementById("chart"); var reachable = new Array(); var cell_hyps = new Array(length); var cell_derivation_score = Array(); // init basic layout draw_chart(); draw_menu(); draw_options(); // process hypotheses function process_hypotheses() { index_hypotheses_by_cell(); find_reachable_hypotheses(); compute_best_derivation_scores(); } // // INITIALIZATION // function index_hypotheses_by_cell() { // init edge_lists var from, to, id; for(from=0; from=0; width-- ) { for(from=0; from cell_max_score) { cell_max_score = edge[id][DERIVATION_SCORE]; } } cell_derivation_score[from][to] = cell_max_score; } } } // // MENU // function draw_menu() { draw_menu_button(1,"Best Derivation"); draw_menu_button(2,"Number of Hypotheses"); draw_menu_button(3,"Number of Rule Cubes"); draw_menu_button(4,"Derivation Score"); draw_menu_button(5,"Non-Terminals"); draw_menu_button(6,"Hypotheses"); } var MENU_POSITION_HYPOTHESES = 6; // where is "Hypotheses" in the menu? var current_menu_selection = 0; var menu_processing = 0; function click_menu( id, force_flag ) { if (!force_flag && (menu_processing || current_menu_selection == id)) { return; } menu_processing = 1; if (current_menu_selection == 1) { best_derivation(0); } if (current_menu_selection == 2) { unannotate_cells(); } if (current_menu_selection == 3) { unannotate_cells(); } if (current_menu_selection == 4) { unannotate_cells(); } if (current_menu_selection == 5) { remove_non_terminal_treemap(0); } if (current_menu_selection == 6 && SORT_OPTION != 3) { remove_hypothesis_overview(); } if (current_menu_selection == 6 && SORT_OPTION == 3) { remove_hypothesis_overview(); remove_non_terminal_treemap(); } if (current_menu_selection > 0) { highlight_menu_button( current_menu_selection, 0 ); } if (id == 1) { best_derivation(1); } if (id == 2) { annotate_cells_with_hypcount(); } if (id == 3) { annotate_cells_with_rulecount(); } if (id == 4) { annotate_cells_with_derivation_score(); } if (id == 5) { non_terminal_treemap(); } if (id == 6 && SORT_OPTION != 3) { hypothesis_overview(); } if (id == 6 && SORT_OPTION == 3) { draw_hypothesis_sort_buttons(); non_terminal_treemap(1); } highlight_menu_button( id, 1 ); current_menu_selection = id; menu_processing = 0; } function draw_menu_button( id, label ) { var button = document.createElementNS(xmlns,"rect"); button.setAttribute("id", "button-" + id); button.setAttribute("x", 5); button.setAttribute("y", 5 + BUTTON_HEIGHT*(id-1)); button.setAttribute("rx", 3); button.setAttribute("ry", 3); button.setAttribute("width", BUTTON_WIDTH-10); button.setAttribute("height", BUTTON_HEIGHT-10); //button.setAttribute("opacity",.75); button.setAttribute("fill", "#c0c0ff"); button.setAttribute("stroke", "black"); button.setAttribute("stroke-width", "1"); button.setAttribute("onclick","click_menu(" + id + ",0);"); chart.appendChild( button ); var button_label = document.createElementNS(xmlns,"text"); button_label.setAttribute("x", BUTTON_WIDTH/2); button_label.setAttribute("y", 4+BUTTON_HEIGHT/2 + BUTTON_HEIGHT*(id-1)); button_label.setAttribute("style", "font-size: 12; font-family: Verdana, Arial;"); button_label.setAttribute("text-anchor", "middle"); button_label.setAttribute("pointer-events", "none"); var content = document.createTextNode( label ); button_label.appendChild( content ); button_label.setAttribute("onclick","click_menu(" + id + ",0);"); chart.appendChild( button_label ); } function highlight_menu_button( id, on_off ) { var button = document.getElementById("button-" + id); if (on_off) { button.setAttribute("fill", "#8080ff"); } else { button.setAttribute("fill", "#c0c0ff"); } } // OPTIONS function draw_options() { draw_option_button(0,1,"score"); draw_option_button(0,2,"deriv."); draw_option_button(0,3,"id"); } function draw_rule_options() { draw_option_button(1,1,"score"); draw_option_button(1,2,"deriv."); draw_option_button(1,3,"zoom"); highlight_option_button(1,1,show_hyp_score); highlight_option_button(1,2,show_derivation_score); } function draw_option_button( rule_option, id, label ) { var button = document.createElementNS(xmlns,"rect"); button.setAttribute("id", (rule_option?"rule-":"") + "option-" + id); button.setAttribute("x", rule_option ? CHART_WIDTH-BUTTON_WIDTH-OPTION_WIDTH : BUTTON_WIDTH+10); button.setAttribute("y", 5 + OPTION_HEIGHT*(id-1)); button.setAttribute("rx", 3); button.setAttribute("ry", 3); button.setAttribute("width", OPTION_WIDTH-10); button.setAttribute("height", OPTION_HEIGHT-10); button.setAttribute("fill", "#fdd017"); button.setAttribute("stroke", "black"); button.setAttribute("stroke-width", "1"); button.setAttribute("onclick","click_"+(rule_option?"rule_":"")+"option(" + id + ");"); chart.appendChild( button ); var button_label = document.createElementNS(xmlns,"text"); var distance_from_side = BUTTON_WIDTH+5+OPTION_WIDTH/2; button_label.setAttribute("id", (rule_option?"rule-":"") + "option-label-" + id); button_label.setAttribute("x", rule_option ? CHART_WIDTH-distance_from_side : distance_from_side); button_label.setAttribute("y", 4+OPTION_HEIGHT/2 + OPTION_HEIGHT*(id-1)); button_label.setAttribute("style", "font-size: 12; font-family: Verdana, Arial;"); button_label.setAttribute("text-anchor", "middle"); button_label.setAttribute("pointer-events", "none"); var content = document.createTextNode( label ); button_label.appendChild( content ); chart.appendChild( button_label ); } function draw_sort_button( id, label ) { var BASE_X = 5 + id/SORT_BUTTON_COUNT * (BUTTON_WIDTH-10+5); var BASE_Y = -5 + BUTTON_HEIGHT * MENU_POSITION_HYPOTHESES; var WIDTH = ((BUTTON_WIDTH-10+5)/SORT_BUTTON_COUNT)-5; var button = document.createElementNS(xmlns,"rect"); button.setAttribute("id", "sort-" + id); button.setAttribute("x", BASE_X); button.setAttribute("y", BASE_Y); button.setAttribute("width", WIDTH); button.setAttribute("height", BUTTON_HEIGHT-12); if (id==0) { button.setAttribute("fill", "none"); } else { button.setAttribute("rx", 3); button.setAttribute("ry", 3); if (SORT_OPTION == id) { button.setAttribute("fill", "#6080ff"); } else { button.setAttribute("fill", "#a0c0ff"); } button.setAttribute("onclick","click_sort(" + id + ");"); button.setAttribute("stroke", "black"); button.setAttribute("stroke-width", "1"); } chart.appendChild( button ); var button_label = document.createElementNS(xmlns,"text"); button_label.setAttribute("id", "sort-label-" + id); button_label.setAttribute("x", BASE_X + WIDTH/2); button_label.setAttribute("y", BASE_Y + 12); button_label.setAttribute("style", "font-size: 10; font-family: Verdana, Arial;"); button_label.setAttribute("text-anchor", "middle"); button_label.setAttribute("pointer-events", "none"); var content = document.createTextNode( label ); button_label.appendChild( content ); chart.appendChild( button_label ); } function click_sort( id ) { if (SORT_OPTION == 3) { remove_non_terminal_treemap(1); } remove_hypothesis_overview(); SORT_OPTION = id; if (SORT_OPTION == 3) { non_terminal_treemap(1); draw_hypothesis_sort_buttons(); } else { hypothesis_overview(); } } var show_scores = 0; var show_id = 0; var show_derivation = 0; function click_option( id ) { if (id == 1) { show_scores = !show_scores; highlight_option_button( 0, 1, show_scores ); } if (id == 2) { show_derivation = !show_derivation; color_cells(); highlight_option_button( 0, 2, show_derivation ); } if (id == 3) { show_id = !show_id; highlight_option_button( 0, 3, show_id ); } if (current_menu_selection > 0) { click_menu( current_menu_selection, 1 ); } } var show_hyp_score = 0; var show_derivation_score = 0; function click_rule_option( id ) { if (id == 1) { show_hyp_score = !show_hyp_score; highlight_option_button( 1, 1, show_hyp_score ); } if (id == 2) { show_derivation_score = !show_derivation_score; highlight_option_button( 1, 2, show_derivation_score ); } if (id == 3) { if (ZOOM > 0) { ZOOM = 0; } else { ZOOM = 0.3; } assign_chart_coordinates(); highlight_option_button( 1, 3, ZOOM ); } draw_rule_cube(current_z_pos_string); } function highlight_option_button( rule_option, id, on_off ) { var button = document.getElementById((rule_option?"rule-":"") + "option-" + id); if (on_off) { button.setAttribute("fill", "#cd853f"); } else { button.setAttribute("fill", "#fdd017"); } } // INITIALIZE THE CHART function draw_chart() { for (var from=0;from= 0) { highlight_input( current_from, current_to, 0) } highlight_input( from, to, 1) current_from = from; current_to = to; } function click_cell( from, to ) { if (from == current_rule_from && to == current_rule_to) { unshow_rules(); current_rule_from = -1; ZOOM = 0; } else { show_rules( from, to ); ZOOM_FROM = current_rule_from; ZOOM_TO = current_rule_to; ZOOM_WIDTH = to-from+1; } assign_chart_coordinates(); } function highlight_input( from, to, on_off ) { for(var i=from; i<=to; i++) { var input_box = document.getElementById("inputbox-" + i); input_box.setAttribute("fill", on_off ? INPUT_HIGHLIGHT_COLOR : INPUT_REGULAR_COLOR); } } // // VISUALIZATION OF CHART CELLS // // BASIC ANNOTATION WITH NUMBERS function annotate_cells_with_hypcount() { for (var from=0;from"); for(var i=0; i= next_worst) { current_worst = next_worst; // ... and keep going } else { // compute rectangles... var sum = 0; for(var j=start; j 20) { font_size = 20; } if (font_size >= 3) { var rect_label = document.createElementNS(xmlns,"text"); rect_label.setAttribute("id", "rect-label-" + from + "-" + to + "-" + j); rect_label.setAttribute("x", CELL_MARGIN + (offset_x + cum_x + this_width/2) * scale_factor); rect_label.setAttribute("y", CELL_MARGIN + (offset_y + cum_y + this_height/2) * scale_factor + font_size/2 -2); rect_label.setAttribute("style", "font-size: " + font_size + "; font-family: Verdana, Arial; font-weight:900;"); rect_label.setAttribute("fill", "#00f"); rect_label.setAttribute("opacity", .3); rect_label.setAttribute("text-anchor", "middle"); rect_label.setAttribute("pointer-events", "none"); var content = document.createTextNode( label[j] ); rect_label.appendChild( content ); cell.appendChild( rect_label ); } if (adding_on_left) { cum_y += this_height; } else { cum_x += this_width; } } if (adding_on_left) { offset_x += this_width; } else { offset_y += this_height; } // move to next sequence if (i != label.length) { start = i; extend = Math.min( width-offset_x, height-offset_y ); current_worst = squarify_worst( label, count, i, i, extend ); } } } } function squarify_worst( label, count, start, end, extend ) { var sum = 0; for(var i=start; i<=end; i++) { sum += count[label[i]]; } var max_ratio = 0; for(var i=start; i<=end; i++) { var ratio = count[label[i]] * extend*extend /sum/sum; if (ratio < 1) { ratio = 1/ratio; } max_ratio = Math.max( ratio, max_ratio ); } return max_ratio; } // HIGHLIGHT BEST DERIVATION function best_derivation( on_off ) { var best_score = -9e9; var best_id = -1; for (var i=0;i best_score) { best_score = edge[id][HYP_SCORE]; best_id = id; } } best_derivation_recurse( best_id, on_off, -1, -1, 0 ); } function best_derivation_recurse( id, on_off, parent_from, parent_to, child_pos ) { var from = edge[id][FROM]; var to = edge[id][TO]; // highlight cell and annotate with rule highlight_cell( from, to, on_off ); if (on_off) { var annotation = ""; if (show_id) { annotation += id + "
"; } annotation += edge[id][LHS] + "\u2192"; annotation += edge[id][OUTPUT]; if (show_scores) { annotation += "
" + edge[id][HYP_SCORE]; } annotate_cell( from, to, annotation, 10 ); } else { unannotate_cell( from, to ); } // highlight hyp highlight_hyp( id, on_off ); // arrow to parent if (parent_from >= 0) { if (on_off) { make_arrow( id, parent_from, parent_to, from, to, 0, child_pos ); } else { var arrow = document.getElementById("arrow-" + id); chart.removeChild(arrow); } } var child_order = Array(); if (edge[id][ALIGNMENT] != "") { var alignment = edge[id][ALIGNMENT].split(" "); // sorting: array position is source nonterminal pos alignment.sort(); // alignment target sympol pos -> source nonterminal pos var reversed_alignment = Array(); for(var i=0; i target nonterminal pos for(var i=0; i255) { dec = 255; } var color = Math.round(dec).toString(16); return "#ffff"+color; } function get_children( id ) { if (edge[id][CHILDREN] == "") { return []; } return edge[id][CHILDREN].split(" "); } // OVERVIEW ALL HYPOTHESES function hypothesis_overview() { for (var from=0;from= row_size) { column = 0; y += diameter; x = 0; } } } function remove_hypothesis_overview() { for (var id in edge) { var cell = document.getElementById("cell-" + edge[id][FROM] + "-" + edge[id][TO]); var hyp = document.getElementById("hyp-" + id); cell.removeChild(hyp); } // remove sort buttons for(var i=0; i<4; i++) { var old = document.getElementById("sort-" + i); chart.removeChild( old ); var old = document.getElementById("sort-label-" + i); chart.removeChild( old ); } } function hover_hyp( id ) { best_derivation_recurse( id, 1, -1, -1 ); } function unhover_hyp( id ) { best_derivation_recurse( id, 0, -1, -1 ); } function hover_rule_hyp( id ) { highlight_rule_hyp( id, 1 ); if (current_menu_selection == 1) { best_derivation( 0 ); } if (current_menu_selection <= 2) { best_derivation_recurse( id, 1, -1, -1 ); } } function unhover_rule_hyp( id ) { highlight_rule_hyp( id, 0 ); if (current_menu_selection <= 2) { best_derivation_recurse( id, 0, -1, -1 ); } if (current_menu_selection == 1) { best_derivation( 1 ); } } function highlight_hyp( id, on_off ) { var hyp = document.getElementById("hyp-" + id); if (hyp == null) { return; } hyp.setAttribute("fill", hyp_color(id, on_off)); } function highlight_rule_hyp( id, on_off ) { var hyp = document.getElementById("rule-hyp-" + id); if (hyp == null) { return; } hyp.setAttribute("fill", rule_hyp_color(id, on_off)); } function hyp_color( id, on_off ) { if (on_off) { var color = "#ff0000"; if (edge[id][RECOMBINED]>0) { color = "#808080"; } else if (id in reachable) { color = "#00c000"; } return color; } var color = "#ffc0c0"; if (edge[id][RECOMBINED]>0) { color = "#c0c0c0"; } else if (id in reachable) { color = "#80ff80"; } return color; } // RULES function get_rule( id ) { // get non-terminal labels if (edge[id] === undefined) { alert("unknown edge "+id); return ""; } var output = edge[id][OUTPUT].split(" "); var alignment = edge[id][ALIGNMENT].split(" "); alignment.sort(); var nt_label = Array(); for(var i=0;i best_hyp_score) { best_hyp_score = edge[id][HYP_SCORE]; } } function sortByRuleCount( a, b ) { return rule_count[rule_hash[b]] - rule_count[rule_hash[a]]; } rule_list = rule_list.sort(sortByRuleCount); RULE_HEIGHT = 15; RULE_FONT_SIZE = 11; // squeeze if too many rules if (rule_list.length * RULE_HEIGHT > (CHART_HEIGHT-50)) { var factor = (CHART_HEIGHT-50)/rule_list.length/RULE_HEIGHT; RULE_HEIGHT = Math.floor( RULE_HEIGHT * factor ); RULE_FONT_SIZE = Math.ceil( RULE_FONT_SIZE * factor ); } draw_rule_options(); for(var i=-1; i 0) { click_rule( from, to, 0 ); } } function unshow_rules() { if (current_rule_from >= 0) { var cell = document.getElementById("cellbox-" + current_rule_from + "-" + current_rule_to); cell.setAttribute("stroke", "black"); cell.setAttribute("stroke-width", "1"); } var finished = 0; for(var i=-1; !finished; i++) { var old = document.getElementById("rule-" + i); if (old != null) { chart.removeChild( old ); } else { finished = 1; } } var old = document.getElementById("rule-message"); if (old != null) { chart.removeChild( old ); } old = document.getElementById("rule-cube"); if (old != null) { chart.removeChild( old ); } finished = 0; for(var i=1; !finished; i++) { var old = document.getElementById("rule-option-" + i); if (old != null) { chart.removeChild( old ); var old = document.getElementById("rule-option-label-" + i); chart.removeChild( old ); } else { finished = 1; } } } function draw_rule( from, to, rule_id ) { var rule_label = document.createElementNS(xmlns,"text"); rule_label.setAttribute("id", "rule-" + rule_id); rule_label.setAttribute("x", CHART_WIDTH-120); rule_label.setAttribute("y", 10 + RULE_HEIGHT*(rule_id+1)); rule_label.setAttribute("text-anchor", "middle"); if (rule_id>-1) { rule_label.setAttribute("style", "font-size: "+RULE_FONT_SIZE+"; font-family: Verdana, Arial;"); rule_label.setAttribute("onclick","click_rule(" + from + "," + to + "," + rule_id + ");"); var content = document.createTextNode( rule_list[rule_id] ); rule_label.appendChild( content ); } else { rule_label.setAttribute("style", "font-size: "+(RULE_FONT_SIZE-2)+"; font-family: Verdana, Arial; font-weight: bold;"); var content = document.createTextNode( rule_list.length == 0 ? "NO RULES" : "RULES" ); rule_label.appendChild( content ); } chart.appendChild( rule_label ); } function draw_rule_message( message ) { var old = document.getElementById("rule-message"); if (old != null) { chart.removeChild( old ); } var rule_message_group = document.createElementNS(xmlns,"svg"); rule_message_group.setAttribute("id","rule-message"); rule_message_group.setAttribute("x", 0); rule_message_group.setAttribute("y", 250); var line = message.split("
"); for(var i=0;i=0) { var rule_label = document.getElementById("rule-"+current_rule_id); rule_label.setAttribute("style", "font-size: "+RULE_FONT_SIZE+"; font-family: Verdana, Arial;"); } var rule_label = document.getElementById("rule-"+rule_id); rule_label.setAttribute("style", "font-size: "+RULE_FONT_SIZE+"; font-family: Verdana, Arial; font-weight: bold;"); current_rule_id = rule_id; // first get all the data output_list = Array(); var output_hash = Array(); children_list = Array(); var children_hash = Array(); current_edge = Array(); for (var i=0;i children_list.length-1) { children_hash.push([]); children_list.push([]); } // build index var child = ""+children[j]; if (children_hash[j][child] === undefined) { children_hash[j][child] = children_list[j].length; children_list[j].push(parseInt(child)); } } } } // sort function sortBySecond(a,b) { asplit = a.split("|"); bsplit = b.split("|"); return bsplit[1] - asplit[1]; } output_list = output_list.sort(sortBySecond); function sortHypByScore(a,b) { return edge[b][HYP_SCORE] - edge[a][HYP_SCORE]; } for(var i=0;i1 && axis[dimension_order[1]].length > max_length) { // max_length = axis[dimension_order[1]].length; //} // space for additional dimensions var z_dimension_length = 0; if (dimension_order.length > 2) { z_dimension_length = -2; for(var i=2; i 2) { // for(var i=2; i max_z_dimension_length) { // max_z_dimension_length = axis[dimension_order[i]].length; // } // } //} //if (max_z_dimension_length > 10) { // max_z_dimension_length = 10; //} //var y_length = axis[dimension_order[0]].length; //if (max_z_dimension_length > 0) { // y_length += max_z_dimension_length + 2; // if (y_length > max_length) { // max_length = y_length; // } //} // calculate table cell and font size if (max_length+8 <= CHART_HEIGHT/15) { RULE_CUBE_HYP_SIZE = 15; RULE_CUBE_FONT_SIZE = 11; } else if (max_length+8 > CHART_HEIGHT/9) { RULE_CUBE_HYP_SIZE = 9; RULE_CUBE_FONT_SIZE = 7; } else { RULE_CUBE_HYP_SIZE = CHART_HEIGHT/(max_length+8); RULE_CUBE_FONT_SIZE = (RULE_CUBE_HYP_SIZE * 12/15).toFixed(0); } var Z_HEIGHT = 0; if (dimension_order.length > 2) { Z_HEIGHT = (z_dimension_length + 2) * RULE_CUBE_HYP_SIZE; } var rule_cube = document.createElementNS(xmlns,"svg"); rule_cube.setAttribute("id","rule-cube"); rule_cube.setAttribute("x", CHART_WIDTH - 30); rule_cube.setAttribute("y", 0); chart.appendChild( rule_cube ); // draw y axis var label = get_rule_axis_name(dimension_order[0]); draw_rule_row(-1,label); for(var y=0; y (CHART_HEIGHT-Z_HEIGHT)/9-10) { draw_rule_row(Math.ceil(CHART_HEIGHT/9-10),"(more, "+axis[dimension_order[0]].length+" total)"); } // draw x axis if (axis.length > 1) { var label = get_rule_axis_name(dimension_order[1]); draw_rule_column(-1,label); for(var x=0; x CHART_HEIGHT/9-10) { draw_rule_column(Math.ceil(CHART_HEIGHT/9-10),"(more, "+axis[dimension_order[1]].length+" total)"); } } // draw hyps for(var y=0; y=0) { rule_label.setAttribute("style", "font-size: "+RULE_CUBE_FONT_SIZE+"; font-family: Verdana, Arial;"); rule_label.setAttribute("x", RULE_CUBE_FONT_SIZE*10+5); } else { rule_label.setAttribute("style", "font-size: "+(RULE_CUBE_FONT_SIZE-2)+"; font-family: Verdana, Arial; font-weight: bold;"); rule_label.setAttribute("x", RULE_CUBE_FONT_SIZE*10-30); } rule_label.setAttribute("text-anchor", "end"); var content = document.createTextNode( label ); rule_label.appendChild( content ); var rule_cube = document.getElementById("rule-cube"); rule_cube.appendChild( rule_label ); } function draw_rule_column( pos, label ) { var rule_label = document.createElementNS(xmlns,"text"); rule_label.setAttribute("id", "rule-column-" + pos); rule_label.setAttribute("x", RULE_CUBE_FONT_SIZE*10 -3 + RULE_CUBE_HYP_SIZE*(1+pos) ); rule_label.setAttribute("y", RULE_CUBE_FONT_SIZE*10 -12); rule_label.setAttribute("transform", "rotate(60 "+ (RULE_CUBE_FONT_SIZE*10-3+RULE_CUBE_HYP_SIZE*(1+pos)) +" "+(RULE_CUBE_FONT_SIZE*10 - 12)+")") if (pos>=0) { rule_label.setAttribute("style", "font-size: "+RULE_CUBE_FONT_SIZE+"; font-family: Verdana, Arial;"); } else { rule_label.setAttribute("style", "font-size: "+(RULE_CUBE_FONT_SIZE-2)+"; font-family: Verdana, Arial; font-weight: bold;"); } rule_label.setAttribute("text-anchor", "end"); var content = document.createTextNode( label ); rule_label.appendChild( content ); var rule_cube = document.getElementById("rule-cube"); rule_cube.appendChild( rule_label ); } function draw_rule_z( z,total_z, z_pos, pos,pos_offset, label ) { var rule_label = document.createElementNS(xmlns,"text"); rule_label.setAttribute("id", "rule-z-" + z + "-" + pos); //rule_label.setAttribute("x", RULE_CUBE_FONT_SIZE*10+10 + CHART_HEIGHT*z/(total_z+1) ); rule_label.setAttribute("x", RULE_CUBE_FONT_SIZE*10+10 ); rule_label.setAttribute("y", RULE_CUBE_FONT_SIZE*10 + RULE_CUBE_HYP_SIZE*(pos+pos_offset)); if (pos >= 0) { rule_label.setAttribute("style", "font-size: "+RULE_CUBE_FONT_SIZE+"; font-family: Verdana, Arial;" +((z_pos[z] == pos)?" font-weight: bold;":"")); z_pos_copy = z_pos.join(",").split(","); z_pos_copy[z] = pos; rule_label.setAttribute("onclick","draw_rule_cube(\"" + z_pos_copy.join(",") + "\");"); } else { rule_label.setAttribute("style", "font-size: "+(RULE_CUBE_FONT_SIZE-2)+"; font-family: Verdana, Arial; font-weight: bold;"); } var content = document.createTextNode( label ); rule_label.appendChild( content ); var rule_cube = document.getElementById("rule-cube"); rule_cube.appendChild( rule_label ); } function draw_rule_hyp( xpos, ypos, id ) { if (id == -1) { return; } var diameter = RULE_CUBE_HYP_SIZE-2; var hyp = document.createElementNS(xmlns,"circle"); hyp.setAttribute("id", "rule-hyp-" + id); hyp.setAttribute("cx", RULE_CUBE_FONT_SIZE*10+10 + RULE_CUBE_HYP_SIZE*xpos + diameter/2); hyp.setAttribute("cy", RULE_CUBE_FONT_SIZE*10-2 + RULE_CUBE_HYP_SIZE*(ypos-0.5) + diameter/2); hyp.setAttribute("r", diameter/2); hyp.setAttribute("fill", rule_hyp_color(id, 0)); //hyp.setAttribute("opacity",.5); hyp.setAttribute("onmouseover","hover_rule_hyp(" + id + ");") hyp.setAttribute("onmouseout","unhover_rule_hyp(" + id + ");") var rule_cube = document.getElementById("rule-cube"); rule_cube.appendChild( hyp ); } function rule_hyp_color( id, on_off ) { if (!show_hyp_score && !show_derivation_score) { return hyp_color( id, on_off ); } var inactive_color = on_off ? "80" : "00"; var hyp_score_color = inactive_color; var derivation_score_color = inactive_color; if (show_hyp_score) { hyp_score_color = get_score_from_color(best_hyp_score-edge[id][HYP_SCORE]); } if (show_derivation_score) { if (edge[id][DERIVATION_SCORE] == null) { derivation_score_color = "00"; } else { derivation_score_color = get_score_from_color(best_derivation_score-edge[id][DERIVATION_SCORE]); } } return "#" + inactive_color + derivation_score_color + hyp_score_color; } function get_score_from_color( score, on_off ) { if (score == null) { return "00"; } var dec = 255 - 255 * (score/8); if (dec < 0) { dec = 0; } if (on_off) { dec = dec/2+128; } dec = Math.floor(dec/16)*16+15; var color = dec.toString(16); if (dec < 16) { color = "0"+color; } return color; }