Modding:Modder Guide/Tutorial Mod

From Stardew Valley Wiki
< Modding:Modder Guide
Revision as of 19:21, 13 December 2017 by Pathoschild (talk | contribs) (→‎Add your manifest: use full semver in example to avoid confusiob)
Jump to navigation Jump to search

Index

Ready to make your own mod? This page will help you create your first SMAPI mod and use the available APIs and events.

Quick start

The rest of this page will help you create a mod. If you're experienced enough to skip the tutorial, here's a quick summary of what this page will walk you through:

  1. Create an empty C# class library project.
  2. Target .NET Framework 4.5 (for Linux compatibility).
  3. Reference the Pathoschild.Stardew.ModBuildConfig NuGet package to automatically add the right references depending on the platform the mod is being compiled on.
  4. Create an entry class which subclasses StardewModdingAPI.Mod.
  5. Override the Entry method, and write your code using the SMAPI events and APIs.
  6. Create a manifest.json file which describes your mod for SMAPI.
  7. Create a zip file containing the mod files for release.

Intro

  • What is SMAPI?
    A SMAPI mod uses the SMAPI modding API to extend the game logic. You can run code when something happens (e.g. mouse clicked or menu opened), or periodically (e.g. once per game tick). SMAPI mods are written in C# using the .NET Framework. Stardew Valley also uses XNA (on Windows) or MonoGame (on Linux and Mac) for the fundamental game logic (drawing to the screen, user input, etc).
  • Can I make a mod?
    The next few sections will walk you through creating a very simple mod. If you follow along, you'll have created a mod! All that will be left is making it do what you want.
    • Scenario A: you're new to programming.
      Many mod developers start with little or no programming experience. You can certainly learn along the way if you're determined, but you should be prepared for a steep learning curve. Don't be too ambitious at first; it's better to start with a small mod when you're figuring it out. It's easy to become overwhelmed at first and give up. The modding community is very welcoming, so don't be afraid to ask questions!

      Since mods are written in C#, it's a good idea to get acquainted with it first. C# Fundamentals for Absolute Beginners will walk you through the basics of C# needed to write SMAPI mods, from the basic concepts to event-driven programming (which is what SMAPI mods use).

    • Scenario B: you already have programming experience.
      You should be fine. Programming experience in C# or Java will make things easier, but it isn't critical. If you're unfamiliar with C#, you can skim through C# Fundamentals for Absolute Beginners to fill in any gaps.
  • Where can I get help?
    The Stardew Valley modding community is very welcoming; feel free to ask the community for help.

Requirements

Before you start:

  1. Read the player FAQs which answer common questions about Stardew Valley mods and troubleshooting.
  2. Install Stardew Valley.
  3. Install SMAPI.
  4. Install the IDE (integrated development environment):
    OS what to install notes
    Linux MonoDevelop
    Mac Visual Studio 2017 for Mac
    Windows Visual Studio 2017 Community When the installer asks about workloads, enable .NET Desktop Development.
    If you're not familiar with Visual Studio 2017 (on Windows/Mac) or MonoDevelop (on Linux), Modding:IDE reference explains how to do the important stuff you need for this guide.

Create a mod

A SMAPI mod is a compiled library (DLL) with an entry method that gets called by SMAPI, so let's set that up.

Create the project

  1. Open Visual Studio 2017 or MonoDevelop.
  2. Create a solution with a C# class library project (see how to).
  3. Change the target framework to .NET Framework 4.5 for compatibility with Linux (see how to).
  4. Reference the Pathoschild.Stardew.ModBuildConfig NuGet package (see how to). If you use Visual Studio 2017, you might need to close & reopen it before it handles the package correctly.
    This will automatically reference the right dependencies for SMAPI modding, add support for debugging the mod, and copy the mod into your game's Mods folder when you build.

Write the code

Now for the code SMAPI will run.

  1. Delete the Class1.cs or MyClass.cs file (see how to).
  2. Add a C# class file called ModEntry.cs to your project (see how to).
  3. Put this code in the file (replace YourProjectName with the name of your project):
    using System;
    using Microsoft.Xna.Framework;
    using StardewModdingAPI;
    using StardewModdingAPI.Events;
    using StardewModdingAPI.Utilities;
    using StardewValley;
    
    namespace YourProjectName
    {
        /// <summary>The mod entry point.</summary>
        public class ModEntry : Mod
        {
            /*********
            ** Public methods
            *********/
            /// <summary>The mod entry point, called after the mod is first loaded.</summary>
            /// <param name="helper">Provides simplified APIs for writing mods.</param>
            public override void Entry(IModHelper helper)
            {
                InputEvents.ButtonPressed += this.InputEvents_ButtonPressed;
            }
    
            /*********
            ** Private methods
            *********/
            /// <summary>The method invoked when the player presses a controller, keyboard, or mouse button.</summary>
            /// <param name="sender">The event sender.</param>
            /// <param name="e">The event data.</param>
            private void InputEvents_ButtonPressed(object sender, EventArgsInput e)
            {
                if (Context.IsWorldReady) // save is loaded
                {
                    this.Monitor.Log($"{Game1.player.name} pressed {e.Button}.");
                }
            }
        }
    }
    

Add your manifest

The mod manifest tells SMAPI about your mod.

  1. Add a file named manifest.json to your project.
  2. Paste this code into the file (replacing the <...> placeholders):
    {
       "Name": "<your project name>",
       "Author": "<your name>",
       "Version": "1.0.0",
       "Description": "<One or two sentences about the mod>",
       "UniqueID": "<your name>.<your project name>",
       "EntryDll": "<your project name>.dll",
       "UpdateKeys": []
    }
    

This will be listed in the console output when the game is launching. For more info, see the manifest docs.

Try your mod

  1. Build the project.
    If you did the create the project steps correctly, this will automatically add your mod to the game's Mods folder.
  2. Run the game through SMAPI.

The mod so far will just send a message to the console window whenever you press a key in the game.

Troubleshooting

If building the mod doesn't work:

  • If you see an error starting with "The mod build package", try following the instructions in the error message.
  • Try reviewing the above steps to make sure you didn't skip something.
  • If all else fails, ask for help. :)

Mod APIs

Now that you have a basic mod, see Modding:SMAPI APIs for the SMAPI features you can use to do more.

Final considerations

Crossplatform support

SMAPI will automatically adjust your mod so it works on Linux, Mac, and Windows. However, there are a few things you should do to avoid problems:

  1. Use the crossplatform build config package to automatically set up your project references. This makes crossplatform compatibility easier and lets your code compile on any platform. (If you followed the above guide, you already have this.)
  2. Use Path.Combine to build file paths, don't hardcode path separators since they won't work on all platforms.
    // ✘ Don't do this! It will crash on Linux/Mac.
    string path = helper.DirectoryPath + "\assets\asset.xnb";
    
    // ✓ This is OK
    string path = Path.Combine(helper.DirectoryPath, "assets", "asset.xnb");
    
  3. Use helper.DirectoryPath, don't try to determine the mod path yourself.
    // ✘ Don't do this! It will crash if SMAPI rewrites the assembly (e.g. to update or crossplatform it).
    string modFolder = Assembly.GetCallingAssembly().Location;
    
    // ✓ This is OK
    string modFolder = helper.DirectoryPath;
    

Test on all platforms

If you want to test your mod on all platforms, there's some first-time setup you need to get out of the way. Essentially you need to test your mod twice: once on Windows, and again on Linux or Mac. You can do that by testing one version on your computer, and the other in a virtual machine.

  • If your main computer is Windows:
    1. Install VirtualBox.
    2. Add this premade Linux virtual machine (requires a 64-bit computer).
      In VirtualBox, click Machine » Add and choose the downloaded .vbox file. This is a Manjaro virtual machine with Chromium (web browser), Steam, and MonoDevelop preinstalled.
    3. Launch the virtual machine, and install Stardew Valley from the Steam client (preinstalled) or GOG website.
      Tip: don't change the default install path, or you'll need to customise the mod's build configuration.

Release your mod

Ready to share your mod with the world? If you installed the mod build package, building the project automatically adds a .zip file to your project's bin/Debug or bin/Release folder (depending how you built the project). Just upload that file to Nexus Mods, the official modding forums, or both.

see manual instructions 
Let's say you created a mod named Pineapples Everywhere which turns all NPCs into pineapples; here's how you would release it for others to use.
  1. Copy your compiled mod and manifest.json into a folder matching your mod's name.
  2. Delete the config.json if any (so it doesn't replace the player's current settings when they update).
  3. Create a zip archive with your mod's name and version. Your mod structure should look something like this:
    PineapplesEverywhere-1.0.zip
       PineapplesEverywhere/
          PineapplesEverywhere.dll
          PineapplesEverywhere.pdb
          manifest.json
    
  4. Upload your mod to Nexus Mods, the official modding forums, or both.

Decompile the game code

When you start working on more complex mods, you may need to look at how the game code works.

Here's how to decompile the game code so you can look at it:

  1. Open StardewValley.exe in dotPeek.
  2. Right-click on Stardew Valley and choose Export to Project. Accept the default options to create a decompiled project you can open in Visual Studio. (Note that the decompiled code will not be functional due to limitations of the decompiler, but you'll be able to read the game code.)

Here's how to unpack the XNB data files:

  1. Download the Easy XNB Pack/UnPack Toolkit.
  2. Copy the entire Stardew Valley\Content game folder into XNB-Mod-Toolkit\Packed.
  3. Run XNB-Mod-Toolkit\UNPACK FILES.bat to unpack the files into XNB-Mod-Toolkit\Unpacked.