A Valheim mod stub project using Jötunn including build tools for debugging your code in Visual Studio and a basic Unity project stub. There is no actual plugin content included, just a bare minimum plugin class.
These are quick setup steps with no context provided. Please see Jötunns Github Pages for more in depth documentation.
How to setup the development enviroment for this project.
- Install Visual Studio 2019 and add the C# workload.
- Download this package: BepInEx pack for Valheim
- Unpack into your Valheim root folder. You should now see a new folder called
<ValheimDir>\unstripped_corlib
and more additional stuff. - Fork and clone this repository using git. That should create a new folder
JotunnModStub
. You can also use the template function of github to create a new, clean repo out of it and clone that. - Create a new environment file
Environment.props
in the projects base path<JotunnModStub>
. Paste this snippet and change the path according to your local Valheim installation.
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<!-- Needs to be your path to the base Valheim folder -->
<VALHEIM_INSTALL>F:\Steam\steamapps\common\Valheim</VALHEIM_INSTALL>
</PropertyGroup>
</Project>
- Open the Solution file
<JotunnModStub>\JotunnModStub.sln
. Right-click on the project or solution in the Solution Explorer and selectManage NuGet packages...
. It should prompt you a message at the top that some NuGet-Packages are missing. Click "Restore" and restart Visual Studio when finished. - Rename the Solution/Project and everything related so that it resembles your own projects name. This includes the assembly information as well as the Unity project.
Included in this repo is a PowerShell script publish.ps1
. The script is referenced in the project file as a post-build event. Depending on the chosen configuration in Visual Studio the script executes the following actions.
- The compiled dll file for this project is copied to
<ValheimDir>\BepInEx\plugins
. - A .mdb file is generated for the compiled project dll and copied to
<ValheimDir>\BepInEx\plugins
. <JotunnModStub>\libraries\Debug\mono-2.0-bdwgc.dll
is copied to<ValheimDir>\MonoBleedingEdge\EmbedRuntime
replacing the original file (a backup is created before).
- A compressed file with the binaries is created in
<JotunnModStub>\Packages
ready for upload to ThunderStore. Dont forget to include your information in the manifest.json and to change this readme file.
New Assets can be created with Unity and imported into Valheim using the mod. A Unity project is included in this repository under <JotunnModStub>\JotunnModUnity
.
- Download UnityHub directly from Unity or install it with the Visual Studio Installer via
Individual Components
->Visual Studio Tools for Unity
. - You will need an Unity account to register your PC and get a free licence. Create the account, login with it in Unity Hub and get your licence via
Settings
->Licence Management
. - Install Unity Editor version 2019.4.20f.
- Open Unity and add the JotunnModUnity project.
- Install the
AssetBundle Browser
package in the Unity Editor viaWindow
->Package Manager
. - Copy all
assembly_*.dll
from<ValheimDir>\valheim_Data\Managed
into<JotunnModStub>\JotunnModUnity\Assets\Assemblies
. Do this directly in the filesystem - don't import the dlls in Unity. - Go back to the Unity Editor and press
Ctrl+R
. This should reload all files and add the Valheim assemblies underAssets\Assemblies
- Warning: These assembly files are copyrighted material and you can theoretically get into trouble when you distribute them in your github repository. To avoid that there is a .gitignore file in the Unity project folder. Keep that when you clone or copy this repository.
Thanks to mono and unity-mono being open source, we patched and compiled our own mono runtime to enable actual live debugging of the game and the mod itself with dnSpy.
- Download dnSpy-net-win64 and extract the exe.
- Load all assemblies from
<ValheimDir>\unstripped_corlib
into dnSpy (just drag&drop the folder onto it). - Load all
assembly_*
from<ValheimDir>\valheim_Data\Managed
into dnSpy (do not load the publicized ones, they will not be loaded into the process and therefore can not be debugged). - Load
JotunnModStub.dll
from<ValheimDir>\BepInEx\plugins
into dnSpy. - Copy
<JotunnModStub>\libraries\Debug\mono-2.0-bdwgc.dll
into<ValheimDir>\MonoBleedingEdge\EmbedRuntime
and overwrite the existing file. - Now go to
Debug
->Start Debugging
and select Unity debug engine. Select your valheim.exe as the executable and hit OK. - If you did set some breakpoints, the game will halt when it hits the breakpoint in memory and dnSpy will show you the objects in memory and much more useful stuff.
Your own code can be debugged in source with Visual Studio itself. You cannot debug game disassemblies as with dnSpy, though.
- Install Visual Studio Tools for Unity (can be done in Visual Studio installer via
Individual Components
->Visual Studio Tools for Unity
) - Build the project with target
Debug
. The publish.ps1 PowerShell script from this repo...- copies the generated mod .dll and .pdb to <ValheimDir>\BepInEx\plugins after a successful build
- automatically generates a JotunnModStub.dll.mdb file, which is needed for Unity/mono debugging. It should be in <ValheimDir>\BepInEx\plugins, too.
- copies the patched mono-2.0-bdwgc.dll from .\libraries\Debug to <ValheimDir>\MonoBleedingEdge\EmbedRuntime and makes a backup copy of the original.
- Start Valheim (either directly from Steam or hit F5 in Visual Studio when Steam is running)
- Go to
Debug
->Attach Unity debugger
- Since the patched mono dll does not open the same port as Unity Dev builds, you have to click on
Input IP
. It should fill in your local IP automatically. you just have to change the port to55555
and the debugger should connect.
When Valheim updates it is likely that parts of the assembly files change. If this is the case, the references to the assembly files must be renewed in Visual Studio and Unity.
- There is a file called DoPrebuild.props included in the solution. When you set its only value to true, Jötunn will automatically generate publicized and MMHook assemblies for you. Otherwise you have to do this step manually.
- Copy all
assembly_*.dll
from<ValheimDir>\valheim_Data\Managed
into<JotunnModStub>\JotunnModUnity\Assets\Assemblies
.
Do this directly in the filesystem - don't import the dlls in Unity. - Go to Unity Editor and press
Ctrl+R
. This reloads all files from the filesystem and "re-imports" the copied dlls into the project.