Annotation of loncom/homework/caparesponse/caparesponse.pm, revision 1.134

1.3       albertel    1: # The LearningOnline Network with CAPA
                      2: # caparesponse definition
1.47      albertel    3: #
1.134   ! albertel    4: # $Id: caparesponse.pm,v 1.133 2004/02/20 18:04:43 albertel Exp $
1.47      albertel    5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
                     27: #
1.3       albertel   28: 
                     29: package Apache::caparesponse;
                     30: use strict;
1.4       albertel   31: use capa;
1.129     www        32: use Apache::lonlocal;
1.3       albertel   33: 
1.50      harris41   34: BEGIN {
1.89      albertel   35:     &Apache::lonxml::register('Apache::caparesponse',('caparesponse','numericalresponse','stringresponse','formularesponse'));
1.3       albertel   36: }
                     37: 
1.89      albertel   38: sub start_numericalresponse {
                     39:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
                     40:     my $id = &Apache::response::start_response($parstack,$safeeval);
                     41:     my $result;
                     42:     if ($target eq 'edit') {
                     43: 	$result.=&Apache::edit::tag_start($target,$token);
                     44: 	$result.=&Apache::edit::text_arg('Answer:','answer',$token);
                     45: 	if ($token->[1] eq 'numericalresponse') {
1.122     albertel   46: 	    $result.=&Apache::edit::text_arg('Incorrect Answers:','incorrect',
                     47: 					     $token);
1.89      albertel   48: 	    $result.=&Apache::edit::text_arg('Unit:','unit',$token,5).
                     49: 		&Apache::loncommon::help_open_topic('Physical_Units');
                     50: 	    $result.=&Apache::edit::text_arg('Format:','format',$token,4).
                     51: 		&Apache::loncommon::help_open_topic('Numerical_Response_Format');
                     52: 	} elsif ($token->[1] eq 'formularesponse') {
                     53: 	    $result.=&Apache::edit::text_arg('Sample Points:','samples',
                     54: 					     $token,40).
                     55: 	      &Apache::loncommon::help_open_topic('Formula_Response_Sampling');
                     56: 	}
                     57: 	$result.=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
                     58:     } elsif ($target eq 'modified') {
                     59: 	my $constructtag;
                     60: 	if ($token->[1] eq 'numericalresponse') {
                     61: 	    $constructtag=&Apache::edit::get_new_args($token,$parstack,
                     62: 						      $safeeval,'answer',
1.117     albertel   63: 						      'incorrect','unit',
                     64: 						      'format');
1.89      albertel   65: 	} elsif ($token->[1] eq 'formularesponse') {
                     66: 	    $constructtag=&Apache::edit::get_new_args($token,$parstack,
                     67: 						      $safeeval,'answer',
                     68: 						      'samples');
                     69: 	}
                     70: 	if ($constructtag) {
                     71: 	    $result = &Apache::edit::rebuild_tag($token);
                     72: 	    $result.=&Apache::edit::handle_insert();
1.22      albertel   73: 	}
1.89      albertel   74:     } elsif ($target eq 'meta') {
                     75: 	$result=&Apache::response::meta_package_write('numericalresponse');
                     76:     } elsif ($target eq 'answer' || $target eq 'grade') {
                     77: 	&Apache::response::reset_params();
1.96      albertel   78:     } elsif ($target eq 'web') {
                     79: 	my $partid = $Apache::inputtags::part;
                     80: 	my $hideunit=&Apache::lonnet::EXT('resource.'.$partid.'_'.$id.'.turnoffunit');
                     81: 	&Apache::lonxml::debug("Got unit $hideunit for $partid $id");
                     82: 	#no way to enter units, with radio buttons
                     83: 	if (lc($hideunit) eq "yes") {
                     84: 	    my $unit=&Apache::lonxml::get_param_var('unit',$parstack,
                     85: 						    $safeeval);
                     86: 	    if ($unit =~ /\S/) { $result.=" (in $unit) "; }
                     87: 	}
1.16      albertel   88:     }
1.89      albertel   89:     return $result;
1.21      albertel   90: }
                     91: 
1.89      albertel   92: sub end_numericalresponse {
                     93:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.90      albertel   94:     my $increment=1;
1.89      albertel   95:     my $result = '';
                     96:     if (!$Apache::lonxml::default_homework_loaded) {
                     97: 	&Apache::lonxml::default_homework_load($safeeval);
1.34      albertel   98:     }
1.125     albertel   99:     my $tag;
                    100:     if (scalar(@$tagstack)) { $tag=$$tagstack[-1]; }
1.95      albertel  101:     if ( $target eq 'grade' && defined($ENV{'form.submitted'})) {
1.125     albertel  102: 	&Apache::response::setup_params($tag);
1.90      albertel  103: 	$safeeval->share_from('capa',['&caparesponse_capa_check_answer']);
                    104: 	my $partid = $Apache::inputtags::part;
                    105: 	my $id = $Apache::inputtags::response['-1'];
1.95      albertel  106: 	if ($Apache::lonhomework::type eq 'exam' && 
1.125     albertel  107: 	    $tag eq 'formularesponse') {
1.95      albertel  108: 	    $increment=&Apache::response::scored_response($partid,$id);
                    109: 	} else {
                    110: 	    my $response = &Apache::response::getresponse();
                    111: 	    if ( $response =~ /[^\s]/) {
                    112: 		my $ad;
                    113: 		my %previous = &Apache::response::check_for_previous($response,$partid,$id);
                    114: 		&Apache::lonxml::debug("submitted a $response<br>\n");
                    115: 		&Apache::lonxml::debug($$parstack[-1] . "\n<br>");
                    116: 		
                    117: 		if ($ENV{'form.submitted'} eq 'scantron') {
1.117     albertel  118: 		    my $number_of_bubbles = &Apache::lonnet::EXT('resource.'.$partid.'_'.$id.'.numbubbles');
                    119: 		    if (!$number_of_bubbles) { $number_of_bubbles=8; }
                    120: 		    my (@formats)=&Apache::lonxml::get_param_var('format',$parstack,$safeeval);
                    121: 		    my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,$safeeval);
                    122: 		    my (@incorrect)=&Apache::lonxml::get_param_var('incorrect',$parstack,$safeeval);
                    123: 		    my @values=&make_numerical_bubbles($number_of_bubbles,$target,$answers[0],$formats[0],\@incorrect);
1.95      albertel  124: 		    $response=$values[$response];
                    125: 		} else {
                    126: 		    $response =~ s/\\/\\\\/g;
                    127: 		    $response =~ s/\'/\\\'/g;
                    128: 		}
1.115     albertel  129: 		$Apache::lonhomework::results{"resource.$partid.$id.submission"}=$response;
1.95      albertel  130: 		&Apache::lonxml::debug("current $response");
                    131: 		my $expression="&caparesponse_check_list('".$response."','".
                    132: 		    $$parstack[-1];
1.96      albertel  133: 		my $hideunit=&Apache::lonnet::EXT('resource.'.$partid.'_'.$id.'.turnoffunit');
1.123     albertel  134: 
                    135: 		foreach my $key (keys(%Apache::inputtags::params)) {
                    136: 		    $expression.= ';my $'. #'
                    137: 			$key.'="'.$Apache::inputtags::params{$key}.'"';
                    138: 		}
                    139: 
1.95      albertel  140: 		#no way to enter units, with radio buttons
1.96      albertel  141: 		if ($Apache::lonhomework::type eq 'exam' ||
                    142: 		    lc($hideunit) eq "yes") {
1.95      albertel  143: 		    $expression.=';my $unit=undef;';
                    144: 		}
1.123     albertel  145: 		#sig fig don't make much sense either
                    146: 		if (($Apache::lonhomework::type eq 'exam' ||
                    147: 		     $ENV{'form.submitted'} eq 'scantron') &&
1.125     albertel  148: 		    $tag eq 'numericalresponse') {
1.123     albertel  149: 		    $expression.=';my $sig=undef;';
1.95      albertel  150: 		}
1.123     albertel  151: 
1.125     albertel  152: 		if ($tag eq 'formularesponse') {
1.95      albertel  153: 		    $expression.=';my $type="fml";';
1.125     albertel  154: 		} elsif ($tag eq 'numericalresponse') {
1.95      albertel  155: 		    $expression.=';my $type="float";';
                    156: 		}
                    157: 		$expression.="');";
1.105     albertel  158: 		my @answer=&Apache::lonxml::get_param_var('answer',$parstack,$safeeval);
                    159: 		&Apache::lonxml::debug('answer is'.join(':',@answer));
                    160: 		@{$safeeval->varglob('CAPARESPONSE_CHECK_LIST_answer')}=@answer;
                    161: 		
1.95      albertel  162: 		$result = &Apache::run::run($expression,$safeeval);
                    163: 		my ($awards) = split /:/ , $result;
                    164: 		($ad) = &Apache::inputtags::finalizeawards(split /,/ , $awards);
                    165: 		&Apache::lonxml::debug("$expression");
                    166: 		&Apache::lonxml::debug("\n<br>result:$result:$Apache::lonxml::curdepth<br>\n");
                    167: 		&Apache::response::handle_previous(\%previous,$ad);
                    168: 		$Apache::lonhomework::results{"resource.$partid.$id.awarddetail"}=$ad;
                    169: 		$result='';
1.90      albertel  170: 	    }
1.89      albertel  171: 	}
                    172:     } elsif ($target eq 'web' || $target eq 'tex') {
1.90      albertel  173: 	my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,
                    174: 						     $safeeval);
1.89      albertel  175: 	my $award = $Apache::lonhomework::history{"resource.$Apache::inputtags::part.solved"};
                    176: 	my $status = $Apache::inputtags::status['-1'];
1.114     albertel  177: 	if (  &Apache::response::show_answer() ) {
1.89      albertel  178: 	    my (@formats)=&Apache::lonxml::get_param_var('format',$parstack,
                    179: 							 $safeeval);
                    180: 	    my $unit=&Apache::lonxml::get_param_var('unit',$parstack,
                    181: 						    $safeeval);
                    182: 	    if ($target eq 'web') {
1.129     www       183: 		$result="<br />".&mt('The correct answer is')." ";
1.89      albertel  184: 	    }
                    185: 	    for (my $i=0; $i <= $#answers; $i++) {
                    186: 		my $answer=$answers[$i];
                    187: 		my $format;
                    188: 		if ($#formats > 0) {
                    189: 		    $format=$formats[$i];
                    190: 		} else {
                    191: 		    $format=$formats[0];
                    192: 		}
                    193: 		my $formatted;
                    194: 		if ((defined($format)) && ($format ne '')) {
1.109     albertel  195: 		    $format=~s/e/E/g;
1.89      albertel  196: 		    &Apache::lonxml::debug("formatting with :$format: answer :$answer:");
                    197: 		    $formatted=sprintf('%.'.$format,$answer).',';
                    198: 		} else {
                    199: 		    &Apache::lonxml::debug("no format answer :$answer:");
                    200: 		    $formatted="$answer,";
                    201: 		}
                    202: 		if ($target eq 'tex') {
                    203: 		    $formatted='';
                    204: 		    #$formatted=&Apache::lonxml::latex_special_symbols($formatted);
                    205: 		}
                    206: 		$result.=$formatted;
                    207: 	    }
                    208: 	    chop $result;
                    209: 	    if ($target eq 'web') {
                    210: 		$result.=" $unit.<br />";
                    211: 	    }
                    212: 	}
                    213: 	if ($Apache::lonhomework::type eq 'exam') {
1.118     albertel  214: 	    my $partid=$Apache::inputtags::part;
                    215: 	    my $id=$Apache::inputtags::response[-1];
1.117     albertel  216: 	    my $number_of_bubbles = &Apache::lonnet::EXT('resource.'.$partid.'_'.$id.'.numbubbles');
1.126     albertel  217: 	    if ($Apache::inputtags::params{'numbubbles'}) {
                    218: 		$number_of_bubbles = $Apache::inputtags::params{'numbubbles'};
                    219: 	    }
1.117     albertel  220: 	    if (!$number_of_bubbles) { $number_of_bubbles=8; }
1.126     albertel  221: 	    
1.89      albertel  222: 	    my (@formats)=&Apache::lonxml::get_param_var('format',$parstack,
                    223: 							 $safeeval);
                    224: 	    my $unit=&Apache::lonxml::get_param_var('unit',$parstack,
                    225: 						    $safeeval);
1.117     albertel  226: 	    my (@incorrect)=&Apache::lonxml::get_param_var('incorrect',$parstack,$safeeval);
1.90      albertel  227: 	    my @bubble_values=&make_numerical_bubbles($number_of_bubbles,
1.91      albertel  228: 						      $target,$answers[0],
1.117     albertel  229: 						      $formats[0],\@incorrect);
1.89      albertel  230: 	    my @alphabet=('A'..'Z');
                    231: 	    if ($target eq 'web') {
1.125     albertel  232: 		if ($tag eq 'numericalresponse') {
1.89      albertel  233: 		    if ($unit=~/\S/) {$result.=' (in '.$unit.')<br /><br />';}
                    234: 		    $result.= '<table border="1"><tr>';
1.116     albertel  235: 		    my $previous=$Apache::lonhomework::history{"resource.$Apache::inputtags::part.$id.submission"};
1.90      albertel  236: 		    for (my $ind=0;$ind<$number_of_bubbles;$ind++) {
1.116     albertel  237: 			my $checked='';
                    238: 			if ($previous eq $bubble_values[$ind]) {
                    239: 			    $checked=" checked='on' ";
                    240: 			}
1.90      albertel  241: 			$result.='<td><input type="radio" name="HWVAL_'.$id.
1.116     albertel  242: 			    '" value="'.$bubble_values[$ind].'" '.$checked
                    243: 			    .' /><b>'.$alphabet[$ind].'</b>: '.
                    244: 			    $bubble_values[$ind].'</td>';
1.89      albertel  245: 		    }
                    246: 		    $result.='</tr></table>';
1.125     albertel  247: 		} elsif ($tag eq 'formularesponse') {
1.90      albertel  248: 		    $result.= '<br /><br /><font color="red">
                    249:                            <textarea name="HWVAL_'.$id.'" rows="4" cols="50">
                    250:                            </textarea></font> <br /><br />';
1.89      albertel  251: 		}
                    252: 	    } elsif ($target eq 'tex') {
1.107     sakharuk  253: 		if ((defined $unit) and ($unit=~/\S/) and ($Apache::lonhomework::type eq 'exam')) {
1.89      albertel  254: 		    $result.=' \textit{(in} \verb|'.$unit.'|\textit{)} ';
                    255: 		}
1.125     albertel  256: 		if ($tag eq 'numericalresponse') {
1.90      albertel  257: 		    my ($celllength,$number_of_tables,@table_range)=
1.128     sakharuk  258: 			&get_table_sizes($number_of_bubbles,\@bubble_values);
1.89      albertel  259: 		    my $j=0;
                    260: 		    my $cou=0;
                    261: 		    $result.='\vskip -1 mm \noindent \begin{enumerate}\item[\textbf{'.$Apache::lonxml::counter.'}.]';
                    262: 		    for (my $i=0;$i<$number_of_tables;$i++) {
                    263: 			$result.='\vskip -1 mm \noindent \begin{tabular}{';
1.90      albertel  264: 			for (my $ind=0;$ind<$table_range[$j];$ind++) {
1.128     sakharuk  265: 			    $result.='p{3 mm}p{'.$celllength.' mm}';
1.89      albertel  266: 			}
                    267: 			$result.='}';
1.90      albertel  268: 			for (my $ind=$cou;$ind<$cou+$table_range[$j];$ind++) {
1.128     sakharuk  269: 			    $result.='\hskip -4 mm {\small \textbf{'.$alphabet[$ind].'}}$\bigcirc$ & \hskip -3 mm {\small '.$bubble_values[$ind].'} ';
1.89      albertel  270: 			    if ($ind != $cou+$table_range[$j]-1) {$result.=' & ';}
                    271: 			}
                    272: 			$cou += $table_range[$j];
                    273: 			$j++;
                    274: 			$result.='\\\\\end{tabular}\vskip 0 mm ';
                    275: 		    }
                    276: 		    $result.='\end{enumerate}';
                    277: 		} else {
                    278: 		    $result.='\fbox{\fbox{\parbox{\textwidth-5mm}{\strut\\\\\strut\\\\\strut\\\\\strut\\\\}}}';
1.93      albertel  279: 		    my $repetition = &Apache::response::repetition();
1.89      albertel  280: 		    $result.='\begin{enumerate}';
                    281: 		    for (my $i=0;$i<$repetition;$i++) {
1.93      albertel  282: 			$result.='\item[\textbf{'.($Apache::lonxml::counter+$i).'}.]\textit{Leave blank on scoring form}\vskip 0 mm';
1.89      albertel  283: 		    }
1.90      albertel  284: 		    $increment=$repetition;
1.89      albertel  285: 		    $result.= '\end{enumerate}';
                    286: 		}
                    287: 	    }
                    288: 	}
                    289:     } elsif ($target eq 'edit') {
                    290: 	$result.='</td></tr>'.&Apache::edit::end_table;
                    291:     } elsif ($target eq 'answer' || $target eq 'analyze') {
1.58      sakharuk  292: 	
1.89      albertel  293: 	my $part_id="$Apache::inputtags::part.$Apache::inputtags::response[-1]";
                    294: 	if ($target eq 'analyze') {
                    295: 	    push (@{ $Apache::lonhomework::analyze{"parts"} },$part_id);
1.125     albertel  296: 	    $Apache::lonhomework::analyze{"$part_id.type"} = $tag;
1.117     albertel  297: 	    my (@incorrect)=&Apache::lonxml::get_param_var('incorrect',$parstack,$safeeval);
                    298: 	    push (@{ $Apache::lonhomework::analyze{"$part_id.incorrect"} }, @incorrect);
1.89      albertel  299: 	}
1.125     albertel  300: 	if (scalar(@$tagstack)) {
                    301: 	    &Apache::response::setup_params($tag);
                    302: 	}
1.89      albertel  303: 	my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,$safeeval);
1.58      sakharuk  304: 	my (@formats)=&Apache::lonxml::get_param_var('format',$parstack,$safeeval);
                    305: 	my $unit=&Apache::lonxml::get_param_var('unit',$parstack,$safeeval);
1.89      albertel  306: 	my $type=&Apache::lonxml::get_param('type',$parstack,$safeeval);
                    307: 	
                    308: 	if ($target eq 'answer') {
1.125     albertel  309: 	    $result.=&Apache::response::answer_header($tag);
1.89      albertel  310: 	}
                    311: 	for(my $i=0;$i<=$#answers;$i++) {
                    312: 	    my $ans=$answers[$i];
1.90      albertel  313: 	    my $fmt=$formats[0];
                    314: 	    if (@formats && $#formats) {$fmt=$formats[$i];}
1.89      albertel  315: 	    my ($high,$low);
                    316: 	    if ($Apache::inputtags::params{'tol'}) {
                    317: 		($high,$low)=&get_tolrange($ans,$Apache::inputtags::params{'tol'});
                    318: 	    }
                    319: 	    my ($sighigh,$siglow);
                    320: 	    if ($Apache::inputtags::params{'sig'}) {
                    321: 		($sighigh,$siglow)=&get_sigrange($Apache::inputtags::params{'sig'});
                    322: 	    }
1.125     albertel  323: 	    if ($fmt && $tag eq 'numericalresponse') {
1.112     albertel  324: 		$fmt=~s/e/E/g;
1.89      albertel  325: 		$ans = sprintf('%.'.$fmt,$ans);
                    326: 		if ($high) {
1.90      albertel  327: 		    $high=sprintf('%.'.$fmt,$high);
                    328: 		    $low =sprintf('%.'.$fmt,$low);
1.62      sakharuk  329: 		}
1.60      sakharuk  330: 	    }
1.89      albertel  331: 	    if ($target eq 'answer') {
1.125     albertel  332: 		if ($high && $tag eq 'numericalresponse') { $ans.=' ['.$low.','.$high.']'; }
                    333: 		if ($sighigh && $tag eq 'numericalresponse') {
1.101     albertel  334: 		    if ($ENV{'form.answer_output_mode'} eq 'tex') {
1.106     sakharuk  335: 			$ans.= " Sig $siglow - $sighigh";
1.98      sakharuk  336: 		    } else {
1.101     albertel  337: 			$ans.= " Sig <i>$siglow - $sighigh</i>";
1.98      sakharuk  338: 		    }
                    339: 		}
1.125     albertel  340: 		$result.=&Apache::response::answer_part($tag,$ans);
1.89      albertel  341: 	    } elsif ($target eq 'analyze') {
                    342: 		push (@{ $Apache::lonhomework::analyze{"$part_id.answer"} }, $ans);
                    343: 		if ($high) {
                    344: 		    push (@{ $Apache::lonhomework::analyze{"$part_id.ans_high"} }, $high);
                    345: 		    push (@{ $Apache::lonhomework::analyze{"$part_id.ans_low"} }, $low);
1.58      sakharuk  346: 		}
1.79      sakharuk  347: 	    }
1.36      albertel  348: 	}
1.102     albertel  349: 	if (defined($unit) and ($unit ne '') and
1.125     albertel  350: 	    $tag eq 'numericalresponse') {
1.89      albertel  351: 	    if ($target eq 'answer') {
1.101     albertel  352: 		if ($ENV{'form.answer_output_mode'} eq 'tex') {
1.125     albertel  353: 		    $result.=&Apache::response::answer_part($tag,
1.106     sakharuk  354: 							    " Unit: $unit ");
1.98      sakharuk  355: 		} else {
1.125     albertel  356: 		    $result.=&Apache::response::answer_part($tag,
1.98      sakharuk  357: 							    "Unit: <b>$unit</b>");
                    358: 		}
1.89      albertel  359: 	    } elsif ($target eq 'analyze') {
1.103     albertel  360: 		push (@{ $Apache::lonhomework::analyze{"$part_id.unit"} }, $unit);
1.89      albertel  361: 	    }
                    362: 	}
1.125     albertel  363: 	if ($tag eq 'formularesponse' && $target eq 'answer') {
1.89      albertel  364: 	    my $samples=&Apache::lonxml::get_param('samples',$parstack,$safeeval);
1.125     albertel  365: 	    $result.=&Apache::response::answer_part($tag,$samples);
1.89      albertel  366: 	}
                    367: 	if ($target eq 'answer') {
1.125     albertel  368: 	    $result.=&Apache::response::answer_footer($tag);
1.89      albertel  369: 	}
1.69      sakharuk  370:     }
1.121     sakharuk  371:     if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' || 
1.90      albertel  372: 	$target eq 'tex' || $target eq 'analyze') {
                    373: 	&Apache::lonxml::increment_counter($increment);
                    374:     }
1.89      albertel  375:     &Apache::response::end_response;
                    376:     return $result;
1.90      albertel  377: }
                    378: 
                    379: sub get_table_sizes {
1.128     sakharuk  380:     my ($number_of_bubbles,$rbubble_values)=@_;
                    381:     my $scale=2; #mm for one digit
                    382:     my $cell_width=0;
                    383:     foreach my $member (@$rbubble_values) {
                    384: 	my $cell_width_real=0;
                    385: 	if ($member=~/(\d*)\.?(\d*)(E|e)(\+|-)?(\d*)/) {
                    386: 	    $cell_width_real=(length($1)+length($2)+length($5)+9)*$scale;
                    387: 	} elsif ($member=~/(\d*)\.?(\d*)/) {
1.132     sakharuk  388: 	    $cell_width_real=(length($1)+length($2)+3)*$scale;
1.128     sakharuk  389: 	} else {
                    390: 	    $cell_width_real=(length($member)+1)*$scale;
                    391: 	}
                    392: 	if ($cell_width_real>$cell_width) {$cell_width=$cell_width_real;}
1.90      albertel  393:     }
1.132     sakharuk  394:     $cell_width+=8; 
1.130     sakharuk  395:     my $textwidth;
                    396:     if ($ENV{'form.textwidth'} ne '') {
1.132     sakharuk  397: 	$ENV{'form.textwidth'}=~/(\d*)\.?(\d*)/;
                    398: 	$textwidth=$1.'.'.$2;
1.130     sakharuk  399:     } else {
1.132     sakharuk  400: 	$ENV{'textwidth'}=~/(\d+)\.?(\d*)/;
                    401: 	$textwidth=$1.'.'.$2;
1.130     sakharuk  402:     }
1.128     sakharuk  403:     my $bubbles_per_line=int($textwidth/$cell_width);
1.132     sakharuk  404:     if (($bubbles_per_line > $number_of_bubbles/2) && ($number_of_bubbles % 2==2)) {$bubbles_per_line=$number_of_bubbles/2;}
1.128     sakharuk  405:     my $number_of_tables = int($number_of_bubbles/$bubbles_per_line);
1.90      albertel  406:     my @table_range = ();
1.128     sakharuk  407:     for (my $i=0;$i<$number_of_tables;$i++) {push @table_range,$bubbles_per_line;}
                    408:     if ($number_of_bubbles % $bubbles_per_line) {
1.90      albertel  409: 	$number_of_tables++;
1.128     sakharuk  410: 	push @table_range,($number_of_bubbles % $bubbles_per_line);
1.90      albertel  411:     }
1.128     sakharuk  412:     $cell_width-=8;
                    413:     return ($cell_width,$number_of_tables,@table_range);
1.90      albertel  414: }
                    415: 
                    416: sub format_number {
                    417:     my ($number,$format,$target)=@_;
                    418:     my $ans;
                    419:     if ($format ne '') {
1.109     albertel  420: 	$format=~s/e/E/g;
1.90      albertel  421: 	$ans = sprintf('%.'.$format,$number);
                    422:     } else {
                    423: 	my $format = '';
                    424: 	#What is the number? (integer,decimal,floating point)
                    425: 	if ($number=~/^(\d*\.?\d*)(E|e)(\d*)$/) {
1.113     sakharuk  426: 	    $format = '3e';
1.90      albertel  427: 	} elsif ($number=~/^(\d*)\.(\d*)$/) {
                    428: 	    $format = '4f';
                    429: 	} elsif ($number=~/^(\d*)$/) {
                    430: 	    $format = 'd';
                    431: 	}
                    432: 	$ans = sprintf('%.'.$format,$number);
                    433:     }
                    434:     if ($target eq 'tex') {
                    435: 	if ($ans =~ m/([0-9\.\-\+]+)E([0-9\-\+]+)/ ) {
                    436: 	    my $number = $1;
                    437: 	    my $power = $2;
                    438: 	    $power=~s/^\+//;
1.124     sakharuk  439: 	    $power=~s/^(-?)0+(\d+)/$1$2/;
                    440: 	    $ans=$number.'$\times 10^{'.$power.'}$'; #'stupidemacs
1.90      albertel  441: 	}
                    442:     }
                    443:     return $ans;
                    444: }
                    445: 
                    446: sub make_numerical_bubbles {
1.117     albertel  447:     my ($number_of_bubbles,$target,$answer,$format,$incorrect) =@_;
1.91      albertel  448:     my @bubble_values = ();
1.119     albertel  449:     &Apache::lonxml::debug("answer is $answer incorrect is $incorrect");
                    450:     my @oldseed=&Math::Random::random_get_seed();
1.117     albertel  451:     if (defined($incorrect) && ref($incorrect)) {
                    452: 	&Apache::lonxml::debug("inside ".(scalar(@$incorrect)+1 gt $number_of_bubbles));
1.126     albertel  453: 	if (defined($$incorrect[0]) &&
                    454: 	    scalar(@$incorrect)+1 >= $number_of_bubbles) {
1.117     albertel  455: 	    &Apache::lonxml::debug("inside ".(scalar(@$incorrect)+1).":$number_of_bubbles");
                    456: 	    &Apache::response::setrandomnumber();
                    457: 	    my @rand_inc=&Math::Random::random_permutation(@$incorrect);
                    458: 	    @bubble_values=@rand_inc[0..($number_of_bubbles-2)];
                    459: 	    @bubble_values=sort {$a <=> $b} (@bubble_values,$answer);
                    460: 	    &Apache::lonxml::debug("Answer was :$answer: returning :".$#bubble_values.": whih are :".join(':',@bubble_values));
1.119     albertel  461: 	    &Math::Random::random_set_seed(@oldseed);
1.134   ! albertel  462: 	    if (defined($format) && $format ne '') {
        !           463: 		foreach my $value (@bubble_values) {
        !           464: 		    $value=&format_number($value,$format,$target);
        !           465: 		}
        !           466: 	    }
1.117     albertel  467: 	    return @bubble_values;
                    468: 	}
1.127     albertel  469: 	if (defined($$incorrect[0]) &&
                    470: 	    scalar(@$incorrect)+1 < $number_of_bubbles) {
                    471: 	    &Apache::lonxml::warning("Not enough incorrect answers were specified in the incorrect array, ignoring the specified incorrect answers and instead generating them.");
                    472: 	}
1.117     albertel  473:     }
1.90      albertel  474:     my @factors = (1.13,1.17,1.25,1.33,1.45); #default values of factors
1.126     albertel  475:     my @powers = (1..$number_of_bubbles);
1.90      albertel  476:     &Apache::response::setrandomnumber();
                    477:     my $ind=&Math::Random::random_uniform_integer(1,0,$#powers);
                    478:     my $power = $powers[$ind];
                    479:     $ind=&Math::Random::random_uniform_integer(1,0,$#factors);
                    480:     my $factor = $factors[$ind];
                    481:     for ($ind=0;$ind<$number_of_bubbles;$ind++) {
1.91      albertel  482: 	$bubble_values[$ind] = $answer*($factor**($power-$powers[$#powers-$ind]));
                    483: 	$bubble_values[$ind] = &format_number($bubble_values[$ind],
                    484: 					       $format,$target);
                    485: 
1.90      albertel  486:     }
1.119     albertel  487:     &Math::Random::random_set_seed(@oldseed);
1.91      albertel  488:     return @bubble_values;
1.51      albertel  489: }
                    490: 
                    491: sub get_tolrange {
1.89      albertel  492:     my ($ans,$tol)=@_;
                    493:     my ($high,$low);
                    494:     if ($tol =~ /%$/) {
                    495: 	chop($tol);
                    496: 	my $change=$ans*($tol/100.0);
                    497: 	$high=$ans+$change;
                    498: 	$low=$ans-$change;
                    499:     } else {
                    500: 	$high=$ans+$tol;
                    501: 	$low=$ans-$tol;
                    502:     }
                    503:     return ($high,$low);
1.52      albertel  504: }
                    505: 
                    506: sub get_sigrange {
1.89      albertel  507:     my ($sig)=@_;
                    508:     &Apache::lonxml::debug("Got a sig of :$sig:");
                    509:     my $sig_lbound;
                    510:     my $sig_ubound;
                    511:     if ($sig eq '') {
                    512: 	$sig_lbound = 0; #SIG_LB_DEFAULT
                    513: 	$sig_ubound =15; #SIG_UB_DEFAULT
                    514:     } else {
                    515: 	($sig_lbound,$sig_ubound) = split(/,/,$sig);
                    516: 	if (!$sig_lbound) {
                    517: 	    $sig_lbound = 0; #SIG_LB_DEFAULT
                    518: 	    $sig_ubound =15; #SIG_UB_DEFAULT
                    519: 	}
                    520: 	if (!$sig_ubound) { $sig_ubound=$sig_lbound; }
1.133     albertel  521:     }
                    522:     if (($sig_ubound<$sig_lbound) ||
                    523: 	($sig_lbound > 15) ||
                    524: 	($sig =~/(\+|-)/ ) ) {
                    525: 	my $errormsg=&mt("Invalid Significant figures detected")." ($sig)";
                    526: 	if ($ENV{'request.state'} eq 'construct') {
                    527: 	    $errormsg.=
                    528: 		&Apache::loncommon::help_open_topic('Significant_Figures');
                    529: 	}
                    530: 	&Apache::lonxml::error($errormsg);
1.52      albertel  531:     }
1.89      albertel  532:     return ($sig_ubound,$sig_lbound);
1.34      albertel  533: }
                    534: 
                    535: sub start_stringresponse {
1.89      albertel  536:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    537:     my $result;
1.122     albertel  538:     my $id = &Apache::response::start_response($parstack,$safeeval);
1.89      albertel  539:     if ($target eq 'meta') {
1.104     bowersj2  540: 	&Apache::response::start_response($parstack,$safeeval);
1.89      albertel  541: 	$result=&Apache::response::meta_package_write('stringresponse');
1.104     bowersj2  542: 	&Apache::response::end_response();
1.122     albertel  543:     } elsif ($target eq 'edit') {
                    544: 	$result.=&Apache::edit::tag_start($target,$token);
                    545: 	$result.=&Apache::edit::text_arg('Answer:','answer',$token);
                    546: 	$result.=&Apache::edit::select_arg('Type:','type',
                    547: 			 [['cs','Case Sensitive'],['ci','Case Insensitive'],
                    548: 			  ['mc','Case Insensitive, Any Order'],
                    549: 			  ['re','Regular Expression']],$token);
1.129     www       550: 	$result.=&Apache::edit::checked_arg('Answer Display:','answerdisplay',
                    551: 					    [['inline','Inline']],$token);
1.122     albertel  552: 	$result.=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
                    553:     } elsif ($target eq 'modified') {
1.131     albertel  554:        my $constructtag;
                    555:        $constructtag=&Apache::edit::get_new_args($token,$parstack,
                    556:                                                  $safeeval,'answer',
                    557:                                                  'type','answerdisplay');
                    558:        if ($constructtag) {
                    559:            $result = &Apache::edit::rebuild_tag($token);
                    560:            $result.=&Apache::edit::handle_insert();
                    561:        }
1.122     albertel  562:     } elsif ($target eq 'answer' || $target eq 'grade') {
                    563: 	&Apache::response::reset_params();
1.89      albertel  564:     }
                    565:     return $result;
1.34      albertel  566: }
                    567: 
                    568: sub end_stringresponse {
1.122     albertel  569:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    570:     my $increment=1;
                    571:     my $result = '';
                    572:     my $part=$Apache::inputtags::part;
                    573:     my $id=$Apache::inputtags::response[-1];
                    574:     my $answer=&Apache::lonxml::get_param('answer',$parstack,$safeeval);
                    575:     my $type=&Apache::lonxml::get_param('type',$parstack,$safeeval);
1.129     www       576:     my $answerdisplay=&Apache::lonxml::get_param('answerdisplay',$parstack,$safeeval);
1.122     albertel  577:     &Apache::lonxml::debug("current $answer ".$token->[2]);
                    578:     if (!$Apache::lonxml::default_homework_loaded) {
                    579: 	&Apache::lonxml::default_homework_load($safeeval);
                    580:     }
                    581:     if ( $target eq 'grade' && defined($ENV{'form.submitted'})) {
1.125     albertel  582: 	&Apache::response::setup_params('stringresponse');
1.122     albertel  583: 	$safeeval->share_from('capa',['&caparesponse_capa_check_answer']);
                    584: 	if ($Apache::lonhomework::type eq 'exam' ||
                    585: 	    $ENV{'form.submitted'} eq 'scantron') {
                    586: 	    $increment=&Apache::response::scored_response($part,$id);
                    587: 	} else {
                    588: 	    my $response = &Apache::response::getresponse();
                    589: 	    if ( $response =~ /[^\s]/) {
                    590: 		my %previous = &Apache::response::check_for_previous($response,
                    591: 								    $part,$id);
                    592: 		&Apache::lonxml::debug("submitted a $response<br>\n");
                    593: 		&Apache::lonxml::debug($$parstack[-1] . "\n<br>");
                    594: 		
                    595: 		$Apache::lonhomework::results{"resource.$part.$id.submission"}=
                    596: 		    $response;
                    597: 		my $ad;
                    598: 		if ($type eq 're' ) { 
                    599: 		    # if the RE wasn't in a var it likely got munged,
                    600:                     # thus grab it from the var directly
                    601: #		    my $testans=$token->[2]->{'answer'};
                    602: #		    if ($testans !~ m/^\s*\$/) {
                    603: #			$answer=$token->[2]->{'answer'};
                    604: #		    }
                    605: 		    ${$safeeval->varglob('LONCAPA_INTERNAL_response')}=
                    606: 			$response;
                    607: 		    $result = &Apache::run::run('return $LONCAPA_INTERNAL_response=~m'.$answer,$safeeval);
                    608: 		    &Apache::lonxml::debug("current $response");
                    609: 		    &Apache::lonxml::debug("current $answer");
                    610: 		    $ad = ($result) ? 'APPROX_ANS' : 'INCORRECT';
                    611: 		} else {
                    612: 		    $response =~ s/\\/\\\\/g;
                    613: 		    $response =~ s/\'/\\\'/g;
                    614: 		    &Apache::lonxml::debug("current $response");
                    615: 		    my $expression="&caparesponse_check_list('".$response."','".
                    616: 			$$parstack[-1];
                    617: 		    foreach my $key (keys(%Apache::inputtags::params)) {
                    618: 			$expression.= ';my $'. #'
                    619: 			    $key.'="'.$Apache::inputtags::params{$key}.'"';
                    620: 		    }
                    621: 		    $expression.="');";
                    622: 		    &Apache::lonxml::debug('answer is'.join(':',$answer));
                    623: 		    @{$safeeval->varglob('CAPARESPONSE_CHECK_LIST_answer')}=($answer);
                    624: 		    $result = &Apache::run::run($expression,$safeeval);
                    625: 		    my ($awards) = split /:/ , $result;
                    626: 		    ($ad) = &Apache::inputtags::finalizeawards(split /,/ , $awards);
                    627: 		    &Apache::lonxml::debug("$expression");
                    628: 		    &Apache::lonxml::debug("\n<br>result:$result:$Apache::lonxml::curdepth<br>\n");
                    629: 		}
                    630: 		&Apache::response::handle_previous(\%previous,$ad);
                    631: 		$Apache::lonhomework::results{"resource.$part.$id.awarddetail"}=$ad;
                    632: 	    }
                    633: 	}
                    634:     } elsif ($target eq 'web' || $target eq 'tex') {
                    635: 	my $award = $Apache::lonhomework::history{"resource.$Apache::inputtags::part.solved"};
                    636: 	my $status = $Apache::inputtags::status['-1'];
                    637: 	if (  &Apache::response::show_answer() ) {
                    638: 	    if ($target eq 'web') {
1.129     www       639: 		$result=($answerdisplay eq 'inline'?'':"<br />".&mt('The correct answer is')." ")
                    640: 		    .$answer;
1.122     albertel  641: #		    join(', ',@answers).".<br />";
                    642: 	    }
                    643: 	}
                    644: 	if ($Apache::lonhomework::type eq 'exam' && $target eq 'tex') {
                    645: 	    $result.='\fbox{\fbox{\parbox{\textwidth-5mm}{\strut\\\\\strut\\\\\strut\\\\\strut\\\\}}}';
                    646: 	    $increment = &Apache::response::repetition();
                    647: 	    $result.='\begin{enumerate}';
                    648: 	    for (my $i=0;$i<$increment;$i++) {
                    649: 		$result.='\item[\textbf{'.($Apache::lonxml::counter+$i).
                    650: 		    '}.]\textit{Leave blank on scoring form}\vskip 0 mm';
                    651: 	    }
                    652: 	    $result.= '\end{enumerate}';
                    653: 	}
                    654:     } elsif ($target eq 'answer' || $target eq 'analyze') {
                    655: 	if ($target eq 'analyze') {
                    656: 	    push (@{ $Apache::lonhomework::analyze{"parts"} },"$part.$id");
1.125     albertel  657: 	    $Apache::lonhomework::analyze{"$part.$id.type"} = 'stringresponse';
1.122     albertel  658: 	}
1.125     albertel  659: 	&Apache::response::setup_params('stringresponse');
1.122     albertel  660: 	if ($target eq 'answer') {
1.125     albertel  661: 	    $result.=&Apache::response::answer_header('stringresponse');
1.122     albertel  662: 	}
                    663: #	foreach my $ans (@answers) {
                    664: 	    if ($target eq 'answer') {
1.125     albertel  665: 		$result.=&Apache::response::answer_part('stringresponse',$answer);
1.122     albertel  666: 	    } elsif ($target eq 'analyze') {
                    667: 		push (@{ $Apache::lonhomework::analyze{"$part.$id.answer"} },
                    668: 		      $answer);
                    669: 	    }
                    670: #	}
                    671: 	my $string='Case Insensitive';
                    672: 	if ($type eq 'mc') {
                    673: 	    $string='Multiple Choice';
                    674: 	} elsif ($type eq 'cs') {
                    675: 	    $string='Case Sensitive';
                    676: 	} elsif ($type eq 'ci') {
                    677: 	    $string='Case Insensitive';
                    678: 	} elsif ($type eq 're') {
                    679: 	    $string='Regular Expression';
                    680: 	}
                    681: 	if ($target eq 'answer') {
                    682: 	    if ($ENV{'form.answer_output_mode'} eq 'tex') {
1.125     albertel  683: 		$result.=&Apache::response::answer_part('stringresponse',
1.122     albertel  684: 							"$string");
                    685: 	    } else {
1.125     albertel  686: 		$result.=&Apache::response::answer_part('stringresponse',
1.122     albertel  687: 							"<b>$string</b>");
                    688: 	    }
                    689: 	} elsif ($target eq 'analyze') {
                    690: 	    push (@{$Apache::lonhomework::analyze{"$part.$id.str_type"}},
                    691: 		  $type);
                    692: 	}
                    693: 	if ($target eq 'answer') {
1.125     albertel  694: 	    $result.=&Apache::response::answer_footer('stringresponse');
1.122     albertel  695: 	}
                    696:     } elsif ($target eq 'edit') {
                    697: 	$result.='</td></tr>'.&Apache::edit::end_table;
                    698:     }
                    699:     if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' || 
                    700: 	$target eq 'tex' || $target eq 'analyze') {
                    701: 	&Apache::lonxml::increment_counter($increment);
                    702:     }
                    703:     &Apache::response::end_response;
                    704:     return $result;
1.44      albertel  705: }
                    706: 
                    707: sub start_formularesponse {
1.89      albertel  708:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    709:     my $result;
                    710:     if ($target eq 'meta') {
1.104     bowersj2  711: 	&Apache::response::start_response($parstack,$safeeval);
1.89      albertel  712: 	$result=&Apache::response::meta_package_write('formularesponse');
1.104     bowersj2  713: 	&Apache::response::end_response();
1.89      albertel  714:     } else {
                    715: 	$result.=&start_numericalresponse(@_);
                    716:     }
                    717:     return $result;
1.44      albertel  718: }
                    719: 
                    720: sub end_formularesponse {
1.89      albertel  721:     return end_numericalresponse(@_);
1.3       albertel  722: }
                    723: 
1.1       albertel  724: 1;
1.3       albertel  725: __END__
1.89      albertel  726: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>