Diff for /loncom/homework/imagechoice.pm between versions 1.1 and 1.18

version 1.1, 2004/01/09 23:22:19 version 1.18, 2014/02/14 17:01:30
Line 25 Line 25
 package Apache::imagechoice;  package Apache::imagechoice;
 use strict;  use strict;
 use Apache::Constants qw(:common :http);  use Apache::Constants qw(:common :http);
   use Apache::lonnet;
   use Apache::lonlocal;
   use LONCAPA;
    
   
 #  sub deletedata {
 # Single coordinate, defined - store it      my ($id)=@_;
 #      &Apache::lonnet::delenv('imagechoice.'.$id.'.coords');
   }
   
 sub closewindow {  sub closewindow {
     my ($r,$output,$filename)=@_;      my ($r,$output,$filename,$needimage,$display)=@_;
     $r->print(<<"ENDSUBM");      if ($needimage) {
 <html>   $needimage="<img name=\"pickimg\" src=\"$filename\" />";
 <script>      }
       my $js=<<"ENDSUBM";
   <script type="text/javascript">
     function submitthis() {      function submitthis() {
  $output   $output
  self.close();   self.close();
     }      }
 </script>  </script>
 <body bgcolor="#FFFFFF" onLoad="submitthis()">  
 <h3>Position Selected</h3>  
 <img name="pickimg" src="$filename" />  
 </body>  
 </html>  
 ENDSUBM  ENDSUBM
   
       my $start_page =
           &Apache::loncommon::start_page('Close Window',$js,
          {'bgcolor'     => '#FFFFFF',
    'only_body'   => 1,
    'add_entries' => {
       onload => 'submitthis();'},});
   
       my $end_page =
           &Apache::loncommon::end_page();
   
       $r->print(
           $start_page
          .'<h1>'.&mt('Position Selected').'</h1>'
         .$display
         .$needimage
         .$end_page);
 }  }
   
 sub storedata {  sub storedata {
     my ($r,$mode,$filename,$id)=@_;      my ($r,$type,$filename,$id)=@_;
   
     my (undef,@coords)=split(':',$ENV{"cgi.$id.coords"});      my (undef,@coords)=split(':',$env{"imagechoice.$id.coords"});
   
     my $output;      my ($output,$needimage);
   
     if ($ENV{"cgi.$id.formwidth"}) {      if ($env{"imagechoice.$id.formwidth"}) {
  $output.='opener.document.forms.'.$ENV{"cgi.$id.formname"}.'.'.$ENV{"cgi.$id.formwidth"}.'.value=document.pickimg.width;';   $output.='opener.document.forms.'.$env{"imagechoice.$id.formname"}.'.'.$env{"imagechoice.$id.formwidth"}.'.value=document.pickimg.width;';
    $needimage=1;
     }      }
     if ($ENV{"cgi.$id.formheight"}) {      if ($env{"imagechoice.$id.formheight"}) {
  $output.='opener.document.forms.'.$ENV{"cgi.$id.formname"}.'.'.$ENV{"cgi.$id.formheight"}.'.value=document.pickimg.height;';   $output.='opener.document.forms.'.$env{"imagechoice.$id.formname"}.'.'.$env{"imagechoice.$id.formheight"}.'.value=document.pickimg.height;';
    $needimage=1;
     }      }
   
     if ((defined($ENV{"cgi.$id.x"})) && (defined($ENV{"cgi.$id.y"})) &&       my $display;
  ($mode ne 'pairtwo') && ($mode ne 'pairthree')) {      if ($type eq 'point') {
  my $output='';   my (undef,$x,$y)=split(':',$env{"imagechoice.$id.coords"});
  if ($ENV{"cgi.$id.formx"}) {   if ($env{"imagechoice.$id.formx"}) {
     $output.='opener.document.forms.'.$ENV{"cgi.$id.formname"}.'.'.$ENV{"cgi.$id.formx"}.      $output.='opener.document.forms.'.$env{"imagechoice.$id.formname"}.'.'.$env{"imagechoice.$id.formx"}.'.value='.$x.';';
  '.value='.$ENV{"cgi.$id.x"}.';';      $display.='<p>'.&mt('The X coordinate is [_1]',$x)."</p>\n";
  }   }
  if ($ENV{"cgi.$id.formy"}) {   if ($env{"imagechoice.$id.formy"}) {
     $output.='opener.document.forms.'.$ENV{"cgi.$id.formname"}.'.'.$ENV{"cgi.$id.formy"}.      $output.='opener.document.forms.'.$env{"imagechoice.$id.formname"}.'.'.$env{"imagechoice.$id.formy"}.'.value='.$y.';';
  '.value='.$ENV{"cgi.$id.y"}.';';      $display.='<p>'.&mt('The Y coordinate is [_1]',$y)."</p>\n";
  }   }
     } elsif ($mode eq 'pairthree') {      } elsif ($type eq 'polygon' or $type eq 'box') {
  my $output='';  
  my $outputpair='('.$ENV{"cgi.$id.selx"}.','.$ENV{"cgi.$id.sely"}.')-('.$ENV{"cgi.$id.x"}.','.$ENV{"cgi.$id.y"}.')';  
   
  if ($ENV{"cgi.$id.formcoord"}) {  
     $output.='opener.document.forms.'.$ENV{"cgi.$id.formname"}.'.'.$ENV{"cgi.$id.formcoord"}.  
  '.value="'.$outputpair.'";';  
  }  
     } elsif ($mode eq 'polygon') {  
  my $coordstr;   my $coordstr;
  while (@coords) {   while (@coords) {
     $coordstr.='('.shift(@coords).','.shift(@coords).')-';      $coordstr.='('.shift(@coords).','.shift(@coords).')-';
  }   }
  chop($coordstr);   chop($coordstr);
  $output.='opener.document.forms.'.$ENV{"cgi.$id.formname"}.'.'.$ENV{"cgi.$id.formcoord"}.'.value="'.$coordstr.'";';   $display.='<p>'.&mt('The selected coordinates are [_1]',"<tt>$coordstr</tt>")."</p>\n";
    $output.='opener.document.forms.'.$env{"imagechoice.$id.formname"}.'.'.$env{"imagechoice.$id.formcoord"}.'.value="'.$coordstr.'";';
       }
       if ($display) {
           $display.='<p class="LC_info">'
                    .&mt('If this window fails to close you may need to manually replace the old coordinates with the above value.')
                    ."</p>\n";
     }      }
     &closewindow($r,$output,$filename);      &deletedata($id);
       &closewindow($r,$output,$filename,$needimage,$display);
 }  }
   
 sub getcoord {  sub getcoord {
     my ($r,$mode,$filename,$id)=@_;      my ($r,$type,$filename,$id)=@_;
     my $heading='Position';      my $heading=&mt('Select Position on Image');
     my $nextstage='';      my $nextstage='';
     if ($mode eq 'pair') {      if ($type eq 'box') {
  $heading='First Coordinate';   my (undef,@coords)=split(':',$env{"imagechoice.$id.coords"});
  $nextstage='<input type="hidden" name="mode" value="pairtwo" />';   my $step=scalar(@coords)/2;
     } elsif ($mode eq 'pairtwo') {   if ($step == 0) { 
  $heading='Second Coordinate';      $heading=&mt('Select First Coordinate on Image.');
  $nextstage='<input type="hidden" name="mode" value="pairthree" />';      #$nextstage='<input type="hidden" name="type" value="pairtwo" />';
     } elsif ($mode eq 'polygon') {   } elsif ($step == 1) {
  $heading='Enter Coordinate or click finish to close Polygon';      $heading=&mt('Select Second Coordinate on Image.');
  $nextstage='<input type="submit" name="finish" value="Finish" />';      #$nextstage='<input type="hidden" name="type" value="pairthree" />';
     }   } else {
       $heading=&mt('Select [_1] to save selection.','"'.&mt('Save').'"');
       $nextstage='<input type="submit" name="finish" value="'.&mt('Save').'" />';
    }
       } elsif ($type eq 'polygon') {
    $heading=&mt('Click to select a Coordinate or click [_1] to close Polygon.',
                            '"'.&mt('Save').'"');
    $nextstage='<input type="submit" name="finish" value="'.&mt('Save').'" />';
       } elsif ($type eq 'point') {
    $heading=&mt('Click to select a Coordinate or click [_1] to save current selection.',
                            '"'.&mt('Save').'"');
    $nextstage='<input type="submit" name="finish" value="'.&mt('Save').'" />';
       }
   
       my $headline = 'Get Coordinates';
       my $start_page =
           &Apache::loncommon::start_page($headline,undef,
          {'bgcolor'     => '#FFFFFF',
    'only_body'   => 1,});
       my $end_page =
           &Apache::loncommon::end_page();
       $headline = &mt($headline);
       my $canceltext=&mt('Cancel');
     $r->print(<<"END");      $r->print(<<"END");
 <html>  $start_page
 <body bgcolor="#FFFFFF">  <h1>$headline</h1>
 <h3>Select $heading on Image</h3>  <p>$heading</p>
 <form method="POST" action="/adm/imagechoice?token=$id">  <form method="post" action="/adm/imagechoice?token=$id">
 $nextstage  $nextstage
   <input type="submit" name="cancel" value="$canceltext" />
   <br />
 <input name="image" type="image" src="$filename" />  <input name="image" type="image" src="$filename" />
 </form>  </form>
 </body>  $end_page
 </html>  
 END  END
 }  }
   
 sub savecoord {  sub savecoord {
     my ($id)=@_;      my ($id,$type)=@_;
     if (defined($ENV{"form.image.x"}) && defined($ENV{"form.image.y"})) {      if (defined($env{"form.image.x"}) && defined($env{"form.image.y"})) {
  my $data=join(':',($ENV{"cgi.$id.coords"},$ENV{"form.image.x"},   my $data;
    $ENV{"form.image.y"}));   if ($type eq 'point') {
  &Apache::lonnet::appenv("cgi.$id.coords"=>$data);      $data=join(':',(undef,$env{"form.image.x"},$env{"form.image.y"}));
    } else {
       $data=join(':',($env{"imagechoice.$id.coords"},
       $env{"form.image.x"},$env{"form.image.y"}));
    }
    &Apache::lonnet::appenv({"imagechoice.$id.coords"=>$data});
     }      }
       return int(scalar(split(':',$env{"imagechoice.$id.coords"}))/2);
   }
   
   sub add_obj {
       my ($x,$id,$type,$args,$extra)=@_;
   
       $$x{"cgi.$id.OBJTYPE"}.=$type.':';
       my $i=$$x{"cgi.$id.OBJCOUNT"}++;
       $$x{"cgi.$id.OBJ$i"}=$args;
       if (defined($extra)) { $$x{"cgi.$id.OBJEXTRA$i"}=$extra; }
 }  }
   
 sub drawX {  sub drawX {
     my ($imid,$x,$y)=@_;      my ($data,$imid,$x,$y)=@_;
     my %x;  
     $x{"cgi.$imid.LINECOUNT"}=4;  
     my $length = 6;      my $length = 6;
     my $width = 1;      my $width = 1;
     my $extrawidth = 2;      my $extrawidth = 2;
     $x{"cgi.$imid.LINE0"}=      &add_obj($data,$imid,'LINE',
  join(':',(($x-$length),($y-$length),($x+$length),($y+$length),       join(':',(($x-$length),($y-$length),($x+$length),($y+$length),
   "FFFFFF",($width+$extrawidth)));         "FFFFFF",($width+$extrawidth))));
     $x{"cgi.$imid.LINE1"}=      &add_obj($data,$imid,'LINE',
  join(':',(($x-$length),($y+$length),($x+$length),($y-$length),   join(':',(($x-$length),($y+$length),($x+$length),($y-$length),
   "FFFFFF",($width+$extrawidth)));    "FFFFFF",($width+$extrawidth))));
     $x{"cgi.$imid.LINE2"}=      &add_obj($data,$imid,'LINE',
  join(':',(($x-$length),($y-$length),($x+$length),($y+$length),   join(':',(($x-$length),($y-$length),($x+$length),($y+$length),
   "FF0000",($width)));    "FF0000",($width))));
     $x{"cgi.$imid.LINE3"}=      &add_obj($data,$imid,'LINE',
  join(':',(($x-$length),($y+$length),($x+$length),($y-$length),   join(':',(($x-$length),($y+$length),($x+$length),($y-$length),
   "FF0000",($width)));    "FF0000",($width))));
     return %x;  
 }  }
   
 sub drawPolygon {  sub drawPolygon {
     my ($id,$imid)=@_;      my ($data,$id,$imid)=@_;
     my (undef,@coords)=split(':',$ENV{"cgi.$id.coords"});      my (undef,@coords)=split(':',$env{"imagechoice.$id.coords"});
     my $coordstr;      my $coordstr;
     while (@coords) {      while (@coords) {
  $coordstr.='('.shift(@coords).','.shift(@coords).')-';   $coordstr.='('.shift(@coords).','.shift(@coords).')-';
     }      }
     chop($coordstr);      chop($coordstr);
     my %x;  
     my $width = 1;      my $width = 1;
     my $extrawidth = 2;      my $extrawidth = 2;
     my $i=$x{"cgi.$imid.POLYCOUNT"}++;      &add_obj($data,$imid,'POLYGON',
     $x{"cgi.$imid.POLYOPT$i"}=join(':',("FFFFFF",($width+$extrawidth)),'1');       join(':',("FFFFFF",($width+$extrawidth)),'1'),$coordstr);
     $x{"cgi.$imid.POLY$i"}=$coordstr;      &add_obj($data,$imid,'POLYGON',
     $i=$x{"cgi.$imid.POLYCOUNT"}++;       join(':',("00FF00",($width)),'1'),$coordstr);
     $x{"cgi.$imid.POLYOPT$i"}=join(':',("00FF00",$width),'1');  }
     $x{"cgi.$imid.POLY$i"}=$coordstr;  
     return %x;  sub drawBox {
       my ($data,$id,$imid)=@_;
       my (undef,@coords)=split(':',$env{"imagechoice.$id.coords"});
       if (scalar(@coords) < 4) { return ''; }
       my $width = 1;
       my $extrawidth = 2;
       &add_obj($data,$imid,'RECTANGLE',
        join(':',(@coords,"FFFFFF",($width+$extrawidth))));
       &add_obj($data,$imid,'RECTANGLE',join(':',(@coords,"00FF00",$width)));
 }  }
   
 sub drawimage {  sub drawimage {
     my ($r,$mode,$filename,$id)=@_;      my ($r,$type,$filename,$id)=@_;
     my $imid=&Apache::loncommon::get_cgi_id();      my $imid=&Apache::loncommon::get_cgi_id();
     my (undef,@coords)=split(':',$ENV{"cgi.$id.coords"});      my (undef,@coords)=split(':',$env{"imagechoice.$id.coords"});
     if (scalar(@coords) < 2) { return $filename; }      if (scalar(@coords) < 2) { return &Apache::lonnet::hreflocation('',$filename); }
     $filename=&Apache::lonnet::filelocation('',$filename);  
     my %data;      my %data;
     $data{"cgi.$imid.BGIMG"}=$filename;      $data{"cgi.$imid.BGIMG"}=$filename;
     my $x=@coords[-2];      my $x=$coords[-2];
     my $y=@coords[-1];      my $y=$coords[-1];
     %data=(%data,&drawX($imid,$x,$y));      &drawX(\%data,$imid,$x,$y);
     if ($mode eq "polygon") { %data=(%data,&drawPolygon($id,$imid)); }      if ($type eq "polygon") { &drawPolygon(\%data,$id,$imid); }
     &Apache::lonnet::appenv(%data);      if ($type eq "box") { &drawBox(\%data,$id,$imid); }
       &Apache::lonnet::appenv(\%data);
     return "/adm/randomlabel.png?token=$imid"      return "/adm/randomlabel.png?token=$imid"
 }  }
   
 sub handler {  sub handler {
     my ($r)=@_;      my ($r)=@_;
     $r->content_type('text/html');      &Apache::loncommon::content_type($r,'text/html');
       $r->send_http_header;
     my %data;      my %data;
     my (undef,$id) = split(/=/,$ENV{'QUERY_STRING'});      my (undef,$id) = split(/=/,$ENV{'QUERY_STRING'});
     my $filename = $ENV{"cgi.$id.file"};      my $filename = &unescape($env{"imagechoice.$id.file"});
     my $formname = $ENV{"cgi.$id.formname"};      my $formname = $env{"imagechoice.$id.formname"};
     my $mode=$ENV{"cgi.$id.mode"};      if ($env{'form.cancel'}) { # eq &mt('Cancel')) {
     $filename=&Apache::lonnet::unescape($filename);   &deletedata($id);
     &savecoord($id);   &closewindow($r,'',$filename);
     my $imurl=&drawimage($r,$mode,$filename,$id);   return OK;
     if ($ENV{'form.finish'} eq 'Finish') {      }
  &storedata($r,$mode,$imurl,$id);      my $type=$env{"imagechoice.$id.type"};
       if (defined($env{'form.type'})) { $type=$env{'form.type'}; }
       my $numcoords=&savecoord($id,$type);
       my $imurl=&drawimage($r,$type,$filename,$id);
       if ($env{'form.finish'}) { # eq &mt('Save')) {
    &storedata($r,$type,$imurl,$id);
       } else {
    &getcoord($r,$type,$imurl,$id);
     }      }
     &getcoord($r,$mode,$imurl,$id);  
     return OK;      return OK;
 }  }
   

Removed from v.1.1  
changed lines
  Added in v.1.18


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