NX二次開發:Checkmate例子根據dfa文件檢查模型數據

来源:https://www.cnblogs.com/huangym1/archive/2023/03/29/17266787.html
-Advertisement-
Play Games

NX中的checkmate功能是用於檢查模型、圖紙數據的工具,在UGOPEN中有例子。手動操作可以檢查已載入的裝配下所有零部件,可以設置通過後保存模型,檢查結果保存到Teamcenter中,預設保存在零組件版本下。 代碼中可以設置多個檢查規則。相關設置可以在用戶預設設置中進行設置。 1 // 2 / ...


NX中的checkmate功能是用於檢查模型、圖紙數據的工具,在UGOPEN中有例子。手動操作可以檢查已載入的裝配下所有零部件,可以設置通過後保存模型,檢查結果保存到Teamcenter中,預設保存在零組件版本下。

代碼中可以設置多個檢查規則。相關設置可以在用戶預設設置中進行設置。

  1 //=============================
  2 // Checkmate例子
  3 //=============================
  4 // Mandatory UF Includes
  5 #include <uf.h>
  6 #include <uf_object_types.h>
  7 #include <uf_draw.h>
  8 #include <uf_part.h>
  9 #include <uf_ugmgr.h>
 10 #include <uf_ui.h>
 11 #include <uf_obj.h>
 12 #include <uf_drf.h>
 13 
 14 // Std C++ Includes
 15 #include <iostream>
 16 #include <sstream>
 17 #include <vector>
 18 #include <string>
 19 #include <algorithm>
 20 #include <tchar.h>
 21 #include <atlconv.h>
 22 #include <shellapi.h>
 23 
 24 // check mate
 25 #include <NXOpen/Validate_ValidationManager.hxx>
 26 #include <NXOpen/Validate_Validator.hxx>
 27 #include <NXOpen/Validate_ValidatorOptions.hxx>
 28 #include <NXOpen/Validate_Parser.hxx>
 29 
 30 #include <windows.h>
 31 #undef CreateDialog
 32 #pragma comment(lib,"shell32.lib")
 33 
 34 using namespace NXOpen;
 35 using std::string;
 36 using std::exception;
 37 using std::stringstream;
 38 using std::endl;
 39 using std::cout;
 40 using std::cerr;
 41 
 42 int ExecuteCheckerAndGetResults();
 43 
 44 extern "C" DllExport void ufusr( char *parm, int *returnCode, int rlen )
 45 {
 46     try
 47     {
 48         UF_CALL(UF_initialize());
 49 
 50         ExecuteCheckerAndGetResults();
 51 
 52         UF_CALL(UF_terminate());
 53     }
 54     catch (const NXException& e1)
 55     {
 56         UI::GetUI()->NXMessageBox()->Show("NXException", NXOpen::NXMessageBox::DialogTypeError, e1.Message());
 57     }
 58     catch (const exception& e2)
 59     {
 60         UI::GetUI()->NXMessageBox()->Show("Exception", NXOpen::NXMessageBox::DialogTypeError, e2.what());
 61     }
 62     catch (...)
 63     {
 64         UI::GetUI()->NXMessageBox()->Show("Exception", NXOpen::NXMessageBox::DialogTypeError, "Unknown Exception.");
 65     }
 66 }
 67 
 68 extern "C" DllExport int ufusr_ask_unload()
 69 {
 70     return (int)NXOpen::Session::LibraryUnloadOptionImmediately;// 調試用
 71     //return (int)NXOpen::Session::LibraryUnloadOptionAtTermination;// 程式發佈用
 72     //return (int)NXOpen::Session::LibraryUnloadOptionExplicitly;
 73 }
 74 
 75 int ExecuteCheckerAndGetResults()
 76 { 
 77     // Get the NX session, work part, display part.
 78     Session *theSession = Session::GetSession();
 79     Part *workPart(theSession->Parts()->Work());
 80     Part *displayPart(theSession->Parts()->Display());
 81 
 82     // Get the NX Check-Mate Validator object.
 83     std::vector<Validate::Validator *> validators1;
 84     theSession->ValidationManager()->FindValidator("Check-Mate", validators1);
 85 
 86     // Get the NX Check-Mate ValidatorOptions, and set options.
 87     Validate::ValidatorOptions *validatorOptions1;
 88     validatorOptions1 = validators1[0]->ValidatorOptions();
 89 
 90     validatorOptions1->SetSkipChecking(false);
 91     validatorOptions1->SetSkipCheckingDontLoadPart(false);
 92     validatorOptions1->SetSaveResultInTeamcenter(Validate::ValidatorOptions::SaveModeTypesSaveIfPassed);
 93     validatorOptions1->SetSavePartFile(Validate::ValidatorOptions::SaveModeTypesSaveIfPassed);
 94     validatorOptions1->SetSaveResultInPart(false);
 95 
 96     // 2023_0328
 97     validatorOptions1->SetAutoDisplayResults(Validate::ValidatorOptions::ResultsDisplayModeTypesAlwaysDisplay);
 98     validatorOptions1->SetExcludeNonOwnerParts(true);
 99     validatorOptions1->SetExcludeReadonlyParts(true);
100     validatorOptions1->SetGenerateCheckFlag(false);
101     validatorOptions1->SetGenerateLogFile(false);
102     validatorOptions1->SetStopOnError(false);
103     validatorOptions1->SetStopOnWarning(false);
104     // 2023_0328
105 
106     // Clear part nodes if any.
107     validators1[0]->ClearPartNodes();
108 
109     // Appends the full path of a part file or the current work part.
110     validators1[0]->AppendPartNode(workPart);
111 
112     // Manually add this line to clean all existing tests
113     validators1[0]->ClearCheckerNodes();
114 
115     // Select a checker and append it into the Validator object.
116     std::vector<NXString> classnames1(2);
117     classnames1[0] = "%mqc_report_browseable_features";//mqc_profile_modeling_cn.dfa
118     classnames1[1] = "%mqc_profile_modeling_cn";//mqc_profile_modeling_cn.dfa
119     validators1[0]->AppendCheckerNodes(classnames1);
120 
121     // Execute the Check-Mate checker.
122     Validation::Result status1;
123     status1 = validators1[0]->Commit();
124 
125     // Get a Parser object, and show the checker result.
126     std::vector<Validate::Parser *> parsers1;
127     theSession->ValidationManager()->FindParser("Validation Gadget", parsers1);
128     parsers1[0]->ClearResultObjects();
129     parsers1[0]->SetDataSource(Validate::Parser::DataSourceTypesMostRecentRun);
130     parsers1[0]->SetMaxDisplayObjects(10);
131     parsers1[0]->Commit();
132 
133     return 0;
134 }

 

設置、保存後、用戶預設設置截圖:

 

 

 

 調試GIF動態圖:

 

黃河遠上白雲間,一片孤城萬仞山。
羌笛何須怨楊柳,春風不度玉門關。

 

詩人初到涼州,面對黃河、邊城的遼闊景象,又耳聽著《折楊柳》曲,有感而發,寫成了這首表現戍守邊疆計程車兵思念家鄉情懷的詩作。

  詩的前兩句描繪了西北邊地廣漠壯闊的風光。首句抓住自下(游)向上(游)、由近及遠眺望黃河的特殊感受,描繪出“黃河遠上白雲間”的動人畫面:洶涌澎湃波浪滔滔的黃河竟像一條絲帶迤邐飛上雲端。寫得真是神思飛躍,氣象開闊。詩人的另一名句“黃河入海流”,其觀察角度與此正好相反,是自上而下的目送;而李白的“黃河之水天上來”,雖也寫觀望上游,但視線運動卻又由遠及近,與此句不同。“黃河入海流”和“黃河之水天上來”,同是著意渲染黃河一瀉千里的氣派,表現的是動態美。而“黃河遠上白雲間”,方向與河的流向相反,意在突出其源遠流長的閑遠儀態,表現的是一種靜態美。同時展示了邊地廣漠壯闊的風光,不愧為千古奇句。

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 終於在2023/3/29日,黑馬程式員旗下的ssm框架視頻看完了,也是總結了1萬多字的筆記,把黑馬的和自己的整合了一下 完結撒花,接下來開始學習SpringBoot和軟考中級設計師。 總的來說,我還是比較喜歡.NET,SSM配置實在是太麻煩了,基本沒怎麼寫代碼,時間都花到配置文件上面去了。 筆記部分 ...
  • JSON Web Token(縮寫 JWT)是目前最流行的跨域認證解決方案。 傳統的session認證 http協議本身是一種無狀態的協議,而這就意味著如果用戶向我們的應用提供了用戶名和密碼來進行用戶認證,那麼下一次請求時,用戶還要再一次進行用戶認證才行,因為根據http協議,我們並不能知道是哪個用 ...
  • 功能實現02 6.功能05-顯示家居信息 6.1需求分析 進入後臺系統,可以在頁面進行所有家居信息的展示 6.2思路分析 完成從後端代碼從mapper(dao層)-->Service層-->Controller層,並對代碼進行測試 完成前端代碼,使用axios發送http請求,返回所有家居信息,將數 ...
  • 使用 VLD 記憶體泄漏檢測工具輔助開發時整理的學習筆記。本篇介紹 VLD 配置文件中配置項 StartDisabled 的使用方法。 ...
  • QAbstractBUtton: 所有按鈕控制項的基類 提供按鈕的通用功能 繼承自QWidget 屬於抽象類別,不能直接去使用,必須藉助於子類(除非你覺得子類不夠用,想自定義一個按鈕) 大部分功能之前已經使用過,在這裡只作簡單介紹 文本設置: setText(str) :設置按鈕提示文本 text() ...
  • 推薦一些學習qml教程 Qt官方的QML教程: https://doc.qt.io/qt-5/qtqml-index.html 這是一個由Qt官方提供的完整的QML教程,包含了所有基本知識和高級語法。 QML中文網:http://www.qmlcn.com/ 這是一個非常不錯的中文QML學習網站,提 ...
  • 面向對象2 訪問修飾符 | | private | default | protected | public | | | | | | | | 當前類 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_che ...
  • JavaSE 運算符 算術運算符:+,-,*,/,%,++(自增),--(自減) i++:先用後+1;++i:先+1後用 賦值運算符:= 擴展賦值運算符:+=,-=,*=,/= a+=b >a=a+b: ​ 可讀性差,但是編譯效率高,且會自動進行類型轉換; ​ 當ab為基本數據類型時,a+b和b+a ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...