Changeset 598 for AE/installer2/src


Ignore:
Timestamp:
Jan 3, 2013, 7:20:51 PM (12 years ago)
Author:
alloc
Message:
 
Location:
AE/installer2/src/net/oni2/aeinstaller
Files:
2 added
5 edited

Legend:

Unmodified
Added
Removed
  • AE/installer2/src/net/oni2/aeinstaller/AEInstaller.properties

    r594 r598  
    11appname=AE Installer 2
    2 appversion=0.33
     2appversion=0.40
    33
    44invalidPath.title=Wrong directory
  • AE/installer2/src/net/oni2/aeinstaller/AEInstaller2.java

    r596 r598  
    88import java.net.URL;
    99import java.util.ResourceBundle;
     10import java.util.TreeSet;
    1011
    1112import javax.imageio.ImageIO;
     
    2223import net.oni2.aeinstaller.backend.StuffToRefactorLater;
    2324import net.oni2.aeinstaller.backend.depot.DepotManager;
     25import net.oni2.aeinstaller.backend.mods.Mod;
    2426import net.oni2.aeinstaller.backend.oni.Installer;
    2527import net.oni2.aeinstaller.backend.oni.OniSplit;
     
    143145                        }
    144146                } else {
    145                         Installer.initializeEdition();
     147//                      Installer.initializeEdition();
     148                        Installer.install(new TreeSet<Mod>());
    146149                }
    147150
  • AE/installer2/src/net/oni2/aeinstaller/backend/Paths.java

    r596 r598  
    5151         */
    5252        public static File getModsPath() {
    53                 return new File(getInstallerPath(), "mods");
     53                return new File(getInstallerPath(), "packages");
    5454        }
    5555
  • AE/installer2/src/net/oni2/aeinstaller/backend/oni/Installer.java

    r597 r598  
    55import java.io.FilenameFilter;
    66import java.io.IOException;
     7import java.util.HashMap;
     8import java.util.List;
    79import java.util.Scanner;
     10import java.util.TreeSet;
     11import java.util.Vector;
    812
    913import net.oni2.aeinstaller.backend.Paths;
    1014import net.oni2.aeinstaller.backend.Settings;
    1115import net.oni2.aeinstaller.backend.Settings.Platform;
     16import net.oni2.aeinstaller.backend.mods.Mod;
    1217
    1318import org.apache.commons.io.FileUtils;
     
    3035        }
    3136
     37        public static void install(TreeSet<Mod> mods) {
     38                Vector<File> folders = new Vector<File>();
     39                folders.add(Paths.getVanillaOnisPath());
     40
     41                for (Mod m : mods) {
     42                        File oni = new File(m.getLocalPath(), "oni");
     43                        if (oni.exists()) {
     44                                if (m.hasSeparatePlatformDirs()) {
     45                                        File oniCommon = new File(oni, "common");
     46                                        File oniMac = new File(oni, "mac_only");
     47                                        File oniWin = new File(oni, "win_only");
     48                                        if (oniCommon.exists())
     49                                                folders.add(oniCommon);
     50                                        if (Settings.getPlatform() == Platform.MACOS
     51                                                        && oniMac.exists())
     52                                                folders.add(oniMac);
     53                                        else if (oniWin.exists())
     54                                                folders.add(oniWin);
     55                                } else {
     56                                        folders.add(oni);
     57                                }
     58                        }
     59                }
     60
     61                for (File f : Paths.getModsPath().listFiles()) {
     62                        File oni = new File(f, "oni");
     63                        if (oni.exists())
     64                                folders.add(oni);
     65                }
     66                combineBinaryFiles(folders);
     67
     68                // TODO: bsl()
     69        }
     70
     71        private static void combineBinaryFiles(List<File> srcFolders) {
     72                try {
     73                        createEmptyPath(Paths.getEditionGDF());
     74                        HashMap<String, Vector<File>> levels = new HashMap<String, Vector<File>>();
     75
     76                        for (File path : srcFolders) {
     77                                for (File levelF : path.listFiles()) {
     78                                        if (!levels.containsKey(levelF.getName().toLowerCase()))
     79                                                levels.put(levelF.getName().toLowerCase(),
     80                                                                new Vector<File>());
     81                                        levels.get(levelF.getName().toLowerCase()).add(levelF);
     82                                }
     83                        }
     84
     85                        for (String l : levels.keySet()) {
     86                                System.out.println("Level " + l);
     87                                for (File f : levels.get(l)) {
     88                                        System.out.println("    " + f.getPath());
     89
     90                                }
     91
     92                                OniSplit.importLevel(levels.get(l),
     93                                                new File(Paths.getEditionGDF(), l + ".dat"));
     94
     95                                System.out.println();
     96                        }
     97                } catch (IOException e) {
     98                        // TODO Auto-generated catch block
     99                        e.printStackTrace();
     100                }
     101        }
     102
    32103        /**
    33104         * Initializes the Edition core
     
    36107                File init = new File(Paths.getTempPath(), "init");
    37108                try {
    38                         createEmptyPath(Paths.getEditionGDF());
    39109                        createEmptyPath(Paths.getVanillaOnisPath());
    40110                        createEmptyPath(init);
     
    75145                                vanillaFolder.mkdirs();
    76146
    77                                 OniSplit.importLevel(f, new File(vanillaFolder, levelName
     147                                Vector<File> folders = new Vector<File>();
     148                                folders.add(f);
     149
     150                                OniSplit.importLevel(folders, new File(vanillaFolder, levelName
    78151                                                + ".oni"));
    79152                        }
     
    93166                                FileUtils.copyFile(keyConfVanilla, keyConfEdition);
    94167
    95                         if (Settings.getPlatform() == Platform.MACOS) {
    96                                 // TODO
    97                                 // /* On Mac only, set the current GDF to the AE GDF by writing
    98                                 // to Oni's global preferences file (thankfully a standard OS X
    99                                 // ".plist" XML file).
    100                                 // Tests for presence of prefs with [ -f ] before doing anything
    101                                 // so it doesn't create a partial prefs file -- just in case
    102                                 // user has never
    103                                 // run Oni before :-p */
    104                                 // string fullAEpath =
    105                                 // escapePath(system_complete(".").parent_path().parent_path().string());
    106                                 // // get full path for Edition/ (Oni wants folder that
    107                                 // *contains* the GDF)
    108                                 // string prefsCommand =
    109                                 // "[ -f ~/Library/Preferences/com.godgames.oni.plist ] && defaults write com.godgames.oni RetailInstallationPath -string '"
    110                                 // + fullAEpath + "'";
    111                                 // system(prefsCommand.c_str());
    112                         }
    113168                        // TODO: FileUtils.deleteDirectory(init);
    114169                } catch (IOException e) {
     
    175230                                // TODO ? new File(tempFolder, "TexFix").mkdir();
    176231                                File level0File = new File(level0Folder, f.getName());
    177                                 // TODO: delete non-moved?
    178                                 if (!level0File.exists()) {
    179                                         if (!f.renameTo(level0File)) {
    180                                                 System.err.println("File " + f.getName()
    181                                                                 + " not moved!");
    182                                         }
    183                                 }
     232                                moveFileToTargetOrDelete(f, level0File);
    184233                        }
    185234                        // Move matching files to *VANILLA*/level0_Characters
     
    191240                                        || f.getName().startsWith("TRSC")
    192241                                        || f.getName().startsWith("TRAS")) {
    193                                 File level0FolderCharactersVanilla = new File(
    194                                                 level0FolderVanilla, "characters");
    195                                 File level0FileVanilla = new File(
    196                                                 level0FolderCharactersVanilla, f.getName());
    197                                 moveFileToTargetOrDelete(f, level0FileVanilla);
     242                                // File level0FolderCharactersVanilla = new File(
     243                                // level0FolderVanilla, "characters");
     244                                // File level0FileVanilla = new File(
     245                                // level0FolderCharactersVanilla, f.getName());
     246                                // moveFileToTargetOrDelete(f, level0FileVanilla);
     247                                // TODO: does this work?
     248                                File level0File = new File(level0Folder, f.getName());
     249                                moveFileToTargetOrDelete(f, level0File);
    198250                        }
    199251                        // Move matching files to level0_Sounds
     
    225277                        // fix for buggy ONWC overriding
    226278                        else if (f.getName().startsWith("ONWC")) {
    227                                 File level0FileVanilla = new File(level0FolderVanilla,
    228                                                 f.getName());
    229                                 moveFileToTargetOrDelete(f, level0FileVanilla);
     279                                // File level0FileVanilla = new File(level0FolderVanilla,
     280                                // f.getName());
     281                                // moveFileToTargetOrDelete(f, level0FileVanilla);
     282                                // TODO: does this work?
     283                                File level0File = new File(level0Folder, f.getName());
     284                                moveFileToTargetOrDelete(f, level0File);
    230285                        }
    231286                }
  • AE/installer2/src/net/oni2/aeinstaller/backend/oni/OniSplit.java

    r597 r598  
    108108        /**
    109109         * Import given folder to a .dat-file
    110          * @param sourceFolder Folder containing .oni-files
    111          * @param targetFile Target .dat-file
     110         *
     111         * @param sourceFolders
     112         *            Folders containing .oni-files
     113         * @param targetFile
     114         *            Target .dat-file
    112115         */
    113         public static void importLevel(File sourceFolder, File targetFile) {
     116        public static void importLevel(Vector<File> sourceFolders, File targetFile) {
    114117                Vector<String> cmdLine = getProgramInvocation();
    115118                cmdLine.add(getImportParam());
    116                 cmdLine.add(sourceFolder.getPath());
     119                for (File f : sourceFolders)
     120                        cmdLine.add(f.getPath());
    117121                cmdLine.add(targetFile.getPath());
    118122                // System.out.println(cmdLine.toString());
Note: See TracChangeset for help on using the changeset viewer.