--- loncom/homework/radiobuttonresponse.pm 2001/03/01 01:20:04 1.14 +++ loncom/homework/radiobuttonresponse.pm 2001/04/23 17:15:13 1.15 @@ -40,31 +40,56 @@ sub setrandomnumber { return ''; } +sub storesurvey { + if ( defined $ENV{'form.submitted'}) { + my $response = $ENV{'form.HWVAL'.$Apache::inputtags::response['-1']}; + &Apache::lonxml::debug("Here I am!:$response:"); + if ( $response =~ /[^\s]/) { + my $id = $Apache::inputtags::response['-1']; + $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
\n"); + } + } + return ''; +} + sub end_foilgroup { my ($target,$token,$parstack,$parser,$safeeval,$style)=@_; my $result; if ($target ne 'meta') { - my $name; - my ($truecnt,$falsecnt,$max) = &getfoilcounts($parstack,$safeeval); - my $count=0; - # we will add in 1 of the true statements - if (($falsecnt+1)>$max) { $count=$max } else { $count=$falsecnt+1; } - my $answer = int(rand ($count)); - &Apache::lonxml::debug("Answer is $answer, $count from $max, $falsecnt"); - if ($target eq 'web') { - $result=&displayfoils($max,$answer); - } elsif ( $target eq 'grade') { - 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
\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'; + my $rrargs =''; + if ( $#$parstack > 0 ) { $rrargs=$$parstack['-2']; } + my $style = &Apache::run::run("{$rrargs;".'return $style}',$safeeval); + if ( $style eq 'survey' ) { + if ($target eq 'web') { + $result=&displayallfoils(); + } elsif ( $target eq 'grade' ) { + $result=&storesurvey(); + } + } else { + my $name; + my ($truecnt,$falsecnt,$max) = &getfoilcounts($parstack,$safeeval); + my $count=0; + # we will add in 1 of the true statements + if (($falsecnt+1)>$max) { $count=$max } else { $count=$falsecnt+1; } + my $answer = int(rand ($count)); + &Apache::lonxml::debug("Answer is $answer, $count from $max, $falsecnt"); + if ($target eq 'web') { + $result=&displayfoils($max,$answer); + } elsif ( $target eq 'grade') { + 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
\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'; + } } } } @@ -93,6 +118,25 @@ sub getfoilcounts { return ($truecnt,$falsecnt,$max); } +sub displayallfoils { + my $result; + &Apache::lonxml::debug("survey style display"); + 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.="
\n"; + $temp++; + } + } + return $result; +} + sub displayfoils { my ($max,$answer)=@_; my @names = @{ $Apache::response::foilgroup{'names'} }; @@ -115,7 +159,7 @@ sub displayfoils { my $whichtrue = rand $#truelist; &Apache::lonxml::debug("Max is $max, From $#truelist elms, picking $whichtrue"); my @whichfalse =(); - while ((($#whichfalse+2) < $max) && ($#falselist > -1)) { + while ((($#whichfalse+1) < $max) && ($#falselist > -1)) { my $afalse=rand $#falselist; &Apache::lonxml::debug("From $#falselist elms, picking $afalse"); $afalse=splice(@falselist,$afalse,1); @@ -136,8 +180,13 @@ sub displayfoils { } } 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 $name (@whichfalse) { - $result.="
".$Apache::response::foilgroup{$name.'.text'}."\n"; + $result.="
\n"; $temp++; } }