Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jmgomez/NimForUE
Nim plugin for UE5 with native performance, hot reloading and full interop that sits between C++ and Blueprints. This allows you to do common UE workflows like for example to extend any UE class in Nim and extending it again in Blueprint if you wish so without restarting the editor. The final aim is to be able to do in Nim what you can do in C++
https://github.com/jmgomez/NimForUE
gamedev nim unreal
Last synced: 2 days ago
JSON representation
Nim plugin for UE5 with native performance, hot reloading and full interop that sits between C++ and Blueprints. This allows you to do common UE workflows like for example to extend any UE class in Nim and extending it again in Blueprint if you wish so without restarting the editor. The final aim is to be able to do in Nim what you can do in C++
- Host: GitHub
- URL: https://github.com/jmgomez/NimForUE
- Owner: jmgomez
- License: mit
- Created: 2022-05-18T16:14:53.000Z (over 2 years ago)
- Default Branch: devel
- Last Pushed: 2024-10-29T17:46:31.000Z (10 days ago)
- Last Synced: 2024-10-29T19:01:57.106Z (10 days ago)
- Topics: gamedev, nim, unreal
- Language: Nim
- Homepage:
- Size: 19.8 MB
- Stars: 488
- Watchers: 13
- Forks: 29
- Open Issues: 4
-
Metadata Files:
- Readme: Readme.md
- License: License.md
Awesome Lists containing this project
- awesome-unreal - NimForUE - Nim plugin for UE5 with native performance, hot reloading and full interop that sits between C++ and Blueprints. (Scripting)
- awesome-nim - NimForUE - Nim plugin for UE5 with native performance, hot reloading and full interop that sits between C++ and Blueprints. (Game Development / Game Engines)
README
Docs - Discord - Roadmap - Template### DISCLAIMER ###
The plugin is being used to develop a Game but it isn't feature complete yet.
To get started there is a Third Person Template implementation in NimForUE: https://github.com/jmgomez/NimTemplate### Why NimForUE?
The core idea is to have a short feedback loop while having native performance and a modern language that can access all features Unreal provides.
The plugin outputs native dynamic libraries (DLLs) that are hooked into UnrealEngine for development. When releasing the code is statically linked as published as an Unreal native plugin. This approach make the plugin portable and fast. It can run on any platform that Unreal supports (not all tested).
The design philosophy is to not change any unreal conventions on the API side of things, so anyone that knows Unreal can reuse its knowledge. The code guidelines follow (for the most part) the Nim conventions when not in contradiction with the Unreal ones.
If you have any question or wants to know more and follow the updates:
[Join us on the Discord group](https://discord.gg/smD8vZxzHh)If you dont have Discord, you can also reach out at:
[Twitter](https://twitter.com/_jmgomez_)
### Why Nim?
Nim is fast and easy to read with a good type system and a fantastic macro system, and it also has the best C++ interop in the industry.
The compiler is incredibly fast, and it's about to get faster with incremental compilation on the works.
The performance is the same as with C++ because you are outputting optimized C++ with zero overhead.
Fully control the memory if you so desire (including move semantics).
Nim Type System has everything (and probably more) that you can expect from a typed lang: generics, sum types, constraints on those, and it even has C++-like concepts (my personal favorite feature from C++) it even has hints of dependent types.
The macro system is outstanding. Just to give you an idea, await/async are implemented as a library. The same applies to Pattern Matching. This means (as you will see below) that you can create *typed* DSLs for your Unreal Projects that use the semantics that better fit your project.
Nim compile time capabilities are so good that we were able to rebuild UHT (Unreal Header Tool) at Nim's compile time.
The C++ interoperability makes this plugin stand out from the rest as you can consume any native API and implement virtual functions which is the way that Unreal extends most engine APIs.
### NimForUE 101 Playlist:
[![NimForUE 101 Playlist](https://img.youtube.com/vi/j6N6WGt2lO0/0.jpg)](https://www.youtube.com/watch?v=NuB_PjxVisw&list=PL_l806S1qgBLfGDn9khLMPFLE0k03ARoF)### Showcase at NimConf 2022:
[![Showcase at NimConf 2022](https://img.youtube.com/vi/0b3ixaz2uOg/0.jpg)](https://youtu.be/0b3ixaz2uOg)### Showcase GameFromScratch
[![Showcase GameFromScratch](https://img.youtube.com/vi/Cdr4-cOsAWA/0.jpg)](https://youtu.be/Cdr4-cOsAWA)## Examples
The whole Cpp ThirdPersonTemplate in Nim would be like this:```nim
uClass ANimCharacter of ACharacter:
(Reinstance)
(config=Game)
uprops(EditAnywhere, BlueprintReadOnly, DefaultComponent, Category = Camera):
cameraBoom : USpringArmComponentPtr
uprops(EditAnywhere, BlueprintReadOnly, DefaultComponent, Attach=(cameraBoom, SpringEndpoint), Category = Camera):
followCamera : UCameraComponentPtr
uprops(EditAnywhere, BlueprintReadOnly, Category = Input):
defaultMappingContext : UInputMappingContextPtr
(jumpAction, moveAction, lookAction) : UInputActionPtrdefaults: # default values for properties on the cdo
capsuleComponent.capsuleRadius = 40
capsuleComponent.capsuleHalfHeight = 96
bUseControllerRotationYaw = false
characterMovement.jumpZVelocity = 700
characterMovement.airControl = 0.35
characterMovement.maxWalkSpeed = 500
characterMovement.minAnalogWalkSpeed = 20
characterMovement.brakingDecelerationWalking = 2000
characterMovement.bOrientRotationToMovement = true
cameraBoom.targetArmLength = 400
cameraBoom.busePawnControlRotation = true
followCamera.bUsePawnControlRotation = true#Notice this override an actual C++ function that exists in the base type.
proc setupPlayerInputComponent(playerInputComponent : UInputComponentPtr) {.virtual, override.} =
let pc = ueCast[APlayerController](self.getController())
if pc.isNotNil():
let inputComponent = ueCast[UEnhancedInputComponent](playerInputComponent)
let subsystem = tryGetSubsystem[UEnhancedInputLocalPlayerSubsystem](pc).get()
subsystem.addMappingContext(self.defaultMappingContext, 0)
inputComponent.bindAction(self.jumpAction, ETriggerEvent.Triggered, self, n"jump")
inputComponent.bindAction(self.jumpAction, ETriggerEvent.Completed, self, n"stopJumping")
inputComponent.bindAction(self.moveAction, ETriggerEvent.Triggered, self, n"move")
inputComponent.bindAction(self.lookAction, ETriggerEvent.Triggered, self, n"look")
ufuncs:
proc move(value: FInputActionValue) =
let
movementVector = value.axis2D()
rot = self.getControlRotation()
rightDir = FRotator(roll: rot.roll, yaw: rot.yaw).getRightVector()
forwardDir = FRotator(yaw: rot.yaw).getForwardVector()
self.addMovementInput(rightDir, movementVector.x, false)
self.addMovementInput(forwardDir, movementVector.y, false)proc look(value: FInputActionValue) =
let lookAxis = value.axis2D()
self.addControllerYawInput(lookAxis.x)
self.addControllerPitchInput(lookAxis.y)uClass ANimGameMode of AGameModeBase:
proc constructor(initializer: FObjectInitializer) = #Similar to default but allows you to write full nim code
let classFinder = makeClassFinder[ACharacter]("/Game/ThirdPerson/Blueprints/BP_ThirdPersonCharacter")
self.defaultPawnClass = classFinder.class```
This code can be found at src/examples/actorexample. There are more examples inside that folder. You can do `import examples/example` in from `game.nim` (see the NimTemplate) to play with it.
```nim
#Nim UClasses can derive from the same classes that blueprints can derive from.uClass AExampleActor of AActor:
(BlueprintType, Blueprintable) #Class specifiers follow the C++ convention.
uprops(EditAnywhere, BlueprintReadWrite): #you can declare multiple UPROPERTIES in one block
exampleValue : FString #They are declare as nim properties.
anotherVale : int #notice int in nim is int64. while in c++ it is int32.
anotherValueInt32 : int32 #this would be equivalent to int32
predValue : FString = "Hello" #you can assign a default value to a property.
predValueInt : int = 20 + 10 #you can even use functions (the execution is deferred)
nameTest : FString = self.getName() #you can even use functions within the actor itself. It is accessible via this or self.#In general when using the equal symbol in a uClass declaration, a default constructor will be generated.
#you can specify a custom constructor if you want to by defining a regular nim function and adding the pragma uconstructorproc myExampleActorCostructor(self: AExampleActorPtr, initializer: FObjectInitializer) {.uConstructor.} =
UE_Log "The constructor is called for the actor"
self.anotherVale = 5
#you can override the values set by the default constructor too since they are added adhoc before this constructor is called.
self.predValue = "Hello World"#Notice that you rarelly will need to define a custom constructor for your class. Since the CDO can be set within the DSL.
#UFunctions
#UFunctions can be added by adding the pragma uFunc, and for each meata, another pragma:
#Since in nim functions are separated from the type they are declared in, you need to specify the type as the first argument.proc myUFunction(self: AExampleActorPtr, param : FString) : int32 {. ufunc, BlueprintCallable .} =
UE_Log "UFunction called"
5#You can also use the uFunctions macro to declare multiple uFunctions at once. The preferred way is still to use them in an uClass block like shown above.
uFunctions:
(BlueprintCallable, self:AExampleActorPtr) #you must specify the type and any shared meta like this.proc anotherUFunction(param : FString) : int32 = 10 #now you can define the function as you normally would.
proc yetAnotherUFunction(param : FString) : FString =
self.getName() #you can access to the actor itself by the name you specify in the uFunctions macro.
proc customPragma(param : FString) : int32 {. BlueprintPure .} = 10 #you can also specify custom pragmas per functions rather than creating a new blockproc callFromTheEditor() {. CallInEditor .} =
UE_Log "Call from the editor"
```
Which produces:
![Blueprint](https://media.discordapp.net/attachments/844939530913054752/1004338096160120913/unknown.png)## Install
1. Clone the repo inside `YourGame/Plugins`
2. Run `nimble nuesetup` from `YourGame/Plugins/NimForUE`A video showcasing the installation process in more detail:
[![Installing NimForUE video](https://img.youtube.com/vi/sT8-Oz7k-VU/0.jpg)](https://youtu.be/sT8-Oz7k-VU)
## VSCode setup
For Intellisense from nimsuggest, install the `nim-lang.org` extension.
When setting up a project:
- Create a new workspace (it can be in the UE project folder).
- File>`Add Folder to Workspace`:
* The `NimForUE` directory that contains `game.nim`
* The `NimForUE` plugin directory.
* The `imported` directory in NimForUE plugin directory i.e `.\src\nimforue\unreal\bindings\imported`## Debugging in Visual Studio
Compile your game with the debug flag, `nue game --debug`.
Then you can debug the game with nim source maps in Visual Studio.To switch the project's target configuration use the `targetconfig` task.
To debug the engine along with your project, use `nue targetconfig --debug` and `nue targetconfig --dev` to switch back to Development.
This will modify the NimForUE json config file and recompile the plugin and game dll.## Troubleshooting
### Windows
- The project path must not be too long, the default location `C:/Users//Unreal Projects` is too long for instance.You can move the "Unreal Projects" folder to the root of a drive and symlink it back to the user document directory if needed by other process / applications.