Check out our discord at https://discord.gg/3u69jMa 

Writing Native Code: Difference between revisions

From SWRC Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 13: Line 13:
For the sake of this tutorial I'm going create a really simple and quite useless class that has only one native function which writes a string to the log file.
For the sake of this tutorial I'm going create a really simple and quite useless class that has only one native function which writes a string to the log file.


<code>
<codeblock>
class TestNativeClass extends Actor native
class TestNativeClass extends Actor native
                                     placeable;
                                     placeable;
Line 27: Line 27:
Log(TestInt); //Printing out TestInt which has been modified in C++ code
Log(TestInt); //Printing out TestInt which has been modified in C++ code
}
}
</code>
</codeblock>

Revision as of 11:41, 19 May 2024

Note: Some C++ and UnrealScript knowledge is required.

Introduction

Native coding in the Unreal Engine refers to code that is written in C++ instead of UnrealScript. This C++ code can be called from a script to execute tasks that are either too slow in UnrealScript (about 20 times slower than C++) or are not possible at all due to the limited features of the language. Native coding is only officially supported by Unreal Tournament from 1999 since it is the only game that has its native header files publicly available for download. Epic never released the headers for newer versions of the engine due to licensing issues with third party code. However, after countless hours of work it was possible to modify the UT99 headers in such a way that they're usable with Republic Commando. This offers a lot of new opportunities to modders or people who just like to experiment with old games like me.

The way native coding works in Unreal is that you compile your scripts into a .u package and then when you write your C++ code you compile it as a dll with the same name as your package. When the game is loading an UnrealScript class and detects that it was declared as native, it also looks for a dll which contains the native code for this UnrealScript class.

Getting Started

Before you can write any C++ code you first need to create a UnrealScript class that you declare as native. This tutorial assumes that you already know how to compile UnrealScript code with ucc. If you don't, then the download for the Republic Commando UCC contains a brief explanation in its readme.

For the sake of this tutorial I'm going create a really simple and quite useless class that has only one native function which writes a string to the log file.

<codeblock> class TestNativeClass extends Actor native

                                   placeable;

var int TestInt;

native final function TestNativeFunc(string param);

function PostBeginPlay(){ Super.PostBeginPlay();

TestNativeFunc("Hello World!"); Log(TestInt); //Printing out TestInt which has been modified in C++ code } </codeblock>