예제 #1
0
 MissionShipComponentPluginManager()
 {
     VanillaMissionShipComponentMaxType = 13;
     Logger.Info($"MaxTypeint = {VanillaMissionShipComponentMaxType - 1}");
     foreach (PulsarPlugin plugin in PluginManager.Instance.GetAllPlugins())
     {
         Assembly asm = plugin.GetType().Assembly;
         Type     MissionShipComponentPlugin = typeof(MissionShipComponentPlugin);
         foreach (Type t in asm.GetTypes())
         {
             if (MissionShipComponentPlugin.IsAssignableFrom(t) && !t.IsInterface && !t.IsAbstract)
             {
                 Logger.Info("Loading MissionShipComponent from assembly");
                 MissionShipComponentPlugin MissionShipComponentPluginHandler = (MissionShipComponentPlugin)Activator.CreateInstance(t);
                 if (GetMissionShipComponentIDFromName(MissionShipComponentPluginHandler.Name) == -1)
                 {
                     MissionShipComponentTypes.Add(MissionShipComponentPluginHandler);
                     Logger.Info($"Added MissionShipComponent: '{MissionShipComponentPluginHandler.Name}' with ID '{GetMissionShipComponentIDFromName(MissionShipComponentPluginHandler.Name)}'");
                 }
                 else
                 {
                     Logger.Info($"Could not add MissionShipComponent from {plugin.Name} with the duplicate name of '{MissionShipComponentPluginHandler.Name}'");
                 }
             }
         }
     }
 }
예제 #2
0
        public static PLMissionShipComponent CreateMissionShipComponent(int Subtype, int level)
        {
            PLMissionShipComponent InMissionShipComponent;

            if (Subtype >= Instance.VanillaMissionShipComponentMaxType)
            {
                InMissionShipComponent = new PLMissionShipComponent(0, level);
                int subtypeformodded = Subtype - Instance.VanillaMissionShipComponentMaxType;
                if (Global.DebugLogging)
                {
                    Logger.Info($"Subtype for modded is {subtypeformodded}");
                }
                if (subtypeformodded <= Instance.MissionShipComponentTypes.Count && subtypeformodded > -1)
                {
                    if (Global.DebugLogging)
                    {
                        Logger.Info("Creating MissionShipComponent from list info");
                    }
                    MissionShipComponentPlugin MissionShipComponentType = Instance.MissionShipComponentTypes[Subtype - Instance.VanillaMissionShipComponentMaxType];
                    InMissionShipComponent.SubType = Subtype;
                    InMissionShipComponent.Name    = MissionShipComponentType.Name;
                    InMissionShipComponent.Desc    = MissionShipComponentType.Description;
                    InMissionShipComponent.GetType().GetField("m_IconTexture", BindingFlags.Instance | BindingFlags.NonPublic).SetValue(InMissionShipComponent, MissionShipComponentType.IconTexture);
                    InMissionShipComponent.GetType().GetField("m_MarketPrice", BindingFlags.Instance | BindingFlags.NonPublic).SetValue(InMissionShipComponent, (ObscuredInt)MissionShipComponentType.MarketPrice);
                    InMissionShipComponent.CargoVisualPrefabID     = MissionShipComponentType.CargoVisualID;
                    InMissionShipComponent.CanBeDroppedOnShipDeath = MissionShipComponentType.CanBeDroppedOnShipDeath;
                    InMissionShipComponent.Experimental            = MissionShipComponentType.Experimental;
                    InMissionShipComponent.Unstable   = MissionShipComponentType.Unstable;
                    InMissionShipComponent.Contraband = MissionShipComponentType.Contraband;
                    InMissionShipComponent.GetType().GetField("Price_LevelMultiplierExponent", BindingFlags.Instance | BindingFlags.NonPublic).SetValue(InMissionShipComponent, (ObscuredFloat)MissionShipComponentType.Price_LevelMultiplierExponent);
                }
            }
            else
            {
                InMissionShipComponent = new PLMissionShipComponent(Subtype, level);
            }
            return(InMissionShipComponent);
        }