Ignore:
Timestamp:
Jan 1, 2013, 8:27:17 PM (12 years ago)
Author:
alloc
Message:

AEI2: .NET detection

Location:
AE/installer2/src/net/oni2/aeinstaller
Files:
6 added
5 edited

Legend:

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

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

    r593 r594  
    1717import javax.swing.UIManager.LookAndFeelInfo;
    1818
     19import net.oni2.aeinstaller.backend.OniSplit;
    1920import net.oni2.aeinstaller.backend.Settings;
    2021import net.oni2.aeinstaller.backend.Settings.Platform;
     
    126127                System.out.println("ValidPath: "
    127128                                + StuffToRefactorLater.verifyRunningDirectory());
     129                System.out.println("Platform:  " + Settings.getPlatform());
     130                System.out.println("Architect: " + Settings.getArchitecture());
     131                System.out.println(".NET:      " + OniSplit.isDotNETInstalled());
    128132
    129133                if (!StuffToRefactorLater.verifyRunningDirectory()) {
  • AE/installer2/src/net/oni2/aeinstaller/backend/Settings.java

    r591 r594  
    1010import java.net.URLDecoder;
    1111import java.util.HashMap;
     12import java.util.Vector;
     13
     14import net.oni2.aeinstaller.backend.app_launcher.QuickAppExecution;
    1215
    1316import com.thoughtworks.xstream.XStream;
     
    2629         * @author Christian Illy
    2730         */
     31        public enum Architecture {
     32                /**
     33                 * 32 bit
     34                 */
     35                X86,
     36                /**
     37                 * 64 bit
     38                 */
     39                AMD64
     40        };
     41
     42        /**
     43         * @author Christian Illy
     44         */
    2845        public enum Platform {
    2946                /**
     
    7592        public static boolean getDebug() {
    7693                return debugRun;
     94        }
     95
     96        /**
     97         * @return Processor architecture
     98         */
     99        public static Architecture getArchitecture() {
     100                switch (getPlatform()) {
     101                        case WIN:
     102                                String arch = System.getenv("PROCESSOR_ARCHITECTURE")
     103                                                .toLowerCase();
     104                                if (arch.startsWith("x86"))
     105                                        return Architecture.X86;
     106                                return Architecture.AMD64;
     107                        case MACOS:
     108                        case LINUX:
     109                                Vector<String> cmd = new Vector<String>();
     110                                cmd.add("getconf");
     111                                cmd.add("LONG_BIT");
     112                                Vector<String> res = null;
     113                                try {
     114                                        res = QuickAppExecution.execute(cmd);
     115                                } catch (IOException e) {
     116                                        // TODO Auto-generated catch block
     117                                        e.printStackTrace();
     118                                }
     119                                if (res != null) {
     120                                        if (res.get(0).equals("64"))
     121                                                return Architecture.AMD64;
     122                                }
     123                                return Architecture.X86;
     124                        default:
     125                                return null;
     126                }
    77127        }
    78128
  • AE/installer2/src/net/oni2/aeinstaller/gui/MainWin.properties

    r593 r594  
    2121btnRevertSelection.text=Revert selection
    2222btnRevertSelection.tooltip=Select mods which are currently installed
    23 lblModTypes.text=Mod types:
     23lblModTypes.text=Mod type:
    2424
    2525lblSubmitter.text=Submitter:
  • AE/installer2/src/net/oni2/aeinstaller/gui/MainWin.yml

    r593 r594  
    6767        rowConstraints: grow
    6868        constraints:
    69             - tools: dock north
    7069            - contents: grow
     70
     71#            - tools: dock north
Note: See TracChangeset for help on using the changeset viewer.