File:  [LON-CAPA] / loncom / homework / optionresponse.pm
Revision 1.76: download - view: text, annotated - select for diffs
Thu Apr 24 15:49:46 2003 UTC (21 years, 1 month ago) by albertel
Branches: MAIN
CVS tags: HEAD
- added number of foils to the data stored by <optionresponse> in scantron mode

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

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