File:  [LON-CAPA] / loncom / homework / imagechoice.pm
Revision 1.7: download - view: text, annotated - select for diffs
Thu Feb 17 09:01:03 2005 UTC (19 years, 1 month ago) by albertel
Branches: MAIN
CVS tags: HEAD
- last? of the eradication of direct calls to $r->content_type()

# $Id: imagechoice.pm,v 1.7 2005/02/17 09:01:03 albertel Exp $
#
# Copyright Michigan State University Board of Trustees
#
# This file is part of the LearningOnline Network with CAPA (LON-CAPA).
#
# LON-CAPA is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# LON-CAPA is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with LON-CAPA; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#
# /home/httpd/cgi-bin/plot.gif
#
# http://www.lon-capa.org/
#
package Apache::imagechoice;
use strict;
use Apache::Constants qw(:common :http);


sub deletedata {
    my ($id)=@_;
    &Apache::lonnet::delenv("imagechoice\\.$id\\.coords");
}

sub closewindow {
    my ($r,$output,$filename,$needimage)=@_;
    if ($needimage) {
	$needimage="<img name=\"pickimg\" src=\"$filename\" />";
    }
    $r->print(<<"ENDSUBM");
<html>
<script>
    function submitthis() {
	$output
	self.close();
    }
</script>
<body bgcolor="#FFFFFF" onLoad="submitthis()">
<h3>Position Selected</h3>
$needimage
</body>
</html>
ENDSUBM
}

sub storedata {
    my ($r,$type,$filename,$id)=@_;

    my (undef,@coords)=split(':',$ENV{"imagechoice.$id.coords"});

    my ($output,$needimage);

    if ($ENV{"imagechoice.$id.formwidth"}) {
	$output.='opener.document.forms.'.$ENV{"imagechoice.$id.formname"}.'.'.$ENV{"imagechoice.$id.formwidth"}.'.value=document.pickimg.width;';
	$needimage=1;
    }
    if ($ENV{"imagechoice.$id.formheight"}) {
	$output.='opener.document.forms.'.$ENV{"imagechoice.$id.formname"}.'.'.$ENV{"imagechoice.$id.formheight"}.'.value=document.pickimg.height;';
	$needimage=1;
    }

    if ($type eq 'point') {
	my (undef,$x,$y)=split(':',$ENV{"imagechoice.$id.coords"});
	if ($ENV{"imagechoice.$id.formx"}) {
	    $output.='opener.document.forms.'.$ENV{"imagechoice.$id.formname"}.'.'.$ENV{"imagechoice.$id.formx"}.'.value='.$x.';';
	}
	if ($ENV{"imagechoice.$id.formy"}) {
	    $output.='opener.document.forms.'.$ENV{"imagechoice.$id.formname"}.'.'.$ENV{"imagechoice.$id.formy"}.'.value='.$y.';';
	}
    } elsif ($type eq 'polygon' or $type eq 'box') {
	my $coordstr;
	while (@coords) {
	    $coordstr.='('.shift(@coords).','.shift(@coords).')-';
	}
	chop($coordstr);
	$output.='opener.document.forms.'.$ENV{"imagechoice.$id.formname"}.'.'.$ENV{"imagechoice.$id.formcoord"}.'.value="'.$coordstr.'";';
    }

    &deletedata($id);
    &closewindow($r,$output,$filename,$needimage);
}

sub getcoord {
    my ($r,$type,$filename,$id)=@_;
    my $heading='Select Position on Image';
    my $nextstage='';
    if ($type eq 'box') {
	my (undef,@coords)=split(':',$ENV{"imagechoice.$id.coords"});
	my $step=scalar(@coords)/2;
	if ($step == 0) { 
	    $heading='Select First Coordinate on Image';
	    #$nextstage='<input type="hidden" name="type" value="pairtwo" />';
	} elsif ($step == 1) {
	    $heading='Select Second Coordinate on Image';
	    #$nextstage='<input type="hidden" name="type" value="pairthree" />';
	} else {
	    $heading='Select Finish to store selection.';
	    $nextstage='<input type="submit" name="finish" value="Finish" />';
	}
    } elsif ($type eq 'polygon') {
	$heading='Enter Coordinate or click finish to close Polygon';
	$nextstage='<input type="submit" name="finish" value="Finish" />';
    } elsif ($type eq 'point') {
	$heading='Click to select a Coordinate or click Finish to store current selection.';
	$nextstage='<input type="submit" name="finish" value="Finish" />';
    }
    $r->print(<<"END");
<html>
<body bgcolor="#FFFFFF">
<h3>$heading</h3>
<form method="POST" action="/adm/imagechoice?token=$id">
$nextstage
<input type="submit" name="cancel" value="Cancel" />
<br />
<input name="image" type="image" src="$filename" />
</form>
</body>
</html>
END
}

sub savecoord {
    my ($id,$type)=@_;
    if (defined($ENV{"form.image.x"}) && defined($ENV{"form.image.y"})) {
	my $data;
	if ($type eq 'point') {
	    $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 {
    my ($data,$imid,$x,$y)=@_;
    my $length = 6;
    my $width = 1;
    my $extrawidth = 2;
    &add_obj($data,$imid,'LINE',
	     join(':',(($x-$length),($y-$length),($x+$length),($y+$length),
		       "FFFFFF",($width+$extrawidth))));
    &add_obj($data,$imid,'LINE',
	join(':',(($x-$length),($y+$length),($x+$length),($y-$length),
		  "FFFFFF",($width+$extrawidth))));
    &add_obj($data,$imid,'LINE',
	join(':',(($x-$length),($y-$length),($x+$length),($y+$length),
		  "FF0000",($width))));
    &add_obj($data,$imid,'LINE',
	join(':',(($x-$length),($y+$length),($x+$length),($y-$length),
		  "FF0000",($width))));
}

sub drawPolygon {
    my ($data,$id,$imid)=@_;
    my (undef,@coords)=split(':',$ENV{"imagechoice.$id.coords"});
    my $coordstr;
    while (@coords) {
	$coordstr.='('.shift(@coords).','.shift(@coords).')-';
    }
    chop($coordstr);
    my $width = 1;
    my $extrawidth = 2;
    &add_obj($data,$imid,'POLYGON',
	     join(':',("FFFFFF",($width+$extrawidth)),'1'),$coordstr);
    &add_obj($data,$imid,'POLYGON',
	     join(':',("00FF00",($width)),'1'),$coordstr);
}

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 {
    my ($r,$type,$filename,$id)=@_;
    my $imid=&Apache::loncommon::get_cgi_id();
    my (undef,@coords)=split(':',$ENV{"imagechoice.$id.coords"});
    if (scalar(@coords) < 2) { return &Apache::lonnet::hreflocation('',$filename); }
    my %data;
    $data{"cgi.$imid.BGIMG"}=$filename;
    my $x=$coords[-2];
    my $y=$coords[-1];
    &drawX(\%data,$imid,$x,$y);
    if ($type eq "polygon") { &drawPolygon(\%data,$id,$imid); }
    if ($type eq "box") { &drawBox(\%data,$id,$imid); }
    &Apache::lonnet::appenv(%data);
    return "/adm/randomlabel.png?token=$imid"
}

sub handler {
    my ($r)=@_;
    &Apache::loncommon::content_type($r,'text/html');
    $r->send_http_header;
    my %data;
    my (undef,$id) = split(/=/,$ENV{'QUERY_STRING'});
    my $filename = &Apache::lonnet::unescape($ENV{"imagechoice.$id.file"});
    my $formname = $ENV{"imagechoice.$id.formname"};
    if ($ENV{'form.cancel'} eq 'Cancel') {
	&deletedata($id);
	&closewindow($r,'',$filename);
	return OK;
    }
    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 'Finish')) {
	&storedata($r,$type,$imurl,$id);
    } else {
	&getcoord($r,$type,$imurl,$id);
    }
    return OK;
}

1;

__END__



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