ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/AE/Installer/trunk/source/installer.cpp
(Generate patch)

Comparing AE/Installer/trunk/source/installer.cpp (file contents):
Revision 502 by iritscen, Mon Mar 22 16:51:50 2010 UTC vs.
Revision 511 by iritscen, Sat Apr 24 21:58:56 2010 UTC

# Line 17 | Line 17
17   #include "boost/date_time/gregorian/gregorian.hpp"
18   #include "boost/date_time/date_parsing.hpp"
19   #include "boost/date_time/posix_time/posix_time.hpp"
20 + #include <boost/algorithm/string.hpp>
21   #include "installer.h"
22   #include "aeinstallerapp.h"
23  
# Line 26 | Line 27 | using namespace boost::posix_time;
27   // externs declared in installer.h
28   string strInstallCfg = "../GameDataFolder/Add.cfg";
29   string strEUFN = "Edition"; // GetUpdateStatus() may set this to "Edition-patch" later, but this is the assumed name of the new Edition folder in Updates/
30 + extern MainWindow* TheWindow;
31  
32   int globalizeData(void)
33   {
# Line 230 | Line 232 | int globalizeData(void)
232                                  
233                                  
234                                  if ( strcmp(levels[i].c_str(), "0") ){
235 <                                        system((strOniSplit + " -move:overwrite ../GameDataFolder/level" + levels[i] + "_Final ../GameDataFolder/level" + levels[i] + "_Final/AKEV/AKEV*.oni").c_str());
235 >                                        system((strOniSplit + " -move:overwrite ../GameDataFolder/level" + levels[i] + "_Final ../GameDataFolder/level" + levels[i] +
236 >                                                        "_Final/AKEV/AKEV*.oni").c_str());
237                                          remove(  "../GameDataFolder/level" + levels[i] + "_Final/AKEV" );
238                                  }
239                                  
# Line 244 | Line 247 | int globalizeData(void)
247                  for (int i = 0; i < 15; i++)
248                  {
249                          logfile << "\tReimporting level" << levels[i] << "_Final.oni\n";
250 <                        setStatusArea("Step " + lexical_cast<std::string>(parts_done + 1) + "/" + lexical_cast<std::string>(total_steps) + " reimporting level" + levels[i]+"_Final.oni");
250 >                        setStatusArea("Step " + lexical_cast<std::string>(parts_done + 1) + "/" + lexical_cast<std::string>(total_steps) + " reimporting level" +
251 >                                                  levels[i] + "_Final.oni");
252                          logfile << (strOniSplit + " " + strImportOption + " ../GameDataFolder/level" + levels[i] + "_Final VanillaDats/level" + levels[i] + "_Final/level"
253                                                  + levels[i] + "_Final/level" + levels[i] + "_Final.oni >> Globalize.log").c_str() << '\n';
254                          string sys_str = (strOniSplit + " " + strImportOption + " ../GameDataFolder/level" + levels[i] + "_Final VanillaDats/level" + levels[i] + "_Final/level"
# Line 269 | Line 273 | int globalizeData(void)
273                  setStatusArea("Step " + lexical_cast<std::string>(parts_done + 1) + "/" + lexical_cast<std::string>(total_steps) + ": moving level0_Characters" );      
274                  copy((path)"../GameDataFolder/level0_Characters", (path)("VanillaDats/level0_Final"));
275                  GDFPaths.push_back( Characters );
276 +                //concactates level0....
277                  for(int i = 0; i < GDFPaths.size(); i++)
278                  {
279                          directory_iterator end_iter;
# Line 283 | Line 288 | int globalizeData(void)
288                                  }
289                          }
290                  }
291 +                //?: syntax is fun.
292 +                //condition ? value_if_true : value_if_false
293 +                (is_empty(Characters)   ? remove( Characters )  : 1);
294 +                (is_empty(Particles)    ? remove( Particles )   : 1);
295 +                (is_empty(Textures)             ? remove( Textures )    : 1);
296 +                (is_empty(Sounds)               ? remove( Sounds )              : 1);
297 +                (is_empty(TRAC)                 ? remove( TRAC )                : 1);
298 +                (is_empty(TRAM)                 ? remove( TRAM )                : 1);
299 +                (is_empty(Animations)   ? remove( Animations )  : 1);
300  
301                  create_directory((path)"../GameDataFolder/IGMD");
302                  copy((path)"packages/VanillaBSL/IGMD", (path)"../GameDataFolder");
303                  setProgressBar( 1000 );
304 <                
305 <                if(exists("../../persist.dat"))
306 <                        if(!exists("../persist.dat"))
307 <                        
294 <                        //TODO: Concatenate level0 Dirs.
295 <                        
296 <                                copy("../../persist.dat","..");
297 <                if(exists("../../key_config.txt"))
298 <                        if(!exists("../key_config.txt"))
299 <                                copy("../../key_config.txt","..");
300 <                
304 >
305 >                if(exists("../../persist.dat") && !exists("../persist.dat")) copy("../../persist.dat","..");
306 >                if(exists("../../key_config.txt")&& !exists("../key_config.txt")) copy("../../key_config.txt","..");
307 >
308   #ifndef WIN32
309                  /* On Mac only, set the current GDF to the AE GDF by writing to Oni's global preferences file (thankfully a standard OS X ".plist" XML file).
310                   Tests for presence of prefs with [ -f ] before doing anything so it doesn't create a partial prefs file -- just in case user has never
311                   run Oni before :-p */
312 <                string fullAEpath = escapePath(system_complete(".").parent_path().parent_path().string()); // get full path for Edition/ (Oni wants the folder that *contains* the GDF)
313 <                char prefsCommand[300] = "[ -f ~/Library/Preferences/com.godgames.oni.plist ] && defaults write com.godgames.oni RetailInstallationPath -string '";
312 >                string fullAEpath = escapePath(system_complete(".").parent_path().parent_path().string()); // get full path for Edition/ (Oni wants folder that *contains* the GDF)
313 >                //bad Iritscen, bad! fixed buffers can cause crashes.
314 >                /*char prefsCommand[300] = "[ -f ~/Library/Preferences/com.godgames.oni.plist ] && defaults write com.godgames.oni RetailInstallationPath -string '";
315                  strcat(prefsCommand, fullAEpath.c_str());
316                  strcat(prefsCommand, "'"); // path string is enclosed in single quotes to avoid the need to escape UNIX-unfriendly characters
317 <                system(prefsCommand);
317 >                */
318 >                string prefsCommand = "[ -f ~/Library/Preferences/com.godgames.oni.plist ] && defaults write com.godgames.oni RetailInstallationPath -string '"
319 >                        + fullAEpath + "'";
320 >                system(prefsCommand.c_str());
321 >
322   #endif
323                  
324                  setStatusArea((string)"Done! Now select your mod packages and click install.");
# Line 340 | Line 352 | vector<ModPackage> getPackages(string pa
352                          
353                          if (!file.fail())
354                          {
355 <                                package = fileToModPackage(file);
355 >                                package = fileToModPackage(file, dir_itr->path().filename());
356                                  if (package.installerVersion.compare(INSTALLER_VERSION) < 1)  // if mod requires newer version of the Installer, we won't add it to the list
357                                  {
358   #ifdef WIN32
# Line 364 | Line 376 | vector<ModPackage> getPackages(string pa
376          return packages;
377   }
378  
379 < ModPackage fileToModPackage(fstream &file)
380 < {
369 <        /*
370 <         This converts a file to a ModPackage struct.
371 <        
372 <         A few notes...
373 <         "iter" is the current word we are on. I should have named it "token" or something, but I don't have multiple iterators, so its ok.
374 <         I refer to (*iter) at the beginning of each if statement block. I could probably store it as a variable, but I'm pretty sure that dereferencing a pointer\iterator isn't much
375 <         slower than reading a variable.
376 <         */
379 > ModPackage fileToModPackage(fstream &file, string modName)
380 > {      
381          ModPackage package;
382          string line;
383 <        static string AEInstallVersion = "AEInstallVersion"; // used for comparing to the current token...
384 <        static string NameOfMod = "NameOfMod";
385 <        static string ARROW = "->";
386 <        static string ModString = "ModString";
387 <        static string Platform = "Platform";
388 <        static string HasOnis = "HasOnis";
389 <        static string HasDeltas = "HasDeltas";
390 <        static string HasBSL = "HasBSL";
391 <        static string HasDats = "HasDats";
392 <        static string IsEngine = "IsEngine";
393 <        static string Readme = "Readme";
394 <        static string GlobalNeeded = "GlobalNeeded";
395 <        static string Category = "Category";
396 <        static string Creator = "Creator";
383 >        const string AEInstallVersion = "AEInstallVersion"; // used for comparing to the current token...
384 >        const string NameOfMod = "NameOfMod";
385 >        const string ARROW = "->";
386 >        const string ModString = "ModString";
387 >        const string ModVersion = "ModVersion";
388 >        const string Platform = "Platform";
389 >        const string HasOnis = "HasOnis";
390 >        const string HasDeltas = "HasDeltas";
391 >        const string HasBSL = "HasBSL";
392 >        const string HasDats = "HasDats";
393 >        const string IsEngine = "IsEngine";
394 >        const string Readme = "Readme";
395 >        const string GlobalNeeded = "GlobalNeeded";
396 >        const string Category = "Category";
397 >        const string Creator = "Creator";
398 >        package.modStringName = modName;
399          while (!file.eof())
400          {
401                  getline(file,line);
# Line 416 | Line 422 | ModPackage fileToModPackage(fstream &fil
422                          else if (!ModString.compare(*iter))
423                          {
424                                  iter++; iter++;
425 <                                package.modStringName = *iter;
425 >                                //package.modStringName = *iter;
426                                  iter++;
427 <                                package.modStringVersion = atoi((*iter).c_str());
427 >                                package.modStringVersion = atof((*iter).c_str());
428 >                        }
429 >                        else if (!ModString.compare(*iter))
430 >                        {
431 >                                iter++; iter++;
432 >                                package.modStringVersion = atof((*iter).c_str());
433                          }
434                          else if (!Platform.compare(*iter))
435                          {
# Line 433 | Line 444 | ModPackage fileToModPackage(fstream &fil
444                          else if (!HasBSL.compare(*iter))
445                          {
446                                  iter++; iter++;
447 <                                if (toupper((*iter)[0]) == 'Y' && toupper((*iter)[1]) == 'E' && toupper((*iter)[2]) == 'S') package.hasBSL = true;
447 >                                if (boost::iequals(*iter, "Yes")) package.hasBSL = true;
448                                  else if (boost::iequals(*iter, "Addon")) package.hasAddon = true;
449                          }
450                          else if (!HasDeltas.compare(*iter))
# Line 558 | Line 569 | void recompileAll(vector<string> install
569                                                  
570                                                  
571                                                  setProgressBar( (int)(1000 * (float)(j-1) / (float)numberOfDats) ); //100% * dat we're on / total dats
572 <                                                setStatusArea("Step " + lexical_cast<std::string>(j) + '/' + lexical_cast<std::string>(numberOfDats)+ ": Importing " +  dir_itr->path().filename() + " ");
572 >                                                setStatusArea("Step " + lexical_cast<std::string>(j) + '/' + lexical_cast<std::string>(numberOfDats)+ ": Importing " +
573 >                                                                          dir_itr->path().filename() + " ");
574                                                  
575                                                  system(importCommand.c_str());
576                                                  j++;                                            
# Line 614 | Line 626 | void recompileAll(vector<string> install
626                                          importCommand += " ../GameDataFolder/" + dir_itr->path().filename() + ".dat >> Install.log";
627                                          
628                                          setProgressBar( (int)(1000 * (float)(j-1) / (float)numberOfDats) ); //100% * dat we're on / total dats
629 <                                        setStatusArea("Step " + lexical_cast<std::string>(j) + '/' + lexical_cast<std::string>(numberOfDats)+ ": Importing " +  dir_itr->path().filename() + " ");
629 >                                        setStatusArea("Step " + lexical_cast<std::string>(j) + '/' + lexical_cast<std::string>(numberOfDats)+ ": Importing " +
630 >                                                                  dir_itr->path().filename() + " ");
631                                          system(importCommand.c_str());
632                                          j++;
633                                  }
# Line 691 | Line 704 | void recompileAll(vector<string> install
704  
705   void copyBSL(string copypath, vector<string>& BSLfolders, ModPackage pkg)
706   {
707 <        ofstream BSLlog("BSL2.log", ios::app );
707 >        ofstream BSLlog("BSL.log", ios::app );
708          
709          try {
710                  for ( directory_iterator dir_itr( copypath ), end_itr;
# Line 799 | Line 812 | vector<string> getInstallString(string C
812   |                                                          Installer to be replaced (when the new Installer                     |
813   |                                                          launches, this function will be called again but will        |
814   |                                                          return UPDATE_SIMP_AVAIL or UPDATE_GLOB_AVAIL)                       |
815 + |  UPDATE_PKG_AVAIL                     -- A newer version of individual package(s) is available        |
816   \* UPDATE_CONT_UPD                      -- Currently unused                                                                                */
817   int GetUpdateStatus(Install_info_cfg *currentAE, Install_info_cfg *updateAE, bool *installerJustUpdated)
818   {
# Line 827 | Line 841 | int GetUpdateStatus(Install_info_cfg *cu
841                  else
842                          return UPDATE_LOG_READ_ERR;
843          }
844 <        
844 >
845          // Is there an update folder, and is it a monthly release or a patch?
846 <        if (!exists("../updates/Edition"))
846 >        bool firstParty = 0;
847 >        if (exists("../updates/Edition"))
848          {
849 +                firstParty = 1;
850 +        }
851 +        else {
852                  strEUFN = "Edition-patch";
853 <                if (!exists("../updates/Edition-patch"))
854 <                        return UPDATE_NO_UPD_AVAIL;
853 >                if (exists("../updates/Edition-patch")) {
854 >                        firstParty = 1;
855 >                }
856 >
857          }
858 <        
859 <        // Unlike the current AE's version info, we *need* to find the update's version info or we won't continue
860 <        string updateCfgPath = ("../updates/" + strEUFN + "/install/packages/Globalize/Install_Info.cfg");
861 <        updateAECfg.open(updateCfgPath.c_str());
862 <        if (!updateAECfg.fail())
863 <        {
864 <                if (!ReadInstallInfoCfg(&updateAECfg, updateAE))
858 >
859 >        if(firstParty) {
860 >                // Unlike the current AE's version info, we *need* to find the update's version info or we won't continue
861 >                string updateCfgPath = ("../updates/" + strEUFN + "/install/packages/Globalize/Install_Info.cfg");
862 >                updateAECfg.open(updateCfgPath.c_str());
863 >                if (!updateAECfg.fail())
864 >                {
865 >                        if (!ReadInstallInfoCfg(&updateAECfg, updateAE))
866 >                                return UPDATE_LOG_READ_ERR;
867 >
868 >                        updateAECfg.close();
869 >                        updateAECfg.clear();
870 >                }
871 >                else
872                          return UPDATE_LOG_READ_ERR;
846                
847                updateAECfg.close();
848                updateAECfg.clear();
849        }
850        else
851                return UPDATE_LOG_READ_ERR;
873  
874 <        // Now we check for an Installer update in progress
875 <        if (exists("Update.log"))
876 <        {
877 <                updateLog.open("Update.log");
878 <                if (!updateLog.fail())
858 <                {
859 <                        vector<string> lines;
860 <                        string line;
861 <                        int num_lines = 0;
862 <                        bool readingInstallerVersion = false, doneReadingFile = false;
863 <                        
864 <                        while (!updateLog.eof() && !doneReadingFile)
874 >                // Now we check for an Installer update in progress
875 >                if (exists("Update.log"))
876 >                {
877 >                        updateLog.open("Update.log");
878 >                        if (!updateLog.fail())
879                          {
880 <                                getline(updateLog, line);
881 <                                lines.push_back(line);
882 <                                num_lines++;
883 <                                vector<string> tokens;
884 <                                vector<string>::iterator iter;
885 <                                tokenize(line, tokens);
872 <                                iter = tokens.begin();
873 <                                if (!readingInstallerVersion && tokens.capacity() >= 4)
880 >                                vector<string> lines;
881 >                                string line;
882 >                                int num_lines = 0;
883 >                                bool readingInstallerVersion = false, doneReadingFile = false;
884 >
885 >                                while (!updateLog.eof() && !doneReadingFile)
886                                  {
887 <                                        if (!strInstaller.compare(*iter))
887 >                                        getline(updateLog, line);
888 >                                        lines.push_back(line);
889 >                                        num_lines++;
890 >                                        vector<string> tokens;
891 >                                        vector<string>::iterator iter;
892 >                                        tokenize(line, tokens);
893 >                                        iter = tokens.begin();
894 >                                        if (!readingInstallerVersion && tokens.capacity() >= 4)
895                                          {
896 <                                                if (!strBeing.compare(*++iter))
897 <                                                        readingInstallerVersion = true;
898 <                                                else if (!strWas.compare(*iter))
899 <                                                        *installerJustUpdated = true; // our third indirect return value after currentAE and updateAE
896 >                                                if (!strInstaller.compare(*iter))
897 >                                                {
898 >                                                        if (!strBeing.compare(*++iter))
899 >                                                                readingInstallerVersion = true;
900 >                                                        else if (!strWas.compare(*iter))
901 >                                                                *installerJustUpdated = true; // our third indirect return value after currentAE and updateAE
902 >                                                }
903                                          }
904 <                                }
883 <                                else if (readingInstallerVersion && tokens.capacity() >= 3)
884 <                                {
885 <                                        readingInstallerVersion = false;
886 <                                        string installerVersion = INSTALLER_VERSION;
887 <                                        if (installerVersion.compare(*iter)) // then the shell script-powered replacement failed
888 <                                                return UPDATE_INST_REPL_ERR;
889 <                                        else
904 >                                        else if (readingInstallerVersion && tokens.capacity() >= 3)
905                                          {
906 <                                                updateLog.close();
907 <                                                updateLog.clear();
908 <                                                Sleep(1000);
909 <                                                remove("Update.log");
910 <                                                ofstream newUpdateLog("Update.log");
896 <                                                if (!newUpdateLog.fail())
906 >                                                readingInstallerVersion = false;
907 >                                                string installerVersion = INSTALLER_VERSION;
908 >                                                if (installerVersion.compare(*iter)) // then the shell script-powered replacement failed
909 >                                                        return UPDATE_INST_REPL_ERR;
910 >                                                else
911                                                  {
912 <                                                        // Write over old log with updated information
913 <                                                        ptime startTime(second_clock::local_time());
914 <                                                        string strStartTime = to_simple_string(startTime);
915 <                                                        string newUpdateLine = installerVersion + " on " + strStartTime;
916 <                                                        for (int a = 0; a < lines.capacity() - 2; a++) // if there were even lines in the log before this at all
912 >                                                        updateLog.close();
913 >                                                        updateLog.clear();
914 >                                                        Sleep(1000);
915 >                                                        remove("Update.log");
916 >                                                        ofstream newUpdateLog("Update.log");
917 >                                                        if (!newUpdateLog.fail())
918                                                          {
919 <                                                                newUpdateLog << lines[a].c_str();
920 <                                                                newUpdateLog << "\n";
919 >                                                                // Write over old log with updated information
920 >                                                                ptime startTime(second_clock::local_time());
921 >                                                                string strStartTime = to_simple_string(startTime);
922 >                                                                string newUpdateLine = installerVersion + " on " + strStartTime;
923 >                                                                for (int a = 0; a < lines.capacity() - 2; a++) // if there were even lines in the log before this at all
924 >                                                                {
925 >                                                                        newUpdateLog << lines[a].c_str();
926 >                                                                        newUpdateLog << "\n";
927 >                                                                }
928 >                                                                newUpdateLog << "Installer was updated to:\n";
929 >                                                                newUpdateLog << newUpdateLine.c_str();
930 >                                                                *installerJustUpdated = true; // this value is indirectly returned to AEInstallerApp::OnInit()
931 >                                                                doneReadingFile = true;
932 >                                                                newUpdateLog.close();
933 >                                                                newUpdateLog.clear();
934 >                                                                //return UPDATE_CONT_UPD; // as noted above, we are not using this return value; in fact, we want...
935 >                                                                //                                                       ...the code to continue running down through the Edition version check
936                                                          }
937 <                                                        newUpdateLog << "Installer was updated to:\n";
938 <                                                        newUpdateLog << newUpdateLine.c_str();
909 <                                                        *installerJustUpdated = true; // this value is indirectly returned to AEInstallerAp::OnInit()
910 <                                                        doneReadingFile = true;
911 <                                                        newUpdateLog.close();
912 <                                                        newUpdateLog.clear();
913 <                                                        //return UPDATE_CONT_UPD; // as noted above, we are not using this return value; in fact, we want...
914 <                                                        //                                                       ...the code to continue running down through the Edition version check
937 >                                                        else
938 >                                                                return UPDATE_LOG_READ_ERR;
939                                                  }
916                                                else
917                                                        return UPDATE_LOG_READ_ERR;
940                                          }
941                                  }
942 +                                updateLog.close();
943 +                                updateLog.clear();
944                          }
945 <                        updateLog.close();
946 <                        updateLog.clear();
945 >                        else
946 >                                return UPDATE_LOG_READ_ERR;
947                  }
948 <                else
949 <                        return UPDATE_LOG_READ_ERR;
926 <        }
927 <        
928 <        if (updateAE->AEVersion.compare(currentAE->AEVersion) >= 1) // is the release update newer than what's installed?
929 <        {
930 <                if (!strEUFN.compare("Edition-patch")) // if update is a patch...
948 >
949 >                if (updateAE->AEVersion.compare(currentAE->AEVersion) >= 1) // is the release update newer than what's installed?
950                  {
951 <                        if (currentAE->AEVersion.compare(updateAE->AEVersion.substr(0, updateAE->AEVersion.length() - 1))) // ...is it for a different month?
952 <                                return UPDATE_MNTH_REQD_ERR;
951 >                        if (!strEUFN.compare("Edition-patch")) // if update is a patch...
952 >                        {
953 >                                if (currentAE->AEVersion.compare(updateAE->AEVersion.substr(0, updateAE->AEVersion.length() - 1))) // ...is it for a different month?
954 >                                        return UPDATE_MNTH_REQD_ERR;
955 >                        }
956 >                        string strNewInstallerPath = "../updates/" + strEUFN + "/install/" + strInstallerName;
957 >                        string installerVersion = INSTALLER_VERSION;
958 >                        if (updateAE->InstallerVersion.compare(installerVersion) >= 1)
959 >                        {
960 >                                if (exists(strNewInstallerPath))
961 >                                        return UPDATE_INST_AVAIL;
962 >                        }
963 >                        else if (updateAE->globalizationRequired)
964 >                                return UPDATE_GLOB_AVAIL;
965 >                        else
966 >                                return UPDATE_SIMP_AVAIL;
967                  }
968 <                string strNewInstallerPath = "../updates/" + strEUFN + "/install/" + strInstallerName;
969 <                string installerVersion = INSTALLER_VERSION;
970 <                if (updateAE->InstallerVersion.compare(installerVersion) >= 1)
968 >        }
969 >        try
970 >        {
971 >                directory_iterator end;
972 >                if (exists("../updates"))
973                  {
974 <                        if (exists(strNewInstallerPath))
975 <                                return UPDATE_INST_AVAIL;
974 >                        for (directory_iterator install_iter("../updates"); install_iter != end; ++install_iter)
975 >                        {
976 >                                ModPackage installedPackage, updatePackage;
977 >                                if (is_directory(install_iter->path()) && exists(install_iter->path().string() + "/Mod_Info.cfg"))
978 >                                {
979 >                                        fstream file;
980 >                                        file.open((install_iter->path().string() + "/Mod_Info.cfg").c_str());
981 >                                        if (!file.fail())
982 >                                                updatePackage = fileToModPackage(file, install_iter->path().filename());
983 >                                        else
984 >                                        {
985 >                                                file.close();
986 >                                                continue;
987 >                                        }
988 >                                        if (exists("packages/" + install_iter->path().filename() + "/Mod_Info.cfg"))
989 >                                        {
990 >                                                file.close();
991 >                                                file.clear();
992 >                                                file.open(("packages/" + install_iter->path().filename() + "/Mod_Info.cfg").c_str());
993 >                                                if (!file.fail())
994 >                                                        installedPackage = fileToModPackage(file, install_iter->path().filename());
995 >                                                file.close();
996 >                                                if (updatePackage.modStringVersion > installedPackage.modStringVersion)
997 >                                                {
998 >                                                        if (updatePackage.installerVersion <= INSTALLER_VERSION)
999 >                                                                return UPDATE_PKG_AVAIL;
1000 >                                                }
1001 >                                        }
1002 >                                        else
1003 >                                        {
1004 >                                                file.close();
1005 >                                                return UPDATE_PKG_AVAIL;
1006 >                                        }
1007 >                                }
1008 >                        }
1009                  }
942                else if (updateAE->globalizationRequired)
943                        return UPDATE_GLOB_AVAIL;
944                else
945                        return UPDATE_SIMP_AVAIL;
1010          }
1011 <        else
1012 <                return UPDATE_NO_UPD_AVAIL;
1013 <        
1011 >        catch (exception & ex) {
1012 >        //      setStatusArea("Warning, handled exception: " + (string)ex.what());
1013 >        }
1014 >
1015          return UPDATE_NO_UPD_AVAIL;
1016   }
1017  
# Line 960 | Line 1025 | bool ReadInstallInfoCfg(fstream *fileHan
1025          string strDaodanVersion = "Daodan_Version";
1026          string strOniSplitVersion = "OniSplit_Version";
1027          string strGUIWinVersion = "GUI_Win_Version";
1028 <        string strGUIMacVersion = "GUI_Mac_Version";
1028 >        string strGUIMacVersion = "GUI_Mac_Version";
1029          string strReglobalize = "Reglobalize";
1030          string strDeleteList = "Delete_List";
1031          string strArrow = "->";
# Line 1172 | Line 1237 | bool ProcessInstallerUpdate(Install_info
1237          
1238          string popenCommand = "../updates/" + strEUFN + "/install/";
1239   #ifdef WIN32
1175        // TODO: Fill in Windows equivalent of code below :-3
1240          popenCommand = "replace_installer.bat";
1241   #else
1242          // We can't just use '~' to mean "the home directory" because we need to check the path in C...
# Line 1228 | Line 1292 | bool ProcessAEUpdate(Install_info_cfg *c
1292          bool needNewTrashDir = false;
1293          bool readingVerAndDate = false;
1294          
1231        // TODO: Fill in Windows equivalent of code below
1295   #ifdef WIN32
1296 <        string strTrashDir = "Trash\\";
1296 >        string strTrashDir = "Trash\\"; // string unused in Windows because files are simply deleted
1297   #else
1298          FILE *fUserName = NULL;
1299          char chrUserName[32];
# Line 1367 | Line 1430 | bool ProcessAEUpdate(Install_info_cfg *c
1430                  }
1431          }
1432          
1433 <        // Now we crawl the update's package folders for newer versions and move them over, trashing ones that are already present
1371 <        vector<ModPackage> updatePackages, currentPackages;
1372 <        bool matchFound;
1373 <        updatePackages.reserve(256);
1374 <        currentPackages.reserve(256);
1375 <        
1376 <        currentPackages = getPackages();
1377 <        updatePackages = getPackages(strPathToEUFNPackages);
1378 <
1379 <        for (vector<ModPackage>::iterator iter1 = updatePackages.begin(); iter1 != updatePackages.end(); iter1++)
1380 <        {
1381 <                matchFound = false;
1382 <                for (vector<ModPackage>::iterator iter2 = currentPackages.begin(); iter2 != currentPackages.end(); iter2++)
1383 <                {
1384 <                        if (!iter1->modStringName.compare(iter2->modStringName))
1385 <                        {
1386 <                                matchFound = true;
1387 <                                if (iter1->modStringVersion > iter2->modStringVersion)
1388 <                                {
1389 < #ifndef WIN32
1390 <                                        rename((path)(strPathToPackages + iter2->modStringName), (path)(strTrashDir + iter2->modStringName));
1391 < #else
1392 <                                        remove((path)(strPathToPackages + iter2->modStringName));
1393 < #endif
1394 <                                        rename((path)(strPathToEUFNPackages + iter1->modStringName), (path)(strPathToPackages + iter1->modStringName));
1395 <                                }
1396 <                        }
1397 <                }
1398 <                if (!matchFound) // then there's no old package in the way, so just move in the one from the update
1399 <                        rename((path)(strPathToEUFNPackages + iter1->modStringName), (path)(strPathToPackages + iter1->modStringName));
1400 <        }
1433 >        ProcessPackageUpdates(strPathToEUFNPackages, strPathToPackages);
1434          
1435          // Next, we get a list of which files and folders in the update's Globalize folder to move over; all files not starting with '.' will be moved...
1436          // ...and folders which do not exist in the current AE will be created there
# Line 1454 | Line 1487 | bool ProcessAEUpdate(Install_info_cfg *c
1487                  CheckForGlobalization(true); // the 'true' value forces re-globalization
1488          
1489          globalPackages = getPackages(); // refresh the list in memory
1457        
1490          // TODO: Refresh the packages list in the window
1491 <
1491 >        wxCommandEvent e;
1492 >        TheWindow->OnRefreshButtonClick( e );
1493          return true;
1494   }
1495  
1496 + void ProcessPackageUpdates(string pathToUpdate, string strPathToPackages)
1497 + {
1498 +        ptime startTime(second_clock::local_time());
1499 + #ifdef WIN32
1500 +        string strTrashDir = "Trash\\"; // string unused in Windows because files are simply deleted
1501 + #else
1502 +        FILE *fUserName = NULL;
1503 +        char chrUserName[32];
1504 +        fUserName = popen("whoami", "r");
1505 +        fgets(chrUserName, sizeof(chrUserName), fUserName);
1506 +        pclose(fUserName);
1507 +        string strUserName = (string)chrUserName; // stringsblaaarrrgggghhhh
1508 +        int endOfName = strUserName.find("\n", 0);
1509 +        string strTrashDir = "/Users/" + strUserName.substr(0, endOfName) + "/.Trash/";
1510 +        bool needNewTrashDir = true;
1511 +        tm tmStartTime = to_tm(startTime);
1512 + #endif
1513 +        
1514 +        try
1515 +        {
1516 +                directory_iterator end;
1517 +                for (directory_iterator update_iter(pathToUpdate); update_iter != end; ++update_iter)
1518 +                {
1519 +                        ModPackage installedPackage, updatePackage;
1520 +                        string updtPath = update_iter->path().string();
1521 +                        string updtFolder = update_iter->path().filename();
1522 +                        string updtModInfo = updtPath + "/Mod_Info.cfg";
1523 +                        string instModInfo = strPathToPackages + "/" + updtFolder + "/Mod_Info.cfg";
1524 +                        if (!boost::iequals(updtFolder, "Edition")
1525 +                                && !boost::iequals(updtFolder, "Edition-patch")
1526 +                                && is_directory(update_iter->path())
1527 +                                && exists(updtModInfo))
1528 +                        {
1529 +                                fstream file;
1530 +                                file.open((updtModInfo).c_str());      
1531 +                                if (!file.fail())
1532 +                                        updatePackage = fileToModPackage(file, updtFolder);
1533 +                                else
1534 +                                {
1535 +                                        file.close();
1536 +                                        continue;
1537 +                                }
1538 +                                if (exists(instModInfo))
1539 +                                {
1540 +                                        file.close();
1541 +                                        file.clear();
1542 +                                        file.open(instModInfo.c_str());
1543 +                                        if (!file.fail())
1544 +                                        {
1545 +                                                installedPackage = fileToModPackage(file, updtFolder);
1546 +                                        }
1547 +                                        file.close();
1548 +                                }
1549 +                                file.close();
1550 +                                if (updatePackage.modStringVersion > installedPackage.modStringVersion)
1551 +                                {
1552 +                                        if (updatePackage.installerVersion <= INSTALLER_VERSION)
1553 +                                        {
1554 +                                                if(exists(strPathToPackages +  "/" + updatePackage.modStringName)) {
1555 + #ifdef WIN32
1556 +                                                        remove_all((path)(strPathToPackages +  "/" + updatePackage.modStringName));
1557 + #else
1558 +                                                        if (needNewTrashDir)
1559 +                                                        {
1560 +                                                                strTrashDir = strTrashDir + "Old_packages_" + boost::lexical_cast<string>(tmStartTime.tm_hour) + "-" +
1561 +                                                                        boost::lexical_cast<string>(tmStartTime.tm_min) + "-" + boost::lexical_cast<string>(tmStartTime.tm_sec) + "/";
1562 +                                                                create_directory(strTrashDir);
1563 +                                                                needNewTrashDir = false;
1564 +                                                        }
1565 +                                                        rename((path)(strPathToPackages +  "/" + updatePackage.modStringName), (path)(strTrashDir + updatePackage.modStringName));
1566 + #endif
1567 +                                                }
1568 +                                                rename((path)(pathToUpdate + "/" + updatePackage.modStringName), (path)(strPathToPackages + "/" + updatePackage.modStringName));
1569 +                                        }
1570 +                                }
1571 +                        }
1572 +                }
1573 +        }
1574 +        catch (exception & ex)
1575 +        {
1576 +                setStatusArea("Warning, handled exception: " + (string)ex.what());
1577 +        }
1578 +        wxCommandEvent e;
1579 +        TheWindow->OnRefreshButtonClick( e );
1580 + }
1581 +
1582   /* MakePathLocalToGlobalize is a function used once by ProcessAEUpdate() that takes a file in an        \
1583   |  update's Globalize folder and changes its path, originally relative to the Installer, to be          |
1584   |  relative to the structure of the Globalize folder; this makes it easier to have the Installer        |

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)