Annotation of loncom/homework/imageresponse.pm, revision 1.58.2.1
1.58 albertel 1:
1.12 albertel 2: # The LearningOnline Network with CAPA
1.14 albertel 3: # image click response style
4: #
1.58.2.1! albertel 5: # $Id: imageresponse.pm,v 1.58 2004/12/08 01:00:41 albertel Exp $
1.14 albertel 6: #
7: # Copyright Michigan State University Board of Trustees
8: #
9: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
10: #
11: # LON-CAPA is free software; you can redistribute it and/or modify
12: # it under the terms of the GNU General Public License as published by
13: # the Free Software Foundation; either version 2 of the License, or
14: # (at your option) any later version.
15: #
16: # LON-CAPA is distributed in the hope that it will be useful,
17: # but WITHOUT ANY WARRANTY; without even the implied warranty of
18: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19: # GNU General Public License for more details.
20: #
21: # You should have received a copy of the GNU General Public License
22: # along with LON-CAPA; if not, write to the Free Software
23: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24: #
25: # /home/httpd/html/adm/gpl.txt
26: #
27: # http://www.lon-capa.org/
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.51 albertel 34: use Image::Magick();
35: use Apache::randomlylabel();
36: use Apache::londefdef();
1.40 albertel 37: use Apache::Constants qw(:common :http);
1.51 albertel 38: use Apache::lonlocal;
1.1 albertel 39:
1.16 harris41 40: BEGIN {
1.36 albertel 41: &Apache::lonxml::register('Apache::imageresponse',('imageresponse'));
1.1 albertel 42: }
43:
44: sub start_imageresponse {
1.36 albertel 45: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
46: my $result;
47: #when in a radiobutton response use these
1.43 albertel 48: &Apache::lonxml::register('Apache::imageresponse',
49: ('foilgroup','foil','text','image','rectangle',
50: 'polygon','conceptgroup'));
1.36 albertel 51: push (@Apache::lonxml::namespace,'imageresponse');
52: my $id = &Apache::response::start_response($parstack,$safeeval);
1.51 albertel 53: undef(%Apache::response::foilnames);
1.36 albertel 54: if ($target eq 'meta') {
55: $result=&Apache::response::meta_package_write('imageresponse');
1.37 albertel 56: } elsif ($target eq 'analyze') {
57: my $part_id="$Apache::inputtags::part.$id";
58: push (@{ $Apache::lonhomework::analyze{"parts"} },$part_id);
1.36 albertel 59: }
60: return $result;
1.1 albertel 61: }
62:
63: sub end_imageresponse {
1.30 albertel 64: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
65: &Apache::response::end_response;
66: pop @Apache::lonxml::namespace;
67: &Apache::lonxml::deregister('Apache::imageresponse',('foilgroup','foil','text','image','rectangle','conceptgroup'));
68: my $result;
69: if ($target eq 'edit') { $result=&Apache::edit::end_table(); }
1.51 albertel 70: undef(%Apache::response::foilnames);
1.30 albertel 71: return $result;
1.1 albertel 72: }
73:
1.20 albertel 74: %Apache::response::foilgroup=();
1.1 albertel 75: sub start_foilgroup {
1.36 albertel 76: %Apache::response::foilgroup=();
77: $Apache::imageresponse::conceptgroup=0;
1.53 albertel 78: &Apache::response::pushrandomnumber();
1.36 albertel 79: return '';
1.1 albertel 80: }
81:
1.2 albertel 82: sub getfoilcounts {
1.36 albertel 83: my ($parstack,$safeeval)=@_;
1.12 albertel 84:
1.36 albertel 85: my $max = &Apache::lonxml::get_param('max',$parstack,$safeeval,'-2');
86: # +1 since instructors will count from 1
87: my $count = $#{ $Apache::response::foilgroup{'names'} }+1;
1.56 albertel 88: #if (&Apache::response::showallfoils()) { $max=$count; }
1.36 albertel 89: return ($count,$max);
1.2 albertel 90: }
91:
92: sub whichfoils {
1.36 albertel 93: my ($max)=@_;
94: if (!defined(@{ $Apache::response::foilgroup{'names'} })) { return; }
95: my @names = @{ $Apache::response::foilgroup{'names'} };
96: my @whichopt =();
97: while ((($#whichopt+1) < $max) && ($#names > -1)) {
98: &Apache::lonxml::debug("Have $#whichopt max is $max");
99: my $aopt;
1.56 albertel 100: # if (&Apache::response::showallfoils()) {
101: # $aopt=0;
102: # } else {
1.36 albertel 103: $aopt=int(&Math::Random::random_uniform() * ($#names+1));
1.56 albertel 104: # }
1.36 albertel 105: &Apache::lonxml::debug("From $#names elms, picking $aopt");
106: $aopt=splice(@names,$aopt,1);
107: &Apache::lonxml::debug("Picked $aopt");
108: push (@whichopt,$aopt);
109: }
110: return @whichopt;
1.2 albertel 111: }
112:
1.40 albertel 113: sub prep_image {
1.42 albertel 114: my ($image,$mode,$name)=@_;
1.40 albertel 115: my $part=$Apache::inputtags::part;
1.41 albertel 116: my $respid=$Apache::inputtags::response['-1'];
117: my $id=&Apache::loncommon::get_cgi_id();
1.49 albertel 118: my (%x,$i);
1.47 albertel 119: $x{"cgi.$id.BGIMG"}=&Apache::lonnet::escape($image);
1.41 albertel 120: my ($x,$y)=split(/:/,$Apache::lonhomework::history{"resource.$part.$respid.submission"});
1.40 albertel 121: #draws 2 xs on the image at the clicked location
122: #one in white and then one in red on top of the one in white
1.58 albertel 123: if (defined($x) && $x=~/\S/ && defined($y) && $y =~/\S/ && !&Apache::response::show_answer()) {
1.40 albertel 124: my $length = 6;
125: my $width = 1;
126: my $extrawidth = 2;
1.48 albertel 127: my $xmin=($x-$length);
128: my $xmax=($x+$length);
129: my $ymin=($y-$length);
130: my $ymax=($y+$length);
131:
1.49 albertel 132: $x{"cgi.$id.OBJTYPE"}.='LINE:';
133: $i=$x{"cgi.$id.OBJCOUNT"}++;
1.58 albertel 134: $x{"cgi.$id.OBJ$i"}=join(':',(($xmin),($ymin),($xmax),($ymax),
1.49 albertel 135: "FFFFFF",($width+$extrawidth)));
136: $x{"cgi.$id.OBJTYPE"}.='LINE:';
137: $i=$x{"cgi.$id.OBJCOUNT"}++;
1.58 albertel 138: $x{"cgi.$id.OBJ$i"}=join(':',(($xmin),($ymax),($xmax),($ymin),
1.49 albertel 139: "FFFFFF",($width+$extrawidth)));
140: $x{"cgi.$id.OBJTYPE"}.='LINE:';
141: $i=$x{"cgi.$id.OBJCOUNT"}++;
1.58 albertel 142: $x{"cgi.$id.OBJ$i"}=join(':',(($xmin),($ymin),($xmax),($ymax),
1.49 albertel 143: "FF0000",($width)));
144: $x{"cgi.$id.OBJTYPE"}.='LINE:';
145: $i=$x{"cgi.$id.OBJCOUNT"}++;
1.58 albertel 146: $x{"cgi.$id.OBJ$i"}=join(':',(($xmin),($ymax),($xmax),($ymin),
1.49 albertel 147: "FF0000",($width)));
1.40 albertel 148: }
1.42 albertel 149: if ($mode eq 'answer') {
150: my $width = 1;
151: my $extrawidth = 2;
152: my @areas = @{ $Apache::response::foilgroup{"$name.area"} };
153: foreach my $area (@areas) {
1.43 albertel 154: if ($area=~/^rectangle:/) {
1.49 albertel 155: $x{"cgi.$id.OBJTYPE"}.='RECTANGLE:';
156: $i=$x{"cgi.$id.OBJCOUNT"}++;
1.43 albertel 157: my ($x1,$y1,$x2,$y2)=
158: ($area=~m/rectangle:\(([0-9]+),([0-9]+)\)\-\(([0-9]+),([0-9]+)\)/);
1.49 albertel 159: $x{"cgi.$id.OBJ$i"}=join(':',($x1,$y1,$x2,$y2,"FFFFFF",
1.43 albertel 160: ($width+$extrawidth)));
1.49 albertel 161: $x{"cgi.$id.OBJTYPE"}.='RECTANGLE:';
162: $i=$x{"cgi.$id.OBJCOUNT"}++;
163: $x{"cgi.$id.OBJ$i"}=join(':',($x1,$y1,$x2,$y2,"00FF00",$width));
1.43 albertel 164: } elsif ($area=~/^polygon:(.*)/) {
1.49 albertel 165: $x{"cgi.$id.OBJTYPE"}.='POLYGON:';
166: $i=$x{"cgi.$id.OBJCOUNT"}++;
167: $x{"cgi.$id.OBJ$i"}=join(':',("FFFFFF",($width+$extrawidth)));
168: $x{"cgi.$id.OBJEXTRA$i"}=$1;
169: $x{"cgi.$id.OBJTYPE"}.='POLYGON:';
170: $i=$x{"cgi.$id.OBJCOUNT"}++;
171: $x{"cgi.$id.OBJ$i"}=join(':',("00FF00",$width));
172: $x{"cgi.$id.OBJEXTRA$i"}=$1;
1.43 albertel 173: }
1.42 albertel 174: }
175: }
1.41 albertel 176: &Apache::lonnet::appenv(%x);
177: return $id;
1.40 albertel 178: }
179:
1.2 albertel 180: sub displayfoils {
1.36 albertel 181: my ($target,@whichopt) = @_;
182: my $result ='';
183: my $name;
184: my $temp=1;
185: foreach $name (@whichopt) {
186: $result.=$Apache::response::foilgroup{"$name.text"};
187: &Apache::lonxml::debug("Text is $result");
188: if ($target eq 'tex') {$result.="\\vskip 0 mm \n";} else {$result.="<br />\n";}
189: my $image=$Apache::response::foilgroup{"$name.image"};
190: &Apache::lonxml::debug("image is $image");
1.40 albertel 191: if ( $target eq 'web' && $image !~ /^http:/ ) {
1.47 albertel 192: $image=&clean_up_image($image);
193: }
1.40 albertel 194: &Apache::lonxml::debug("image is $image");
1.36 albertel 195: if ( &Apache::response::show_answer() ) {
196: if ($target eq 'tex') {
197: $result.=$Apache::response::foilgroup{"$name.image"}."\\vskip 0 mm \n";
198: } else {
1.42 albertel 199: my $token=&prep_image($image,'answer',$name);
1.40 albertel 200: $result.="<img src=\"/adm/randomlabel.png?token=$token\" /><br />\n";
1.36 albertel 201: }
202: } else {
203: if ($target eq 'tex') {
204: $result.=$Apache::response::foilgroup{"$name.image"}."\\vskip 0 mm \n";
205: } else {
1.40 albertel 206: my $id=$Apache::inputtags::response['-1'];
207: my $token=&prep_image($image);
208: my $temp=1;
209: $result.="<input type=\"image\" name=\"HWVAL_$id:$temp\" ".
210: "src=\"/adm/randomlabel.png?token=$token\" /><br />\n";
1.36 albertel 211: }
212: }
213: $temp++;
214: }
215: return $result;
1.47 albertel 216: }
217:
218: sub clean_up_image {
219: my ($image)=@_;
220: if ($image =~ /\s*<img\s*/) {
1.50 albertel 221: ($image) = ($image =~ /src\s*=\s*[\"\']([^\"\']+)[\"\']/i);
1.47 albertel 222: if ($image !~ /^http:/) {
223: $image=&Apache::lonnet::hreflocation('',$image);
224: }
225: if (!$image) {
226: $image='/home/httpd/html/adm/lonKaputt/lonlogo_broken.gif';
227: }
228: } else {
229: $image=&Apache::lonnet::filelocation($Apache::lonxml::pwd[-1],$image);
230: if (&Apache::lonnet::repcopy($image) ne OK) {
231: $image='/home/httpd/html/adm/lonKaputt/lonlogo_broken.gif';
232: }
233: }
234: return $image;
1.2 albertel 235: }
236:
1.3 albertel 237: sub gradefoils {
1.36 albertel 238: my (@whichopt) = @_;
239: my $x;
240: my $y;
241: my $result;
242: my $id=$Apache::inputtags::response['-1'];
243: my $temp=1;
244: foreach my $name (@whichopt) {
245: $x=$ENV{"form.HWVAL_$id:$temp.x"};
246: $y=$ENV{"form.HWVAL_$id:$temp.y"};
247: &Apache::lonxml::debug("Got a x of $x and a y of $y for $name");
248: if (defined($x) && defined($y) &&
249: defined(@{ $Apache::response::foilgroup{"$name.area"} })) {
250: my @areas = @{ $Apache::response::foilgroup{"$name.area"} };
251: my $grade="INCORRECT";
252: foreach my $area (@areas) {
253: &Apache::lonxml::debug("Area is $area for $name");
254: $area =~ m/([a-z]*):/;
255: &Apache::lonxml::debug("Area of type $1");
256: if ($1 eq 'rectangle') {
257: $grade=&grade_rectangle($area,$x,$y);
1.43 albertel 258: } elsif ($1 eq 'polygon') {
259: $grade=&grade_polygon($area,$x,$y);
1.36 albertel 260: } else {
261: &Apache::lonxml::error("Unknown area style $area");
262: }
263: &Apache::lonxml::debug("Area said $grade");
264: if ($grade eq 'APPROX_ANS') { last; }
265: }
266: &Apache::lonxml::debug("Foil was $grade");
267: if ($grade eq 'INCORRECT') { $result= 'INCORRECT'; }
268: if (($grade eq 'APPROX_ANS') && ($result ne 'APPROX_ANS')) { $result=$grade; }
269: &Apache::lonxml::debug("Question is $result");
270: $temp++;
1.9 albertel 271: }
1.36 albertel 272: }
1.58.2.1! albertel 273: my $responsestr="$x:$y";
! 274: my $part=$Apache::inputtags::part;
! 275: my $id = $Apache::inputtags::response['-1'];
! 276: my %previous=&Apache::response::check_for_previous($responsestr,$part,$id);
1.56 albertel 277: if ($result
278: && $Apache::lonhomework::type eq 'survey') { $result='SUBMITTED'; }
1.58.2.1! albertel 279: &Apache::response::handle_previous(\%previous,$result);
! 280: $Apache::lonhomework::results{"resource.$part.$id.submission"}=$responsestr;
! 281: $Apache::lonhomework::results{"resource.$part.$id.awarddetail"}=$result;
1.36 albertel 282: return '';
1.3 albertel 283: }
284:
1.1 albertel 285: sub end_foilgroup {
1.36 albertel 286: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
287: my $result='';
288: my @whichopt;
1.38 albertel 289: if ($target eq 'web' || $target eq 'grade' || $target eq 'tex' ||
290: $target eq 'analyze') {
1.36 albertel 291: my ($count,$max) = &getfoilcounts($parstack,$safeeval);
292: if ($count>$max) { $count=$max }
293: &Apache::lonxml::debug("Count is $count from $max");
294: @whichopt = &whichfoils($max);
295: if ($target eq 'web' || $target eq 'tex') {
296: $result=&displayfoils($target,@whichopt);
297: } elsif ($target eq 'grade') {
298: if ( defined $ENV{'form.submitted'}) { &gradefoils(@whichopt); }
1.37 albertel 299: } elsif ( $target eq 'analyze') {
300: &Apache::response::analyze_store_foilgroup(\@whichopt,
301: ['text','image','area']);
302: }
1.36 albertel 303: } elsif ($target eq 'edit') {
304: $result=&Apache::edit::end_table();
305: }
1.53 albertel 306: &Apache::response::poprandomnumber();
1.36 albertel 307: return $result;
1.1 albertel 308: }
309:
310: sub start_conceptgroup {
1.36 albertel 311: $Apache::imageresponse::conceptgroup=1;
312: %Apache::response::conceptgroup=();
313: return '';
1.1 albertel 314: }
315:
316: sub end_conceptgroup {
1.36 albertel 317: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
318: $Apache::imageresponse::conceptgroup=0;
319: my $result;
1.37 albertel 320: if ($target eq 'web' || $target eq 'grade' || $target eq 'tex' ||
321: $target eq 'analyze') {
322: &Apache::response::pick_foil_for_concept($target,
323: ['area','text','image'],
324: \%Apache::hint::image,
325: $parstack,$safeeval);
1.36 albertel 326: } elsif ($target eq 'edit') {
327: $result=&Apache::edit::end_table();
328: }
329: return $result;
1.31 albertel 330: }
331:
332: sub insert_foil {
333: return '
334: <foil>
335: <image></image>
336: <text></text>
337: <rectangle></rectangle>
338: </foil>
339: ';
1.1 albertel 340: }
341:
1.12 albertel 342: $Apache::imageresponse::curname='';
1.1 albertel 343: sub start_foil {
1.36 albertel 344: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.37 albertel 345: if ($target eq 'web' || $target eq 'grade' || $target eq 'tex' ||
346: $target eq 'analyze') {
1.36 albertel 347: my $name = &Apache::lonxml::get_param('name',$parstack,$safeeval);
348: if ($name eq '') { $name=$Apache::lonxml::curdepth; }
1.51 albertel 349: if (defined($Apache::response::foilnames{$name})) {
350: &Apache::lonxml::error(&mt("Foil name <b><tt>[_1]</tt></b> appears more than once. Foil names need to be unique.",$name));
351: }
1.52 albertel 352: $Apache::response::foilnames{$name}++;
1.36 albertel 353: if ( $Apache::imageresponse::conceptgroup
1.56 albertel 354: #&& !&Apache::response::showallfoils()
355: ) {
1.36 albertel 356: push(@{ $Apache::response::conceptgroup{'names'} }, $name);
357: } else {
358: push(@{ $Apache::response::foilgroup{'names'} }, $name);
359: }
360: $Apache::imageresponse::curname=$name;
361: }
362: return '';
1.1 albertel 363: }
364:
365: sub end_foil {
1.26 albertel 366: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
367: my $result;
368: if ($target eq 'edit') {
369: $result=&Apache::edit::end_table();
370: }
371: return $result;
1.1 albertel 372: }
373:
374: sub start_text {
1.36 albertel 375: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
376: my $result='';
1.37 albertel 377: if ($target eq 'web' || $target eq 'tex' || $target eq 'analyze') {
1.36 albertel 378: &Apache::lonxml::startredirection;
379: } elsif ($target eq 'edit') {
380: my $descr=&Apache::lonxml::get_all_text('/text',$parser);
381: $result=&Apache::edit::tag_start($target,$token,'Task Description').
382: &Apache::edit::editfield($token->[1],$descr,'Text',60,2).
383: &Apache::edit::end_row();
384: } elsif ($target eq "modified") {
1.39 albertel 385: $result=$token->[4].&Apache::edit::modifiedfield('/text',$parser);
1.36 albertel 386: }
387: return $result;
1.1 albertel 388: }
389:
390: sub end_text {
1.36 albertel 391: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
392: my $result;
1.37 albertel 393: if ($target eq 'web' || $target eq 'tex' || $target eq 'analyze') {
1.36 albertel 394: my $name = $Apache::imageresponse::curname;
395: if ( $Apache::imageresponse::conceptgroup
1.56 albertel 396: #&& !&Apache::response::showallfoils()
397: ) {
1.36 albertel 398: $Apache::response::conceptgroup{"$name.text"} = &Apache::lonxml::endredirection;
399: } else {
400: $Apache::response::foilgroup{"$name.text"} = &Apache::lonxml::endredirection;
401: }
402: } elsif ($target eq 'edit') {
403: $result=&Apache::edit::end_table();
404: }
405: return $result;
1.1 albertel 406: }
407:
408: sub start_image {
1.36 albertel 409: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
410: my $result='';
1.37 albertel 411: if ($target eq 'web' || $target eq 'tex' || $target eq 'analyze') {
1.36 albertel 412: &Apache::lonxml::startredirection;
413: } elsif ($target eq 'edit') {
414: my $bgimg=&Apache::lonxml::get_all_text('/image',$parser);
415: $Apache::edit::bgimgsrc=$bgimg;
416: $Apache::edit::bgimgsrcdepth=$Apache::lonxml::curdepth;
417:
418: $result=&Apache::edit::tag_start($target,$token,'Clickable Image').
419: &Apache::edit::editline($token->[1],$bgimg,'Image Source File',40);
420: $result.=&Apache::edit::browse(undef,'textnode').' ';
421: $result.=&Apache::edit::search(undef,'textnode').
422: &Apache::edit::end_row();
423: } elsif ($target eq "modified") {
1.39 albertel 424: $result=$token->[4].&Apache::edit::modifiedfield('/image',$parser);
1.36 albertel 425: }
426: return $result;
1.1 albertel 427: }
428:
429: sub end_image {
1.36 albertel 430: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
431: my $result;
432: my $name = $Apache::imageresponse::curname;
433: if ($target eq 'web') {
434: my $image = &Apache::lonxml::endredirection;
435: &Apache::lonxml::debug("original image is $image");
1.37 albertel 436: if ( $Apache::imageresponse::conceptgroup
1.56 albertel 437: #&& !&Apache::response::showallfoils()
438: ) {
1.37 albertel 439: $Apache::response::conceptgroup{"$name.image"} = $image;
440: } else {
441: $Apache::response::foilgroup{"$name.image"} = $image;
442: }
443: } elsif ($target eq 'analyze') {
444: my $image = &Apache::lonxml::endredirection;
1.36 albertel 445: if ( $Apache::imageresponse::conceptgroup
1.56 albertel 446: #&& !&Apache::response::showallfoils()
447: ) {
1.36 albertel 448: $Apache::response::conceptgroup{"$name.image"} = $image;
449: } else {
450: $Apache::response::foilgroup{"$name.image"} = $image;
451: }
452: } elsif ($target eq 'edit') {
453: $result=&Apache::edit::end_table();
454: } elsif ($target eq 'tex') {
455: my $src = &Apache::lonxml::endredirection;
456: $src=&Apache::lonnet::filelocation($Apache::lonxml::pwd[-1],$src);
457: my $width_param = '';
458: my $height_param = '';
459: my $scaling = .3;
460: my $image = Image::Magick->new;
461: my $current_figure = $image->Read($src);
462: $width_param = $image->Get('width') * $scaling;;
463: $height_param = $image->Get('height') * $scaling;;
464: undef $image;
465: my $epssrc = $src;
466: $epssrc =~ s/(\.gif|\.jpg)$/\.eps/i;
467: if (not -e $epssrc) {
468: my $localfile = $epssrc;
469: $localfile =~ s/.*(\/res)/$1/;
470: my $file;
471: my $path;
472: if ($localfile =~ m!(.*)/([^/]*)$!) {
473: $file = $2;
474: $path = $1.'/';
475: }
476: my $signal_eps = 0;
477: my @content_directory = &Apache::lonnet::dirlist($path);
478: for (my $iy=0;$iy<=$#content_directory;$iy++) {
479: my @tempo_array = split(/&/,$content_directory[$iy]);
480: $content_directory[$iy] = $tempo_array[0];
481: if ($file eq $tempo_array[0]) {
482: $signal_eps = 1;
483: last;
484: }
485: }
486: if ($signal_eps) {
487: my $eps_file = &Apache::lonnet::getfile($localfile);
488: } else {
489: $localfile = $src;
490: $localfile =~ s/.*(\/res)/$1/;
491: my $as = &Apache::lonnet::getfile($src);
492: }
493: }
1.19 sakharuk 494: my $file;
495: my $path;
1.36 albertel 496: if ($src =~ m!(.*)/([^/]*)$!) {
1.19 sakharuk 497: $file = $2;
498: $path = $1.'/';
1.36 albertel 499: }
500: my $newsrc = $src;
501: $newsrc =~ s/(\.gif|\.jpg|\.jpeg)$/\.eps/i;
502: $file=~s/(\.gif|\.jpg|\.jpeg)$/\.eps/i;
503: #do we have any specified size of the picture?
504: my $TeXwidth = &Apache::lonxml::get_param('TeXwidth',$parstack,$safeeval);
505: my $TeXheight = &Apache::lonxml::get_param('TeXheight',$parstack,$safeeval);
506: my $width = &Apache::lonxml::get_param('width',$parstack,$safeeval);
507: if ($TeXwidth ne '') {
508: $width_param = $TeXwidth;
509: } elsif ($TeXheight ne '') {
510: $width_param = $TeXheight/$height_param*$width_param;
511: } elsif ($width ne '') {
512: $width_param = $width*$scaling;
513: }
1.55 albertel 514: $width_param=&Apache::randomlabel::adjust_textwidth($width_param);
1.36 albertel 515: #where can we find the picture?
516: if (-e $newsrc) {
517: if ($path) {
518: $Apache::response::foilgroup{"$name.image"} ='\vskip 0 mm \noindent\graphicspath{{'.$path.'}}\includegraphics[width='.$width_param.' mm]{'.$file.'} ';
1.19 sakharuk 519: }
520: } else {
1.46 sakharuk 521: #care about eps dynamical generation
522: $Apache::response::foilgroup{"$name.image"}='\vskip 0 mm '.&Apache::londefdef::eps_generation($src,$file,$width_param);
1.19 sakharuk 523: }
1.36 albertel 524: }
525: return $result;
1.1 albertel 526: }
527:
528: sub start_rectangle {
1.36 albertel 529: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
530: my $result='';
1.38 albertel 531: if ($target eq 'web' || $target eq 'grade' || $target eq 'tex' ||
532: $target eq 'analyze') {
1.36 albertel 533: &Apache::lonxml::startredirection;
534: } elsif ($target eq 'edit') {
535: my $coords=&Apache::lonxml::get_all_text('/rectangle',$parser);
536: $result=&Apache::edit::tag_start($target,$token,'Rectangle').
537: &Apache::edit::editline($token->[1],$coords,'Coordinate Pairs',40).
1.44 albertel 538: &Apache::edit::entercoord(undef,'textnode',undef,undef,'box').
1.36 albertel 539: &Apache::edit::end_row();
540: } elsif ($target eq "modified") {
1.44 albertel 541: &Apache::edit::deletecoorddata();
1.39 albertel 542: $result=$token->[4].&Apache::edit::modifiedfield('/rectangle',$parser);
1.36 albertel 543: }
544: return $result;
1.1 albertel 545: }
546:
1.3 albertel 547: sub grade_rectangle {
1.36 albertel 548: my ($spec,$x,$y) = @_;
549: &Apache::lonxml::debug("Spec is $spec");
1.43 albertel 550: my ($x1,$y1,$x2,$y2)=($spec=~m/rectangle:\(([0-9]+),([0-9]+)\)\-\(([0-9]+),([0-9]+)\)/);
1.36 albertel 551: &Apache::lonxml::debug("Point $x1,$y1,$x2,$y2");
552: if ($x1 > $x2) { my $temp=$x1;$x1=$x2;$x2=$temp; }
553: if ($y1 > $y2) { my $temp=$y1;$y1=$y2;$y2=$temp; }
554: if (($x >= $x1) && ($x <= $x2) && ($y >= $y1) && ($y <= $y2)) {
555: return 'APPROX_ANS';
556: }
557: return 'INCORRECT';
1.3 albertel 558: }
559:
1.1 albertel 560: sub end_rectangle {
1.36 albertel 561: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
562: my $result;
1.38 albertel 563: if ($target eq 'web' || $target eq 'grade' || $target eq 'tex' ||
564: $target eq 'analyze') {
1.36 albertel 565: my $name = $Apache::imageresponse::curname;
566: my $area = &Apache::lonxml::endredirection;
1.54 albertel 567: $area=~s/\s//g;
1.36 albertel 568: &Apache::lonxml::debug("out is $area for $name");
569: if ( $Apache::imageresponse::conceptgroup
1.56 albertel 570: #&& !&Apache::response::showallfoils()
571: ) {
1.36 albertel 572: push @{ $Apache::response::conceptgroup{"$name.area"} },"rectangle:$area";
573: } else {
574: push @{ $Apache::response::foilgroup{"$name.area"} },"rectangle:$area";
1.43 albertel 575: }
576: } elsif ($target eq 'edit') {
577: $result=&Apache::edit::end_table();
578: }
579: return $result;
580: }
581:
582: sub start_polygon {
583: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
584: my $result='';
585: if ($target eq 'web' || $target eq 'grade' || $target eq 'tex' ||
586: $target eq 'analyze') {
587: &Apache::lonxml::startredirection;
588: } elsif ($target eq 'edit') {
589: my $coords=&Apache::lonxml::get_all_text('/polygon',$parser);
590: $result=&Apache::edit::tag_start($target,$token,'Polygon').
591: &Apache::edit::editline($token->[1],$coords,'Coordinate list',40).
1.44 albertel 592: &Apache::edit::entercoord(undef,'textnode',undef,undef,'polygon').
1.43 albertel 593: &Apache::edit::end_row();
594: } elsif ($target eq "modified") {
595: $result=$token->[4].&Apache::edit::modifiedfield('/polygon',$parser);
596: }
597: return $result;
598: }
599:
600: sub grade_polygon {
601: my ($spec,$x,$y) = @_;
602: &Apache::lonxml::debug("Spec is $spec");
603: $spec=~s/^polygon://;
604: my @polygon;
605: foreach my $coord (split('-',$spec)) {
606: my ($x,$y)=($coord=~m/\(([0-9]+),([0-9]+)\)/);
607: &Apache::lonxml::debug("x $x y $y");
608: push @polygon, {'x'=>$x,'y'=>$y};
609: }
610: #make end point start point
611: push @polygon, $polygon[0];
612: # cribbed from
613: # http://geometryalgorithms.com/Archive/algorithm_0103/algorithm_0103.htm
614: my $crossing = 0; # the crossing number counter
615:
616: # loop through all edges of the polygon
617: for (my $i=0; $i<$#polygon; $i++) { # edge from V[i] to V[i+1]
618: if ((($polygon[$i]->{'y'} <= $y)
619: && ($polygon[$i+1]->{'y'} > $y)) # an upward crossing
620: ||
621: (($polygon[$i]->{'y'} > $y)
622: && ($polygon[$i+1]->{'y'} <= $y))) { # a downward crossing
623: # compute the actual edge-ray intersect x-coordinate
624: my $vt = ($y - $polygon[$i]->{'y'})
625: / ($polygon[$i+1]->{'y'} - $polygon[$i]->{'y'});
626: if ($x < $polygon[$i]->{'x'} + $vt *
627: ($polygon[$i+1]->{'x'} - $polygon[$i]->{'x'})) { # x<intersect
628: $crossing++; # a valid crossing of y=P.y right of P.x
629: }
630: }
631: }
632:
633: # 0 if even (out), and 1 if odd (in)
634: if ($crossing%2) {
635: return 'APPROX_ANS';
636: } else {
637: return 'INCORRECT';
638: }
639: }
640:
641: sub end_polygon {
642: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
643: my $result;
644: if ($target eq 'web' || $target eq 'grade' || $target eq 'tex' ||
645: $target eq 'analyze') {
646: my $name = $Apache::imageresponse::curname;
647: my $area = &Apache::lonxml::endredirection;
1.48 albertel 648: $area=~s/\s*//g;
1.43 albertel 649: &Apache::lonxml::debug("out is $area for $name");
650: if ( $Apache::imageresponse::conceptgroup
1.56 albertel 651: #&& !&Apache::response::showallfoils()
652: ) {
1.43 albertel 653: push @{ $Apache::response::conceptgroup{"$name.area"} },"polygon:$area";
654: } else {
655: push @{ $Apache::response::foilgroup{"$name.area"} },"polygon:$area";
1.36 albertel 656: }
657: } elsif ($target eq 'edit') {
658: $result=&Apache::edit::end_table();
659: }
660: return $result;
1.1 albertel 661: }
662: 1;
663: __END__
664:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>