• 您(nín)的位置(zhì):首頁 > 新聞動態 > UE4

    虛幻UE4如何鏈接第三方庫(lib和dll)

    2018/3/20      點擊:
    摘要:寫這個文章主要是被UE官方的wiki和answerhub誤導了很(hěn)久,這本來是一個很常見和(hé)基本的問題,但是無論是官方的wiki或者是論壇上的提問都十分散亂並且(qiě)充斥各種錯誤,因此(cǐ)記錄下這個在開發中時常遇到的問(wèn)題(tí)。
    在開發中經常遇到的問題就是加入某第三方庫的支持,這樣的第三(sān)方庫(kù)往往屬於無源碼,而且可能是(shì)靜態lib或者是動態dll甚至兩者皆有。UE4的編譯管理用的是自己的UBT(unreal binary tool)因此鏈接第三(sān)方庫的工作主要是編(biān)寫UBT腳本。
    1.以插件方式集成.
    基(jī)本上這個是*推薦的(de)集成第三方(fāng)庫的方式,因為能夠很好的隔離你的代碼和第三方代碼的影(yǐng)響,在UE4的源碼裏也可以看到(dào)很多第(dì)三方庫都是這麽集成的,比如paper2D,leapmotion等等。在UE4中新建插件的方式略去不表,當你新建完你的插件之後,你會在插件的(de)代碼目錄下看到一個
    xxx.build.cs
    接下來要做的就是修改這個腳本:
    得到當前(qián)路徑
    1. private string ModulePath
    2. {
    3.    get { return ModuleDirectory; }
    4. }
    關於第三方庫放的位置,一般是(shì)在plugin的源碼同級文件夾下建一個ThirdParty文件夾,裏麵(miàn)放上include lib等(děng)等
    。得到ThirdParty文件夾(jiá)的路徑
    1. private string ThirdPartyPath
    2. {
    3.         get { return Path.GetFullPath(Path.Combine(ModulePath,"../../ThirdParty/")); }
    4. }
    為工程(chéng)添加(jiā)include第三方庫的頭文件(jiàn)路徑
    在模快的構造函數裏加上:
    1. PublicIncludePaths.AddRange(
    2.         new string[] { 
    3.              Path.Combine(ThirdPartyPath, "xxx", "Include"),
    4.         }
    5.         );
    6.             
    7.  
    8. PrivateIncludePaths.AddRange(
    9.         new string[] {
    10.             Path.Combine(ThirdPartyPath, "Foxit", "Include"),
    11.         }
    12.         );
    鏈接第三方庫的Lib
    接下(xià)來需要在編譯工程時加入第(dì)三方靜態庫的鏈接,靜態鏈接屬於工程在編譯期間做(zuò)的(de)事情,因此這(zhè)塊需要通過cs腳本完成,而dll動態鏈接庫的加載是運行期的事,因(yīn)此需要在cpp文件中執行。
    我們新建一個(gè)叫(jiào)LoadxxxLib的函數,並把它放在模塊的構(gòu)造函數結尾執行:
    1. public bool LoadxxxLib(TargetInfo Target)
    2.     {
    3.         bool isLibararySupported = false;
    4.         if ((Target.Platform == UnrealTargetPlatform.Win64) || (Target.Platform == UnrealTargetPlatform.Win32))
    5.         {
    6.             isLibararySupported = true;
    7.             string PlatformString = (Target.Platform == UnrealTargetPlatform.Win64) ? "Win64" : "Win32";
    8.             PublicAdditionalLibraries.Add(Path.Combine(LibraryPath, PlatformString + ".lib"));
    9.             PublicDelayLoadDLLs.Add(PlatformString + ".dll");
    10.             RuntimeDependencies.Add(new RuntimeDependency(LibraryPath + PlatformString + ".dll"));
    11.         }
    12.         return isLibararySupported;
    13.     }

    這樣就(jiù)可以保證在編譯期鏈接上我們的第三方lib。


    鏈接動態DLL
    這個工作需要在plugin的運行(háng)期完成,在插件的source文(wén)件下找到一個與(yǔ)插件名字同名(míng)的cpp文件打開。會看到一個StartupModule的函數,我們需要在這裏得到dll文件的handle。

    在StartupModule中添加下麵的代(dài)碼:

    1. void FXXXModule::StartupModule()
    2. {
    3. #if PLATFORM_64BITS
    4.     FString platform = TEXT("win64.dll");
    5. #else
    6.     FString platform = TEXT("win32.dll");
    7. #endif
    8.     FString path = IPluginManager::Get().FindPlugin("XXX")->GetBaseDir(); 
    9.     FString dllpath = path + "/ThirdParty/XXX/Lib/" + platform;
    10.     PdfDllHandle = FPlatformProcess::GetDllHandle(*dllpath);
    11.     if (!PdfDllHandle)
    12.     {
    13.         UE_LOG(LogTemp, Warning, TEXT("Failed to load PDF library."));
    14.     }
    15. }
    這裏我們用的(de)是PluginManager找到的插件所在的路徑,值得注意的是使用這個函數時需要在build.cs中加入
    1. PrivateDependencyModuleNames.AddRange(
    2.             new string[]
    3.             {
    4.                 ...
    5.                 "Projects",
    6.             }
    7.             );

    否則工程會鏈接出錯。


    91网站入口_91视频导航_91短视频在线_91视频在线免费观看