element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      • Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Autodesk EAGLE
  • Products
  • More
Autodesk EAGLE
EAGLE User Support (English) How can I send a command "display none 17" from inside a ULP?
  • Blog
  • Forum
  • Documents
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Autodesk EAGLE to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 11 replies
  • Subscribers 181 subscribers
  • Views 1329 views
  • Users 0 members are here
Related

How can I send a command "display none 17" from inside a ULP?

lenaveryt
lenaveryt over 11 years ago

How can I send a command "display none 17" from inside a ULP?

I'm trying to create a ULP that will automatically generate a DXF file with only specific layers turned on.

I want these hard coded inside the ulp.

I'm basicly modifying the DXF.ulp to only generate layers 17,20,31,121

  • Sign in to reply
  • Cancel
Parents
  • lenaveryt
    0 lenaveryt over 11 years ago

    I haven't tried anything but the following. It does turn off the layers I don't want but exits the UPL. I need to add the check and reinvoke the ulp  like chuck suggested.

    If that doesn't work I may just do a script as was suggested.

     

    //
    // Main program: / FROM original DXF.ULP by Dr. L. Rossipaul Verlagsgesellschaft m.b.H
    //
    string OutputFileName;
    int DoDialog = argc == 1;
    string FileNameSuffix;

    for (int i = 1; i < argc; i++) {
        if      (argv[i] == "-s") FileNameSuffix = argv[++i];
        else if (argv[i] == "-u") {
                                    string u = strupr(argv[++i]);
                                    if (u) {
                                       if (u == "MM")
                                          Unit = MM;
                                       else if (u == "INCH")
                                          Unit = INCH;
                                       else {
                                          dlgMessageBox(usage + tr("<hr><b>ERROR: unknown unit: ") + argv[i] + "</b>");
                                          exit(1);
                                          }
                                       }
                                    else {
                                       dlgMessageBox(usage + tr("<hr><b>ERROR: missing <i>unit</i></b>"));
                                       exit(1);
                                       }
                                  }
        else if (argv[i] == "-a") AlwaysVectorFont = YES;
        else if (argv[i] == "-w") UseWireWidths = YES;
        else if (argv[i] == "-f") FillAreas = YES;
        else {
           dlgMessageBox(usage + tr("<hr><b>ERROR: unknown option: ") + argv[i] + "</b>");
           exit(1);
           }
        }
    string cmd[];
    int idx = 0;
    if (board)
      board(B) {
      cmd[idx++] = "DISPLAY NONE 17 20 31 121;";
      cmd[idx++] = "GRID ON;";
      exit(strjoin(cmd, '\n'));OutputFileName = B.name;/ <- ********* always exits the ULP here.
         B.layers(L) {
           string s = L.name;
           if (L.visible && s[0] == '$') {
              VisibleSupplyLayer = YES;
              IsSupplyLayer[L.number] = YES;
              }
           }
         }

    else if (schematic)
       schematic(SCH) OutputFileName = SCH.name;

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • autodeskguest
    0 autodeskguest over 11 years ago in reply to lenaveryt

    exit() will always exit the running ULP. The reentry method Chuck suggested is a good approach to running multiple process steps via a single ULP. I wouldn't split up a chunk of code unless you plan on reusing the SCR for other purposes. Why have to maintain two files if you don't need to.

     

    BTW, you don't need the cmd[idx++] = "GRID ON;"; statement if you don't need it. It was just part an example on building command strings.

     

    Eric

     

     

    On 02/20/2014 12:23 PM, Leonard Averyt wrote:

     

    if (board)

       board(B) {

       cmd[idx++] = "DISPLAY NONE 17 20 31 121;";

       cmd[idx++] = "GRID ON;";

       exit(strjoin(cmd, '\n'));OutputFileName = B.name;/ *<- *********

    always exits the ULP here.*

          B.layers(L) {

            string s = L.name;

            if (L.visible && s[0] == '$') {

               VisibleSupplyLayer = YES;

               IsSupplyLayer[L.number] = YES;

               }

            }

          }

     

    else if (schematic)

        schematic(SCH) OutputFileName = SCH.name;

     

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • lenaveryt
    0 lenaveryt over 11 years ago in reply to autodeskguest

    Thanks, I'm really weak with C and C type programming, I'm a ladder guy normally but dabble. I can usually plagiarize and modify code to make what I want, just not good at overall picture etc.
    Thanks everyone, i'll try some of these and get back

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • autodeskguest
    0 autodeskguest over 11 years ago in reply to autodeskguest

    Eric Stevens wrote:

       cmd[idx++] = "DISPLAY NONE 17 20 31 121;";

       cmd[idx++] = "GRID ON;";

       exit(strjoin(cmd, '\n'));OutputFileName = B.name;/ *<- *********

     

     

    I think the cmd[idx++] syntax is a bit of an overkill 8-)

     

         string cmd;

     

         cmd +=  "DISPLAY NONE 17 20 31 121;";

         cmd += "GRID ON;";

         exit(cmd);

     

    does the trick nicely and requires no index variable.

    On the other hand, the array methode allows to adjust the seperate

    command after the fact or to assemble multiple commands in parallel.

     

     

    by the way "OutputFileName = B.name;" in the above example will not be

    executed at all.

    --

     

    Lorenz

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • autodeskguest
    0 autodeskguest over 11 years ago in reply to autodeskguest

    Eric Stevens wrote:

       cmd[idx++] = "DISPLAY NONE 17 20 31 121;";

       cmd[idx++] = "GRID ON;";

       exit(strjoin(cmd, '\n'));OutputFileName = B.name;/ *<- *********

     

     

    I think the cmd[idx++] syntax is a bit of an overkill 8-)

     

         string cmd;

     

         cmd +=  "DISPLAY NONE 17 20 31 121;";

         cmd += "GRID ON;";

         exit(cmd);

     

    does the trick nicely and requires no index variable.

    On the other hand, the array methode allows to adjust the seperate

    command after the fact or to assemble multiple commands in parallel.

     

     

    by the way "OutputFileName = B.name;" in the above example will not be

    executed at all.

    --

     

    Lorenz

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube