Annotation of loncom/homework/randomlabel.pm, revision 1.68
1.1 tsai 1: # The LearningOnline Network with CAPA
2: # random labelling tool
1.8 albertel 3: #
1.68 ! foxr 4: # $Id: randomlabel.pm,v 1.67 2005/04/07 06:56:22 albertel Exp $
1.8 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 tsai 28: # SYNTAX:
1.4 albertel 29: # <randomlabel bgimg="URL" width="12" height="45" texwidth="50">
30: # <labelgroup name="GroupOne" type="image">
31: # <location x="123" y="456" />
32: # <location x="321" y="654" />
33: # <location x="213" y="546" />
34: # <label description="TEXT-1">IMG-URL</label>
35: # <label description="TEXT-2">IMG-URL</label>
36: # <label description="TEXT-3">IMG-URL</label>
1.1 tsai 37: # </labelgroup>
1.4 albertel 38: # <labelgroup name="GroupTwo" type="text">
39: # <location x="12" y="45" />
40: # <location x="32" y="65" />
41: # <location x="21" y="54" />
1.3 tsai 42: # <label>TEXT-1</label>
43: # <label>TEXT-2</label>
44: # <label>TEXT-3</label>
1.1 tsai 45: # </labelgroup>
46: # </randomlabel>
47: # ===========================================
1.3 tsai 48: # side effect:
49: # location (123,456): $GroupOne[0] = 2 # images give out indexes
50: # (321,654): $GroupOne[1] = 1
51: # (213,546): $GroupOne[2] = 0
52: # location (12,45) : $GroupTwo[0] = "TEXT-3"
53: # (32,65) : $GroupTwo[1] = "TEXT-1"
54: # (21,54) : $GroupTwo[2] = "TEXT-2"
1.1 tsai 55: # ===========================================
56: package Apache::randomlabel;
1.24 sakharuk 57: use Apache::lonnet;
1.1 tsai 58: use strict;
1.13 sakharuk 59: use Apache::edit;
1.36 sakharuk 60: use Apache::File();
1.38 sakharuk 61: use Apache::Constants qw(:common :http);
1.1 tsai 62:
1.53 albertel 63: my %args;
64: my $cgi_id;
65:
1.13 sakharuk 66: BEGIN {
1.57 albertel 67: &Apache::lonxml::register('Apache::randomlabel',('randomlabel','labelgroup','location','label','bgimg'));
1.1 tsai 68: }
69:
1.23 matthew 70: sub check_int {
71: # utility function to do error checking on a integer.
72: my ($num,$default) = @_;
73: $default = 100 if (! defined($default));
74: $num =~ s/\s+//g; # We dont need no stinkin white space!
75: # If it is a real, just grab the integer part.
76: ($num,undef) = split (/\./,$num) if ($num =~ /\./);
77: # set to default if what we have left doesn't match anything...
78: $num = $default unless ($num =~/^\d+$/);
79: return $num;
80: }
81:
1.64 albertel 82: my ($height_param,$width_param);
1.1 tsai 83: sub start_randomlabel {
1.47 albertel 84: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
85: my $result='';
86: push (@Apache::lonxml::namespace,'randomlabel');
1.64 albertel 87: ($height_param,$width_param)=(0,0);
1.47 albertel 88: my $bgimg= &Apache::lonxml::get_param('bgimg',$parstack,$safeeval);
1.60 albertel 89: if ( defined($bgimg) && $bgimg !~ /^http:/ ) {
1.47 albertel 90: $bgimg=&Apache::lonnet::filelocation($Apache::lonxml::pwd[-1],$bgimg);
1.66 raeburn 91: if (&Apache::lonnet::repcopy($bgimg) ne 'ok') {
1.47 albertel 92: $bgimg='/home/httpd/html/adm/lonKaputt/lonlogo_broken.gif';
93: }
1.42 www 94: }
1.59 albertel 95: $Apache::randomlabel::obj_cnt=0;
1.47 albertel 96: if ($target eq 'web') {
1.53 albertel 97: $cgi_id=&Apache::loncommon::get_cgi_id();
98: %args=();
99: $args{"cgi.$cgi_id.BGIMG"}=&Apache::lonnet::escape($bgimg);
1.64 albertel 100: } elsif ($target eq 'tex' && defined($bgimg)) {
101: $result.=&make_eps_image($bgimg,$parstack,$safeeval);
1.47 albertel 102: } elsif ($target eq 'edit') {
103: $result.=&Apache::edit::tag_start($target,$token);
104: $Apache::edit::bgimgsrc=
105: &Apache::lonxml::get_param('bgimg',$parstack,$safeeval);
106: $Apache::edit::bgimgsrccurdepth=$Apache::lonxml::curdepth;
107: $result.=&Apache::edit::text_arg('Image:','bgimg',$token,75).' ';
108: $result.=&Apache::edit::browse('bgimg').' ';
109: $result.=&Apache::edit::search('bgimg').'<br />'.
110: &Apache::edit::text_arg('Width(pixel):' ,'width' ,$token,6).
111: &Apache::edit::text_arg('Height(pixel):','height' ,$token,6).
112: &Apache::edit::text_arg('TeXWidth(mm):' ,'texwidth',$token,6).
113: &Apache::edit::end_row().&Apache::edit::start_spanning_row();
114: } elsif ($target eq 'modified') {
115: my $constructtag=&Apache::edit::get_new_args($token,$parstack,
116: $safeeval,'bgimg','width',
117: 'height','texwidth');
118: if ($constructtag) {
119: $result = &Apache::edit::rebuild_tag($token);
120: $result.=&Apache::edit::handle_insert();
121: }
1.31 sakharuk 122: }
1.47 albertel 123: return $result;
1.1 tsai 124: }
125:
126: sub end_randomlabel {
1.47 albertel 127: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
128: my $result='';
129: my $count;
130: pop @Apache::lonxml::namespace;
131: if ($target eq 'web') {
1.59 albertel 132: $count = $Apache::randomlabel::obj_cnt;
133: if( $count != 0) { $args{"cgi.$cgi_id.OBJCOUNT"}=$count; }
1.53 albertel 134: $result.='<img src="/adm/randomlabel.png?token='.$cgi_id.'" /><br />'."\n";
135: &Apache::lonnet::appenv(%args);
1.47 albertel 136: } elsif ($target eq 'tex') {
137: $result='\end{picture}\\\\';
1.64 albertel 138: $result.= ' \vskip -'.$height_param.' mm } \\\\ ';
1.47 albertel 139: } elsif ($target eq 'edit') {
140: $result.=&Apache::edit::end_table;
141: }
142: return $result;
1.1 tsai 143: }
144:
1.57 albertel 145: sub start_bgimg {
146: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
147: my $result='';
148: if ($target eq 'web' || $target eq 'tex' || $target eq 'analyze') {
1.64 albertel 149: &Apache::lonxml::startredirection();
1.57 albertel 150: }
151: return $result;
152: }
153:
154: sub end_bgimg {
155: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
156: my $result='';
157: if ($target eq 'web' || $target eq 'tex' || $target eq 'analyze') {
1.64 albertel 158: my $bgimg=&Apache::lonxml::endredirection();
1.57 albertel 159: if ($target eq 'web') {
160: $bgimg=&Apache::imageresponse::clean_up_image($bgimg);
161: $args{"cgi.$cgi_id.BGIMG"}=&Apache::lonnet::escape($bgimg);
162: } elsif ($target eq 'tex') {
1.64 albertel 163: $result.=&make_eps_image($bgimg,$parstack,$safeeval,-2);
1.57 albertel 164: }
165: }
166: return $result;
167: }
168:
169: sub make_eps_image {
1.64 albertel 170: my ($bgimg,$parstack,$safeeval,$depth)=@_;
171: my ($path,$file) = &Apache::londefdef::get_eps_image($bgimg);
172: ($height_param,$width_param)=
173: &Apache::londefdef::image_size($bgimg,0.3,$parstack,$safeeval,
174: $depth,1);
175: my $dirtywidth=$width_param+5;
1.68 ! foxr 176: my $result ="\n".'\vspace*{2mm}\noindent'."\n".
! 177: '\parbox{'.$dirtywidth.
1.64 albertel 178: ' mm}{ \noindent \epsfxsize='.$width_param.
179: ' mm \epsffile{'.$path.$file.
1.68 ! foxr 180: '}\setlength{\unitlength}{1mm}'."\n".' \begin{picture}('.
! 181: $width_param.','.$height_param.')(0,-'.$height_param.')'."\n";
1.57 albertel 182: return $result;
183: }
184:
1.1 tsai 185: sub start_labelgroup {
1.47 albertel 186: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
187: my $result='';
188: my $name = &Apache::lonxml::get_param('name',$parstack,$safeeval);
189: my $type = &Apache::lonxml::get_param('type',$parstack,$safeeval);
190: $type =~tr/A-Z/a-z/;
1.48 albertel 191: if ($target ne 'modified' && ($name =~ /\W/ || $name =~ /^[0-9]/)) {
192: &Apache::lonxml::error("Only _ a-z A-Z and 0-9 are allowed in the name to a labelgroup, and the first character can not be a number.<br />");
193: }
1.47 albertel 194: if ($target eq 'web' || $target eq 'tex' ||
195: $target eq 'grade' || $target eq 'answer' || $target eq 'analyze') {
196: $Apache::randomlabel::groupname=$name;
197: $Apache::randomlabel::type=$type;
198: @Apache::randomlabel::xcoord = ();
199: @Apache::randomlabel::ycoord = ();
200: @Apache::randomlabel::value = ();
201: @Apache::randomlabel::label_arr = ();
1.68 ! foxr 202: @Apache::randomlabel::description = ();
1.47 albertel 203: } elsif ($target eq 'edit') {
204: $result.=&Apache::edit::tag_start($target,$token);
205: $result.=&Apache::edit::text_arg('Name:','name',$token).
1.63 albertel 206: &Apache::edit::select_arg('Type:','type',['text','image'],$token);
207: if (!defined($token->[2]{'TeXsize'})) {
208: $token->[2]{'TeXsize'}='\normalsize';
209: }
210: $result.=&Apache::edit::select_arg('TeX font size:','TeXsize',
211: ['\tiny','\scriptsize',
212: '\footnotesize','\small',
213: '\normalsize','\large','\Large',
214: '\LARGE','\huge','\Huge'],
215: $token);
216: $result.=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
1.47 albertel 217: } elsif ($target eq 'modified') {
218: my $constructtag=&Apache::edit::get_new_args($token,$parstack,
1.63 albertel 219: $safeeval,'name','type',
220: 'TeXsize');
1.47 albertel 221: if ($constructtag) {
222: $result = &Apache::edit::rebuild_tag($token);
223: $result.=&Apache::edit::handle_insert();
224: }
1.4 albertel 225: }
1.47 albertel 226: return $result;
1.1 tsai 227: }
228:
1.5 albertel 229: sub add_vars {
1.47 albertel 230: my ($name,$order,$label,$labelorder,$value,$image,$safeeval) = @_;
1.61 albertel 231: if (!defined($name) || $name eq '') { return; }
1.47 albertel 232: my $code = '${'.$name."}{'".($order+1)."'}='".$label."';";
233: my $out=Apache::run::run($code,$safeeval);
234: if ($value) {
235: $code = '${'.$name."}{'value_".($order+1)."'}='".$value."';";
236: $out=Apache::run::run($code,$safeeval);
237: $code = '${'.$name."}{'labelvalue_".($labelorder+1)."'}='".$value."';";
238: $out=Apache::run::run($code,$safeeval);
239: }
240: if ($image) {
241: my $code = '${'.$name."}{'image_".($order+1)."'}='".$image."';";
242: my $out=Apache::run::run($code,$safeeval);
243: }
244: $code = '${'.$name."}{'numlocations'}='".($order+1)."';";
1.5 albertel 245: $out=Apache::run::run($code,$safeeval);
1.4 albertel 246: }
1.5 albertel 247:
1.1 tsai 248: # begin to assign labels to locations
249: sub end_labelgroup {
1.47 albertel 250: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
251: my $gname = $Apache::randomlabel::groupname;
252: my $type = $Apache::randomlabel::type;
253: my $result='';
254: if ($target eq 'web' || $target eq 'answer' || $target eq 'grade' ||
255: $target eq 'analyze') {
256: my @idx_arr = (0 .. $#Apache::randomlabel::label_arr);
257: &Apache::structuretags::shuffle(\@idx_arr);
258: for(0 .. $#Apache::randomlabel::label_arr) {
259: my $str;
260: my $label = "$Apache::randomlabel::label_arr[ $idx_arr[$_] ]";
261: my $x = $Apache::randomlabel::xcoord[$_];
262: my $y = $Apache::randomlabel::ycoord[$_];
263: my $value = $Apache::randomlabel::value[$_];
1.59 albertel 264: my $i=$Apache::randomlabel::obj_cnt++;
1.47 albertel 265: if( $type eq 'text') {
266: &add_vars($gname,$_,$label,$idx_arr[$_],$value,'',$safeeval);
1.59 albertel 267: $str = join(':',$x,$y,&Apache::lonnet::escape($label));
268: $args{"cgi.$cgi_id.OBJTYPE"}.='LABEL:';
1.47 albertel 269: } elsif ( $type eq 'image') {
270: &add_vars($gname,$_,
271: $Apache::randomlabel::description[$idx_arr[$_]],
272: $idx_arr[$_],$value,$label,$safeeval);
1.59 albertel 273: $str = join(':',$x,$y,&Apache::lonnet::escape($label));
274: $args{"cgi.$cgi_id.OBJTYPE"}.='IMAGE:';
1.47 albertel 275: } else {
276: &Apache::lonxml::error('Unknown type of label :'.$type.':');
277: }
1.59 albertel 278: if ($target eq 'web') { $args{"cgi.$cgi_id.OBJ$i"} =$str; }
1.47 albertel 279: }
280: } elsif ($target eq 'tex') {
281: my $WX1=0; # Web x-coord. of upper left corner (ULC)
282: my $WY1=0; # Web y-coord. of (ULC)
283: my $wwidth=&Apache::lonxml::get_param('width',$parstack,$safeeval,-2);
284: my $wheight=&Apache::lonxml::get_param('height',$parstack,$safeeval,-2);
1.63 albertel 285: my $TeXsize=&Apache::lonxml::get_param('TeXsize',$parstack,$safeeval);
286: if (!defined($TeXsize)) { $TeXsize='\\normalsize'; }
1.62 albertel 287:
1.47 albertel 288: my @idx_arr = (0 .. $#Apache::randomlabel::label_arr);
289: &Apache::structuretags::shuffle(\@idx_arr);
290:
291: &Apache::lonxml::debug("Array is:".$#Apache::randomlabel::label_arr.":");
292: for(my $i=0;$i <= $#Apache::randomlabel::label_arr; $i++) {
293: my $label = "$Apache::randomlabel::label_arr[ $idx_arr[$i] ]";
294: my $x = $Apache::randomlabel::xcoord[$i];
1.62 albertel 295: # FIXME the 3.5 here is the 'height' of the letter in TeX
296: my $y = $Apache::randomlabel::ycoord[$i]-3.5;
1.47 albertel 297: my $value = $Apache::randomlabel::value[$i];
298: #x latex coordinate
1.64 albertel 299: my $tcX=($x)*($width_param/$wwidth);
1.47 albertel 300: #y latex coordinate
301: # my $ratio=($wwidth > 0 ? $wheight/$wwidth : 1 );
1.64 albertel 302: my $tcY=$height_param-$y*($height_param/$wheight);
1.47 albertel 303: $tcX=sprintf('%.2f',$tcX);
304: $tcY=sprintf('%.2f',$tcY);
1.63 albertel 305: $result.='\put('.$tcX.','.$tcY.'){'.$TeXsize.' \bf '.$label.'}'."\n";
1.47 albertel 306: if( $type eq 'text') {
307: &add_vars($gname,$i,$label,$idx_arr[$i],$value,'',$safeeval);
308: } elsif ( $type eq 'image') {
309: &add_vars($gname,$i,
310: $Apache::randomlabel::description[$idx_arr[$i]],
311: $idx_arr[$i],$value,$label,$safeeval);
312: } else {
313: &Apache::lonxml::error('Unknown type of label :'.$type.':');
314: }
315: }
316: } elsif ($target eq 'edit') {
317: $result.=&Apache::edit::end_table;
1.3 tsai 318: }
1.47 albertel 319: return $result;
1.1 tsai 320: }
321:
1.5 albertel 322: # <location x="123" y="456" value="some value"/>
1.1 tsai 323: sub start_location {
1.47 albertel 324: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
325: my $x= &check_int(&Apache::lonxml::get_param('x',$parstack,$safeeval),50);
326: my $y= &check_int(&Apache::lonxml::get_param('y',$parstack,$safeeval),50);
327: my $value= &Apache::lonxml::get_param('value',$parstack,$safeeval);
328: my $result='';
329: push(@Apache::randomlabel::xcoord,$x);
330: push(@Apache::randomlabel::ycoord,$y);
331: push(@Apache::randomlabel::value,$value);
332: if ($target eq 'edit') {
333: $result.=&Apache::edit::tag_start($target,$token);
334: $result.=&Apache::edit::text_arg('X:','x',$token,4).
335: &Apache::edit::text_arg('Y:','y',$token,4).
336: &Apache::edit::entercoords('x','y','attribute','width','height').' '.
337: &Apache::edit::text_arg('Value:','value',$token).
338: &Apache::edit::end_row();
339: $result.=&Apache::edit::end_table;
340: } elsif ($target eq 'modified') {
341: my $constructtag=&Apache::edit::get_new_args($token,$parstack,
342: $safeeval,'x','y','value');
343: if ($constructtag) {
344: $result = &Apache::edit::rebuild_tag($token);
345: $result.=&Apache::edit::handle_insert();
346: }
1.4 albertel 347: }
1.47 albertel 348: return $result;
1.1 tsai 349: }
350:
351: sub end_location {
1.47 albertel 352: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
353: my @result;
354: if ($target eq 'edit') { @result=('','no') }
355: return @result;
1.1 tsai 356: }
357:
1.2 tsai 358: # <label>$var_abc</label>
1.1 tsai 359: sub start_label {
1.47 albertel 360: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
361: my $result='';
362: my $type = &Apache::lonxml::get_param('type',$parstack,$safeeval,-2);
363: if ($target eq 'web' || $target eq 'tex' ||
364: $target eq 'grade' || $target eq 'answer' || $target eq 'analyze') {
1.57 albertel 365: &Apache::lonxml::startredirection;
1.47 albertel 366: } elsif ($target eq 'edit') {
367: $result.=&Apache::edit::tag_start($target,$token,"$type Label");
368: my $text=&Apache::lonxml::get_all_text("/label",$parser);
369: if ($type eq 'image') {
370: $result.=&Apache::edit::end_row().
371: &Apache::edit::start_spanning_row();
372: $result.=&Apache::edit::text_arg('Description:','description',
373: $token);
374: }
375: if ($type eq 'text') { $result.="Label Text:"; }
376: if ($type eq 'image') { $result.="Path to image: "; }
377: $result.=&Apache::edit::editline('',$text,'',50).
378: &Apache::edit::end_table();
379: } elsif ($target eq 'modified') {
380: $result = '<label>';
381: if ($type eq 'image') {
382: my $constructtag=&Apache::edit::get_new_args($token,$parstack,
383: $safeeval,
384: 'description');
385: if ($constructtag) {
386: $result = &Apache::edit::rebuild_tag($token);
387: } else {
388: $result = $token->[4];
389: }
390: }
1.52 albertel 391: $result.=&Apache::edit::modifiedfield("/label",$parser);
1.26 albertel 392: }
1.47 albertel 393: return $result;
1.1 tsai 394: }
395:
396: sub end_label {
1.47 albertel 397: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
398: my @result;
1.57 albertel 399: if ($target eq 'edit') {
400: @result=('','no') ;
401: } elsif ($target eq 'web' || $target eq 'tex' || $target eq 'grade' ||
402: $target eq 'answer' || $target eq 'analyze') {
403: my $type = &Apache::lonxml::get_param('type',$parstack,$safeeval,-2);
404: my $ltext=&Apache::lonxml::endredirection;
405: if ($type eq 'image') {
406: &Apache::lonxml::debug("Turning $ltext, $Apache::lonxml::pwd[-1]");
407: $ltext=&Apache::imageresponse::clean_up_image($ltext);
408: # $ltext=&Apache::lonnet::filelocation($Apache::lonxml::pwd[-1],
409: # $ltext);
410: &Apache::lonxml::debug("into $ltext");
411: my $description = &Apache::lonxml::get_param('description',
412: $parstack,$safeeval);
413: push(@Apache::randomlabel::description,$description);
1.61 albertel 414: } else {
415: $ltext=~s/[\r\n]*//gs
1.57 albertel 416: }
417: push(@Apache::randomlabel::label_arr,$ltext);
418: }
1.47 albertel 419: return @result;
1.1 tsai 420: }
421:
422: 1;
423: __END__
424:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>