Diff for /loncom/homework/radiobuttonresponse.pm between versions 1.7 and 1.28

version 1.7, 2001/01/12 21:58:33 version 1.28, 2001/11/09 20:20:45
Line 1 Line 1
 # The LearningOnline Network with CAPA  # The LearningOnline Network with CAPA
 # mutliple choice style responses  # mutliple choice style responses
   # 2/21 Guy
 # 11/23,11/24,11/28 Gerd Kortemeyer  
   
 package Apache::radiobuttonresponse;  package Apache::radiobuttonresponse;
 use strict;  use strict;
Line 11  sub BEGIN { Line 10  sub BEGIN {
 }  }
   
 sub start_radiobuttonresponse {  sub start_radiobuttonresponse {
   my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;    my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
     my $result;
   #when in a radiobutton response use these    #when in a radiobutton response use these
   &Apache::lonxml::register('Apache::radiobuttonresponse',('foilgroup','foil'));    &Apache::lonxml::register('Apache::radiobuttonresponse',('foilgroup','foil','conceptgroup'));
     push (@Apache::lonxml::namespace,'radiobuttonresponse');
   my $id = &Apache::response::start_response($parstack,$safeeval);    my $id = &Apache::response::start_response($parstack,$safeeval);
   return '';    if ($target eq 'meta') {
       $result=&Apache::response::meta_package_write('radiobuttonresponse');
     } elsif ($target eq 'edit' ) {
       $result.=&Apache::edit::start_table($token).
         '<tr><td>'.&Apache::lonxml::description($token)."</td><td>Delete:".
    &Apache::edit::deletelist($target,$token)
     ."</td><td>&nbsp</td></tr><tr><td colspan=\"3\">\n";
       $result.=&Apache::edit::text_arg('Max Number Of Foils:','max',$token,'4').
         "</td></tr>";
       $result.="<tr><td colspan=\"3\">\n";
     } elsif ($target eq 'modified') {
       my $constructtag=&Apache::edit::get_new_args($token,$parstack,
    $safeeval,'max');
       if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
     }
     return $result;
 }  }
   
 sub end_radiobuttonresponse {  sub end_radiobuttonresponse {
     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
     my $result;
     if ($target eq 'edit') { $result=&Apache::edit::end_table(); }
   &Apache::response::end_response;    &Apache::response::end_response;
   return '';    pop @Apache::lonxml::namespace;
     return $result;
 }  }
   
 %Apache::response::foilgroup={};  %Apache::response::foilgroup={};
 sub start_foilgroup {  sub start_foilgroup {
   %Apache::response::foilgroup={};    %Apache::response::foilgroup={};
     $Apache::radiobuttonresponse::conceptgroup=0;
     &Apache::response::setrandomnumber();
   return '';    return '';
 }  }
   
 sub setrandomnumber {  sub storesurvey {
   my $rndseed=&Apache::lonnet::rndseed();    if ( defined $ENV{'form.submitted'}) {
   $rndseed=unpack("%32i",$rndseed);      my $response = $ENV{'form.HWVAL'.$Apache::inputtags::response['-1']};
   $rndseed=$rndseed      &Apache::lonxml::debug("Here I am!:$response:");
     +&Apache::lonnet::numval($Apache::inputtags::part)      if ( $response =~ /[^\s]/) {
       +&Apache::lonnet::numval($Apache::inputtags::response['-1']);        my $id = $Apache::inputtags::response['-1'];
   srand($rndseed);        $Apache::lonhomework::results{"resource.$Apache::inputtags::part.$id.submission"}=$response;
         $Apache::lonhomework::results{"resource.$Apache::inputtags::part.$id.awarddetail"}='SUBMITTED';
         &Apache::lonxml::debug("submitted a $response<br />\n");
       }
     }
   return '';    return '';
 }  }
   
 #FIXME needs to stablely do random picks  
 sub end_foilgroup {  sub end_foilgroup {
   my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;    my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
       
   my $result;    my $result;
   if ($target ne 'meta') {    if ($target eq 'grade' || $target eq 'web' || $target eq 'answer') {
     my $name;      my $style = &Apache::lonxml::get_param('style',$parstack,$safeeval,'-2');
     &setrandomnumber();      if ( $style eq 'survey' ) {
     my ($truecnt,$falsecnt,$max) = &getfoilcounts($parstack,$safeeval);        if ($target eq 'web') {
     my $count=0;   $result=&displayallfoils();
     # we will add in 1 of the true statements        } elsif ( $target eq 'grade' ) {
     if (($falsecnt+1)>$max) { $count=$max } else { $count=$falsecnt+1; }   $result=&storesurvey();
     my $answer = int(rand ($count));        }
     &Apache::lonxml::debug("Answer is $answer, $count from $max, $falsecnt");      } else {
     if ($target eq 'web') {        my $name;
       $result=&displayfoils($max,$answer);        my ($truecnt,$falsecnt,$max) = &getfoilcounts($parstack,$safeeval);
     } elsif ( $target eq 'grade') {        my $count=0;
       if ( defined $ENV{'form.submit'}) {        # we will add in 1 of the true statements
  my $response = $ENV{'form.HWVAL'.$Apache::inputtags::response['-1']};        if (($falsecnt+1)>$max) { $count=$max } else { $count=$falsecnt+1; }
  if ( $response =~ /[^\s]/) {        my $answer = int(rand ($count));
   my $id = $Apache::inputtags::response['-1'];        &Apache::lonxml::debug("Answer is $answer, $count from $max, $falsecnt");
   $Apache::lonhomework::results{"resource.$Apache::inputtags::part.$id.submission"}=$response;        if ($target eq 'web') {
   &Apache::lonxml::debug("submitted a $response<br>\n");   $result=&displayfoils($max,$answer);
   if ($response == $answer) {        } elsif ($target eq 'answer' ) {
     $Apache::lonhomework::results{"resource.$Apache::inputtags::part.$id.awarddetail"}='EXACT_ANS';   $result=&displayanswers($max,$answer);
   } else {        } elsif ( $target eq 'grade') {
     $Apache::lonhomework::results{"resource.$Apache::inputtags::part.$id.awarddetail"}='INCORRECT';   if ( defined $ENV{'form.submitted'}) {
     my $response = $ENV{'form.HWVAL'.$Apache::inputtags::response['-1']};
     if ( $response =~ /[^\s]/) {
       my $id = $Apache::inputtags::response['-1'];
       $Apache::lonhomework::results{"resource.$Apache::inputtags::part.$id.submission"}=$response;
       &Apache::lonxml::debug("submitted a $response<br />\n");
       if ($response == $answer) {
         $Apache::lonhomework::results{"resource.$Apache::inputtags::part.$id.awarddetail"}='EXACT_ANS';
       } else {
         $Apache::lonhomework::results{"resource.$Apache::inputtags::part.$id.awarddetail"}='INCORRECT';
       }
   }    }
  }   }
       }        }
Line 76  sub end_foilgroup { Line 111  sub end_foilgroup {
   
 sub getfoilcounts {  sub getfoilcounts {
   my ($parstack,$safeeval)=@_;    my ($parstack,$safeeval)=@_;
   my $rrargs ='';    my $max = &Apache::lonxml::get_param('max',$parstack,$safeeval,'-2');
   if ( $#$parstack > 0 ) { $rrargs=$$parstack['-2']; }  
   my $max = &Apache::run::run("{$rrargs;".'return $max}',$safeeval);  
   my @names = @{ $Apache::response::foilgroup{'names'} };    my @names = @{ $Apache::response::foilgroup{'names'} };
   my $truecnt=0;    my $truecnt=0;
   my $falsecnt=0;    my $falsecnt=0;
Line 94  sub getfoilcounts { Line 127  sub getfoilcounts {
   return ($truecnt,$falsecnt,$max);    return ($truecnt,$falsecnt,$max);
 }  }
   
 sub displayfoils {  sub displayallfoils {
   my ($max,$answer)=@_;    my $result;
     &Apache::lonxml::debug("survey style display");
   my @names = @{ $Apache::response::foilgroup{'names'} };    my @names = @{ $Apache::response::foilgroup{'names'} };
     my $temp=0;
     my $id=$Apache::inputtags::response['-1'];
     my $part=$Apache::inputtags::part;
     my $lastresponse=$Apache::lonhomework::history{"resource.$part.$id.submission"};
     foreach my $name (@names) {
       if ($Apache::response::foilgroup{$name.'.value'} ne 'unused') {
         $result.="<br /><input type=\"radio\" name=\"HWVAL$Apache::inputtags::response['-1']\" value=\"$temp\" ";
         if ($lastresponse eq $temp) { $result .= 'checked="on"'; }
         $result .= '>'.$Apache::response::foilgroup{$name.'.text'}."</input>\n";
         $temp++;
       }
     }
     return $result;
   }
   
   sub whichfoils {
     my ($max,$answer)=@_;
   
   my @truelist;    my @truelist;
   my @falselist;    my @falselist;
   my $result;  
   my $name;  
   
   foreach $name (@names) {    my @names = @{ $Apache::response::foilgroup{'names'} };
     #result.="<br><b>$name</b> is <i> $Apache::response::foilgroup{$name.'.value'} </i>";    foreach my $name (@names) {
       #result.="<br /><b>$name</b> is <i> $Apache::response::foilgroup{$name.'.value'} </i>";
     if ($Apache::response::foilgroup{$name.'.value'} eq 'true') {      if ($Apache::response::foilgroup{$name.'.value'} eq 'true') {
       push (@truelist,$name);        push (@truelist,$name);
     } elsif ($Apache::response::foilgroup{$name.'.value'} eq 'false') {      } elsif ($Apache::response::foilgroup{$name.'.value'} eq 'false') {
Line 113  sub displayfoils { Line 164  sub displayfoils {
       &Apache::lonxml::error("Unknown state $Apache::response::foilgroup{$name.'.value'} for $name in <foilgroup>");        &Apache::lonxml::error("Unknown state $Apache::response::foilgroup{$name.'.value'} for $name in <foilgroup>");
     }      }
   }    }
   my $whichtrue = rand $#truelist;    my $whichtrue = int(rand($#truelist+1));
   &Apache::lonxml::debug("Max is $max, From $#truelist elms, picking $whichtrue");    &Apache::lonxml::debug("Max is $max, From $#truelist elms, picking $whichtrue");
   my @whichfalse =();    my @whichfalse =();
   while ((($#whichfalse+2) < $max) && ($#falselist > -1)) {    while ((($#whichfalse+1) < $max) && ($#falselist > -1)) {
     my $afalse=rand $#falselist;      &Apache::lonxml::debug("Have $#whichfalse max is $max");
       my $afalse=int(rand($#falselist+1));
     &Apache::lonxml::debug("From $#falselist elms, picking $afalse");      &Apache::lonxml::debug("From $#falselist elms, picking $afalse");
     $afalse=splice(@falselist,$afalse,1);      $afalse=splice(@falselist,$afalse,1);
     &Apache::lonxml::debug("Picked $afalse");      &Apache::lonxml::debug("Picked $afalse");
     push (@whichfalse,$afalse);      push (@whichfalse,$afalse);
   }    }
   splice(@whichfalse,$answer,0,$truelist[$whichtrue]);    splice(@whichfalse,$answer,0,$truelist[$whichtrue]);
   my $temp=0;  
   &Apache::lonxml::debug("the true statement is $answer");    &Apache::lonxml::debug("the true statement is $answer");
   foreach $name (@whichfalse) {    return @whichfalse;
     $result.="<br /><input type=\"radio\" name=\"HWVAL$Apache::inputtags::response['-1']\" value=\"$temp\">".$Apache::response::foilgroup{$name.'.text'}."</input>\n";  }
     $temp++;  
   sub displayfoils {
     my ($max,$answer)=@_;
     my $result;
   
     my @whichfoils=&whichfoils($max,$answer);
     if ($Apache::lonhomework::history{"resource.$Apache::inputtags::part.solved"} =~ /^correct/ ) {
       foreach my $name (@whichfoils) {
         $result.="<br />";
         if ($Apache::response::foilgroup{$name.'.value'} eq 'true') { 
    $result.='Correct';
         } else {
    $result.='Incorrect';
         }
         $result.=":".$Apache::response::foilgroup{$name.'.text'}."</input>\n";
       }
     } else {
       my $temp=0;
       my $id=$Apache::inputtags::response['-1'];
       my $part=$Apache::inputtags::part;
       my $lastresponse=$Apache::lonhomework::history{"resource.$part.$id.submission"};
       foreach my $name (@whichfoils) {
          $result.="<br /><input type=\"radio\" name=\"HWVAL$Apache::inputtags::response['-1']\" value=\"$temp\" ";
         if ($lastresponse eq $temp) { $result .= 'checked="on"'; }
         $result .= '>'.$Apache::response::foilgroup{$name.'.text'}."</input>\n";
         $temp++;
       }
   }    }
   return $result."<br />";    return $result."<br />";
 }  }
   
   sub displayanswers {
     my ($max,$answer)=@_;
     my @names = @{ $Apache::response::foilgroup{'names'} };
     my @whichopt = &whichfoils($max,$answer);
     my $result=&Apache::response::answer_header('radiobuttonresponse');
     foreach my $name (@whichopt) {
       $result.=&Apache::response::answer_part('radiobuttonresponse',
        $Apache::response::foilgroup{$name.'.value'})
     }
     $result.=&Apache::response::answer_footer('radiobuttonresponse');
     return $result;
   }
   
   sub start_conceptgroup {
     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
     $Apache::radiobuttonresponse::conceptgroup=1;
     %Apache::response::conceptgroup={};
     my $result;
     if ($target eq 'edit') {
       $result.=&Apache::edit::tag_start($target,$token);
       $result.=&Apache::edit::text_arg('Concept:','concept',$token,'50').
         "</td></tr><tr><td colspan=\"3\">\n";
     } elsif ($target eq 'modified') {
       my $constructtag=&Apache::edit::get_new_args($token,$parstack,
    $safeeval,'concept');
       if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
     }
     return $result;
   }
   
   sub end_conceptgroup {
     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
     $Apache::radiobuttonresponse::conceptgroup=0;
     my $result;
     if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' ) {
       if (defined(@{ $Apache::response::conceptgroup{'names'} })) {
         my @names = @{ $Apache::response::conceptgroup{'names'} };
         my $pick=int(rand($#names+1));
         my $name=$names[$pick];
         push @{ $Apache::response::foilgroup{'names'} }, $name;
         $Apache::response::foilgroup{"$name.text"} =  $Apache::response::conceptgroup{"$name.text"};
         $Apache::response::foilgroup{"$name.value"} = $Apache::response::conceptgroup{"$name.value"};
         my $concept = &Apache::lonxml::get_param('concept',$parstack,$safeeval);
         $Apache::response::foilgroup{"$name.concept"} = $concept;
         &Apache::lonxml::debug("Selecting $name in $concept");
       }
     } elsif ($target eq 'edit') {
       $result=&Apache::edit::end_table();
     }
     return $result;
   }
   
   sub insert_conceptgroup {
     my $result="\n\t\t<conceptgroup concept=\"\">".&insert_foil()."\n\t\t</conceptgroup>\n";
     return $result;
   }
   
 sub start_foil {  sub start_foil {
   $Apache::lonxml::redirection--;    my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
   return '';    my $result='';
     if ($target eq 'web') {
       &Apache::lonxml::startredirection;
     } elsif ($target eq 'edit') {
       $result=&Apache::edit::tag_start($target,$token);
       $result.=&Apache::edit::text_arg('Name:','name',$token);
       $result.=&Apache::edit::select_arg('Correct Option:','value',
          ['unused','true','false'],$token);
     } elsif ($target eq 'modified') {
        my $constructtag=&Apache::edit::get_new_args($token,$parstack,$safeeval,
     'value','name');
       if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
     }
     return $result;
 }  }
   
 sub end_foil {  sub end_foil {
   my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;    my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
   if ($target eq 'web' || $target eq 'grade') {    my $text='';
     my $args ='';    if ($target eq 'web') { $text=&Apache::lonxml::endredirection; }
     if ( $#$parstack > -1 ) { $args=$$parstack[$#$parstack]; }    if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' ) {
     my $name = &Apache::run::run("{$args;".'return $name}',$safeeval);      my $value = &Apache::lonxml::get_param('value',$parstack,$safeeval);
     push @{ $Apache::response::foilgroup{'names'} }, $name;      if ($value ne 'unused') {
     my $value = &Apache::run::run("{$args;".'return $value}',$safeeval);        my $name = &Apache::lonxml::get_param('name',$parstack,$safeeval);
     $Apache::response::foilgroup{"$name.value"} = $value;        if (!$name) { $name=$Apache::lonxml::curdepth; }
     $Apache::response::foilgroup{"$name.text"} = $Apache::lonxml::outputstack;        if ( $Apache::radiobuttonresponse::conceptgroup ) {
   }   push @{ $Apache::response::conceptgroup{'names'} }, $name;
      $Apache::response::conceptgroup{"$name.value"} = $value;
   $Apache::lonxml::redirection++;   $Apache::response::conceptgroup{"$name.text"} = $text;
   if ($Apache::lonxml::redirection == 1) {         } else {
     $Apache::lonxml::outputstack='';    push @{ $Apache::response::foilgroup{'names'} }, $name;
    $Apache::response::foilgroup{"$name.value"} = $value;
    $Apache::response::foilgroup{"$name.text"} = $text;
         }
       }
   }    }
   return '';    return '';
 }  }
   
   sub insert_foil {
     return '
   <foil name="" value="unused">
   <startouttext />
   <endouttext />
   </foil>';
   }
 1;  1;
 __END__  __END__
     

Removed from v.1.7  
changed lines
  Added in v.1.28


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