/usr/lib/AMC/perl/AMC-meptex.pl is in auto-multiple-choice-common 1.2.1-3build1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 | #! /usr/bin/perl
#
# Copyright (C) 2011-2013 Alexis Bienvenue <paamc@passoire.fr>
#
# This file is part of Auto-Multiple-Choice
#
# Auto-Multiple-Choice 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.
#
# Auto-Multiple-Choice 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 Auto-Multiple-Choice. If not, see
# <http://www.gnu.org/licenses/>.
use Getopt::Long;
use Encode;
use AMC::Basic;
use AMC::Gui::Avancement;
use AMC::Data;
use AMC::DataModule::layout ':flags';
my $src;
my $data_dir;
my $dpi=300;
my $progress;
my $progress_id;
my $debug;
GetOptions("src=s"=>\$src,
"data=s"=>\$data_dir,
"progression-id=s"=>\$progress_id,
"progression=s"=>\$progress,
"debug=s"=>\$debug,
);
die "No src file $src" if(! -f $src);
die "No data dir $data_dir" if(! -d $data_dir);
set_debug($debug);
my $avance=AMC::Gui::Avancement::new($progress,'id'=>$progress_id);
my $data=AMC::Data->new($data_dir);
my $layout=$data->module('layout');
my $capture=$data->module('capture');
my $timestamp=time();
# how much units in one inch ?
%u_in_one_inch=('in'=>1,
'cm'=>2.54,
'mm'=>25.4,
'pt'=>72.27,
'sp'=>65536*72.27,
);
sub read_inches {
my ($dim)=@_;
if($dim =~ /^\s*([0-9]*\.?[0-9]*)\s*([a-zA-Z]+)\s*$/) {
if($u_in_one_inch{$2}) {
return($1 / $u_in_one_inch{$2});
} else {
die "Unknown unity: $2 ($dim)";
}
} else {
die "Unknown dim: $dim";
}
}
sub ajoute {
my ($ar,$val)=@_;
if(@$ar) {
$ar->[0]=$val if($ar->[0]>$val && $val);
$ar->[1]=$val if($ar->[1]<$val && $val);
} else {
$ar->[0]=$val if($val);
$ar->[1]=$val if($val);
}
}
my @pages=();
my @flags=();
my @pre_assoc=();
my $cases;
my $page_number=0;
my $i='';
sub add_flag {
my ($x,$flag)=@_;
if($x =~ /^([0-9]+),([0-9]+)$/) {
my ($student,$question)=($1,$2);
my $f;
if(@flags) {
my $lf=$flags[$#flags];
if($lf->{'student'}==$student && $lf->{'question'}==$question) {
$lf->{'flags'} |= $flag;
return;
}
}
push @flags,{'student'=>$student,'question'=>$question,'flags'=>$flag};
} else {
debug "ERROR: flag which question? <$x>";
}
}
debug "Reading $src...";
open(SRC,$src) or die "Unable to open $src : $!";
while(<SRC>) {
if(/\\page{([^\}]+)}{([^\}]+)}{([^\}]+)}/) {
my $id=$1;
my $dx=$2;
my $dy=$3;
$page_number++;
$cases={};
push @pages,{-id=>$id,-p=>$page_number,
-dim_x=>read_inches($dx),-dim_y=>read_inches($dy),
-cases=>$cases};
}
if(/\\tracepos\{([^\}]+)\}\{([^\}]*)\}\{([^\}]*)\}(?:\{([^\}]*)\})?/) {
$i=$1;
my $x=read_inches($2);
my $y=read_inches($3);
my $shape=$4;
$i =~ s/^[0-9]+\/[0-9]+://;
$cases->{$i}={'bx'=>[],'by'=>[],'flags'=>0,'shape'=>''}
if(!$cases->{$i});
ajoute($cases->{$i}->{'bx'},$x);
ajoute($cases->{$i}->{'by'},$y);
if($cases->{$i}->{'shape'} &&
$cases->{$i}->{'shape'} ne $shape) {
debug "WARNING: different shapes for a single box ($i)";
} else {
$cases->{$i}->{'shape'}=$shape;
if($shape eq 'oval') {
$cases->{$i}->{'flags'} |= BOX_FLAGS_SHAPE_OVAL;
}
}
}
if(/\\dontscan\{(.*)\}/) {
add_flag($1,BOX_FLAGS_DONTSCAN);
}
if(/\\dontannotate\{(.*)\}/) {
add_flag($1,BOX_FLAGS_DONTANNOTATE);
}
if(/\\association\{([0-9]+)\}\{(.*)\}/) {
push @pre_assoc,[$1,$2];
}
}
close(SRC);
sub bbox {
my ($c)=@_;
return($c->{'bx'}->[0],$c->{'bx'}->[1],
$c->{'by'}->[1],$c->{'by'}->[0]);
}
sub center {
my ($c,$xy)=@_;
return(($c->{$xy}->[0]+$c->{$xy}->[1])/2);
}
my $delta=(@pages ? 1/(1+$#pages) : 0);
$layout->begin_transaction('MeTe');
$layout->clear_all;
$capture->variable('annotate_source_change',time());
debug "Pre-association...";
for my $pa (@pre_assoc) {
$layout->new_association(@$pa);
}
debug "Writing to database...";
PAGE: for my $p (@pages) {
my $diametre_marque=0;
my $dmn=0;
KEY: for my $k (keys %{$p->{-cases}}) {
for(0..1) {
$p->{-cases}->{$k}->{'bx'}->[$_] *= $dpi;
$p->{-cases}->{$k}->{'by'}->[$_] = $dpi*($p->{-dim_y} - $p->{-cases}->{$k}->{'by'}->[$_]);
}
if($k =~ /position[HB][GD]$/) {
for my $dir ('bx','by') {
$diametre_marque+=abs($p->{-cases}->{$k}->{$dir}->[1]-$p->{-cases}->{$k}->{$dir}->[0]);
$dmn++;
}
}
}
$diametre_marque/=$dmn if($dmn);
my @epc=get_epc($p->{-id});
my @ep=@epc[0,1];
$layout->statement('NEWLayout')->execute(
@epc,
$p->{-p},
$dpi,$dpi*$p->{-dim_x},$dpi*$p->{-dim_y},
$diametre_marque,
$layout->source_id($src,$timestamp));
next PAGE if(!$dmn);
for my $pos ('HG','HD','BD','BG') {
die "Needs position$pos from page $p->{-id}" if(!$p->{-cases}->{'position'.$pos});
}
my $c=$p->{-cases};
my $nc=0;
for my $pos ('HG','HD','BD','BG') {
$nc++;
$layout->statement('NEWMark')->execute(
@ep,$nc,
center($c->{'position'.$pos},'bx'),
center($c->{'position'.$pos},'by')
);
}
if($c->{'nom'}) {
$layout->statement('NEWNameField')->execute(
@ep,bbox($c->{'nom'}));
}
for my $k (sort { $a cmp $b } (keys %$c)) {
if($k=~/chiffre:([0-9]+),([0-9]+)$/) {
$layout->statement('NEWDigit')
->execute(@ep,$1,$2,bbox($c->{$k}));
}
if($k=~/case:(.*):([0-9]+),([0-9]+)$/) {
my ($name,$q,$a)=($1,$2,$3);
$layout->question_name($q,$name);
$layout->statement('NEWBox')
->execute(@ep,$q,$a,bbox($c->{$k}),$c->{$k}->{'flags'});
}
}
$avance->progres($delta);
}
debug "Flagging questions...";
for my $f (@flags) {
$layout->add_question_flag($f->{'student'},$f->{'question'},$f->{'flags'});
}
debug "Ending transaction...";
$layout->end_transaction('MeTe');
$avance->fin();
|