Package skyproc

Examples of skyproc.Mod


            /*
             * Create a patch to store data about the load order is NOT exported
             * to an actual patch.
             */
            //Creates a mod to store the data that is to be in the official patch
            Mod officialPatch = SPGlobal.getGlobalPatch();
            // Creates and initializes an INI object to store the INI data
            INI ini = new INI("customizedGMSTs.ini");
            Collection<IniSectionHead> sections = getSectionList();
            ini.addSection(sections);
            ini.readData();
View Full Code Here


            /*
             * Create a patch to store data about the load order is NOT exported
             * to an actual patch.
             */
            Mod merger = new Mod("Customized AI Merger", false);

            //Store the global database in our temporary merger patch
            merger.addAsOverrides(SPGlobal.getDB());

            //Creates a mod to store the data that is to be in the official patch
            Mod officialPatch = SPGlobal.getGlobalPatch();

            // Creates and initializes an INI object to store the INI data
            INI ini = new INI("customizedAI.ini");

            Collection<IniSectionHead> sections = getSectionList();
View Full Code Here

  }

  private static boolean isIdenticalToMaster(MajorRecord mr, Mod mod, GRUP g) {

    boolean isIdentical = false;
    Mod master = null;

    for(ModListing masterListing : mod.getMasters()) {

      if(masterListing != null) {

        master = SPGlobal.getDB().getMod(masterListing);

        for(GRUP grup : master.getGRUPs().values()) {
          if(grup.contains(mr.getForm())) {
            if(mr.equals(grup.get(mr.getForm()))) {
              isIdentical = true;
            }
          }
View Full Code Here

TOP

Related Classes of skyproc.Mod

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.