Giter Site home page Giter Site logo

Comments (3)

pardeike avatar pardeike commented on August 25, 2024

I think you are writing the result to a copy in your Prefix. A __state parameter makes only sense if you use it with the prefix ref or out. Also, I am pretty sure you cannot use __state from two patches to the same method. You need to make this a single patch with both: Prefix() and Postfix() at the same time.

Otherwise Harmony cannot allocate a local variable for you. How would it correlate the both __state to each other? What should happen if N patches have unique prefixes with __state and M postfixes want to use those __states. The solution I chose was to keep it locally within the same patch.

Just merge both classes into a single class, add the "out" modifier and you're done. I never split my classes into prefix/postfix if I need both anyway.

from harmony.

pardeike avatar pardeike commented on August 25, 2024
namespace Xnope.Patches
{
    [HarmonyPatch(typeof(Faction), "GenerateNewLeader")]
    static class Faction_GenerateNewLeader_Patch
    {
        static void Prefix(Faction __instance, out string __state)
        {
            __state = "";
            if (__instance.leader != null)
                __state = __instance.leader.NameStringShort;
            else
                __state = "LNAME";
        }

        static void Postfix(Faction __instance, string __state)
        {

            if (__instance.IsDynamicallyNamed())
                ResolveFactionName(__instance, __state);
        }

        static void ResolveFactionName(Faction f, string oldLeaderName)
        {
            f.Name = f.Name.Replace(oldLeaderName, f.leader.NameStringShort);
        }
    }
}

from harmony.

Pyr3z avatar Pyr3z commented on August 25, 2024

Thanks -- clears up so much! I separated the classes because a wiki page under HugsLib mentions that each patch needs to be in a separate class... suppose I misread it or it was untrue.
You're the man.

from harmony.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.