-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxx.pl
166 lines (147 loc) · 5.45 KB
/
xx.pl
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
#!/usr/bin/perl
use strict;
use Tk;
use Win32;
use Encode;
use Genesis;
use FBI;
our $host = shift;
our $f = new Genesis($host);
our $JOB = $ENV{JOB};
our $STEP = $ENV{STEP};
###_________________________________
kysy();
use constant I2M=>25.397;
my $mode_size=[
[8, 12, undef, undef],
[9, 12, undef, undef],
[9, 16, undef, undef],
[10, 16, undef, undef],
[12, 16, undef, undef],
[12, 18, undef, undef],
[16, 18, undef, undef],
[16, 20, undef, undef],
[12, 20, undef, undef],
[13, 16, undef, undef],
[13.3, 16, undef, undef],
[13.3, 16.3, undef, undef],
[21, 9.6, undef, undef],
[20.5, 9.6, undef, undef],
[18, 9.6, undef, undef],
[13, 12, undef, undef],
[14, 16, undef, undef],
[14, 9.6, undef, undef],
[18.5, 12.2, undef, undef],
[21, 9.6, undef, undef],
];
my $margin=[
['TOP::MM', undef,],
['BOT::MM', undef,],
['RIG::MM', undef,],
['LEF::MM', undef,],
['SPACE::MM',2 ,],
];
my @cell=(
['UNIT::X:MM', undef,],
['UNIT::Y:MM', undef,],
['NUMB::Lay',undef],
);
my @title_cn=('?¡ä¡ã?Inch', '?¡ä¡ã?Inch','?¡ä¡ã?¨ºy', '¨¤?¨®??¨º');
my $info;
###__________________________________info genesis
if ( exists_entity('step',"$JOB/pcs") eq 'yes' ) {
my @prof_limits=prof_limits('pcs','mm');
($cell[0]->[1],$cell[1]->[1])=( $prof_limits[2] - $prof_limits[0], $prof_limits[3] - $prof_limits[1]);
}elsif ( exists_entity('step',"$JOB/pcb") eq 'yes' ){
my @prof_limits=prof_limits('pcb','mm');
($cell[0]->[1],$cell[1]->[1])=( $prof_limits[2] - $prof_limits[0], $prof_limits[3] - $prof_limits[1]);
}else{
($cell[0]->[1],$cell[1]->[1])=(0,0);
}
$cell[0]->[1]=sprintf('%.2f', $cell[0]->[1] );
$cell[1]->[1]=sprintf('%.2f', $cell[1]->[1] );
$cell[2]->[1]=layer_count($JOB);
if ($cell[2]->[1] >=5) {
map{ $margin->[$_][1]=18 }(0..3);
}elsif ($cell[2]->[1] >=3){
map{ $margin->[$_][1]=13 }(0..3);
}else{
map{ $margin->[$_][1]=8 }(0..3);
};
###___________________________________Tk
my ($col,$row)=(0,0);
my $mw=MainWindow->new; $mw->geometry("+200+100") ; $mw ->title(encode('utf8',"Better and better"));
foreach (@{$margin}) {
$mw->Label(-text=>$_->[0],-relief=>'g',-width=>10)->grid(-column=>$col,-row=>$row++);
$mw->Entry(-textvariable=>\$_->[1],-relief=>'g',-width=>10)->grid(-column=>$col+1,-row=>$row-1);
}
foreach (0..$#cell) {
$mw->Label(-text=>$cell[$_]->[0],-relief=>'g',-width=>10)->grid(-column=>$col+2,-row=>$_);
$mw->Label(-textvariable=>\$cell[$_]->[1],-relief=>'g',-width=>10)->grid(-column=>$col+3,-row=>$_);
}
foreach my $i (@title_cn) {
$mw->Label(-text=>decode('utf8',$i),-width=>10)->grid(-column=>$col++,-row=>$row);
}
foreach (@$mode_size) {
$mw->Entry(-textvariable=>\$$_[0],-relief=>'g',-width=>10)->grid(-column=>0,-row=>++$row);
$mw->Entry(-textvariable=>\$$_[1],-relief=>'g',-width=>10)->grid(-column=>1,-row=>$row);
$mw->Label(-textvariable=>\$$_[2],-relief=>'g',-width=>10)->grid(-column=>2,-row=>$row);
$mw->Label(-textvariable=>\$$_[3],-relief=>'g',-width=>10)->grid(-column=>3,-row=>$row);
}
$mw->Label(-textvariable=>\$info,-width=>10,-relief=>'sun',-width=>'42')->grid(-column=>0,-row=>++$row,-columnspan=>5);
$mw->Button(-text=>"Apply",-width=>10,-command=>\&apply)->grid(-column=>0,-row=>++$row);
apply();
MainLoop();
###_______________________________________________________________sub
sub apply {
if ( $info=check_error() ) {return };
my ($cell_x,$cell_y,)=($cell[0]->[1],$cell[1]->[1],);
my ($top,$bot,$rig,$lef,$space)=map{ $margin->[$_][1] }(0..4);
my $flage=0;
foreach (@$mode_size) {
my ($px,$py)=( $_->[0], $_->[1] );
($$_[2], $$_[3])=count_pnl($px*I2M, $py*I2M, $cell_x, $cell_y, $top, $bot, $rig ,$lef, $space);
if ( $$_[3] > $flage ){
$flage = $$_[3];
$info="The max is ${px}X${py} $$_[2] pcs $$_[3] % ";
};
}
}
sub count_pnl {
my ($px,$py,$cell_x,$cell_y,$top, $bot, $rig ,$lef, $space)=@_;
my $num_of_not_rotate=count_base($px,$py,$cell_x,$cell_y,$top, $bot, $rig ,$lef, $space);
my $num_of_yes_rotate=count_base($py,$px,$cell_x,$cell_y,$top, $bot, $rig ,$lef, $space); ###rotate px<=>py
my ($max)=sort{$b<=>$a}($num_of_not_rotate, $num_of_yes_rotate); ###save max
my $precent=sprintf('%.2f', ($cell_x*$cell_y*$max)/($px*$py)*100 );
return ( $max, $precent );
}
sub count_base {
my ($x,$y,$cell_x,$cell_y,$top, $bot, $rig ,$lef, $space)=@_;
my ($width,$long)=sort{$a<=>$b}($cell_x,$cell_y);
my $num_max=0;
for (my $i=0; $i*$long+$lef+$bot+($i-1)*$space <= $x; $i++) {
my $num_r_not=$i * num_of_unitary($y,$width,$space,$top,$bot);
my $res_x;
($i == 0) ? ($res_x=$x) : ( $res_x=$x-$i*$long-($i-1)*$space );
my $num_r_yes= num_of_unitary($res_x,$width,$space,$rig+$space,$lef) * num_of_unitary($y,$long,$space,$top,$bot);
$num_max = ($num_r_yes+$num_r_not) if ($num_r_yes+$num_r_not) > $num_max;
}
return $num_max;
}
sub num_of_unitary {
my ($long, $cell, $space, $marg_a, $marg_b)=@_;
my $number=0;
while ( ($number+1)*$cell + $number*$space + $marg_a + $marg_b <= $long ) {
$number ++;
}
return $number;
}
sub check_error {
foreach (0..4) {
if ( $margin->[$_][1] <= 0 or $margin->[$_][1] =~ m/[^\d\.]/ ) { return "$margin->[$_][0] Error " };
}
foreach (@$mode_size) {
if ( $$_[0] <= 0 or $$_[0] > 48 or $$_[0]=~m/[^\d\.]/ ) { return "Pnale size Error:: $$_[0] " };
if ( $$_[1] <= 0 or $$_[1] > 48 or $$_[1]=~m/[^\d\.]/ ) { return "Pnale size Error:: $$_[1] " };
}
}