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

1.3       albertel    1: # The LearningOnline Network with CAPA
                      2: # caparesponse definition
1.47      albertel    3: #
1.60    ! sakharuk    4: # $Id: caparesponse.pm,v 1.59 2002/09/30 16:01:36 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.3       albertel   32: 
1.50      harris41   33: BEGIN {
1.44      albertel   34:   &Apache::lonxml::register('Apache::caparesponse',('caparesponse','numericalresponse','stringresponse','formularesponse'));
1.3       albertel   35: }
                     36: 
                     37: sub start_caparesponse {
1.31      albertel   38:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
1.19      albertel   39:   my $id = &Apache::response::start_response($parstack,$safeeval);
1.13      albertel   40:   return '';
1.3       albertel   41: }
                     42: 
                     43: sub end_caparesponse {
1.31      albertel   44:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.12      albertel   45:   my $result = '';
1.16      albertel   46:   if ( $target eq 'grade' ) {
1.27      albertel   47:     if ( defined $ENV{'form.submitted'}) {
1.16      albertel   48:       $safeeval->share_from('capa',['&caparesponse_capa_check_answer']);
1.19      albertel   49:       my $response = $ENV{'form.HWVAL'.$Apache::inputtags::response['-1']};
1.18      albertel   50:       if ( $response =~ /[^\s]/) {
1.23      albertel   51: 	my $id = $Apache::inputtags::response['-1'];
                     52: 	my $previous= &Apache::response::check_for_previous($response,$id,$response);
1.22      albertel   53: 	if ( $previous ) { 
                     54: 	  $result = 'PREVIOUSLY_USED';
                     55: 	} else {
1.26      albertel   56: 	  $Apache::lonhomework::results{"resource.$Apache::inputtags::part.$id.submission"}=$response;
1.22      albertel   57: 	  &Apache::lonxml::debug("submitted a $response<br>\n");
                     58: 	  &Apache::lonxml::debug($$parstack[$#$parstack] . "\n<br>");
                     59: 	  my $expression="&caparesponse_check('".$response."','".
                     60: 	    $$parstack[$#$parstack].
                     61: 	      ';my $tol="'.$Apache::inputtags::params{'tol'}.'"'.
                     62: 		';my $sig="'.$Apache::inputtags::params{'sig'}.'"'.
                     63: 		  "');";
                     64: 	  $result = &Apache::run::run($expression,$safeeval);
                     65: 	  my ($ad) = split /:/ , $result;
1.26      albertel   66: 	  $Apache::lonhomework::results{"resource.$Apache::inputtags::part.$id.awarddetail"}=$ad;
1.22      albertel   67: 	  &Apache::lonxml::debug("$expression");
                     68: 	  &Apache::lonxml::debug("\n<br>result:$result:$Apache::lonxml::curdepth<br>\n");
                     69: 	}
1.18      albertel   70:       }
1.16      albertel   71:     }
1.30      albertel   72:   } elsif ($target eq 'web') {
1.17      albertel   73:     #$result .= "The correct answer is ".&Apache::run::run("{$$parstack['-1'];".'return $answer}',$safeeval)."\n";
1.7       albertel   74:   }
                     75:   #Apache::lonxml::debug("\n<br>\nreal end caparesponse<br>\n");
1.19      albertel   76:   &Apache::response::end_response;
1.24      albertel   77:   return '';
1.21      albertel   78: }
                     79: 
                     80: sub start_numericalresponse {
1.31      albertel   81:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
1.22      albertel   82:   my $id = &Apache::response::start_response($parstack,$safeeval);
1.32      albertel   83:   my $result;
                     84:   if ($target eq 'edit') {
1.49      matthew    85:     $result.=&Apache::edit::tag_start($target,$token);
1.34      albertel   86:     $result.=&Apache::edit::text_arg('Answer:','answer',$token);
                     87:     if ($token->[1] eq 'numericalresponse') {
1.36      albertel   88:       $result.=&Apache::edit::text_arg('Unit:','unit',$token,5);
                     89:       $result.=&Apache::edit::text_arg('Format:','format',$token,4);
1.44      albertel   90:     } elsif ($token->[1] eq 'stringresponse') {
1.35      albertel   91:       $result.=&Apache::edit::select_arg('Type:','type',
1.49      matthew    92: 					 ['cs','ci','mc'],$token);
1.44      albertel   93:     } elsif ($token->[1] eq 'formularesponse') {
1.45      albertel   94:       $result.=&Apache::edit::text_arg('Sample Points:','samples',$token,40);
1.34      albertel   95:     }
1.49      matthew    96:     $result.=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
1.32      albertel   97:   } elsif ($target eq 'modified') {
1.34      albertel   98:     my $constructtag;
                     99:     if ($token->[1] eq 'numericalresponse') {
                    100:       $constructtag=&Apache::edit::get_new_args($token,$parstack,$safeeval,
1.36      albertel  101: 						'answer','unit','format');
1.44      albertel  102:     } elsif ($token->[1] eq 'stringresponse') {
1.34      albertel  103:       $constructtag=&Apache::edit::get_new_args($token,$parstack,$safeeval,
                    104: 						'answer','type');
1.44      albertel  105:     } elsif ($token->[1] eq 'formularesponse') {
                    106:       $constructtag=&Apache::edit::get_new_args($token,$parstack,$safeeval,
1.45      albertel  107: 						'answer','samples');
1.34      albertel  108:     }
1.33      albertel  109:     if ($constructtag) {
                    110:       $result = &Apache::edit::rebuild_tag($token);
                    111:       $result.=&Apache::edit::handle_insert();
                    112:     }
1.39      albertel  113:   } elsif ($target eq 'meta') {
1.40      albertel  114:     $result=&Apache::response::meta_package_write('numericalresponse');
1.32      albertel  115:   }
                    116:   return $result;
1.21      albertel  117: }
                    118: 
                    119: sub end_numericalresponse {
1.31      albertel  120:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.22      albertel  121:   my $result = '';
                    122:   if ( $target eq 'grade' ) {
1.27      albertel  123:     if ( defined $ENV{'form.submitted'}) {
1.45      albertel  124:       &Apache::response::setup_params($$tagstack[-1]);
1.22      albertel  125:       $safeeval->share_from('capa',['&caparesponse_capa_check_answer']);
1.38      albertel  126:       my $partid = $Apache::inputtags::part;
                    127:       my $id = $Apache::inputtags::response['-1'];
                    128:       my $response = $ENV{'form.HWVAL'.$id};
1.22      albertel  129:       if ( $response =~ /[^\s]/) {
1.38      albertel  130: 	my %previous = &Apache::response::check_for_previous($response,$partid,$id);
                    131: 	$Apache::lonhomework::results{"resource.$partid.$id.submission"}=$response;
                    132: 	&Apache::lonxml::debug("submitted a $response<br>\n");
                    133: 	&Apache::lonxml::debug($$parstack[$#$parstack] . "\n<br>");
                    134: 	$response =~ s/\\/\\\\/g;
                    135: 	$response =~ s/\'/\\\'/g;
                    136: 	&Apache::lonxml::debug("current $response");
                    137: 	my $expression="&caparesponse_check_list('".$response."','".
1.41      albertel  138: 	  $$parstack[$#$parstack];
                    139: 	foreach my $key (keys(%Apache::inputtags::params)) {
                    140: 	  $expression.= ';my $'. #'
                    141: 	    $key.'="'.$Apache::inputtags::params{$key}.'"';
                    142: 	}
1.45      albertel  143: 	if ($$tagstack[-1] eq 'formularesponse') {
1.46      albertel  144: 	  $expression.=';my $type="fml";';
                    145: 	} elsif ($$tagstack[-1] eq 'numericalresponse') {
                    146: 	  $expression.=';my $type="float";';
1.45      albertel  147: 	}
1.41      albertel  148: 	$expression.="');";
1.38      albertel  149: 	$result = &Apache::run::run($expression,$safeeval);
                    150: 	my ($awards) = split /:/ , $result;
                    151: 	my ($ad) = &Apache::inputtags::finalizeawards(split /,/ , $awards);
1.48      albertel  152: 	&Apache::response::handle_previous(\%previous,$ad);
1.38      albertel  153: 	$Apache::lonhomework::results{"resource.$partid.$id.awarddetail"}=$ad;
                    154: 	&Apache::lonxml::debug("$expression");
                    155: 	&Apache::lonxml::debug("\n<br>result:$result:$Apache::lonxml::curdepth<br>\n");
                    156: 	$result='';
1.22      albertel  157:       }
1.24      albertel  158:     }
1.53      sakharuk  159:   } elsif ($target eq 'web' || $target eq 'tex') {
1.58      sakharuk  160:     if ($Apache::lonhomework::type ne 'exam') {
                    161:       my $award = $Apache::lonhomework::history{"resource.$Apache::inputtags::part.solved"};
                    162:       my $status = $Apache::inputtags::status['-1'];
                    163:       if ($award =~ /^correct/ || $status eq "SHOW_ANSWER" ) {
                    164: 	my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,
                    165: 						     $safeeval);
                    166: 	my (@formats)=&Apache::lonxml::get_param_var('format',$parstack,
                    167: 						     $safeeval);
                    168: 	my $unit=&Apache::lonxml::get_param_var('unit',$parstack,$safeeval);
                    169: 	
                    170: 	if ($target eq 'web') {
1.53      sakharuk  171: 	  $result="<br />The computer got ";
1.58      sakharuk  172:         } elsif ($target eq 'tex') {
1.57      albertel  173: 	  $result='\vskip 0 mm The computer got \\texttt{';
1.58      sakharuk  174:         }
                    175: 	for (my $i=0; $i <= $#answers; $i++) {
                    176: 	   my $answer=$answers[$i];
                    177: 	   my $format;
                    178: 	   if ($#formats > 0) {
                    179: 	     $format=$formats[$i];
                    180: 	   } else {
                    181: 	     $format=$formats[0];
                    182: 	   }
                    183: 	   my $formatted;
                    184: 	   if ((defined($format)) && ($format ne '')) {
                    185: 	     &Apache::lonxml::debug("formatting with :$format: answer :$answer:");
                    186: 	     $formatted=sprintf('%.'.$format,$answer).',';
                    187: 	   } else {
                    188: 	     &Apache::lonxml::debug("no format answer :$answer:");
                    189: 	     $formatted="$answer,";
                    190: 	   }
                    191: 	   if ($target eq 'tex') {$formatted=&Apache::lonxml::latex_special_symbols($formatted);}
                    192: 	     $result.=$formatted;
                    193:            }
                    194: 	   chop $result;
                    195: 	   if ($target eq 'web') {
                    196: 	     $result.=" $unit.<br />";
                    197: 	   } elsif ($target eq 'tex') {
                    198: 	     $result.=&Apache::lonxml::latex_special_symbols($unit);
                    199: 	     $result.="}. \\vskip 0 mm ";
                    200: 	   }
                    201:        }
                    202:     } else {
                    203:       	my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,$safeeval);
                    204: 	my (@formats)=&Apache::lonxml::get_param_var('format',$parstack,$safeeval);
                    205: 	my $unit=&Apache::lonxml::get_param_var('unit',$parstack,$safeeval);
                    206: 	my $number_of_bubbles = 8; #default values for number of bubbles
                    207: 	my @bubbles_values = (); 
                    208: 	my @factors = (1.13,1.17,1.25,1.33,1.45); #default values of factors
                    209: 	my @powers = (1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0); #default values for powers
                    210: 	my $factors_number = 5; #default values for number of factors
                    211: 	my $powers_number = 8; #default values for number of powers
                    212: 	my $symb;
                    213: 	if ($ENV{'form.symb'}=~/___\d+___/) {$symb=$ENV{'form.symb'};} else {$symb=$ENV{'request.symb'};}
                    214: 	my $randomseed = srand(&Apache::lonnet::rndseed($symb,$ENV{'request.course.id'},
                    215:                                                               $ENV{'user.domain'},$ENV{'user.name'}));
                    216: 	my $ind=1+int(rand()*($factors_number-1));
                    217: 	my $factor = $factors[$ind];
                    218: 	$ind=1+int(rand()*($powers_number-1));
                    219: 	my $power = $powers[$ind];
                    220: 	for ($ind=0;$ind<$number_of_bubbles;$ind++) {
                    221: 	    $bubbles_values[$ind] = $answers[0]*$factor**($power-$powers[$powers_number-$ind-1]);
                    222: 	}	    
1.60    ! sakharuk  223: 	my @alphabet = ('A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P',
        !           224: 			'Q','R','S','T','U','V','W','X','Y','Z');
1.58      sakharuk  225:         if ($target eq 'web') {
                    226: 	    $result.= '<table border="1"><tr>';
                    227: 	    for ($ind=0;$ind<$number_of_bubbles;$ind++) {
1.60    ! sakharuk  228: 		if (undef @formats) {
        !           229: 		    my $ans = sprintf('%.'.$formats[0],$bubbles_values[$ind]);
        !           230: 		    $result.='<td>'.$alphabet[$ind].': '.$ans.'</td>';
        !           231: 		} else {
        !           232: 		    my $ans = sprintf('%.'.'d',$bubbles_values[$ind]);
        !           233: 		    $result.='<td>'.$alphabet[$ind].': '.$ans.'</td>';
1.58      sakharuk  234: 		}
1.60    ! sakharuk  235: 	    }
1.58      sakharuk  236: 	    $result.='</tr></table>';
                    237: 	} elsif ($target eq 'tex') {
                    238: 	    my $max_val = 0;
                    239: 	    if ($formats[0]=~m/^(\d+)E([^\d]*)(\d*)$/) {
                    240: 		$max_val=$1+$2+4;
1.60    ! sakharuk  241: 	    } else {
        !           242: 		$max_val=5;
1.58      sakharuk  243: 	    }
                    244: 	    $max_val = int(90/(($max_val+6)*2));
                    245:             my $celllength = 90/$max_val-12;
                    246: 	    my @table_range = ();
                    247: 	    my $number_of_tables = int($number_of_bubbles/$max_val);
                    248: 	    for (my $i=0;$i<$number_of_tables;$i++) {push @table_range,$max_val;}
                    249: 	    if ($number_of_bubbles % $max_val != 0) {
                    250: 		$number_of_tables++;
                    251: 		push @table_range,($number_of_bubbles % $max_val);
                    252: 	    }
                    253: 	    my $j=0;
                    254: 	    my $cou=0;
                    255: 	    $result.='\vskip 2 mm \noindent ';
                    256: 	    for (my $i=0;$i<$number_of_tables;$i++) {
                    257: 		$result.='\vskip 0 mm \noindent \begin{tabular}{|';
                    258: 		for ($ind=0;$ind<$table_range[$j];$ind++) {
                    259: 		    $result.='lp{'.$celllength.' mm}|';
                    260: 		}
                    261: 		$result.='}\hline';
                    262: 		for ($ind=$cou;$ind<$cou+$table_range[$j];$ind++) {
1.60    ! sakharuk  263: 		    if (undef @formats) {
        !           264: 			my $ans = sprintf('%.'.$formats[0],$bubbles_values[$ind]);
        !           265: 			$result.=' '.$alphabet[$ind].': & '.$ans.' ';
        !           266: 		    } else {
        !           267: 			my $ans = sprintf('%.'.'d',$bubbles_values[$ind]);
        !           268: 			$result.=' '.$alphabet[$ind].': & '.$ans.' ';
        !           269: 		    }
1.58      sakharuk  270: 		    if ($ind != $cou+$table_range[$j]-1) {$result.=' & ';}
                    271: 		}
                    272: 		$j++;
                    273: 		$cou += $table_range[$j];
                    274: 		$result.='\\\\\hline\end{tabular}\vskip 0 mm ';
                    275: 	    }	    
1.36      albertel  276: 	}
1.22      albertel  277:     }
1.32      albertel  278:   } elsif ($target eq 'edit') {
                    279:     $result.='</td></tr>'.&Apache::edit::end_table;
1.43      albertel  280:   } elsif ($target eq 'answer') {
1.44      albertel  281: 
1.51      albertel  282:     &Apache::response::setup_params($$tagstack[-1]);
1.44      albertel  283:     my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,$safeeval);
                    284:     my (@formats)=&Apache::lonxml::get_param_var('format',$parstack,$safeeval);
                    285:     my $unit=&Apache::lonxml::get_param_var('unit',$parstack,$safeeval);
                    286:     my $type=&Apache::lonxml::get_param('type',$parstack,$safeeval);
                    287: 
1.45      albertel  288:     $result.=&Apache::response::answer_header($$tagstack[-1]);
1.44      albertel  289:     for(my $i=0;$i<=$#answers;$i++) {
                    290:       my $ans=$answers[$i];
                    291:       my $fmt;
                    292:       if (@formats) {
                    293: 	if ($#formats) {
                    294: 	  $fmt=$formats[$i];
                    295: 	} else {
                    296: 	  $fmt=$formats[0];
                    297: 	}
                    298:       }
1.51      albertel  299:       my ($high,$low);
                    300:       if ($Apache::inputtags::params{'tol'}) {
                    301: 	($high,$low)=&get_tolrange($ans,$Apache::inputtags::params{'tol'});
                    302:       }	
1.52      albertel  303:       my ($sighigh,$siglow);
                    304:       if ($Apache::inputtags::params{'sig'}) {
                    305: 	($sighigh,$siglow)=&get_sigrange($Apache::inputtags::params{'sig'});
                    306:       }
1.51      albertel  307:       if ($fmt) {
                    308: 	$ans = sprintf('%.'.$fmt,$ans);
                    309: 	if ($high) {
                    310: 	  $high = sprintf('%.'.$fmt,$high); $low = sprintf('%.'.$fmt,$low);
                    311: 	}
                    312:       }
                    313:       if ($high) { $ans.=' ['.$low.','.$high.'] '; }
1.52      albertel  314:       if ($sighigh) { $ans.= "Sig <i>$siglow - $sighigh</i>"; }
1.45      albertel  315:       $result.=&Apache::response::answer_part($$tagstack[-1],$ans);
1.43      albertel  316:     }
1.44      albertel  317:     if ($unit) {
1.52      albertel  318:       $result.=&Apache::response::answer_part($$tagstack[-1],"Unit: <b>$unit</b>");
1.44      albertel  319:     }
                    320:     if ($type || $token->[1] eq 'stringresponse') {
                    321:       my $string='Case Insensitive';
                    322:       if ($type eq 'mc') {
                    323: 	$string='Multiple Choice';
                    324:       } elsif ($type eq 'cs') {
                    325: 	$string='Case Sensitive';
                    326:       } elsif ($type eq 'ci') {
                    327: 	$string='Case Insensitive';
1.45      albertel  328:       } elsif ($type eq 'fml') {
                    329: 	$string='Formula';
1.44      albertel  330:       }
1.45      albertel  331:       $result.=&Apache::response::answer_part($$tagstack[-1],
1.44      albertel  332: 					      '<b>'.$string.'</b>');
                    333:     }
1.45      albertel  334:     if ($$tagstack[-1] eq 'formularesponse') {
                    335:       my $samples=&Apache::lonxml::get_param('samples',$parstack,$safeeval);
                    336:       $result.=&Apache::response::answer_part($$tagstack[-1],$samples);
                    337:     }
                    338:     $result.=&Apache::response::answer_footer($$tagstack[-1]);
1.22      albertel  339:   }
1.59      albertel  340:   &Apache::response::end_response;
1.22      albertel  341:   return $result;
1.51      albertel  342: }
                    343: 
                    344: sub get_tolrange {
                    345:   my ($ans,$tol)=@_;
                    346:   my ($high,$low);
                    347:   if ($tol =~ /%$/) {
                    348:     chop($tol);
                    349:     my $change=$ans*($tol/100.0);
                    350:     $high=$ans+$change;
                    351:     $low=$ans-$change;
                    352:   } else {
                    353:     $high=$ans+$tol;
                    354:     $low=$ans-$tol;
                    355:   }
                    356:   return ($high,$low);
1.52      albertel  357: }
                    358: 
                    359: sub get_sigrange {
                    360:   my ($sig)=@_;
                    361:   &Apache::lonxml::debug("Got a sig of :$sig:");
                    362:   my $sig_lbound;
                    363:   my $sig_ubound;
                    364:   if ($sig eq '') {
                    365:     $sig_lbound = 0; #SIG_LB_DEFAULT
                    366:     $sig_ubound =15; #SIG_UB_DEFAULT
                    367:   } else {
                    368:     ($sig_lbound,$sig_ubound) = split(/,/,$sig);
                    369:     if (!$sig_lbound) {
                    370:       $sig_lbound = 0; #SIG_LB_DEFAULT
                    371:       $sig_ubound =15; #SIG_UB_DEFAULT
                    372:     }
                    373:     if (!$sig_ubound) { $sig_ubound=$sig_lbound; }
                    374:   }
                    375:   return ($sig_ubound,$sig_lbound);
1.34      albertel  376: }
                    377: 
                    378: sub start_stringresponse {
1.42      albertel  379:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    380:   my $result;
                    381:   if ($target eq 'meta') {
                    382:     $result=&Apache::response::meta_package_write('stringresponse');
                    383:   } else {
                    384:     $result.=&start_numericalresponse(@_);
                    385:   }
                    386:   return $result;
1.34      albertel  387: }
                    388: 
                    389: sub end_stringresponse {
1.44      albertel  390:   return end_numericalresponse(@_);
                    391: }
                    392: 
                    393: sub start_formularesponse {
                    394:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    395:   my $result;
                    396:   if ($target eq 'meta') {
                    397:     $result=&Apache::response::meta_package_write('formularesponse');
                    398:   } else {
                    399:     $result.=&start_numericalresponse(@_);
                    400:   }
                    401:   return $result;
                    402: }
                    403: 
                    404: sub end_formularesponse {
1.34      albertel  405:   return end_numericalresponse(@_);
1.3       albertel  406: }
                    407: 
1.1       albertel  408: 1;
1.3       albertel  409: __END__
                    410:  

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