Annotation of loncom/homework/matchresponse.pm, revision 1.6

1.1       albertel    1: # The LearningOnline Network with CAPA
                      2: # Full matching style response
                      3: #
1.6     ! sakharuk    4: # $Id: matchresponse.pm,v 1.5 2003/03/17 19:54:20 sakharuk Exp $
1.1       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: #
                     28: # 2/21 Guy
                     29: 
                     30: package Apache::matchresponse;
                     31: use strict;
                     32: use HTML::Entities();
                     33: use Math::Random();
1.6     ! sakharuk   34: use Apache::optionresponse;
        !            35: 
        !            36: my @Items;
1.1       albertel   37: 
                     38: BEGIN {
                     39:     &Apache::lonxml::register('Apache::matchresponse',('matchresponse'));
                     40: }
                     41: 
                     42: sub start_matchresponse {
                     43:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                     44:     my $result;
                     45:     #when in a matchresponse use these
                     46:     &Apache::lonxml::register('Apache::matchresponse',
                     47: 			      ('foilgroup','foil','conceptgroup','item',
                     48: 			       'itemgroup'));
                     49:     push (@Apache::lonxml::namespace,'matchresponse');
                     50:     my $id = &Apache::response::start_response($parstack,$safeeval);
                     51:     %Apache::hint::match=();
                     52:     if ($target eq 'meta') {
                     53: 	$result=&Apache::response::meta_package_write('matchresponse');
                     54:     } elsif ($target eq 'edit' ) {
                     55: 	$result.=&Apache::edit::start_table($token).
                     56: 	    '<tr><td>'.&Apache::lonxml::description($token)."</td><td>Delete:".
                     57: 	    &Apache::edit::deletelist($target,$token)
                     58: 	    ."</td><td>&nbsp".&Apache::edit::end_row()
                     59: 	    .&Apache::edit::start_spanning_row();
                     60: 	
                     61: 	$result.=
                     62: 	    &Apache::edit::text_arg('Max Number Of Shown Foils:','max',$token,'4').
                     63: 	    &Apache::edit::select_arg('Randomize Foil Order','randomize',
                     64: 				      ['yes','no'],$token).
                     65: 	    &Apache::edit::end_row().&Apache::edit::start_spanning_row()."\n";
                     66:     } elsif ($target eq 'modified') {
                     67: 	my $constructtag=&Apache::edit::get_new_args($token,$parstack,
                     68: 						     $safeeval,'max',
                     69: 						     'randomize');
                     70: 	if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
                     71:     }
                     72:     return $result;
                     73: }
                     74: 
                     75: sub end_matchresponse {
                     76:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                     77:     my $result;
                     78:     if ($target eq 'edit') { $result=&Apache::edit::end_table(); }
                     79:     &Apache::response::end_response;
                     80:     pop @Apache::lonxml::namespace;
                     81:     &Apache::lonxml::deregister('Apache::matchresponse',
                     82: 				('foilgroup','foil','conceptgroup'));
                     83:     return $result;
                     84: }
                     85: 
                     86: %Apache::response::itemgroup=();
                     87: sub start_itemgroup {
                     88:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                     89:     my $result;
                     90:     %Apache::response::itemgroup=();
1.4       albertel   91:     %Apache::matchresponse::itemtable=();
1.1       albertel   92:     if ($target eq 'edit') {
                     93: 	$result=&Apache::edit::tag_start($target,$token);
                     94: 	$result.=&Apache::edit::select_arg('Randomize Order:','randomize',
                     95: 					   ['yes','no'],$token);
1.4       albertel   96: 	$result.=&Apache::edit::select_arg('Items Display Location:',
                     97: 					   'location',
                     98: 					   ['top','bottom','left','right'],
                     99: 					   $token);
1.1       albertel  100: 	$result.=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
1.4       albertel  101:     } elsif ($target eq 'modified') {
                    102: 	my $constructtag=&Apache::edit::get_new_args($token,$parstack,
                    103: 						     $safeeval,'randomize',
                    104: 						     'location');
                    105: 	if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
                    106:     } elsif ($target eq 'web') {
                    107: 	$Apache::matchresponse::itemtable{'location'}=
                    108: 	    &Apache::lonxml::get_param('location',$parstack,$safeeval);
1.1       albertel  109:     }
                    110:     return $result;
                    111: }
                    112: 
                    113: sub end_itemgroup {
                    114:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    115:     my $result;
                    116: 
                    117:     if (!defined(@{ $Apache::response::itemgroup{'names'} })) { return; }
                    118:     my @names=@{ $Apache::response::itemgroup{'names'} };
                    119:     my $randomize =&Apache::lonxml::get_param('randomize',$parstack,$safeeval);
1.2       albertel  120:     if ($randomize ne 'no' ) {
1.3       albertel  121: 	@names=&whichorder($#names+1,$randomize,0,
                    122: 			   \%Apache::response::itemgroup)
1.1       albertel  123:     }
                    124:     my %letter_name_map;
                    125:     my %name_letter_map;
                    126:     my @alphabet=('A'..'Z');
                    127:     my $i=0;
                    128:     foreach my $name (@names) {
                    129: 	$letter_name_map{$alphabet[$i]}=$name;
                    130: 	$name_letter_map{$name}=$alphabet[$i];
1.6     ! sakharuk  131: 	push @Items, $alphabet[$i];
1.1       albertel  132: 	$i++;
                    133:     }
1.6     ! sakharuk  134:      $Apache::response::itemgroup{'letter_name_map'}=\%letter_name_map;
1.1       albertel  135:     $Apache::response::itemgroup{'name_letter_map'}=\%name_letter_map;
                    136:     if ($target eq 'web') {
1.4       albertel  137: 	my $table='<table>';
1.1       albertel  138: 	my $i=0;
                    139: 	foreach my $name (@names) {
1.4       albertel  140: 	    $table.='<tr><td>'.$alphabet[$i].'</td><td>'.
1.1       albertel  141: 		$Apache::response::itemgroup{$name.'.text'}.
                    142: 		    '</td></tr>';
                    143: 	    $i++;
                    144: 	}
1.4       albertel  145: 	$table.='</table>';
                    146: 	$Apache::matchresponse::itemtable{'display'}=$table;
1.5       sakharuk  147:     } elsif ($target eq 'tex') {
                    148: 	my $table=' \\\\\\\\ \begin{tabular}{ll} ';
                    149: 	my $i=0;
                    150: 	foreach my $name (@names) {
                    151: 	    $table.=' '.$alphabet[$i].' & '.
                    152: 		$Apache::response::itemgroup{$name.'.text'}.
                    153: 		    ' \\\\ ';
                    154: 	    $i++;
                    155: 	}
                    156: 	$table.=' \end{tabular} \\\\ ';
                    157: 	$Apache::matchresponse::itemtable{'display'}=$table;
1.1       albertel  158:     } elsif ($target eq 'edit') { $result=&Apache::edit::end_table(); }
                    159:     return $result;
                    160: }
                    161: 
                    162: sub start_item {
                    163:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    164:     my $result='';
1.5       sakharuk  165:     if ($target eq 'web' || $target eq 'tex') {
1.1       albertel  166: 	&Apache::lonxml::startredirection;
                    167:     } elsif ($target eq 'edit') {
1.3       albertel  168: 	my $randomize=&Apache::lonxml::get_param('randomize',$parstack,
                    169: 						 $safeeval,'-2');
1.1       albertel  170: 	$result=&Apache::edit::tag_start($target,$token,"Item");
                    171: 	$result.=&Apache::edit::text_arg('Name:','name',$token);
1.3       albertel  172: 	if ($randomize ne 'no') {
                    173: 	    $result.=&Apache::edit::select_arg('Location:','location',
                    174: 					       ['random','top','bottom'],
                    175: 					       $token);
                    176: 	}
                    177: 	$result.=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
1.1       albertel  178:     } elsif ($target eq 'modified') {
                    179: 	my $constructtag=&Apache::edit::get_new_args($token,$parstack,
1.3       albertel  180: 						     $safeeval,'name',
                    181: 						     'location');
1.1       albertel  182: 	if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
                    183:     }
                    184:     return $result;
                    185: }
                    186: 
                    187: sub end_item {
                    188:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    189:     my $text ='';
                    190:     my $result = '';
1.5       sakharuk  191:     if ($target eq 'web' || $target eq 'tex') {
1.1       albertel  192: 	$text=&Apache::lonxml::endredirection;
                    193:     }
                    194:     if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' ||
1.5       sakharuk  195: 	$target eq 'edit' || $target eq 'tex') {
1.1       albertel  196: 	my $name = &Apache::lonxml::get_param('name',$parstack,$safeeval);
1.3       albertel  197: 	my $location=&Apache::lonxml::get_param('location',$parstack,
                    198: 						$safeeval);
1.1       albertel  199: 	&Apache::lonxml::debug("Got a name of :$name:");
                    200: 	if (!$name) { $name=$Apache::lonxml::curdepth; }
                    201: 	&Apache::lonxml::debug("Using a name of :$name:");
                    202: 	push @{ $Apache::response::itemgroup{'names'} }, $name;
                    203: 	$Apache::response::itemgroup{"$name.text"} = $text;
1.3       albertel  204: 	$Apache::response::itemgroup{"$name.location"} = $location;
1.1       albertel  205:     }
                    206:     if ($target eq 'edit') {
                    207: 	$result.= &Apache::edit::tag_end($target,$token,'');
                    208:     }
                    209:     return $result;
                    210: }
                    211: 
                    212: sub insert_item {
                    213:     return '
                    214: <item name="">
                    215: <startouttext />
                    216: <endouttext />
                    217: </item>';
                    218: }
                    219: 
                    220: %Apache::response::foilgroup=();
                    221: sub start_foilgroup {
                    222:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    223:     my $result;
                    224:     %Apache::response::foilgroup=();
                    225:     $Apache::matchresponse::conceptgroup=0;
                    226:     &Apache::response::setrandomnumber();
                    227:     if ($target eq 'edit') {
                    228: 	$result.=&Apache::edit::start_table($token)
                    229: 	    ."<tr><td>Collection Of Foils</td><td>Delete:"
                    230: 	    .&Apache::edit::deletelist($target,$token)
                    231: 	    ."</td><td>&nbsp;".&Apache::edit::end_row()
                    232:             .&Apache::edit::start_spanning_row()."\n";
                    233:     }
                    234:     return $result;
                    235: }
                    236: 
                    237: sub end_foilgroup {
                    238:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    239:     my $result;
1.5       sakharuk  240:     if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' || $target eq 'tex') {
1.1       albertel  241: 	my $max = &Apache::lonxml::get_param('max',$parstack,$safeeval,'-2');
                    242: 	my $randomize = &Apache::lonxml::get_param('randomize',$parstack,
                    243: 						   $safeeval,'-2');
1.5       sakharuk  244: 	if ($target eq 'web' || $target eq 'tex') {
1.1       albertel  245: 	    $result=&displayfoils($target,$max,$randomize);
                    246: 	} elsif ($target eq 'answer' ) {
                    247: 	    $result=&displayanswers($max,$randomize);
                    248: 	} elsif ( $target eq 'grade') {
                    249: 	    &grade_response($max,$randomize);
                    250: 	}
                    251:     } elsif ($target eq 'edit') {
                    252: 	$result=&Apache::edit::end_table();
                    253:     }
                    254:     return $result;
                    255: }
                    256: 
                    257: sub displayanswers {
                    258:     my ($max,$randomize,@opt)=@_;
                    259:     if (!defined(@{ $Apache::response::foilgroup{'names'} })) { return; }
                    260:     my @names = @{ $Apache::response::foilgroup{'names'} };
1.3       albertel  261:     my @whichfoils = &whichorder(&getfoilcounts($max),$randomize,
                    262: 				 &Apache::response::showallfoils(),
                    263: 				 \%Apache::response::foilgroup);
1.1       albertel  264:     my $result=&Apache::response::answer_header('matchresponse');
                    265:     my %name_letter_map;
                    266:     if (defined(%{ $Apache::response::itemgroup{'name_letter_map'} })) {
                    267: 	%name_letter_map=
                    268: 	    %{ $Apache::response::itemgroup{'name_letter_map'} };
                    269:     }
                    270:     foreach my $name (@whichfoils) {
                    271: 	my $value_name=$Apache::response::foilgroup{$name.'.value'};
                    272: 	my $letter=$name_letter_map{$value_name};
                    273: 	$result.=&Apache::response::answer_part('matchresponse',$letter);
                    274:     }
                    275:     $result.=&Apache::response::answer_footer('matchresponse');
                    276:     return $result;
                    277: }
                    278: 
                    279: 
                    280: sub grade_response {
                    281:     my ($max,$randomize)=@_;
1.3       albertel  282:     my (@whichfoils)=&whichorder(&getfoilcounts($max),$randomize,
                    283: 				 &Apache::response::showallfoils(),
                    284: 				 \%Apache::response::foilgroup);
1.1       albertel  285:     if (!defined($ENV{'form.submitted'})) { return; }
                    286:     my %responsehash;
                    287:     my %grade;
                    288:     my ($temp,$right,$wrong,$ignored)=(0,0,0,0);
                    289:     my %letter_name_map;
                    290:     if (defined(%{ $Apache::response::itemgroup{'letter_name_map'} })) {
                    291: 	%letter_name_map=
                    292: 	    %{ $Apache::response::itemgroup{'letter_name_map'} };
                    293:     }
                    294:     foreach my $name (@whichfoils) {
                    295: 	my $response = $ENV{'form.HWVAL_'.$Apache::inputtags::response['-1'].":$temp"};
                    296: 	my $responsename = $letter_name_map{$response};
                    297: 	$responsehash{$name}=$responsename;
                    298: 	my $value=$Apache::response::foilgroup{$name.'.value'};
                    299: 	if ( $response =~ /[^\s]/) {
                    300: 	    &Apache::lonxml::debug("submitted a $response for $value<br />\n");
                    301: 	    if ($value eq $responsename) {
                    302: 		$grade{$name}='1'; $right++;
                    303: 	    } else {
                    304: 		$grade{$name}='0'; $wrong++;
                    305: 	    }
                    306: 	} else {
                    307: 	    $ignored++;
                    308: 	}
                    309: 	$temp++;
                    310:     }
                    311:     my $part=$Apache::inputtags::part;
                    312:     my $id = $Apache::inputtags::response['-1'];
                    313:     my $responsestr=&Apache::lonnet::hash2str(%responsehash);
                    314:     my $gradestr   =&Apache::lonnet::hash2str(%grade);
                    315:     my %previous =&Apache::response::check_for_previous($responsestr,
                    316: 							$part,$id);
                    317:     &Apache::lonxml::debug("Got $right right and $wrong wrong, and $ignored were ignored ");
                    318:     my $ad;
                    319:     if ($wrong==0 && $ignored==0) {
                    320: 	$ad='EXACT_ANS';
                    321:     } elsif ($wrong==0 && $right==0) {
                    322: 	#nothing submitted
                    323:     } else {
                    324: 	if ($ignored==0) {
                    325: 	    $ad='INCORRECT';
                    326: 	} else {
                    327: 	    $ad='MISSING_ANSWER';
                    328: 	}
                    329:     }
                    330:     $Apache::lonhomework::results{"resource.$part.$id.submission"}=
                    331: 	$responsestr;
                    332:     $Apache::lonhomework::results{"resource.$part.$id.submissiongrading"}=
                    333: 	$gradestr;
                    334:     $Apache::lonhomework::results{"resource.$part.$id.awarddetail"}=$ad;
                    335:     &Apache::response::handle_previous(\%previous,$ad);
                    336: }
                    337: 
1.4       albertel  338: sub itemdisplay {
                    339:     my ($location)=@_;
                    340:     if ($location eq 'top' &&
                    341: 	!defined($Apache::matchresponse::itemtable{'location'})) {
                    342: 	return $Apache::matchresponse::itemtable{'display'};
                    343:     }
                    344:     if ($Apache::matchresponse::itemtable{'location'} eq $location) {
                    345: 	return $Apache::matchresponse::itemtable{'display'};
                    346:     }
                    347:     return undef;
                    348: }
1.1       albertel  349: sub displayfoils {
                    350:     my ($target,$max,$randomize)=@_;
                    351:     my $result;
1.4       albertel  352:     my $question;
1.3       albertel  353:     my (@whichfoils)=&whichorder(&getfoilcounts($max),$randomize,
                    354: 				 &Apache::response::showallfoils(),
                    355: 				 \%Apache::response::foilgroup);
1.1       albertel  356:     my $part=$Apache::inputtags::part;
                    357:     my $solved=$Apache::lonhomework::history{"resource.$part.solved"};
                    358:     my $status=$Apache::inputtags::status[-1];
                    359:     my %letter_name_map;
                    360:     if (defined(%{ $Apache::response::itemgroup{'letter_name_map'} })) {
                    361: 	%letter_name_map=
                    362: 	    %{ $Apache::response::itemgroup{'letter_name_map'} };
                    363:     }
                    364:     my %name_letter_map;
                    365:     if (defined(%{ $Apache::response::itemgroup{'name_letter_map'} })) {
                    366: 	%name_letter_map=
                    367: 	    %{ $Apache::response::itemgroup{'name_letter_map'} };
                    368:     }
                    369:     if (($solved =~ /^correct/) || ($status eq  'SHOW_ANSWER')) {
                    370: 	foreach my $name (@whichfoils) {
                    371: 	    my $text=$Apache::response::foilgroup{$name.'.text'};
                    372: 	    my $value=$Apache::response::foilgroup{$name.'.value'};
                    373: 	    my $letter=$name_letter_map{$value};
1.5       sakharuk  374: 	    if ($target eq 'tex') {
                    375: 		$question.=' \\\\ '.$letter.':'.$text;
                    376: 	    } else {
                    377: 		$question.='<br />'.$letter.':'.$text;
                    378: 	    }
1.1       albertel  379: 	}
                    380:     } else {
                    381: 	my $i = 0;
                    382: 	my $temp=0;
                    383: 	my $id=$Apache::inputtags::response[-1];
                    384: 	my $part=$Apache::inputtags::part;
                    385: 	my $lastresponse=$Apache::lonhomework::history{"resource.$part.$id.submission"};
                    386: 	my %lastresponse=&Apache::lonnet::str2hash($lastresponse);
                    387: 	foreach my $name (@whichfoils) {
                    388: 	    my $lastopt=$lastresponse{$name};
                    389: 	    my $last_letter=$name_letter_map{$lastopt};
1.5       sakharuk  390: 	    my $optionlist = '';
1.6     ! sakharuk  391: 	    if ($target ne 'tex') {$optionlist="<option></option>\n";} 
        !           392: 	       else {$optionlist='\framebox[5 mm][s]{\tiny\strut}';}
1.1       albertel  393: 	    my $option;
                    394: 	    foreach $option (sort(keys(%letter_name_map))) {
                    395: 		if ($option eq $last_letter) {
1.6     ! sakharuk  396: 		    if ($target ne 'tex') {$optionlist.="<option selected=\"on\">$option</option>\n";}
1.1       albertel  397: 		} else {
1.6     ! sakharuk  398: 		    if ($target ne 'tex') {$optionlist.="<option>$option</option>\n";}
1.1       albertel  399: 		}
                    400: 	    }
1.5       sakharuk  401: 	    if ($target ne 'tex') {
                    402: 	        $optionlist='<select name="HWVAL_'.
                    403: 		    $Apache::inputtags::response[-1].':'.$temp.'">'.
                    404: 		        $optionlist."</select>\n";
                    405: 	    } else {
                    406: 		$optionlist=$optionlist;
                    407: 	    }
1.1       albertel  408: 	    my $text=$Apache::response::foilgroup{$name.'.text'};
1.5       sakharuk  409: 	    if ($target ne 'tex') {
                    410: 		$question.='<br />'.$optionlist.$text."\n";
1.6     ! sakharuk  411: 		if ($Apache::lonhomework::type eq 'exam') {
        !           412: 		    $question.=&Apache::optionresponse::webbubbles(\@Items,\@Items);
        !           413: 		}
        !           414: 	    } else {		
        !           415: 		if ($Apache::lonhomework::type eq 'exam') {
        !           416: 		    $question.=' '.$optionlist.$text."\n";
        !           417: 		    $question.='\begin{enumerate}\item[\textbf{'.$Apache::lonxml::counter.'}.]'.&Apache::optionresponse::bubbles(\@Items,\@Items).'\end{enumerate}\strut ';
        !           418: 		    &Apache::lonxml::increment_counter();
        !           419: 	        } else {
        !           420: 		    $question.=' \\\\ '.$optionlist.$text."\n";
        !           421: 		}
1.5       sakharuk  422:             } 
1.1       albertel  423: 	    $temp++;
                    424: 	}
1.4       albertel  425:     }
                    426:     if ($result=&itemdisplay('top')) {
                    427: 	$result.=$question;
                    428:     } elsif ($result=&itemdisplay('bottom')) {
                    429: 	$result=$question.$result;
                    430:     } elsif ($result=&itemdisplay('right')) {
                    431: 	$result='<table><tr><td>'.$question.'</td><td>'.$result.
                    432: 	    '</td></tr></table>';
                    433:     } elsif ($result=&itemdisplay('left')) {
                    434: 	$result='<table><tr><td>'.$result.'</td><td>'.$question.
                    435: 	    '</td></tr></table>';
1.1       albertel  436:     }
1.5       sakharuk  437:     if ($target ne 'tex') {$result.="<br />";} else {$result.=' \\\\ ';}
1.1       albertel  438:     return $result;
                    439: }
                    440: 
                    441: sub getfoilcounts {
                    442:     my ($max)=@_;
                    443:     # +1 since instructors will count from 1
                    444:     my $count = $#{ $Apache::response::foilgroup{'names'} }+1;
                    445:     if (&Apache::response::showallfoils()) { $max=$count; }
                    446:     if ($count>$max) { $count=$max } 
                    447:     &Apache::lonxml::debug("Count is $count from $max");
                    448:     return $count;
                    449: }
                    450: 
1.3       albertel  451: sub whichorder {
                    452:     my ($max,$randomize,$showall,$hash)=@_;
                    453:     #&Apache::lonxml::debug("man $max randomize $randomize");
                    454:     if (!defined(@{ $$hash{'names'} })) { return; }
                    455:     my @names = @{ $$hash{'names'} };
1.1       albertel  456:     my @whichopt =();
                    457:     my (%top,@toplist,%bottom,@bottomlist);
1.3       albertel  458:     if (!($showall || ($randomize eq 'no'))) {
1.1       albertel  459: 	my $current=0;
                    460: 	foreach my $name (@names) {
                    461: 	    $current++;
1.3       albertel  462: 	    if ($$hash{"$name.location"} eq 'top') {
1.1       albertel  463: 		$top{$name}=$current;
1.3       albertel  464: 	    } elsif ($$hash{"$name.location"} eq 'bottom') {
1.1       albertel  465: 		$bottom{$name}=$current;
                    466: 	    }
                    467: 	}
                    468:     }
                    469:     while ((($#whichopt+1) < $max) && ($#names > -1)) {
1.3       albertel  470: 	#&Apache::lonxml::debug("Have $#whichopt max is $max");
1.1       albertel  471: 	my $aopt;
1.3       albertel  472: 	if ($showall || ($randomize eq 'no')) {
1.1       albertel  473: 	    $aopt=0;
                    474: 	} else {
                    475: 	    $aopt=int(&Math::Random::random_uniform() * ($#names+1));
                    476: 	}
1.3       albertel  477: 	#&Apache::lonxml::debug("From $#whichopt $max $#names elms, picking $aopt");
1.1       albertel  478: 	$aopt=splice(@names,$aopt,1);
1.3       albertel  479: 	#&Apache::lonxml::debug("Picked $aopt");
1.1       albertel  480: 	if ($top{$aopt}) {
                    481: 	    $toplist[$top{$aopt}]=$aopt;
                    482: 	} elsif ($bottom{$aopt}) {
                    483: 	    $bottomlist[$bottom{$aopt}]=$aopt;
                    484: 	} else {
                    485: 	    push (@whichopt,$aopt);
                    486: 	}
                    487:     }
                    488:     for (my $i=0;$i<=$#toplist;$i++) {
                    489: 	if ($toplist[$i]) { unshift(@whichopt,$toplist[$i]) }
                    490:     }
                    491:     for (my $i=0;$i<=$#bottomlist;$i++) {
                    492: 	if ($bottomlist[$i]) { push(@whichopt,$bottomlist[$i]) }
                    493:     }
                    494: 
                    495:     return @whichopt;
                    496: }
                    497: 
                    498: sub start_conceptgroup {
                    499:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    500:     $Apache::matchresponse::conceptgroup=1;
                    501:     %Apache::response::conceptgroup=();
                    502:     my $result;
                    503:     if ($target eq 'edit') {
                    504: 	$result.=&Apache::edit::tag_start($target,$token,
                    505: 					  "Concept Grouped Foils");
                    506: 	$result.=&Apache::edit::text_arg('Concept:','concept',$token,'50').
                    507: 	    &Apache::edit::end_row().&Apache::edit::start_spanning_row();
                    508:     }
                    509:     if ($target eq 'modified') {
                    510: 	my $constructtag=&Apache::edit::get_new_args($token,$parstack,
                    511: 						     $safeeval,'concept');
                    512: 	if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
                    513:     }
                    514:     return $result;
                    515: }
                    516: 
                    517: sub end_conceptgroup {
                    518:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    519:     $Apache::matchresponse::conceptgroup=0;
                    520:     my $result='';
                    521:     if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' ) {
                    522: 	#if not there aren't any foils to display and thus no question
                    523: 	if (defined(@{ $Apache::response::conceptgroup{'names'} })) {
                    524: 	    my @names = @{ $Apache::response::conceptgroup{'names'} };
                    525: 	    my $pick=int(&Math::Random::random_uniform() * ($#names+1));
                    526: 	    my $name=$names[$pick];
                    527: 	    push @{ $Apache::response::foilgroup{'names'} }, $name;
                    528: 	    $Apache::response::foilgroup{"$name.value"} =
                    529: 		$Apache::response::conceptgroup{"$name.value"};
                    530: 	    $Apache::response::foilgroup{"$name.text"} =
                    531: 		$Apache::response::conceptgroup{"$name.text"};
                    532: 	    $Apache::response::foilgroup{"$name.location"} =
                    533: 		$Apache::response::conceptgroup{"$name.location"};
                    534: 	    my $concept = &Apache::lonxml::get_param('concept',$parstack,
                    535: 						     $safeeval);
                    536: 	    $Apache::response::foilgroup{"$name.concept"} = $concept;
                    537: 	    &Apache::lonxml::debug("Selecting $name in $concept");
                    538: 	    if ($target eq 'web') {
                    539: 		my $part_id="$Apache::inputtags::part.$Apache::inputtags::response[-1]";
                    540: 		push(@{ $Apache::hint::match{"$part_id.concepts"} },
                    541: 		     $concept);
                    542: 		$Apache::hint::match{"$part_id.concept.$concept"}=
                    543: 		    $Apache::response::conceptgroup{'names'};
                    544: 	    }
                    545: 	}
                    546:     } elsif ($target eq 'edit') {
                    547: 	$result=&Apache::edit::end_table();
                    548:     }
                    549:     return $result;
                    550: }
                    551: 
                    552: sub insert_conceptgroup {
                    553:     my $result="\n\t\t<conceptgroup concept=\"\">".&insert_foil()."\n\t\t</conceptgroup>\n";
                    554:     return $result;
                    555: }
                    556: 
                    557: sub start_foil {
                    558:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    559:     my $result='';
1.5       sakharuk  560:     if ($target eq 'web' || $target eq 'tex') {
1.1       albertel  561: 	&Apache::lonxml::startredirection;
                    562:     } elsif ($target eq 'edit') {
                    563: 	$result=&Apache::edit::tag_start($target,$token,"Foil");
                    564: 	my $level='-2';
                    565: 	if ($$tagstack[-2] eq 'conceptgroup') { $level = '-3'; }
                    566: 	$result.=&Apache::edit::text_arg('Name:','name',$token);
                    567: 	my @names;
                    568: 	if (defined(@{ $Apache::response::itemgroup{'names'} })) {
                    569: 	    @names=@{ $Apache::response::itemgroup{'names'} };
                    570: 	}
                    571: 	$result.= &Apache::edit::select_or_text_arg('Correct Option:','value',['unused',@names],$token,'15');
                    572: 	my $randomize=&Apache::lonxml::get_param('randomize',$parstack,
                    573: 						 $safeeval,'-3');
                    574: 	if ($randomize ne 'no') {
                    575: 	    $result.=&Apache::edit::select_arg('Location:','location',
                    576: 					     ['random','top','bottom'],$token);
                    577: 	}
                    578: 	$result .=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
                    579:     } elsif ($target eq 'modified') {
                    580: 	my $constructtag=&Apache::edit::get_new_args($token,$parstack,
                    581: 						     $safeeval,'value',
                    582: 						     'name','location');
                    583: 	if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
                    584:     }
                    585:     return $result;
                    586: }
                    587: 
                    588: sub end_foil {
                    589:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    590:     my $text ='';
                    591:     my $result = '';
1.5       sakharuk  592:     if ($target eq 'web' || $target eq 'tex') {
1.1       albertel  593: 	$text=&Apache::lonxml::endredirection;
                    594:     }
1.5       sakharuk  595:     if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' || $target eq 'tex') {
1.1       albertel  596: 	my $value = &Apache::lonxml::get_param('value',$parstack,$safeeval);
                    597: 	if ($value ne 'unused') {
                    598: 	    my $name = &Apache::lonxml::get_param('name',$parstack,$safeeval);
                    599: 	    my $location =&Apache::lonxml::get_param('location',$parstack,$safeeval);
                    600: 	    &Apache::lonxml::debug("Got a name of :$name:");
                    601: 	    if (!$name) { $name=$Apache::lonxml::curdepth; }
                    602: 	    &Apache::lonxml::debug("Using a name of :$name:");
                    603: 	    if ( $Apache::matchresponse::conceptgroup
                    604: 		 && !&Apache::response::showallfoils() ) {
                    605: 		push @{ $Apache::response::conceptgroup{'names'} }, $name;
                    606: 		$Apache::response::conceptgroup{"$name.value"} = $value;
                    607: 		$Apache::response::conceptgroup{"$name.text"} = $text;
                    608: 		$Apache::response::conceptgroup{"$name.location"} = $location;
                    609: 	    } else {
                    610: 		push @{ $Apache::response::foilgroup{'names'} }, $name;
                    611: 		$Apache::response::foilgroup{"$name.value"} = $value;
                    612: 		$Apache::response::foilgroup{"$name.text"} = $text;
                    613: 		$Apache::response::foilgroup{"$name.location"} = $location;
                    614: 	    }
                    615: 	}
                    616:     }
                    617:     if ($target eq 'edit') {
                    618: 	$result.= &Apache::edit::tag_end($target,$token,'');
                    619:     }
                    620:     return $result;
                    621: }
                    622: 
                    623: sub insert_foil {
                    624:     return '
                    625: <foil name="" value="unused">
                    626: <startouttext />
                    627: <endouttext />
                    628: </foil>';
                    629: }
                    630: 1;
                    631: __END__

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