Changeset 600 for AE/installer2


Ignore:
Timestamp:
Jan 10, 2013, 12:12:01 AM (12 years ago)
Author:
alloc
Message:
 
Location:
AE/installer2/src/net/oni2/aeinstaller
Files:
9 added
16 edited

Legend:

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

    r599 r600  
    11appname=AE Installer 2
    2 appversion=0.41
     2appversion=0.50
    33
    44invalidPath.title=Wrong directory
  • AE/installer2/src/net/oni2/aeinstaller/AEInstaller2.java

    r599 r600  
    88import java.net.URL;
    99import java.util.ResourceBundle;
    10 import java.util.TreeSet;
    1110
    1211import javax.imageio.ImageIO;
     
    2019import net.oni2.aeinstaller.backend.Paths;
    2120import net.oni2.aeinstaller.backend.Settings;
     21import net.oni2.aeinstaller.backend.Settings.Platform;
    2222import net.oni2.aeinstaller.backend.SizeFormatter;
    23 import net.oni2.aeinstaller.backend.Settings.Platform;
    2423import net.oni2.aeinstaller.backend.StuffToRefactorLater;
    2524import net.oni2.aeinstaller.backend.depot.DepotManager;
    26 import net.oni2.aeinstaller.backend.mods.Mod;
    2725import net.oni2.aeinstaller.backend.oni.Installer;
    2826import net.oni2.aeinstaller.backend.oni.OniSplit;
     
    5755                        app.setApplicationIconImage(img);
    5856                } catch (IOException e) {
    59                         // TODO Auto-generated catch block
    6057                        e.printStackTrace();
    6158                }
     
    137134                System.out.println("Globalized:" + Installer.isEditionInitialized());
    138135
    139                 System.out.println("Free space on temp: " + SizeFormatter.format(Paths.getTempPath().getUsableSpace(), 3));
    140                 System.out.println("Free space on Jar:  " + SizeFormatter.format(Paths.getInstallerPath().getUsableSpace(), 3));
    141                
     136                System.out
     137                                .println("Free space on temp: "
     138                                                + SizeFormatter.format(Paths.getTempPath()
     139                                                                .getUsableSpace(), 3));
     140                System.out.println("Free space on Jar:  "
     141                                + SizeFormatter.format(Paths.getInstallerPath()
     142                                                .getUsableSpace(), 3));
     143
    142144                if (!StuffToRefactorLater.verifyRunningDirectory()) {
    143145                        JOptionPane.showMessageDialog(null,
     
    148150                                return;
    149151                        }
    150                 } else {
    151                         Installer.initializeEdition();
    152                         Installer.install(new TreeSet<Mod>());
    153152                }
    154153
    155154                SwingUtilities.invokeLater(new Runnable() {
    156 
    157155                        public void run() {
    158156                                try {
  • AE/installer2/src/net/oni2/aeinstaller/Images.properties

    r593 r600  
    2525img.redo=/net/oni2/aeinstaller/images/tango/edit-redo.png
    2626img.refresh=/net/oni2/aeinstaller/images/tango/view-refresh.png
     27img.tools=/net/oni2/aeinstaller/images/open_icon_library/tools-hammer_and_nails.png
    2728
    2829img.ae=/net/oni2/aeinstaller/images/AElogo.png
     30img.install=/net/oni2/aeinstaller/images/open_icon_library/run-build-install-root.png
  • AE/installer2/src/net/oni2/aeinstaller/backend/Settings.java

    r596 r600  
    1010import java.util.Vector;
    1111
    12 import net.oni2.aeinstaller.backend.app_launcher.QuickAppExecution;
    1312
    1413import com.thoughtworks.xstream.XStream;
     
    112111                                        res = QuickAppExecution.execute(cmd);
    113112                                } catch (IOException e) {
    114                                         // TODO Auto-generated catch block
    115113                                        e.printStackTrace();
    116114                                }
  • AE/installer2/src/net/oni2/aeinstaller/backend/depot/DepotManager.java

    r592 r600  
    1818import net.oni2.aeinstaller.backend.depot.model.TaxonomyTerm;
    1919import net.oni2.aeinstaller.backend.depot.model.TaxonomyVocabulary;
     20import net.oni2.aeinstaller.backend.mods.ECompatiblePlatform;
    2021import net.oni2.aeinstaller.backend.network.DrupalJSONQuery;
    2122
     
    287288
    288289        /**
    289          * @return Mod-Nodes
    290          */
    291         public Vector<NodeMod> getModPackageNodes() {
    292                 Vector<NodeMod> result = new Vector<NodeMod>();
    293                 TaxonomyTerm tt = getTaxonomyTerm(DepotConfig.getTaxonomyName_InstallType_Package());
    294                 if (tt == null)
    295                         return result;
    296 
    297                 int packageterm_id = tt.getTid();
    298 
     290         * Get a node by node id
     291         *
     292         * @param id
     293         *            Node id
     294         * @return Node
     295         */
     296        public Node getNodeById(int id) {
     297                return nodes.get(id);
     298        }
     299
     300        /**
     301         * Get a Mod-Node by a given package number
     302         *
     303         * @param packageNumber
     304         *            Package number to find
     305         * @return The Mod-Node or null
     306         */
     307        public NodeMod getNodeByPackageNumber(int packageNumber) {
    299308                Vector<Node> files = getNodesByType(DepotConfig.getNodeType_Mod());
    300309                for (Node n : files) {
    301310                        if (n instanceof NodeMod) {
    302311                                NodeMod nm = (NodeMod) n;
    303                                 if (nm.getTaxonomyTerms().get(vocabId_instmethod)
    304                                                 .contains(packageterm_id))
     312                                if (nm.getPackageNumber() == packageNumber)
     313                                        return nm;
     314                        }
     315                }
     316                return null;
     317        }
     318
     319        /**
     320         * @return Mod-Nodes
     321         */
     322        public Vector<NodeMod> getModPackageNodes() {
     323                Vector<NodeMod> result = new Vector<NodeMod>();
     324                String instMethName = DepotConfig.getTaxonomyName_InstallType_Package();
     325
     326                Vector<Node> files = getNodesByType(DepotConfig.getNodeType_Mod());
     327                for (Node n : files) {
     328                        if (n instanceof NodeMod) {
     329                                NodeMod nm = (NodeMod) n;
     330                                if (nm.getInstallMethod().getName()
     331                                                .equalsIgnoreCase(instMethName))
    305332                                        result.add(nm);
    306333                        }
     
    317344         */
    318345        public boolean isModValidOnPlatform(NodeMod node, Settings.Platform platform) {
    319                 int termId = node.getTaxonomyTerms().get(vocabId_platform).iterator()
    320                                 .next();
    321                 String validPlatform = getTaxonomyTerm(termId).getName();
    322                 if (validPlatform.equalsIgnoreCase(DepotConfig.getTaxonomyName_Platform_Both()))
    323                         return true;
    324 
    325                 if ((platform == Platform.WIN) || (platform == Platform.LINUX))
    326                         return validPlatform.equalsIgnoreCase(DepotConfig.getTaxonomyName_Platform_Win());
    327                 else if (platform == Platform.MACOS)
    328                         return validPlatform.equalsIgnoreCase(DepotConfig.getTaxonomyName_Platform_Mac());
    329                 else
    330                         return false;
     346                ECompatiblePlatform plat = node.getPlatform();
     347                switch (plat) {
     348                        case BOTH:
     349                                return true;
     350                        case WIN:
     351                                return (platform == Platform.WIN)
     352                                                || (platform == Platform.LINUX);
     353                        case MACOS:
     354                                return (platform == Platform.MACOS);
     355                }
     356                return false;
    331357        }
    332358
     
    344370         */
    345371        public boolean isModOfType(NodeMod node, HashSet<Integer> type, boolean or) {
    346                 boolean matching = true;
    347                 if (or)
    348                         matching = false;
     372                boolean matching = !or;
     373                HashSet<TaxonomyTerm> terms = node.getTypes();
    349374
    350375                for (int t : type) {
    351376                        if (or)
    352                                 matching |= node.getTaxonomyTerms().get(vocabId_type)
    353                                                 .contains(t);
     377                                matching |= terms.contains(t);
    354378                        else
    355                                 matching &= node.getTaxonomyTerms().get(vocabId_type)
    356                                                 .contains(t);
     379                                matching &= terms.contains(t);
    357380                }
    358381                return matching;
     382        }
     383
     384        /**
     385         * @return VocabId of Platform vocabulary
     386         */
     387        public int getVocabIdPlatform() {
     388                return vocabId_platform;
     389        }
     390
     391        /**
     392         * @return VocabId of Install method vocabulary
     393         */
     394        public int getVocabIdInstMethod() {
     395                return vocabId_instmethod;
     396        }
     397
     398        /**
     399         * @return VocabId of Type vocabulary
     400         */
     401        public int getVocabIdType() {
     402                return vocabId_type;
     403        }
     404
     405        /**
     406         * @param id
     407         *            ID of file to get
     408         * @return the file
     409         */
     410        public File getFile(int id) {
     411                return files.get(id);
    359412        }
    360413
  • AE/installer2/src/net/oni2/aeinstaller/backend/depot/model/NodeMod.java

    r592 r600  
    44import java.util.HashSet;
    55import java.util.Vector;
     6
     7import net.oni2.aeinstaller.backend.depot.DepotConfig;
     8import net.oni2.aeinstaller.backend.depot.DepotManager;
     9import net.oni2.aeinstaller.backend.mods.ECompatiblePlatform;
    610
    711import org.json.JSONArray;
     
    7478
    7579        /**
    76          * @return the taxonomyTerms
     80         * @return Types
    7781         */
    78         public HashMap<Integer, HashSet<Integer>> getTaxonomyTerms() {
    79                 return taxonomyTerms;
     82        public HashSet<TaxonomyTerm> getTypes() {
     83                HashSet<TaxonomyTerm> tt = new HashSet<TaxonomyTerm>();
     84                for (int t : taxonomyTerms.get(DepotManager.getInstance()
     85                                .getVocabIdType())) {
     86                        tt.add(DepotManager.getInstance().getTaxonomyTerm(t));
     87                }
     88                return tt;
    8089        }
    8190
    8291        /**
    83          * @return the fields
     92         * @return Install method
    8493         */
    85         public HashMap<String, String> getFields() {
    86                 return fields;
     94        public TaxonomyTerm getInstallMethod() {
     95                return DepotManager.getInstance().getTaxonomyTerm(
     96                                taxonomyTerms
     97                                                .get(DepotManager.getInstance().getVocabIdInstMethod())
     98                                                .iterator().next());
     99        }
     100
     101        /**
     102         * @return Compatible platform
     103         */
     104        public ECompatiblePlatform getPlatform() {
     105                TaxonomyTerm term = DepotManager.getInstance().getTaxonomyTerm(
     106                                taxonomyTerms
     107                                                .get(DepotManager.getInstance().getVocabIdPlatform())
     108                                                .iterator().next());
     109
     110                String validPlatform = term.getName();
     111                if (validPlatform.equalsIgnoreCase(DepotConfig
     112                                .getTaxonomyName_Platform_Both()))
     113                        return ECompatiblePlatform.BOTH;
     114                if (validPlatform.equalsIgnoreCase(DepotConfig
     115                                .getTaxonomyName_Platform_Win()))
     116                        return ECompatiblePlatform.WIN;
     117                if (validPlatform.equalsIgnoreCase(DepotConfig
     118                                .getTaxonomyName_Platform_Mac()))
     119                        return ECompatiblePlatform.MACOS;
     120
     121                return null;
     122        }
     123
     124        /**
     125         * @return Creator of mod
     126         */
     127        public String getCreator() {
     128                if (fields.get("creator") != null)
     129                        return fields.get("creator");
     130                else
     131                        return "";
     132        }
     133
     134        /**
     135         * @return Version of mod
     136         */
     137        public String getVersion() {
     138                if (fields.get("version") != null)
     139                        return fields.get("version");
     140                else
     141                        return "";
     142        }
     143
     144        /**
     145         * @return Package number
     146         */
     147        public int getPackageNumber() {
     148                return Integer.parseInt(fields.get("package_number"));
    87149        }
    88150}
  • AE/installer2/src/net/oni2/aeinstaller/backend/mods/Mod.java

    r598 r600  
    11package net.oni2.aeinstaller.backend.mods;
    22
     3import java.io.BufferedReader;
    34import java.io.File;
     5import java.io.FileInputStream;
     6import java.io.FileNotFoundException;
     7import java.io.FilenameFilter;
     8import java.io.IOException;
     9import java.io.InputStreamReader;
     10import java.util.HashSet;
     11
     12import net.oni2.aeinstaller.backend.Paths;
     13import net.oni2.aeinstaller.backend.Settings;
     14import net.oni2.aeinstaller.backend.Settings.Platform;
     15import net.oni2.aeinstaller.backend.depot.DepotManager;
     16import net.oni2.aeinstaller.backend.depot.model.NodeMod;
     17import net.oni2.aeinstaller.backend.depot.model.TaxonomyTerm;
    418
    519/**
     
    721 */
    822public class Mod implements Comparable<Mod> {
    9         private double aeVersion;
    10         private int node;
    11         private int packageNumber;
    12 
    13         public double getAEVersion() {
    14                 return aeVersion;
    15         }
    16 
     23        // TODO: Dependencies/Conflicts
     24       
     25        private String name = "";
     26        private int packageNumber = 0;
     27
     28        private HashSet<Type> types = new HashSet<Type>();
     29        private ECompatiblePlatform platform = null;
     30        private String version = "";
     31        private String creator = "";
     32        private EBSLInstallType bslInstallType = null;
     33        private String description = "";
     34        private double aeVersion = 0;
     35        private int zipSize = 0;
     36        private NodeMod node = null;
     37        private net.oni2.aeinstaller.backend.depot.model.File file = null;
     38
     39        private long localTimestamp = 0;
     40
     41        /**
     42         * Create a new Mod entry from a given Mod-Node
     43         *
     44         * @param nm
     45         *            Mod-Node
     46         */
     47        public Mod(NodeMod nm) {
     48                node = nm;
     49                name = nm.getTitle();
     50                packageNumber = nm.getPackageNumber();
     51                for (TaxonomyTerm tt : nm.getTypes()) {
     52                        Type t = ModManager.getInstance().getTypeByName(tt.getName());
     53                        types.add(t);
     54                        t.addEntry(this);
     55                }
     56                platform = nm.getPlatform();
     57                version = nm.getVersion();
     58                creator = nm.getCreator();
     59                if (nm.getBody() != null)
     60                        description = nm.getBody().getSafe_value();
     61                file = DepotManager.getInstance().getFile(
     62                                nm.getUploads().firstElement().getFid());
     63                zipSize = file.getFilesize();
     64
     65                if (isLocalAvailable())
     66                        updateLocalData();
     67        }
     68
     69        /**
     70         * Update information for local package existence
     71         */
     72        public void updateLocalData() {
     73                File config = new File(getLocalPath(), "Mod_Info.cfg");
     74                File timestamp = new File(getLocalPath(), "aei.cfg");
     75                if (config.exists()) {
     76                        try {
     77                                FileInputStream fstream = new FileInputStream(config);
     78                                InputStreamReader isr = new InputStreamReader(fstream);
     79                                BufferedReader br = new BufferedReader(isr);
     80                                String strLine;
     81                                while ((strLine = br.readLine()) != null) {
     82                                        if (strLine.indexOf("->") < 1)
     83                                                continue;
     84                                        if (strLine.indexOf("//") >= 0)
     85                                                strLine = strLine.substring(0, strLine.indexOf("//"));
     86                                        String[] split = strLine.split("->", 2);
     87                                        String sName = split[0].trim();
     88                                        String sVal = split[1].trim();
     89                                        if (sName.equalsIgnoreCase("AEInstallVersion")) {
     90                                                aeVersion = Double.parseDouble(sVal);
     91                                        } else if (sName.equalsIgnoreCase("NameOfMod")) {
     92                                                if (node == null)
     93                                                        name = sVal;
     94                                        } else if (sName.equalsIgnoreCase("Creator")) {
     95                                                if (node == null)
     96                                                        creator = sVal;
     97                                        } else if (sName.equalsIgnoreCase("HasBsl")) {
     98                                                if (sVal.equalsIgnoreCase("addon"))
     99                                                        bslInstallType = EBSLInstallType.ADDON;
     100                                                else if (sVal.equalsIgnoreCase("yes"))
     101                                                        bslInstallType = EBSLInstallType.NORMAL;
     102                                                else
     103                                                        bslInstallType = EBSLInstallType.NONE;
     104                                        } else if (sName.equalsIgnoreCase("ModVersion")) {
     105                                                if (node == null)
     106                                                        version = sVal;
     107                                        } else if (sName.equalsIgnoreCase("Readme")) {
     108                                                if (node == null)
     109                                                        description = sVal.replaceAll("\\\\n", "<br>");
     110                                        }
     111                                }
     112                                isr.close();
     113                        } catch (FileNotFoundException e) {
     114                        } catch (IOException e) {
     115                                e.printStackTrace();
     116                        }
     117                } else {
     118                        System.err.println("No config found for mod folder: "
     119                                        + getLocalPath().getPath());
     120                }
     121                if (timestamp.exists()) {
     122                        try {
     123                                FileInputStream fstream = new FileInputStream(timestamp);
     124                                InputStreamReader isr = new InputStreamReader(fstream);
     125                                BufferedReader br = new BufferedReader(isr);
     126                                String ts = br.readLine();
     127                                localTimestamp = Long.parseLong(ts);
     128                                isr.close();
     129                        } catch (FileNotFoundException e) {
     130                        } catch (IOException e) {
     131                                e.printStackTrace();
     132                        }
     133                }
     134        }
     135
     136        /**
     137         * Create a new Mod entry from the given local mod folder
     138         *
     139         * @param folder
     140         *            Mod folder with Mod_Info.cfg
     141         */
     142        public Mod(File folder) {
     143                packageNumber = Integer.parseInt(folder.getName().substring(0, 5));
     144                updateLocalData();
     145
     146                Type t = ModManager.getInstance().getTypeByName("-Local-");
     147                types.add(t);
     148                t.addEntry(this);
     149
     150                platform = ECompatiblePlatform.BOTH;
     151        }
     152
     153        /**
     154         * @return has separate paths for win/mac/common or not
     155         */
    17156        public boolean hasSeparatePlatformDirs() {
    18157                return aeVersion >= 2;
    19158        }
    20159
     160        /**
     161         * @return Path to local mod folder
     162         */
    21163        public File getLocalPath() {
    22                 // TODO
    23                 return null;
    24         }
    25        
    26         public boolean newerAvailable() {
    27                 //TODO
    28                 return false;
    29         }
    30        
    31         public boolean localAvailable() {
    32                 //TODO
    33                 return false;
    34         }
    35        
     164                final String folderStart = String.format("%05d", packageNumber);
     165
     166                if (Paths.getModsPath().exists()) {
     167                        for (File f : Paths.getModsPath().listFiles(new FilenameFilter() {
     168                                @Override
     169                                public boolean accept(File d, String fn) {
     170                                        return fn.startsWith(folderStart);
     171                                }
     172                        })) {
     173                                return f;
     174                        }
     175                }
     176
     177                return new File(Paths.getModsPath(), folderStart);
     178        }
     179
     180        /**
     181         * @return Is there a newer version on the depot?
     182         */
     183        public boolean isNewerAvailable() {
     184                if (node != null)
     185                        return node.getUploads().firstElement().getTimestamp() > localTimestamp;
     186                else
     187                        return false;
     188        }
     189
     190        /**
     191         * @return Mod exists within mods folder
     192         */
     193        public boolean isLocalAvailable() {
     194                return getLocalPath().exists();
     195        }
     196
     197        /**
     198         * @return Name of mod
     199         */
     200        public String getName() {
     201                return name;
     202        }
     203
     204        /**
     205         * @return the package number
     206         */
    36207        public int getPackageNumber() {
    37208                return packageNumber;
     209        }
     210
     211        /**
     212         * @return Types of mod
     213         */
     214        public HashSet<Type> getTypes() {
     215                return types;
     216        }
     217
     218        /**
     219         * @return Compatible platforms
     220         */
     221        public ECompatiblePlatform getPlatform() {
     222                return platform;
     223        }
     224
     225        /**
     226         * @return Version of mod
     227         */
     228        public String getVersion() {
     229                return version;
     230        }
     231
     232        /**
     233         * @return Creator of mod
     234         */
     235        public String getCreator() {
     236                return creator;
     237        }
     238
     239        /**
     240         * @return Installation type of BSL files
     241         */
     242        public EBSLInstallType getBSLInstallType() {
     243                return bslInstallType;
     244        }
     245
     246        /**
     247         * @return Description of mod
     248         */
     249        public String getDescription() {
     250                return description;
     251        }
     252
     253        /**
     254         * @return Size of Zip file on Depot
     255         */
     256        public int getZipSize() {
     257                return zipSize;
     258        }
     259
     260        /**
     261         * @return Depot Mod-Node
     262         */
     263        public NodeMod getNode() {
     264                return node;
     265        }
     266
     267        /**
     268         * @return Is a mod that is always installed?
     269         */
     270        public boolean isDefaultMod() {
     271                return packageNumber < 10000;
     272        }
     273
     274        /**
     275         * @return Get the depot file entry
     276         */
     277        public net.oni2.aeinstaller.backend.depot.model.File getFile() {
     278                return file;
     279        }
     280
     281        @Override
     282        public String toString() {
     283                return name;
     284        }
     285
     286        /**
     287         * @return Is this mod valid on the running platform?
     288         */
     289        public boolean validOnPlatform() {
     290                ECompatiblePlatform plat = platform;
     291                switch (plat) {
     292                        case BOTH:
     293                                return true;
     294                        case MACOS:
     295                                return (Settings.getPlatform() == Platform.MACOS);
     296                        case WIN:
     297                                return (Settings.getPlatform() == Platform.WIN)
     298                                                || (Settings.getPlatform() == Platform.LINUX);
     299                }
     300                return false;
    38301        }
    39302
  • AE/installer2/src/net/oni2/aeinstaller/backend/network/DrupalJSONQuery.java

    r591 r600  
    5959                                        + ".json", data);
    6060                } catch (UnsupportedEncodingException e) {
    61                         // TODO Auto-generated catch block
    6261                        e.printStackTrace();
    6362                }
     
    170169                        return jA;
    171170                } catch (JSONException e) {
    172                         // TODO Auto-generated catch block
    173171                        e.printStackTrace();
    174172                } catch (UnsupportedEncodingException e) {
    175                         // TODO Auto-generated catch block
    176173                        e.printStackTrace();
    177174                } catch (IOException e) {
    178                         // TODO Auto-generated catch block
    179175                        e.printStackTrace();
    180176                } finally {
     
    185181                                        input.close();
    186182                                } catch (IOException e) {
    187                                         // TODO Auto-generated catch block
    188183                                        e.printStackTrace();
    189184                                }
  • AE/installer2/src/net/oni2/aeinstaller/backend/oni/Installer.java

    r599 r600  
    33import java.io.File;
    44import java.io.FileFilter;
     5import java.io.FileNotFoundException;
    56import java.io.FilenameFilter;
    67import java.io.IOException;
     8import java.io.PrintWriter;
     9import java.text.SimpleDateFormat;
     10import java.util.Date;
    711import java.util.HashMap;
    812import java.util.List;
     
    3539        }
    3640
    37         public static void install(TreeSet<Mod> mods) {
     41        public static void install(TreeSet<Mod> mods,
     42                        InstallProgressListener listener) {
     43
    3844                Vector<File> folders = new Vector<File>();
    3945                folders.add(Paths.getVanillaOnisPath());
     
    5965                }
    6066
    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                // for (File f : Paths.getModsPath().listFiles()) {
     68                // File oni = new File(f, "oni");
     69                // if (oni.exists())
     70                // folders.add(oni);
     71                // }
     72                combineBinaryFiles(folders, listener);
    6773
    6874                // TODO: bsl()
    6975        }
    7076
    71         private static void combineBinaryFiles(List<File> srcFolders) {
     77        private static void combineBinaryFiles(List<File> srcFoldersFiles,
     78                        InstallProgressListener listener) {
    7279                try {
     80                        HashMap<String, Vector<File>> levels = new HashMap<String, Vector<File>>();
     81
     82                        for (File path : srcFoldersFiles) {
     83                                for (File levelF : path.listFiles()) {
     84                                        String fn = levelF.getName().toLowerCase();
     85                                        String levelN = null;
     86                                        if (levelF.isDirectory()) {
     87                                                levelN = fn;
     88                                        } else if (fn.endsWith(".dat")) {
     89                                                levelN = fn.substring(0, fn.lastIndexOf('.'));
     90                                        }
     91                                        if (levelN != null) {
     92                                                if (!levels.containsKey(levelN))
     93                                                        levels.put(levelN, new Vector<File>());
     94                                                levels.get(levelN).add(levelF);
     95                                        }
     96                                }
     97                        }
     98
     99                        int totalSteps = 0;
     100                        int stepsDone = 0;
     101
     102                        for (@SuppressWarnings("unused")
     103                        String s : levels.keySet())
     104                                totalSteps++;
     105
     106                        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
     107
     108                        File logFile = new File(Paths.getInstallerPath(),
     109                                        "Installation.log");
     110                        PrintWriter log = null;
     111                        try {
     112                                log = new PrintWriter(logFile);
     113                        } catch (FileNotFoundException e) {
     114                                e.printStackTrace();
     115                        }
     116
     117                        Date start = new Date();
     118                        log.println("Installation of mods started at " + sdf.format(start));
     119
     120                        log.println("Cleaning directories");
     121                        listener.installProgressUpdate(stepsDone, totalSteps,
     122                                        "Cleaning up directories");
     123
    73124                        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 
     125
     126                        log.println("Importing levels");
    85127                        for (String l : levels.keySet()) {
    86                                 System.out.println("Level " + l);
     128                                log.println("\tLevel " + l);
    87129                                for (File f : levels.get(l)) {
    88                                         System.out.println("    " + f.getPath());
    89 
    90                                 }
    91 
    92                                 OniSplit.importLevel(levels.get(l),
     130                                        log.println("\t\t\t" + f.getPath());
     131                                }
     132
     133                                Vector<String> res = OniSplit.packLevel(levels.get(l),
    93134                                                new File(Paths.getEditionGDF(), l + ".dat"));
    94 
    95                                 System.out.println();
    96                         }
     135                                if (res != null && res.size() > 0) {
     136                                        for (String s : res)
     137                                                log.println("\t\t" + s);
     138                                }
     139
     140                                log.println();
     141                        }
     142                       
     143                        Date end = new Date();
     144                        log.println("Initialization ended at " + sdf.format(end));
     145                        log.println("Process took "
     146                                        + ((end.getTime() - start.getTime()) / 1000) + " seconds");
     147                        log.close();
    97148                } catch (IOException e) {
    98149                        // TODO Auto-generated catch block
     
    103154        /**
    104155         * Initializes the Edition core
     156         *
     157         * @param listener
     158         *            Listener for status updates
    105159         */
    106         public static void initializeEdition() {
     160        public static void initializeEdition(InstallProgressListener listener) {
    107161                File init = new File(Paths.getTempPath(), "init");
     162
     163                int totalSteps = 0;
     164                int stepsDone = 0;
     165
     166                SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
     167
     168                for (@SuppressWarnings("unused")
     169                File f : Paths.getVanillaGDF().listFiles(new FilenameFilter() {
     170                        @Override
     171                        public boolean accept(File dir, String name) {
     172                                return name.endsWith(".dat");
     173                        }
     174                })) {
     175                        totalSteps++;
     176                }
     177                totalSteps = totalSteps * 2 + 2;
     178
    108179                try {
     180                        File logFile = new File(Paths.getInstallerPath(),
     181                                        "Initialization.log");
     182                        PrintWriter log = new PrintWriter(logFile);
     183
     184                        Date start = new Date();
     185                        log.println("Initialization of Edition core started at "
     186                                        + sdf.format(start));
     187                        log.println("Cleaning directories");
     188
     189                        listener.installProgressUpdate(stepsDone, totalSteps,
     190                                        "Cleaning up directories");
    109191                        createEmptyPath(Paths.getVanillaOnisPath());
    110192                        createEmptyPath(init);
    111193                        File level0Folder = new File(init, "level0_Final");
    112194                        createEmptyPath(level0Folder);
    113                         File level0FolderVanilla = new File(Paths.getVanillaOnisPath(),
    114                                         "level0_Final");
    115                         createEmptyPath(level0FolderVanilla);
    116                         createEmptyPath(new File(level0FolderVanilla, "characters"));
     195
     196                        stepsDone++;
     197
     198                        log.println("Exporting levels and moving files to level0");
    117199
    118200                        for (File f : Paths.getVanillaGDF().listFiles(new FilenameFilter() {
     
    127209                                int levelNumber = Integer.parseInt(fi.findInLine("[0-9]+"));
    128210
     211                                log.println("\t" + levelName + ":");
     212                                log.println("\t\tExporting");
     213                                listener.installProgressUpdate(stepsDone, totalSteps,
     214                                                "Exporting vanilla level " + levelNumber);
     215
    129216                                // Edition/GameDataFolder/level*_Final/
    130217                                File tempLevelFolder = new File(init, levelName);
    131218
    132219                                // Export Vanilla-Level-Dat -> Temp/Level
    133                                 OniSplit.export(tempLevelFolder, f);
    134 
     220                                Vector<String> res = OniSplit.export(tempLevelFolder, f);
     221                                if (res != null && res.size() > 0) {
     222                                        for (String s : res)
     223                                                log.println("\t\t\t" + s);
     224                                }
     225
     226                                log.println("\t\tMoving files");
    135227                                handleFileGlobalisation(tempLevelFolder, level0Folder,
    136                                                 level0FolderVanilla, levelNumber);
    137                         }
     228                                                levelNumber);
     229                                stepsDone++;
     230                                log.println();
     231                        }
     232
     233                        log.println("Reimporting levels");
    138234
    139235                        for (File f : init.listFiles()) {
    140236                                String levelName = f.getName();
    141237
    142                                 // Edition/AEInstaller/vanilla/level*_Final/
    143                                 File vanillaFolder = new File(Paths.getVanillaOnisPath(),
    144                                                 levelName);
    145                                 vanillaFolder.mkdirs();
     238                                log.println("\t" + levelName);
     239                                listener.installProgressUpdate(stepsDone, totalSteps,
     240                                                "Creating globalized " + levelName);
    146241
    147242                                Vector<File> folders = new Vector<File>();
    148243                                folders.add(f);
    149244
    150                                 OniSplit.importLevel(folders, new File(vanillaFolder, levelName
    151                                                 + ".oni"));
    152                         }
    153 
     245                                Vector<String> res = OniSplit.importLevel(folders, new File(
     246                                                Paths.getVanillaOnisPath(), levelName + ".dat"));
     247                                if (res != null && res.size() > 0) {
     248                                        for (String s : res)
     249                                                log.println("\t\t" + s);
     250                                }
     251
     252                                log.println();
     253                                stepsDone++;
     254                        }
     255
     256                        listener.installProgressUpdate(stepsDone, totalSteps,
     257                                        "Copying basic files");
    154258                        // Copy Oni-configs
    155259                        File persistVanilla = new File(Paths.getOniBasePath(),
     
    167271
    168272                        // TODO: FileUtils.deleteDirectory(init);
     273                        Date end = new Date();
     274                        log.println("Initialization ended at " + sdf.format(end));
     275                        log.println("Process took "
     276                                        + ((end.getTime() - start.getTime()) / 1000) + " seconds");
     277                        log.close();
    169278                } catch (IOException e) {
    170279                        e.printStackTrace();
     
    185294
    186295        private static void handleFileGlobalisation(File tempFolder,
    187                         File level0Folder, File level0FolderVanilla, int levelNumber) {
     296                        File level0Folder, int levelNumber) {
    188297                // Move AKEV and related files to subfolder so they're not globalized:
    189298                if (levelNumber != 0) {
  • AE/installer2/src/net/oni2/aeinstaller/backend/oni/OniSplit.java

    r598 r600  
    88
    99import net.oni2.aeinstaller.backend.Paths;
     10import net.oni2.aeinstaller.backend.QuickAppExecution;
    1011import net.oni2.aeinstaller.backend.Settings;
    1112import net.oni2.aeinstaller.backend.Settings.Architecture;
    1213import net.oni2.aeinstaller.backend.Settings.Platform;
    1314import net.oni2.aeinstaller.backend.WinRegistry;
    14 import net.oni2.aeinstaller.backend.app_launcher.QuickAppExecution;
    1515
    1616/**
     
    8383         * @param input
    8484         *            Dat file
    85          */
    86         public static void export(File targetFolder, File input) {
     85         * @return OniSplit output
     86         */
     87        public static Vector<String> export(File targetFolder, File input) {
    8788                if (!targetFolder.exists())
    8889                        targetFolder.mkdir();
     
    9293                cmdLine.add(targetFolder.getPath());
    9394                cmdLine.add(input.getPath());
    94                 // System.out.println(cmdLine.toString());
    95                 Vector<String> res = null;
    96                 try {
    97                         res = QuickAppExecution.execute(cmdLine);
    98                 } catch (IOException e) {
    99                         // TODO Auto-generated catch block
    100                         e.printStackTrace();
    101                 }
    102                 if (res != null) {
    103                         // check for errors
    104                         System.out.println(res.toString());
    105                 }
     95                Vector<String> res = null;
     96                try {
     97                        res = QuickAppExecution.execute(cmdLine);
     98                } catch (IOException e) {
     99                        // TODO Auto-generated catch block
     100                        e.printStackTrace();
     101                }
     102                return res;
    106103        }
    107104
     
    113110         * @param targetFile
    114111         *            Target .dat-file
    115          */
    116         public static void importLevel(Vector<File> sourceFolders, File targetFile) {
     112         * @return OniSplit output
     113         */
     114        public static Vector<String> importLevel(Vector<File> sourceFolders, File targetFile) {
    117115                Vector<String> cmdLine = getProgramInvocation();
    118116                cmdLine.add(getImportParam());
     
    120118                        cmdLine.add(f.getPath());
    121119                cmdLine.add(targetFile.getPath());
    122                 // System.out.println(cmdLine.toString());
    123                 Vector<String> res = null;
    124                 try {
    125                         res = QuickAppExecution.execute(cmdLine);
    126                 } catch (IOException e) {
    127                         // TODO Auto-generated catch block
    128                         e.printStackTrace();
    129                 }
    130                 if (res != null) {
    131                         // check for errors
    132                         System.out.println(res.toString());
    133                 }
     120                Vector<String> res = null;
     121                try {
     122                        res = QuickAppExecution.execute(cmdLine);
     123                } catch (IOException e) {
     124                        // TODO Auto-generated catch block
     125                        e.printStackTrace();
     126                }
     127                return res;
     128        }
     129
     130        /**
     131         * Pack a level to a .dat-file. More powerful variant which allows
     132         * specifying single .oni/.dat files
     133         *
     134         * @param sourceFoldersFiles
     135         *            Folders (for recursive .oni import) or files (.dat and single
     136         *            .oni) to import
     137         * @param targetFile
     138         *            Target .dat-file
     139         * @return OniSplit output
     140         */
     141        public static Vector<String> packLevel(Vector<File> sourceFoldersFiles,
     142                        File targetFile) {
     143                Vector<String> cmdLine = getProgramInvocation();
     144                cmdLine.add(getPackParam());
     145                cmdLine.add(getPackTypeParam());
     146                cmdLine.add("-out");
     147                cmdLine.add(targetFile.getPath());
     148                for (File f : sourceFoldersFiles)
     149                        cmdLine.add(f.getPath());
     150                Vector<String> res = null;
     151                try {
     152                        res = QuickAppExecution.execute(cmdLine);
     153                } catch (IOException e) {
     154                        // TODO Auto-generated catch block
     155                        e.printStackTrace();
     156                }
     157                return res;
    134158        }
    135159
     
    144168         * @param moveParameter
    145169         *            e.g. overwrite, delete
    146          */
    147         public static void move(File targetFolder, String input,
     170         * @return OniSplit output
     171         */
     172        public static Vector<String> move(File targetFolder, String input,
    148173                        String moveParameter) {
    149174                if (!targetFolder.exists())
     
    162187                        e.printStackTrace();
    163188                }
    164                 if (res != null && res.size() > 0) {
    165                         // TODO: errors
    166                         System.out.println(res.toString());
    167                 }
     189                return res;
    168190        }
    169191
     
    175197        }
    176198
     199        private static String getPackParam() {
     200                return "pack";
     201        }
     202
     203        private static String getPackTypeParam() {
     204                if (Settings.getPlatform() == Platform.MACOS)
     205                        return "-type:macintel";
     206                else
     207                        return "-type:pc";
     208        }
     209
    177210        private static Vector<String> getProgramInvocation() {
    178211                Vector<String> res = new Vector<String>();
    179212                if (Settings.getPlatform() != Platform.WIN)
    180213                        res.add("mono");
    181                 res.add(new File(Paths.getInstallerPath(), "Onisplit.exe").getPath());
     214                res.add(new File(new File(Paths.getEditionBasePath(), "Tools"),
     215                                "Onisplit.exe").getPath());
    182216                return res;
    183217        }
  • AE/installer2/src/net/oni2/aeinstaller/gui/HTMLLinkLabel.java

    r593 r600  
    5555                                                Desktop.getDesktop().browse(e.getURL().toURI());
    5656                                        } catch (IOException e1) {
    57                                                 // TODO Auto-generated catch block
    5857                                                e1.printStackTrace();
    5958                                        } catch (URISyntaxException e1) {
    60                                                 // TODO Auto-generated catch block
    6159                                                e1.printStackTrace();
    6260                                        }
  • AE/installer2/src/net/oni2/aeinstaller/gui/MainWin.java

    r596 r600  
    11package net.oni2.aeinstaller.gui;
    22
    3 import java.awt.Frame;
    43import java.util.ArrayList;
    5 import java.util.Comparator;
    64import java.util.List;
    75import java.util.ResourceBundle;
    86import java.util.TreeMap;
    9 
     7import java.util.TreeSet;
     8
     9import javax.swing.JButton;
    1010import javax.swing.JComboBox;
    1111import javax.swing.JComponent;
     
    2626import net.oni2.aeinstaller.backend.Settings;
    2727import net.oni2.aeinstaller.backend.Settings.Platform;
     28import net.oni2.aeinstaller.backend.SizeFormatter;
    2829import net.oni2.aeinstaller.backend.depot.DepotCacheUpdateProgressListener;
    29 import net.oni2.aeinstaller.backend.depot.DepotConfig;
    3030import net.oni2.aeinstaller.backend.depot.DepotManager;
    31 import net.oni2.aeinstaller.backend.depot.model.NodeMod;
    32 import net.oni2.aeinstaller.backend.depot.model.TaxonomyTerm;
    33 import net.oni2.aeinstaller.backend.depot.model.TaxonomyVocabulary;
     31import net.oni2.aeinstaller.backend.mods.Mod;
     32import net.oni2.aeinstaller.backend.mods.ModManager;
     33import net.oni2.aeinstaller.backend.mods.Type;
     34import net.oni2.aeinstaller.backend.oni.InstallProgressListener;
     35import net.oni2.aeinstaller.backend.oni.Installer;
    3436import net.oni2.aeinstaller.gui.about.AboutDialog;
     37import net.oni2.aeinstaller.gui.modtable.DownloadSizeListener;
    3538import net.oni2.aeinstaller.gui.modtable.ModTableFilter;
    3639import net.oni2.aeinstaller.gui.modtable.ModTableModel;
     
    4750 * @author Christian Illy
    4851 */
    49 public class MainWin extends JFrame implements ApplicationListener {
     52public class MainWin extends JFrame implements ApplicationListener,
     53                DownloadSizeListener {
    5054        private static final long serialVersionUID = -4027395051382659650L;
    5155
     
    6367        private ModTableModel model;
    6468        private TableRowSorter<ModTableModel> sorter;
     69        private JLabel lblDownloadSizeVal;
    6570
    6671        private JLabel lblSubmitterVal;
    6772        private JLabel lblCreatorVal;
    6873        private JLabel lblFilesVal;
    69         private JLabel lblIdVal;
    7074        private HTMLLinkLabel lblDescriptionVal;
     75
     76        private JButton btnInstall;
    7177
    7278        /**
     
    7985
    8086                contents.setDividerLocation(400);
    81                 initTable();
    82                 initModTypeBox();
    8387
    8488                if (Settings.getPlatform() == Platform.MACOS) {
    8589                        mainMenu.setVisible(false);
    8690                }
     91
     92                getRootPane().setDefaultButton(btnInstall);
    8793        }
    8894
     
    9096                cmbModTypes.removeAllItems();
    9197
    92                 TaxonomyVocabulary tv = DepotManager.getInstance().getVocabulary(
    93                                 DepotConfig.getVocabularyName_ModType());
    94                 if (tv == null)
    95                         return;
    96 
    97                 int vid = tv.getVid();
    98                 TreeMap<String, TaxonomyTerm> terms = new TreeMap<String, TaxonomyTerm>();
    99                 terms.put(" ", new TaxonomyTerm(-1, vid, "-All-"));
    100                 for (TaxonomyTerm t : DepotManager.getInstance()
    101                                 .getTaxonomyTermsByVocabulary(vid)) {
    102                         terms.put(t.getName(), t);
    103                 }
    104                 for (TaxonomyTerm t : terms.values()) {
     98                TreeMap<String, Type> types = new TreeMap<String, Type>();
     99                for (Type t : ModManager.getInstance().getTypesWithContent()) {
     100                        types.put(t.getName(), t);
     101                }
     102                for (Type t : types.values()) {
    105103                        cmbModTypes.addItem(t);
    106104                }
     
    121119                                                        int modelRow = tblMods
    122120                                                                        .convertRowIndexToModel(viewRow);
    123                                                         NodeMod mod = (NodeMod) model.getValueAt(modelRow,
    124                                                                         -1);
     121                                                        Mod mod = (Mod) model.getValueAt(modelRow, -1);
    125122                                                        modSelection(mod);
    126123                                                }
     
    133130
    134131                model = new ModTableModel();
     132                model.addDownloadSizeListener(this);
    135133
    136134                tblMods.setModel(model);
     
    139137                tblMods.setRowSorter(sorter);
    140138
    141                 sorter.setRowFilter(new ModTableFilter(-1));
     139                sorter.setRowFilter(new ModTableFilter(null));
    142140
    143141                sorter.setSortable(2, false);
    144                 sorter.setComparator(1, new Comparator<String>() {
    145 
    146                         @Override
    147                         public int compare(String o1, String o2) {
    148                                 int i1 = Integer.parseInt(o1);
    149                                 int i2 = Integer.parseInt(o2);
    150                                 return i1 - i2;
    151                         }
    152                 });
    153142
    154143                List<RowSorter.SortKey> sortKeys = new ArrayList<RowSorter.SortKey>();
     
    171160                                JOptionPane.QUESTION_MESSAGE);
    172161                return res == JOptionPane.YES_OPTION;
    173         }
    174 
    175         private boolean closeFrames() {
    176                 System.gc();
    177                 for (Frame f : Frame.getFrames()) {
    178                         if (f != this)
    179                                 f.dispose();
    180                 }
    181                 return true;
    182162        }
    183163
     
    206186                                                }
    207187                                        });
    208                         model.reloadData();
     188                        ModManager.getInstance().init();
     189                        initTable();
    209190                        initModTypeBox();
     191
    210192                        tblMods.setVisible(true);
    211193                        DepotManager.getInstance().printStats();
     
    244226        @SuppressWarnings("unused")
    245227        private void loadConfig() {
    246                 // TODO Auto-generated method stub
     228                // TODO method stub
    247229                JOptionPane.showMessageDialog(this, "loadConfig", "todo",
    248230                                JOptionPane.INFORMATION_MESSAGE);
     
    251233        @SuppressWarnings("unused")
    252234        private void saveConfig() {
    253                 // TODO Auto-generated method stub
     235                // TODO method stub
    254236                JOptionPane.showMessageDialog(this, "saveConfig", "todo",
    255237                                JOptionPane.INFORMATION_MESSAGE);
    256238        }
    257239
    258         @SuppressWarnings("unused")
    259         private void reglobalize() {
    260                 // TODO Auto-generated method stub
    261                 JOptionPane.showMessageDialog(this, "reglobalize", "todo",
     240        @DoInBackground(progressMessage = "initializingEdition.title", cancelable = false, indeterminateProgress = false)
     241        private void reglobalize(final BackgroundEvent evt) {
     242                Installer.initializeEdition(new InstallProgressListener() {
     243                        @Override
     244                        public void installProgressUpdate(int done, int total, String step) {
     245                                evt.setProgressEnd(total);
     246                                evt.setProgressValue(done);
     247                                evt.setProgressMessage(step);
     248                        }
     249                });
     250        }
     251
     252        @SuppressWarnings("unused")
     253        private void tools() {
     254                // TODO method stub
     255                JOptionPane.showMessageDialog(this, "tools", "todo",
    262256                                JOptionPane.INFORMATION_MESSAGE);
    263257        }
     
    265259        @SuppressWarnings("unused")
    266260        private void revertSelection() {
    267                 // TODO Auto-generated method stub
     261                // TODO method stub
    268262                JOptionPane.showMessageDialog(this, "revertSelection", "todo",
    269263                                JOptionPane.INFORMATION_MESSAGE);
    270264        }
    271265
    272         private void modSelection(NodeMod n) {
     266        @DoInBackground(progressMessage = "installing.title", cancelable = false, indeterminateProgress = false)
     267        private void install(final BackgroundEvent evt) {
     268                TreeSet<Mod> mods = new TreeSet<Mod>();
     269                mods.addAll(ModManager.getInstance().getDefaultMods());
     270                mods.addAll(model.getSelectedMods());
     271
     272                System.out.println("Install mods:");
     273                for (Mod m : mods) {
     274                        System.out
     275                                        .println("  " + m.getPackageNumber() + ": " + m.getName());
     276                }
     277
     278                Installer.install(mods, new InstallProgressListener() {
     279                        @Override
     280                        public void installProgressUpdate(int done, int total, String step) {
     281                                evt.setProgressEnd(total);
     282                                evt.setProgressValue(done);
     283                                evt.setProgressMessage(step);
     284                        }
     285                });
     286
     287                // TODO method stub
     288                JOptionPane.showMessageDialog(this, "install", "todo",
     289                                JOptionPane.INFORMATION_MESSAGE);
     290        }
     291
     292        private void modSelection(Mod m) {
    273293                lblSubmitterVal.setText("");
    274294                lblCreatorVal.setText("");
    275                 lblIdVal.setText("");
    276295                lblFilesVal.setText("");
    277296                lblDescriptionVal.setText("");
    278                 if (n != null) {
    279                         lblSubmitterVal.setText(n.getName());
    280                         lblCreatorVal.setText(n.getFields().get("creator"));
    281                         lblIdVal.setText(Integer.toString(n.getNid()));
    282                         lblFilesVal.setText(Integer.toString(n.getUploads().size()));
    283                         if (n.getBody() != null)
    284                                 lblDescriptionVal.setText(n.getBody().getSafe_value());
     297                if (m != null) {
     298                        lblSubmitterVal.setText(m.getName());
     299                        lblCreatorVal.setText(m.getCreator());
     300                        if (m.getNode() != null) {
     301                                lblFilesVal.setText(Integer.toString(m.getNode().getUploads()
     302                                                .size()));
     303                        }
     304                        lblDescriptionVal.setText(m.getDescription());
    285305                }
    286306                // TODO
     
    289309        @SuppressWarnings("unused")
    290310        private void modTypeSelection() {
    291                 TaxonomyTerm t = (TaxonomyTerm) cmbModTypes.getSelectedItem();
     311                Type t = (Type) cmbModTypes.getSelectedItem();
    292312                if (t != null)
    293                         sorter.setRowFilter(new ModTableFilter(t.getTid()));
     313                        sorter.setRowFilter(new ModTableFilter(t));
    294314                else
    295                         sorter.setRowFilter(new ModTableFilter(-1));
     315                        sorter.setRowFilter(new ModTableFilter(null));
     316        }
     317
     318        @Override
     319        public void downloadSizeChanged(int newSize) {
     320                lblDownloadSizeVal.setText(SizeFormatter.format(newSize, 2));
     321        }
     322
     323        @DoInBackground(progressMessage = "initializingEdition.title", cancelable = false, indeterminateProgress = false)
     324        private void initialize(final BackgroundEvent evt) {
     325                if (!Installer.isEditionInitialized()) {
     326                        int res = JOptionPane.showConfirmDialog(this,
     327                                        bundle.getString("askInitialize.text"),
     328                                        bundle.getString("askInitialize.title"),
     329                                        JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE);
     330                        if (res == JOptionPane.NO_OPTION) {
     331                                exit();
     332                        } else {
     333                                Installer.initializeEdition(new InstallProgressListener() {
     334                                        @Override
     335                                        public void installProgressUpdate(int done, int total,
     336                                                        String step) {
     337                                                evt.setProgressEnd(total);
     338                                                evt.setProgressValue(done);
     339                                                evt.setProgressMessage(step);
     340                                        }
     341                                });
     342                        }
     343                }
    296344        }
    297345
     
    323371                if (askClose()) {
    324372                        event.setHandled(true);
    325                         closeFrames();
    326373                        saveLocalData();
    327374                        exit();
     
    334381        public void handleReOpenApplication(ApplicationEvent event) {
    335382        }
     383
    336384}
  • AE/installer2/src/net/oni2/aeinstaller/gui/MainWin.properties

    r594 r600  
    1818menu.reglobalize=&Rebuild Core Data
    1919menu.reglobalizeTooltip=Rebuild Core Data
     20menu.tools=&Manage Tools
     21menu.toolsTooltip=Install/Remove Tools
    2022
    2123btnRevertSelection.text=Revert selection
    2224btnRevertSelection.tooltip=Select mods which are currently installed
     25btnInstall.text=&Install
     26btnInstall.tooltip=Install selected mods
    2327lblModTypes.text=Mod type:
     28lblDownloadSize.text=Size of files to download:
    2429
    2530lblSubmitter.text=Submitter:
    2631lblCreator.text=Creator:
    27 lblId.text=NodeID:
    2832lblFiles.text=Number of files:
    2933lblDescription.text=Description:
     
    3640askClose.title=Confirm close request
    3741askClose.text=Are you sure you want to close the program?
     42
     43askInitialize.title=Initialize Edition
     44askInitialize.text=The Edition is not yet initialized.\nIf you do not initialize now the installer will exit.\nInitialize Edition core now?
     45
     46initializingEdition.title=Initializing Edition core
     47installing.title=Installing mods
  • AE/installer2/src/net/oni2/aeinstaller/gui/MainWin.yml

    r594 r600  
    66  locationRelativeTo: null
    77  defaultCloseOperation: doNothingOnClose
    8   onWindowOpened: [execDepotUpdate,checkUpdates,focus]
    9   onWindowClosing: [askClose,closeFrames,saveLocalData,exit]
     8  onWindowOpened: [execDepotUpdate,checkUpdates,initialize,focus]
     9  onWindowClosing: [askClose,saveLocalData,exit]
    1010  iconImage: img.ae
    1111  content:
    12     - Action(name=exitAction, text=menu.exit, toolTipText=menu.exitTooltip, icon=img.exit, onAction=[askClose,closeFrames,saveLocalData,exit])
     12    - Action(name=exitAction, text=menu.exit, toolTipText=menu.exitTooltip, icon=img.exit, onAction=[askClose,saveLocalData,exit])
    1313    - Action(name=settings, text=menu.settings, toolTipText=menu.settingsTooltip, icon=img.settings, onAction=[showSettings])
    1414    - Action(name=about, text=menu.about, toolTipText=menu.aboutTooltip, icon=img.about, onAction=[showAbout])
     
    1616    - Action(name=saveConfig, text=menu.saveConfig, toolTipText=menu.saveConfigTooltip, icon=img.saveFile, onAction=[saveConfig])
    1717    - Action(name=reglobalize, text=menu.reglobalize, toolTipText=menu.reglobalizeTooltip, icon=img.refresh, onAction=[reglobalize])
     18    - Action(name=tools, text=menu.tools, toolTipText=menu.toolsTooltip, icon=img.tools, onAction=[tools])
    1819    - JMenuBar:
    1920        - JMenu(name=mainMenu, text=menu.main):
     
    2627            - JSeparator()
    2728            - JMenuItem(action=reglobalize)
    28     - JToolBar(name=tools, floatable=false, orientation=0):
     29            - JSeparator()
     30            - JMenuItem(action=tools)
     31    - JToolBar(name=toolbar, floatable=false, orientation=0):
    2932        - JButton(action=exitAction, hideActionText=true)
    3033        - JToolBarSeparator()
     
    3336    - JSplitPane(name=contents, orientation=horizontalSplit, continuousLayout=true):
    3437        - JPanel(name=panMods):
    35             - JButton(name=btnRevertSelection, icon=img.undo16, text=btnRevertSelection.text, toolTipText=btnRevertSelection.tooltip, onAction=[revertSelection])
    3638            - JLabel(name=lblModTypes, text=lblModTypes.text)
    3739            - JComboBox(name=cmbModTypes, onAction=modTypeSelection)
    3840            - JScrollPane(name=scrollMods, vScrollBar=always, hScrollBar=never):
    3941                JTable(name=tblMods, visible=false)
     42            - JButton(name=btnRevertSelection, icon=img.undo16, text=btnRevertSelection.text, toolTipText=btnRevertSelection.tooltip, onAction=[revertSelection])
     43            - JButton(name=btnInstall, icon=img.install, text=btnInstall.text, toolTipText=btnInstall.tooltip, onAction=[install])
     44            - JLabel(name=lblDownloadSize, text=lblDownloadSize.text)
     45            - JLabel(name=lblDownloadSizeVal)
    4046            - MigLayout: |
    4147                 [grow]
    42                  btnRevertSelection                 [min]
    4348                 lblModTypes<,cmbModTypes           [min]
    4449                 scrollMods                         [grow]
     50                 >btnRevertSelection,btnInstall     [min]
     51                 lblDownloadSize,lblDownloadSizeVal [min]
    4552        - JPanel(name=panInfo):
    4653            - JLabel(name=lblSubmitter, text=lblSubmitter.text)
     
    4855            - JLabel(name=lblCreator, text=lblCreator.text)
    4956            - JLabel(name=lblCreatorVal)
    50             - JLabel(name=lblId, text=lblId.text)
    51             - JLabel(name=lblIdVal)
    5257            - JLabel(name=lblFiles, text=lblFiles.text)
    5358            - JLabel(name=lblFilesVal)
     
    5964                 >lblSubmitter     lblSubmitterVal    [min]
    6065                 >lblCreator       lblCreatorVal      [min]
    61                  >lblId            lblIdVal           [min]
    6266                 >lblFiles         lblFilesVal        [min]
    6367                 >^lblDescription  scrollDescription  [grow]
  • AE/installer2/src/net/oni2/aeinstaller/gui/modtable/ModTableFilter.java

    r591 r600  
    11package net.oni2.aeinstaller.gui.modtable;
    2 
    3 import java.util.HashSet;
    42
    53import javax.swing.RowFilter;
    64
    7 import net.oni2.aeinstaller.backend.Settings;
    8 import net.oni2.aeinstaller.backend.depot.DepotManager;
    9 import net.oni2.aeinstaller.backend.depot.model.NodeMod;
     5import net.oni2.aeinstaller.backend.mods.Mod;
     6import net.oni2.aeinstaller.backend.mods.Type;
    107
    118/**
     
    1310 */
    1411public class ModTableFilter extends RowFilter<ModTableModel, Integer> {
    15         int type = -1;
     12        Type type = null;
    1613
    1714        /**
    1815         * @param type
    19          *            Type of mods to show (-1 for all)
     16         *            Type of mods to show (null for all)
    2017         */
    21         public ModTableFilter(int type) {
     18        public ModTableFilter(Type type) {
    2219                super();
    2320                this.type = type;
     
    2623        @Override
    2724        public boolean include(
    28                         javax.swing.RowFilter.Entry<? extends ModTableModel, ? extends Integer> entry) {
    29                 NodeMod mod = (NodeMod) entry.getModel().getValueAt(
    30                                 entry.getIdentifier(), -1);
     25                        RowFilter.Entry<? extends ModTableModel, ? extends Integer> entry) {
     26                Mod mod = (Mod) entry.getModel().getValueAt(entry.getIdentifier(), -1);
    3127
    32                 if (!DepotManager.getInstance().isModValidOnPlatform(mod,
    33                                 Settings.getPlatform()))
     28                if (mod.isDefaultMod())
    3429                        return false;
    3530
    36                 if (type < 0)
     31                if (!mod.validOnPlatform())
     32                        return false;
     33
     34                if (type == null)
    3735                        return true;
    3836
    39                 HashSet<Integer> types = new HashSet<Integer>();
    40                 types.add(type);
    41                 return DepotManager.getInstance().isModOfType(mod, types, false);
     37                return mod.getTypes().contains(type);
    4238        }
    4339}
  • AE/installer2/src/net/oni2/aeinstaller/gui/modtable/ModTableModel.java

    r593 r600  
    11package net.oni2.aeinstaller.gui.modtable;
    22
     3import java.util.HashSet;
    34import java.util.ResourceBundle;
     5import java.util.TreeSet;
    46import java.util.Vector;
    57
     
    79import javax.swing.table.TableColumn;
    810
    9 import net.oni2.aeinstaller.backend.depot.DepotConfig;
    10 import net.oni2.aeinstaller.backend.depot.DepotManager;
    11 import net.oni2.aeinstaller.backend.depot.model.NodeMod;
     11import net.oni2.aeinstaller.backend.mods.Mod;
     12import net.oni2.aeinstaller.backend.mods.ModManager;
     13import net.oni2.aeinstaller.backend.mods.Type;
    1214
    1315/**
     
    2123                        .getName());
    2224
    23         private Vector<NodeMod> items;
    24         private Vector<Boolean> install;
    25         private int vocabModTypeID = -1;
    26         private int vocabPlatformID = -1;
     25        private Vector<Mod> items = new Vector<Mod>();
     26        private Vector<Boolean> install = new Vector<Boolean>();
     27
     28        private HashSet<DownloadSizeListener> listeners = new HashSet<DownloadSizeListener>();
    2729
    2830        /**
     
    3537        @Override
    3638        public Object getValueAt(int row, int col) {
    37                 NodeMod node = items.get(row);
     39                Mod mod = items.get(row);
    3840                switch (col) {
    3941                        case -1:
    40                                 return node;
    41                         case 0:
    42                                 return node.getTitle();
    43                         case 1:
    44                                 return node.getFields().get("package_number");
     42                                return mod;
     43                        case 0:
     44                                return mod.getName();
     45                        case 1:
     46                                return mod.getPackageNumber();
    4547                        case 2:
    4648                                String type = "";
    47                                 if (vocabModTypeID < 0) {
    48                                         vocabModTypeID = DepotManager
    49                                                         .getInstance()
    50                                                         .getVocabulary(
    51                                                                         DepotConfig.getVocabularyName_ModType())
    52                                                         .getVid();
    53                                 }
    54                                 for (int tid : node.getTaxonomyTerms().get(vocabModTypeID)) {
     49                                for (Type t : mod.getTypes()) {
    5550                                        if (type.length() > 0)
    5651                                                type += ", ";
    57                                         type += DepotManager.getInstance().getTaxonomyTerm(tid)
    58                                                         .getName();
     52                                        type += t.getName();
    5953                                }
    6054                                return type;
    6155                        case 3:
    62                                 if (vocabPlatformID < 0) {
    63                                         vocabPlatformID = DepotManager
    64                                                         .getInstance()
    65                                                         .getVocabulary(
    66                                                                         DepotConfig.getVocabularyName_Platform())
    67                                                         .getVid();
    68                                 }
    69                                 int tid = node.getTaxonomyTerms().get(vocabPlatformID)
    70                                                 .iterator().next();
    71                                 return DepotManager.getInstance().getTaxonomyTerm(tid)
    72                                                 .getName();
     56                                return mod.getPlatform().toString();
    7357                        case 4:
    7458                                return install.get(row);
     
    163147         */
    164148        public void reloadData() {
    165                 items = DepotManager.getInstance().getModPackageNodes();
    166                 install = new Vector<Boolean>();
     149                items.clear();
     150                items.addAll(ModManager.getInstance().getMods());
     151                install.clear();
    167152                // TODO check installed
    168153                for (int i = 0; i < items.size(); i++) {
     
    176161         * @return Items
    177162         */
    178         public Vector<NodeMod> getItems() {
     163        public Vector<Mod> getItems() {
    179164                return items;
     165        }
     166
     167        /**
     168         * @return Mods selected for installation
     169         */
     170        public TreeSet<Mod> getSelectedMods() {
     171                TreeSet<Mod> res = new TreeSet<Mod>();
     172                for (int i = 0; i < items.size(); i++) {
     173                        if (install.get(i))
     174                                res.add(items.get(i));
     175                }
     176                return res;
    180177        }
    181178
     
    190187                if (columnIndex == 4) {
    191188                        install.set(rowIndex, (Boolean) aValue);
    192                 }
     189
     190                        int size = 0;
     191                        for (int i = 0; i < items.size(); i++) {
     192                                if (install.get(i)) {
     193                                        Mod m = items.get(i);
     194                                        if (!m.isLocalAvailable() || m.isNewerAvailable())
     195                                                size += m.getZipSize();
     196                                }
     197                        }
     198                        for (DownloadSizeListener dsl : listeners)
     199                                dsl.downloadSizeChanged(size);
     200                }
     201        }
     202
     203        /**
     204         * @param lis
     205         *            Listener to receive download size changed events
     206         */
     207        public void addDownloadSizeListener(DownloadSizeListener lis) {
     208                listeners.add(lis);
     209        }
     210
     211        /**
     212         * @param lis
     213         *            Listener to no longer receive download size changed events
     214         */
     215        public void removeDownloadSizeListener(DownloadSizeListener lis) {
     216                listeners.remove(lis);
    193217        }
    194218
Note: See TracChangeset for help on using the changeset viewer.