-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDrawingFunctions.php
More file actions
139 lines (106 loc) · 5.26 KB
/
Copy pathDrawingFunctions.php
File metadata and controls
139 lines (106 loc) · 5.26 KB
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
<?php
/**
* A PHP generator example: drawing a IC case with pinout assingment in SVG
* @package asic-pinout-drawer
* @author Dmitry Murzinov (kakstattakim@gmail.com)
* @link : https://github.com/iDoka/asic-pinout-drawer
* @version 1.0
*/
###########################################################
function DrawingPinBody($pin_attribute) {
GLOBAL $pin_x, $pin_y;
if (($pin_attribute["side"] === "BOTTOM") || ($pin_attribute["side"] === "TOP")) {
$width = $pin_x;
$height = $pin_y;
} else if (($pin_attribute["side"] === "RIGHT") || ($pin_attribute["side"] === "LEFT")){
$width = $pin_y;
$height = $pin_x;
}
echo "<rect x=\"".$pin_attribute["body_offset_x"]."\" y=\"".$pin_attribute["body_offset_y"]."\" width=\"$width\" height=\"$height\" fill=\"".$pin_attribute["color"]."\" stroke-width=\"1\" stroke=\"rgb(0,0,0)\"/>".PHP_EOL;
}
###########################################################
function DrawingPinNumber($pin_attribute) {
GLOBAL $font_pin_number_family, $font_pin_number_size, $font_pin_number_weight, $font_pin_number_color, $xxx;
if (($pin_attribute["side"] === "BOTTOM") || ($pin_attribute["side"] === "TOP")) {
$transform = "transform=\"translate($xxx) rotate(270 ".$pin_attribute["text_offset_x"]." ".$pin_attribute["text_offset_y"].")\"";
} else if (($pin_attribute["side"] === "RIGHT") || ($pin_attribute["side"] === "LEFT")){
$transform = "";
}
if (($pin_attribute["side"] === "BOTTOM") || ($pin_attribute["side"] === "TOP")) {
$x = $pin_attribute["body_offset_x"];
$y = $pin_attribute["body_offset_y"];
} else if (($pin_attribute["side"] === "RIGHT") || ($pin_attribute["side"] === "LEFT")){
$x = $pin_attribute["text_offset_x"];
$y = $pin_attribute["text_offset_y"];
}
$font = $font_pin_number_family;
$size = $font_pin_number_size;
$weight = $font_pin_number_weight;
$color = $font_pin_number_color;
echo "<text x=\"$x\" y=\"$y\" font-family=\"$font\" font-size=\"$size\" font-weight=\"$weight\" fill=\"$color\" text-anchor=\"middle\" $transform>".$pin_attribute["index"]."</text>".PHP_EOL;
}
###########################################################
function DrawingPinName($pin_attribute) {
GLOBAL $font_pin_name_family, $font_pin_name_size, $font_pin_name_weight, $font_pin_name_color, $xxx2;
if (($pin_attribute["side"] === "BOTTOM") || ($pin_attribute["side"] === "LEFT")) {
$anchor = "end";
} else if (($pin_attribute["side"] === "TOP") || ($pin_attribute["side"] === "RIGHT")){
$anchor = "start";
}
if ($pin_attribute["side"] === "TOP")
$sign = "-";
else
$sign = "";
if (($pin_attribute["side"] === "BOTTOM") || ($pin_attribute["side"] === "TOP")) {
$transform = "transform=\"translate(0 ".$sign.$xxx2.") rotate(270 ".$pin_attribute["name_offset_x"]." ".$pin_attribute["name_offset_y"].")\"";
} else if (($pin_attribute["side"] === "RIGHT") || ($pin_attribute["side"] === "LEFT")){
$transform = "";
}
$x = $pin_attribute["name_offset_x"];
$y = $pin_attribute["name_offset_y"];
$font = $font_pin_name_family;
$size = $font_pin_name_size;
$weight = $font_pin_name_weight;
$color = $font_pin_name_color;
echo "<text x=\"$x\" y=\"$y\" font-family=\"$font\" font-size=\"$size\" font-weight=\"$weight\" fill=\"$color\" text-anchor=\"$anchor\" $transform>".$pin_attribute["name"]."</text>".PHP_EOL;
}
###########################################################
function DrawingPartnumber() {
GLOBAL $font_partnumber_family, $font_partnumber_size, $font_partnumber_weight, $font_partnumber_color;
GLOBAL $partnumber, $case_x, $case_y, $case_offset_x, $case_offset_y;
if (strlen($partnumber) == 0) {
return;
}
$x = $case_offset_x + $case_x/2;
$y = $case_offset_y + $case_y/2 + $font_partnumber_size/4;
$font = $font_partnumber_family;
$size = $font_partnumber_size;
$weight = $font_partnumber_weight;
$color = $font_partnumber_color;
echo "<!--++++++++++++++++ PartNumber ++++++++++++++++-->".PHP_EOL;
echo "<text x=\"$x\" y=\"$y\" font-family=\"$font\" font-size=\"$size\" font-weight=\"$weight\" fill=\"$color\" text-anchor=\"middle\" alignment-baseline=\"middle\">$partnumber</text>".PHP_EOL;
}
###########################################################
function DrawingLegend() {
GLOBAL $pin_color, $legend_offset_x, $legend_offset_y;
GLOBAL $case_x, $case_y, $case_offset_x, $case_offset_y, $pin_x, $pin_y;
GLOBAL $font_pin_name_family, $font_pin_name_size, $font_pin_name_weight, $font_pin_name_color;
$font = $font_pin_name_family;
$size = $font_pin_name_size;
$weight = $font_pin_name_weight; // or normal?
$color = $font_pin_name_color;
$width = $pin_y;
$height = $pin_x*1.2;
$incr_y = 0;
echo "<!--++++++++++++++++ Legend ++++++++++++++++-->".PHP_EOL;
foreach ($pin_color as $legend => $color_for_pin){
$x = $case_offset_x + $legend_offset_x;
$y = $case_offset_y + $case_y + $legend_offset_y + 1*$pin_y*$incr_y;
echo "<rect x=\"$x\" y=\"$y\" width=\"$width\" height=\"$height\" fill=\"$color_for_pin\" stroke-width=\"0\"/>".PHP_EOL;
$x = $x + $pin_y + $pin_x;
$y = $y + $pin_x;
echo "<text x=\"$x\" y=\"$y\" font-family=\"$font\" font-size=\"$size\" font-weight=\"$weight\" fill=\"$color\" text-anchor=\"start\">$legend</text>".PHP_EOL;
$incr_y++;
}
}
?>