Package skyproc

Examples of skyproc.ModListing


        String name = sectionToChoose.getName();
        Collection<FormID> forms = new ArrayList<>();
        ArrayList<String> temp = (ArrayList) valueData.get(name);

        for (int i = 0; i < valueData.get(name).size(); i++) {
            forms.add(new FormID(temp.get(i), new ModListing("Skyrim", true)));
        }
        return forms;
    }
View Full Code Here


        if (!listsPlugin) {
            return true;
        }


        if (plugin != null && SPGlobal.getDB().hasMod(new ModListing(plugin))) {
            isValid = true;
        }


        return isValid;
View Full Code Here

   
    SPGlobal.pathToData = "../data/";
   
    ArrayList<ModListing> mods = new ArrayList<ModListing>();
   
    mods.add(new ModListing("Skyrim.esm"));
    mods.add(new ModListing("test.esp"));
   
    SPImporter importer = new SPImporter();
    importer.importMods(mods);
  }
View Full Code Here

    ArrayList<ModListing> mods = new ArrayList<ModListing>();

    for(Component box : checkBoxArea.getComponents()) {
      if(((AbstractButton) box).isSelected()) {
        mods.add(new ModListing(((AbstractButton) box).getText()));
      }
    }
   
    mainFrame.dispose();
   
View Full Code Here

  /**
   * These methods won't work until proper comparing of records has been implemented within SkyProc.
   */
  public static void removeITMs() {

    ModListing skyrim = new ModListing("Skyrim.esm");
    ModListing update = new ModListing("Update.esm");
    ArrayList<ModListing> modsToExport = new ArrayList<ModListing>();

    for(Mod mod : SPGlobal.getDB()) {

      if(!mod.getInfo().equals(skyrim) || !mod.getInfo().equals(update)) {
View Full Code Here

TOP

Related Classes of skyproc.ModListing

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.