Annotation of loncom/homework/imageresponse.pm, revision 1.25
1.12 albertel 1: # The LearningOnline Network with CAPA
1.14 albertel 2: # image click response style
3: #
1.25 ! www 4: # $Id: imageresponse.pm,v 1.24 2003/02/25 16:09:01 sakharuk Exp $
1.14 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.1 albertel 28:
1.25 ! www 29: #FIXME LATER assumes multiple possible submissions but only one is possible
! 30: #currently
1.3 albertel 31:
1.1 albertel 32: package Apache::imageresponse;
33: use strict;
1.21 harris41 34: use Image::Magick;
1.1 albertel 35:
1.16 harris41 36: BEGIN {
1.12 albertel 37: &Apache::lonxml::register('Apache::imageresponse',('imageresponse'));
1.1 albertel 38: }
39:
40: sub start_imageresponse {
1.12 albertel 41: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.13 albertel 42: my $result;
1.12 albertel 43: #when in a radiobutton response use these
44: &Apache::lonxml::register('Apache::imageresponse',('foilgroup','foil','text','image','rectangle','conceptgroup'));
45: push (@Apache::lonxml::namespace,'imageresponse');
46: my $id = &Apache::response::start_response($parstack,$safeeval);
1.13 albertel 47: if ($target eq 'meta') {
48: $result=&Apache::response::meta_package_write('imageresponse');
49: }
50: return $result;
1.1 albertel 51: }
52:
53: sub end_imageresponse {
1.12 albertel 54: &Apache::response::end_response;
55: pop @Apache::lonxml::namespace;
1.15 albertel 56: &Apache::lonxml::deregister('Apache::imageresponse',('foilgroup','foil','text','image','rectangle','conceptgroup'));
1.12 albertel 57: return '';
1.1 albertel 58: }
59:
1.20 albertel 60: %Apache::response::foilgroup=();
1.1 albertel 61: sub start_foilgroup {
1.20 albertel 62: %Apache::response::foilgroup=();
1.12 albertel 63: $Apache::imageresponse::conceptgroup=0;
64: &Apache::response::setrandomnumber();
65: return '';
1.1 albertel 66: }
67:
1.2 albertel 68: sub getfoilcounts {
1.12 albertel 69: my ($parstack,$safeeval)=@_;
70:
71: my $max = &Apache::lonxml::get_param('max',$parstack,$safeeval,'-2');
72: # +1 since instructors will count from 1
73: my $count = $#{ $Apache::response::foilgroup{'names'} }+1;
1.18 albertel 74: if (&Apache::response::showallfoils()) { $max=$count; }
1.12 albertel 75: return ($count,$max);
1.2 albertel 76: }
77:
78: sub whichfoils {
1.12 albertel 79: my ($max)=@_;
80: if (!defined(@{ $Apache::response::foilgroup{'names'} })) { return; }
81: my @names = @{ $Apache::response::foilgroup{'names'} };
82: my @whichopt =();
83: while ((($#whichopt+1) < $max) && ($#names > -1)) {
84: &Apache::lonxml::debug("Have $#whichopt max is $max");
1.18 albertel 85: my $aopt;
86: if (&Apache::response::showallfoils()) {
87: $aopt=0;
88: } else {
1.22 albertel 89: $aopt=int(&Math::Random::random_uniform() * ($#names+1));
1.18 albertel 90: }
1.12 albertel 91: &Apache::lonxml::debug("From $#names elms, picking $aopt");
92: $aopt=splice(@names,$aopt,1);
93: &Apache::lonxml::debug("Picked $aopt");
94: push (@whichopt,$aopt);
95: }
96: return @whichopt;
1.2 albertel 97: }
98:
99: sub displayfoils {
1.24 sakharuk 100: my ($target,@whichopt) = @_;
1.12 albertel 101: my $result ='';
102: my $name;
103: my $temp=1;
104: foreach $name (@whichopt) {
1.24 sakharuk 105: $result.=$Apache::response::foilgroup{"$name.text"};
106: if ($target eq 'tex') {$result.="\\vskip 0 mm \n";} else {$result.="<br />\n";}
1.12 albertel 107: my $image=$Apache::response::foilgroup{"$name.image"};
108: if ($Apache::lonhomework::history{"resource.$Apache::inputtags::part.solved"} =~ /^correct/ ) {
1.24 sakharuk 109: if ($target eq 'tex') {
110: $result.=$Apache::response::foilgroup{"$name.image"}."\\vskip 0 mm \n";
111: } else {
112: $result.="<img src=\"$image\"/> <br />\n";
113: }
1.12 albertel 114: } else {
1.24 sakharuk 115: if ($target eq 'tex') {
116: $result.=$Apache::response::foilgroup{"$name.image"}."\\vskip 0 mm \n";
117: } else {
118: $result.="<input type=\"image\" name=\"HWVAL_$Apache::inputtags::response['-1']:$temp\" src=\"$image\"/> <br />\n";
119: }
1.12 albertel 120: }
121: $temp++;
122: }
123: return $result;
1.2 albertel 124: }
125:
1.3 albertel 126: sub gradefoils {
1.12 albertel 127: my (@whichopt) = @_;
128: my $x;
129: my $y;
130: my $result;
131: my $id=$Apache::inputtags::response['-1'];
132: my $temp=1;
133: foreach my $name (@whichopt) {
134: $x=$ENV{"form.HWVAL_$id:$temp.x"};
135: $y=$ENV{"form.HWVAL_$id:$temp.y"};
136: &Apache::lonxml::debug("Got a x of $x and a y of $y for $name");
137: if (defined(@{ $Apache::response::foilgroup{"$name.area"} })) {
138: my @areas = @{ $Apache::response::foilgroup{"$name.area"} };
139: my $grade="INCORRECT";
140: foreach my $area (@areas) {
141: &Apache::lonxml::debug("Area is $area for $name");
142: $area =~ m/([a-z]*):/;
143: &Apache::lonxml::debug("Area of type $1");
144: if ($1 eq 'rectangle') {
145: $grade=&grade_rectangle($area,$x,$y);
146: } else {
147: &Apache::lonxml::error("Unknown area style $area");
1.9 albertel 148: }
1.12 albertel 149: &Apache::lonxml::debug("Area said $grade");
150: if ($grade eq 'APPROX_ANS') { last; }
151: }
152: &Apache::lonxml::debug("Foil was $grade");
153: if ($grade eq 'INCORRECT') { $result= 'INCORRECT'; }
154: if (($grade eq 'APPROX_ANS') && ($result ne 'APPROX_ANS')) { $result=$grade; }
155: &Apache::lonxml::debug("Question is $result");
156: $temp++;
157: }
158: }
159: $Apache::lonhomework::results{"resource.$Apache::inputtags::part.$id.submission"}="$x:$y";
160: $Apache::lonhomework::results{"resource.$Apache::inputtags::part.$id.awarddetail"}=$result;
161: return '';
1.3 albertel 162: }
163:
1.1 albertel 164: sub end_foilgroup {
1.12 albertel 165: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
166: my $result='';
167: my @whichopt;
1.24 sakharuk 168: if ($target eq 'web' || $target eq 'grade' || $target eq 'tex') {
1.12 albertel 169: my ($count,$max) = &getfoilcounts($parstack,$safeeval);
170: if ($count>$max) { $count=$max }
171: &Apache::lonxml::debug("Count is $count from $max");
172: @whichopt = &whichfoils($max);
173: }
1.24 sakharuk 174: if ($target eq 'web' || $target eq 'tex') {
175: $result=&displayfoils($target,@whichopt);
1.12 albertel 176: }
177: if ($target eq 'grade') {
178: if ( defined $ENV{'form.submitted'}) {
179: &gradefoils(@whichopt);
1.3 albertel 180: }
1.12 albertel 181: }
182: return $result;
1.1 albertel 183: }
184:
185: sub start_conceptgroup {
1.12 albertel 186: $Apache::imageresponse::conceptgroup=1;
1.20 albertel 187: %Apache::response::conceptgroup=();
1.12 albertel 188: return '';
1.1 albertel 189: }
190:
191: sub end_conceptgroup {
1.12 albertel 192: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
193: $Apache::imageresponse::conceptgroup=0;
1.24 sakharuk 194: if ($target eq 'web' || $target eq 'grade' || $target eq 'tex') {
1.12 albertel 195: if (defined(@{ $Apache::response::conceptgroup{'names'} })) {
196: my @names = @{ $Apache::response::conceptgroup{'names'} };
1.22 albertel 197: my $pick=int(&Math::Random::random_uniform() * ($#names+1));
1.12 albertel 198: my $name=$names[$pick];
199: if (defined(@{ $Apache::response::conceptgroup{"$name.area"} })) {
200: push @{ $Apache::response::foilgroup{'names'} }, $name;
201: $Apache::response::foilgroup{"$name.text"} = $Apache::response::conceptgroup{"$name.text"};
202: $Apache::response::foilgroup{"$name.image"} = $Apache::response::conceptgroup{"$name.image"};
203: push(@{ $Apache::response::foilgroup{"$name.area"} }, @{ $Apache::response::conceptgroup{"$name.area"} });
204: my $concept = &Apache::lonxml::get_param('concept',$parstack,$safeeval);
205: $Apache::response::foilgroup{"$name.concept"} = $concept;
206: &Apache::lonxml::debug("Selecting $name in $concept");
207: }
1.9 albertel 208: }
1.12 albertel 209: }
210: return '';
1.1 albertel 211: }
212:
1.12 albertel 213: $Apache::imageresponse::curname='';
1.1 albertel 214: sub start_foil {
1.12 albertel 215: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.24 sakharuk 216: if ($target eq 'web' || $target eq 'grade' || $target eq 'tex') {
1.12 albertel 217: my $name = &Apache::lonxml::get_param('name',$parstack,$safeeval);
218: if ($name eq '') { $name=$Apache::lonxml::curdepth; }
1.18 albertel 219: if ( $Apache::imageresponse::conceptgroup
220: && !&Apache::response::showallfoils()) {
1.12 albertel 221: push(@{ $Apache::response::conceptgroup{'names'} }, $name);
222: } else {
223: push(@{ $Apache::response::foilgroup{'names'} }, $name);
224: }
225: $Apache::imageresponse::curname=$name;
226: }
227: return '';
1.1 albertel 228: }
229:
230: sub end_foil {
1.12 albertel 231: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
232: return '';
1.1 albertel 233: }
234:
235: sub start_text {
1.12 albertel 236: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.25 ! www 237: my $result='';
! 238: if ($target eq 'web' || $target eq 'tex') {
! 239: &Apache::lonxml::startredirection;
! 240: } elsif ($target eq 'edit') {
! 241: my $descr=$$parser[$#$parser]->get_text("/text");
! 242: $result=&Apache::edit::tag_start($target,$token,'Task Description').
! 243: &Apache::edit::editfield($token->[1],$descr,'Text',60,2).
! 244: &Apache::edit::end_row().&Apache::edit::start_spanning_row();
! 245: } elsif ($target eq "modified") {
! 246: my $bgimg=$$parser[$#$parser]->get_text("/text");
! 247: $result=$token->[4].&Apache::edit::modifiedfield($token);
! 248: &Apache::lonxml::debug($result);
! 249: }
! 250: return $result;
1.1 albertel 251: }
252:
253: sub end_text {
1.12 albertel 254: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.24 sakharuk 255: if ($target eq 'web' || $target eq 'tex') {
1.12 albertel 256: my $name = $Apache::imageresponse::curname;
1.18 albertel 257: if ( $Apache::imageresponse::conceptgroup
258: && !&Apache::response::showallfoils() ) {
1.12 albertel 259: $Apache::response::conceptgroup{"$name.text"} = &Apache::lonxml::endredirection;
260: } else {
261: $Apache::response::foilgroup{"$name.text"} = &Apache::lonxml::endredirection;
1.7 albertel 262: }
1.12 albertel 263: }
264: return '';
1.1 albertel 265: }
266:
267: sub start_image {
1.12 albertel 268: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.25 ! www 269: my $result='';
! 270: if ($target eq 'web' || $target eq 'tex') {
! 271: &Apache::lonxml::startredirection;
! 272: } elsif ($target eq 'edit') {
! 273: my $bgimg=$$parser[$#$parser]->get_text("/image");
! 274: $result=&Apache::edit::tag_start($target,$token,'Clickable Image').
! 275: &Apache::edit::editline($token->[1],$bgimg,'Image Source File',40);
! 276: $result.=&Apache::edit::browse(undef,'textnode').' ';
! 277: $result.=&Apache::edit::search(undef,'textnode').
! 278: &Apache::edit::end_row().&Apache::edit::start_spanning_row();
! 279: } elsif ($target eq "modified") {
! 280: my $bgimg=$$parser[$#$parser]->get_text("/image");
! 281: $result=$token->[4].&Apache::edit::modifiedfield($token);
! 282: &Apache::lonxml::debug($result);
! 283: }
! 284: return $result;
1.1 albertel 285: }
286:
287: sub end_image {
1.19 sakharuk 288: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.24 sakharuk 289: my $name = $Apache::imageresponse::curname;
1.12 albertel 290: if ($target eq 'web') {
291: my $image = &Apache::lonxml::endredirection;
292: &Apache::lonxml::debug("out is $image");
1.18 albertel 293: if ( $Apache::imageresponse::conceptgroup
294: && !&Apache::response::showallfoils()) {
1.12 albertel 295: $Apache::response::conceptgroup{"$name.image"} = $image;
296: } else {
297: $Apache::response::foilgroup{"$name.image"} = $image;
1.7 albertel 298: }
1.19 sakharuk 299: } elsif ($target eq 'tex') {
300: my $src = &Apache::lonxml::endredirection;
301: $src=&Apache::lonnet::filelocation($Apache::lonxml::pwd[-1],$src);
302: my $width_param = '';
303: my $height_param = '';
304: my $scaling = .3;
305: my $image = Image::Magick->new;
306: my $current_figure = $image->Read($src);
307: $width_param = $image->Get('width') * $scaling;;
308: $height_param = $image->Get('height') * $scaling;;
309: undef $image;
310: my $epssrc = $src;
311: $epssrc =~ s/(\.gif|\.jpg)$/\.eps/i;
312: if (not -e $epssrc) {
313: my $localfile = $epssrc;
314: $localfile =~ s/.*(\/res)/$1/;
315: my $file;
316: my $path;
317: if ($localfile =~ m!(.*)/([^/]*)$!) {
318: $file = $2;
319: $path = $1.'/';
320: }
321: my $signal_eps = 0;
322: my @content_directory = &Apache::lonnet::dirlist($path);
323: for (my $iy=0;$iy<=$#content_directory;$iy++) {
324: my @tempo_array = split(/&/,$content_directory[$iy]);
325: $content_directory[$iy] = $tempo_array[0];
326: if ($file eq $tempo_array[0]) {
327: $signal_eps = 1;
328: last;
329: }
330: }
331: if ($signal_eps) {
332: my $eps_file = &Apache::lonnet::getfile($localfile);
333: } else {
334: $localfile = $src;
335: $localfile =~ s/.*(\/res)/$1/;
336: my $as = &Apache::lonnet::getfile($src);
337: }
338: }
339: my $file;
340: my $path;
341: if ($src =~ m!(.*)/([^/]*)$!) {
342: $file = $2;
343: $path = $1.'/';
344: }
345: my $newsrc = $src;
346: $newsrc =~ s/(\.gif|\.jpg)$/\.eps/i;
347: $file=~s/(\.gif|\.jpg)$/\.eps/i;
348: #do we have any specified size of the picture?
349: my $TeXwidth = &Apache::lonxml::get_param('TeXwidth',$parstack,$safeeval);
350: my $TeXheight = &Apache::lonxml::get_param('TeXheight',$parstack,$safeeval);
351: my $width = &Apache::lonxml::get_param('width',$parstack,$safeeval);
352: if ($TeXwidth ne '') {
353: $width_param = $TeXwidth;
354: } elsif ($TeXheight ne '') {
355: $width_param = $TeXheight/$height_param*$width_param;
356: } elsif ($width ne '') {
357: $width_param = $width*$scaling;
358: }
359: #where can we find the picture?
360: if (-e $newsrc) {
361: if ($path) {
1.24 sakharuk 362: $Apache::response::foilgroup{"$name.image"} ='\vskip 0 mm \noindent\graphicspath{{'.$path.'}}\includegraphics[width='.$width_param.' mm]{'.$file.'} ';
1.19 sakharuk 363: }
364: } else {
365: my $temp_file;
366: my $filename = "/home/httpd/prtspool/$ENV{'user.name'}_$ENV{'user.domain'}_printout.dat";
367: $temp_file = Apache::File->new('>>'.$filename);
368: print $temp_file "$src\n";
1.24 sakharuk 369: $Apache::response::foilgroup{"$name.image"} ='\vskip 0 mm \graphicspath{{/home/httpd/prtspool/}}\includegraphics[width='.$width_param.' mm]{'.$file.'} ';
1.19 sakharuk 370: }
1.24 sakharuk 371: }
372: return '';
1.1 albertel 373: }
374:
375: sub start_rectangle {
1.12 albertel 376: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.25 ! www 377: my $result='';
! 378: if ($target eq 'web' || $target eq 'grade' || $target eq 'tex') {
! 379: &Apache::lonxml::startredirection;
! 380: } elsif ($target eq 'edit') {
! 381: my $coords=$$parser[$#$parser]->get_text("/rectangle");
! 382: $result=&Apache::edit::tag_start($target,$token,'Rectangle').
! 383: &Apache::edit::editline($token->[1],$coords,'Coordinate Pairs',40).
! 384: &Apache::edit::end_row().&Apache::edit::start_spanning_row();
! 385: } elsif ($target eq "modified") {
! 386: my $coords=$$parser[$#$parser]->get_text("/rectangle");
! 387: $result=$token->[4].&Apache::edit::modifiedfield($token);
! 388: &Apache::lonxml::debug($result);
! 389: }
! 390: return $result;
1.1 albertel 391: }
392:
1.3 albertel 393: sub grade_rectangle {
1.12 albertel 394: my ($spec,$x,$y) = @_;
395: &Apache::lonxml::debug("Spec is $spec");
396: $spec=~m/rectangle:\(([0-9]+),([0-9]+)\)\-\(([0-9]+),([0-9]+)\)/;
397: my $x1=$1;
398: my $y1=$2;
399: my $x2=$3;
400: my $y2=$4;
401: &Apache::lonxml::debug("Point $x1,$y1,$x2,$y2");
402: if ($x1 > $x2) { my $temp=$x1;$x1=$x2;$x2=$temp; }
403: if ($y1 > $y2) { my $temp=$y1;$y1=$y2;$y2=$temp; }
1.17 albertel 404: if (($x >= $x1) && ($x <= $x2) && ($y >= $y1) && ($y <= $y2)) {
405: return 'APPROX_ANS';
406: }
1.12 albertel 407: return 'INCORRECT';
1.3 albertel 408: }
409:
1.1 albertel 410: sub end_rectangle {
1.12 albertel 411: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.24 sakharuk 412: if ($target eq 'web' || $target eq 'grade' || $target eq 'tex') {
1.12 albertel 413: my $name = $Apache::imageresponse::curname;
414: my $area = &Apache::lonxml::endredirection;
415: &Apache::lonxml::debug("out is $area for $name");
1.18 albertel 416: if ( $Apache::imageresponse::conceptgroup
417: && !&Apache::response::showallfoils()) {
1.12 albertel 418: push @{ $Apache::response::conceptgroup{"$name.area"} },"rectangle:$area";
419: } else {
420: push @{ $Apache::response::foilgroup{"$name.area"} },"rectangle:$area";
1.7 albertel 421: }
1.12 albertel 422: }
423: return '';
1.1 albertel 424: }
425: 1;
426: __END__
427:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>