Editing User:Dninemfive

Jump to navigation Jump to search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
Hello! I'm a modder who's trying to clean up the modding tutorials pages, which are quite out-of-date. So far, I've [[Plague Gun (1.1)|rewritten]] the classic [[Plague Gun/Introduction|Plague Gun tutorial]].
+
Hello! I'm a modder who's trying to clean up the modding tutorials pages, which are quite out-of-date.
  
If you've been helped by my contributions on this site please check out my mods on [https://github.com/users/dninemfive/projects/1 Github] and [https://steamcommunity.com/id/dninemfive/myworkshopfiles/?appid=294100 Steam].
+
If you like my contributions on this site please check out my [Github] and [Steam Workshop profile].
  
= Sandbox =
+
== Sandbox ==
  
== Introduction to reading Def classes ==
+
=== Plague Gun (1.1)/Introduction ===
This article is intended for XML modders who don't want to work with C# (even though it's [[Plague Gun (1.1)|much less imposing than you think]]) but want to know what exactly they can write in their defs.
 
  
=== Definitions ===
+
This tutorial is a rewrite of the [[Plague Gun/Introduction|original]] by Jecrell ({{LudeonThread|33219}}), updated to 1.1 by dninemfive.
'''Fields''' are variables in C# class defintions defined at the top of classes (when decompiled). For example, <source lang="csharp">
 
    public class ExampleDef : Def {
 
    public bool exampleBool = true;
 
    public int exampleInteger = 1;
 
    public float exampleFloat = 1.2f;
 
    public bool exampleNonInitializedField;
 
    public RaceProperties exampleClass;
 
}
 
</source>
 
  
'''Nodes''' are XML entries, for example <source lang="xml">
+
===== Introduction =====
<ExampleDef ExampleAnnotation="ExampleValue">
 
    <exampleBool>true</exampleBool?
 
    <exampleInteger>1</exampleInteger>
 
    <exampleFloat>1.2</exampleFloat>
 
    <exampleNonInitializedField>false</exampleNonInitializedField>
 
    <exampleClass>
 
        <intelligence>Animal</intelligence>
 
        <fleshType>Mechanoid</fleshType>
 
        <hasGenders>false</hasGenders>
 
    </exampleClass>
 
</ExampleDef>
 
</source>
 
  
== Royalty compatibility ==
+
In this tutorial we will be using most of the tools available to a Rimworld modder to create a custom weapon, known as the Plague Gun.
After the release of Royalty, mods are governed by rules 13b and c of the [https://ludeon.com/forums/index.php?topic=40838.0 Ludeon community rules]. Unfortunately, these are inconsistently applied and end up being vaguer than intended, but a good TL;DR to follow would be:
 
# Don't use any code flagged as Royalty only. They will throw errors when loaded for people without Royalty, so these are easy to tell.
 
#* The page lists explicit exceptions; at the time of writing, only gendered apparel and <code>Sketch</code>es are exempt.
 
# Avoid using features added in 1.1 or later. Unfortunately, not all Royalty-specific code is flagged and it's ambiguous whether some features are permitted.
 
# Avoid making anything included in Royalty, broadly defined. Another unfortunate ambiguity is the nuance in this rule - it's currently unclear whether some Royalty features, like shield projectors, count as "royalty features" for this purpose as old mods which included them have not been banned but no new ones have yet been made.
 
# If in doubt, set your mod to require Royalty to install on Steam, and you'll be fine.
 
=== MayRequire ===
 
You can use the <code>MayRequire</code> annotation on XML nodes to disable Royalty-specific features when Royalty is not installed.
 
=== ModLister.RoyaltyInstalled ===
 
In C#, the canonical check for whether Royalty is installed is <code>ModLister.RoyaltyInstalled</code>. Notably, this check whether the Steam user ''owns'' Royalty, rather than whether it's enabled in the load order.
 
=== IfModActive===
 
You can use the <code>IfModActive</code> and <code>IfModNotActive</code> attributes in <code>LoadFolders.xml</code> to conditionally load defs, treating Royalty as a mod.
 
<source lang="xml">
 
<loadFolders>
 
  <default>
 
    <li>/</li>
 
    <li IfModActive="Royalty">RoyaltyDefs</li>
 
  </default>
 
</loadFolders>
 
</source>
 
=== Other Options ===
 
If you set your mod to require [https://github.com/dninemfive/d9framework D9 Framework], you can use <code>PatchOperationFindPackage</code> (with the packageId <code>Ludeon.RimWorld.Royalty</code>) or <code>PatchOperationRoyaltyInstalled</code> to check whether Royalty is installed, with the former checking whether it's enabled and the latter checking if the user owns it. Using the vanilla <code>PatchOperationFindMod</code> would not be sufficient because it would be enabled if any local mod was called Royalty.
 
  
== Framework Mods ==
+
This weapon will, when its shots hit a living target, have a chance to apply the Plague hediff ("health difference") to that target.
''intended to be a comprehensive list of mods which add features for XML users''
 
* [O21] Toolbox
 
* Advanced Animal Frameworks
 
* BiomesKit
 
* D9 Framework
 
* HugsLib ''(I think)''
 
* JecsTools
 
* OgsTools
 
* Universal Fermenter
 
  
== Version Control Intro ==
+
To do this, we will create XML `ThingDefs` for the gun and projectile, create a C# assembly which determines what happens when the projectile hits a target, and link that behavior back to the XML.
  
An introduction to using Github for version control, with an eye toward Rimworld modding. Will go through my particular setup, and various tips and tricks, like:
+
This tutorial will assume a basic familiarity with XML and C# syntax. It should be simple enough to follow if you're only a beginner.  
* Having a separate dev folder from the Rimworld mods folder
 
* Build events copying from the dev folder into the build folder
 
* .gitignore settings
 
&c
 
  
== Example Comp Project ==
+
If you have no XML or C# experience, there are good tutorials for XML [https://www.w3schools.com/xml/ here] and C# [https://www.learncs.org/ here].
 
 
This project will teach players how to use <code>ThingComp</code>s, load textures in C#, and make gizmos.
 
 
 
== Introduction to core mods ==
 
 
 
This project will teach players how to use basic Harmony patches and demonstrate the use of <code>MapComponent</code>s (or maybe game/world ones, idk)
 

Please note that all contributions to RimWorld Wiki are considered to be released under the CC BY-SA 3.0 (see RimWorld Wiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)

This page is a member of 1 hidden category: