Debugging PMDO
See also: Contributing Code, Building PMDO
Windows Setup
- Recursively clone the PMDO repository using
git clone --recurse-submodules -j8 https://github.com/audinowho/PMDODump.git
. - Download the .NET 8.0 SDK. You want to download the x64 version for windows. Confirm that it is installed using the command
dotnet --list-runtimes
. - Download Visual Studio 2022 or later.
- Open PMDOData.sln using Visual Studio 2022.
- Set your configuration to Debug, Any CPU. Build the entire solution
- Set PMDC as the startup project and hit Debug.
Linux Setup
Currently, only x64 architecture is supported for Linux.
- Recursively clone the PMDO repository using
git clone --recurse-submodules -j8 https://github.com/audinowho/PMDODump.git
. - Download the .NET 8.0 SDK. You want to download the x64 version for Linux. Confirm that it is installed using the command
dotnet --list-runtimes
. - Download and install Visual Studio Code for Linux. We recommend using the .deb installer.
- Install the C# Dev Kit. This can be found in the Extensions tab.
- Open the PMDOData folder with VSCode. You can do this by starting with a blank VSCode window, open a folder, select the PMDODump folder.
- With the C# Dev Kit installed, you now have the option to open the PMDOData.sln: check the Solution Explorer tab, then right click PMDOData.sln and choose "Open Solution".
- With the C# Dev Kit installed, you also have the option to open the Command Palette
Ctrl+Shift+P
. In the command palette, type/chooseDebug: Select and Start Debugging
.- Choose "C#" from the dropdown. If you've properly opened the PMDOData.sln solution, you should have several Launch Configurations available. Choose "C#: PMDC".
- Debug will start. If the console complains about not being able to find the correct file from path, you may need to change the relative paths specified for the
-asset
argument in thePMDC/PMDC/Properties/launchSettings.json
file. - Once this debug configuration is chosen, you can start debugging quickly by going to the Debug tab and selecting the green button next to "Run and Debug".
Mac Setup
Apple machines made a transition from x64 to ARM64 with Apple Silicon in 2020-2024, with any Macs running on M1 Chips or later using ARM64. PMDO runs and deploys on x64 only; this normally means that PMDO entirely would not be able to run on M1+ Macs, but Rosetta 2 translates applications meant for x64 to run on ARM64. This works normally when attempting to play published versions of PMDO, but makes things tricky for debugging.
If your machine predates the ARM64 transition (IE, predates M1 Macs), it uses x64 architecture, and there should be no issues debugging. The setup for Visual Studio Code should work exactly as it did for Linux. Use the instructions there if so. Otherwise, use the modified instructions below:
Visual Studio Code (Arm64)
- Recursively clone the PMDO repository using
git clone --recurse-submodules -j8 https://github.com/audinowho/PMDODump.git
. - Download the .NET 8.0 SDK. You want to download the x64 (Not Arm64!) version for MacOS. Confirm that it is installed using the command
dotnet --list-runtimes
.- If you've previously installed dotnet, it's likely the version for Arm64. You must uninstall it beforehand.
- If
dotnet
command does not work after x64 installation, you may need to specify the path of dotnet directly: check/etc/paths.d/dotnet
and make sure it points to/usr/local/share/dotnet/x64
.
- Download and install Visual Studio Code for MacOS. Specifically choose the zip for Intel Chip.
- If you have an existing VSCode installation under Arm64, it must be uninstalled. You should be able to do this by sending the VSCode app to the trash.
- Install the C# Dev Kit. This can be found in the Extensions tab.
- If you had a previous installation of VSCode under Arm64, it's likely that the extension was also installed as an arm64 version. You will need to uninstall it and reinstall to get the x64 version. Do this for both the C# Dev Kit as well as the C# extension it depends on.
- Open the PMDOData folder with VSCode. You can do this by starting with a blank VSCode window, open a folder, select the PMDODump folder.
- With the C# Dev Kit installed, you now have the option to open the PMDOData.sln: check the Solution Explorer tab, then right click PMDOData.sln and choose "Open Solution".
- With the C# Dev Kit installed, you also have the option to open the Command Palette
Ctrl+Shift+P
. In the command palette, type/chooseDebug: Select and Start Debugging
.- Choose "C#" from the dropdown. If you've properly opened the PMDOData.sln solution, you should have several Launch Configurations available. Choose "C#: PMDC".
- Debug will start. If the console complains about not being able to find the correct file from path, you may need to change the relative paths specified for the
-asset
argument in thePMDC/PMDC/Properties/launchSettings.json
file. - Once this debug configuration is chosen, you can start debugging quickly by going to the Debug tab and selecting the green button next to "Run and Debug".
Visual Studio Code Issues
Various issues arise when attempting to use the ARM64 version of dotnet with the ARM64 version VS Code.
Whenever the user clicks "debug", the IDE will build PMDO using the Any CPU setting. If the x64 dotnet is installed, this defaults to an x64 build. But if the Arm64 dotnet is installed, the Arm64 version is built. (Note: check if this is just the responsibility of dotnet installation itself, as opposed to both it and the IDE)
THE ARM64 VERSION OF PMDO DOES NOT WORK. IT IS MISSING ARM64 DEPENDENCIES FOR LUA, SKIASHARP.
We must avoid building the Arm64 version and only build for x64.
It's unknown if there is a way to configure the build step such that it uses the x64 dotnet to build PMDO under x64. Can this be specified in launchSettings.json
? In tasks.json
?
Resources:
- https://code.visualstudio.com/docs/csharp/debugging
- https://code.visualstudio.com/docs/csharp/debugger-settings
- https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-build
- https://code.visualstudio.com/Docs/editor/tasks
- https://code.visualstudio.com/docs/editor/variables-reference
- https://github.com/dotnet/docs/issues/34726
- https://code.visualstudio.com/docs/csharp/build-tools
Jetbrains Rider
Made by: Trio-#4442
- Download .NET 8.0. You want to download the x64 version. Confirm that it is installed using the command
dotnet --list-runtimes
. - Recursively clone the PMDO repository using
git clone --recurse-submodules -j8 https://github.com/audinowho/PMDODump.git
. - Copy all of the
.dylib
files inPMDC/PMDC/runtimes
folders toPMDC/PMDC
. Here’s what your file structure should look like:
Jetbrains Rider requires a paid subscription.
- Debug should run out of the box. Set the configuration to PMDC and click "Debug", and you should be all ready to go!
Gitignore considerations
In your ~/.gitignore_global
file, add the following files for git to ignore:
# Debug logs (npm, yarn) *.log # Editor artifacts .*.sw[a-z] *~ .#* .vscode .idea # OS files Thumbs.db .DS_Store
You may want to include more. Modified from here.