Overview
Comment: | Sorts components alphabetically (type:name) within the categories: internal ports, components, 0 junctions and 1 junctions. Standardising the order in which components are listed allows models |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
9776515d1e59af26d9dca724da78b3fd |
User & Date: | geraint@users.sourceforge.net on 2004-08-04 19:46:42 |
Other Links: | branch diff | manifest | tags |
Context
2004-08-04
| ||
19:51:14 | Specifies maintainers address. check-in: 5529613571 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
19:46:42 |
Sorts components alphabetically (type:name) within the categories: internal ports, components, 0 junctions and 1 junctions. Standardising the order in which components are listed allows models | |
19:41:47 | Writes 0 junctions before 1 junctions. check-in: 459eb924a5 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/awk/rbg_fig2m.awk from [154be7af66] to [b9d77f2ccd].
︙ | |||
8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | + + + | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.45 2004/04/07 12:17:43 gawthrop ## Handles new Fig header line. ## ## Revision 1.44 2002/05/25 09:23:47 gawthrop ## Self-naming components: name is mttTYPE or mttTYPE_2 ... ## ## Revision 1.43 2002/05/22 10:33:18 gawthrop ## Nameless components are now named according to type - replaces old ## mtt1 etc style. ## |
︙ | |||
218 219 220 221 222 223 224 | 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | + - + + + + + + | # field 3 is the CR arguments # The fig file represents components by 14 fields # field 1 = 4 # fields 12 and 13 are the coordinates # field 14 is the type:name string terminated by \001 # To prevent text being confused with components, components consist # of alphanumeric characters and : and _ only. # |
︙ | |||
266 267 268 269 270 271 272 273 274 275 276 277 278 279 | 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 | + + + + + + + + + + + + + + + + + + + + | args = $3; label[i_label,1] = name; label[i_label,2] = CR; label[i_label,3] = args; } } function sort_cmp() { # Sorts components alphabetically by type then name for (i = 1; i <= i_label; i++) { name = label[i,1]; type = comp_type[name]; cmp_list[i] = sprintf ("'%s:%s'", type, name); } asort (cmp_list); for (i = 1; i <= i_label; i++) { for (j = 1; j <= i_label; j++) { name = label[j,1]; type = comp_type[name]; typename = sprintf ("'%s:%s'", type, name); if (typename == cmp_list[i]) { sort_cmp_list[i] = j; } } } } function fig_info() { # Grabs the fig-file information for a component return(sprintf("%s %s %s %s %s %s %s %s %s %s %s ", \ $1, $2, $3, $4, $5, $6, $7, \ $8, $9, $10, $11)) } |
︙ | |||
302 303 304 305 306 307 308 | 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 | - + | # It is terminated by \001 - so delete this termination str = substr(str,1,length(str)-4); # Zap maths ##gsub(/[()-+*/]/,"",str); |
︙ | |||
733 734 735 736 737 738 739 740 741 742 | 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 | + + - + - + - - + + + - + + + - - + + + + + + + + + + + + + + + + + + + - + | for (i = 1; i <= i_stroke; i++) print strokes[i] >> b_file; printf("];\n") >> b_file; printf("rcomponents = [") >> b_file; j = 0; sort_cmp(); # sort components alphabetically # Do the port components, in order of appearance, first. for (i = 1; i <= i_label; i++) { num = sort_cmp_list[i]; |
︙ |