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 489 by gumby, Sun Jan 24 23:58:16 2010 UTC vs.
Revision 526 by gumby, Sat May 22 22:07:58 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/
313 <                char prefsCommand[300] = "[ -f ~/Library/Preferences/com.godgames.oni.plist ] && defaults write com.godgames.oni RetailInstallationPath -string '";
314 <                strcat(prefsCommand, fullAEpath.c_str()); // get path of Edition/ folder (Oni wants the folder that *contains* the GDF)
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 326 | Line 338 | int globalizeData(void)
338   vector<ModPackage> getPackages(string packageDir)
339   {
340          vector<ModPackage> packages;
341 +        ModPackage package;
342          packages.reserve(256);
343          fstream file;
344          string filename = "\0";
# Line 337 | Line 350 | vector<ModPackage> getPackages(string pa
350                  {
351                          file.open((dir_itr->path().string() + "/" + MODINFO_CFG).c_str());
352                          
353 <                        if(!file.fail())
353 >                        if (!file.fail())
354                          {
355 <                                //would prefer to push a pointer to a package, but this will do for now
356 <                                packages.push_back(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
359 >                                        if (!package.platform.compare("Windows") || !package.platform.compare("Both")) // don't show package if it's not for the right OS
360 > #else
361 >                                        if (!package.platform.compare("Macintosh") || !package.platform.compare("Both"))
362 > #endif
363 >                                                packages.push_back(package);
364 >                                }
365                          }      
366                          file.close();
367                          file.clear();
# Line 355 | Line 376 | vector<ModPackage> getPackages(string pa
376          return packages;
377   }
378  
379 < ModPackage fileToModPackage(fstream &file)
380 < {
360 <        /*
361 <         This converts a file to a ModPackage struct.
362 <        
363 <         A few notes...
364 <         "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.
365 <         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
366 <         slower than reading a variable.
367 <         */
379 > ModPackage fileToModPackage(fstream &file, string modName)
380 > {      
381          ModPackage package;
382          string line;
383 <        static string NameOfMod = "NameOfMod";  //used for comparing to the current token...
384 <        //I could have done it in reverse (*iter).compare("ModString") or  
385 <        static string ARROW = "->";                             //did something like "ModString".compare(*iter), and it would have been
386 <        static string ModString = "ModString";  //functionably the same.
387 <        static string HasOnis = "HasOnis";
388 <        static string HasDeltas = "HasDeltas";
389 <        static string HasBSL = "HasBSL";
390 <        static string HasDats = "HasDats";
391 <        static string IsEngine = "IsEngine";
392 <        static string Readme = "Readme";
393 <        static string GlobalNeeded = "GlobalNeeded";
394 <        static string Category = "Category";
395 <        static string Creator = "Creator";
396 <        while (! file.eof() )
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);
401 >                getline(file,line);
402                  vector<string> tokens;
403                  vector<string>::iterator iter;
404 <                tokenize(line, tokens);                                 //string to vector of "words"
405 <                if (tokens.capacity() >= 3) {                   //make sure they are using enough stuff
406 <                        iter = tokens.begin();                          //what word we are on, starts at first word
407 <                        /* TODO: Get this "required Installer version" code working
408 <                         if (!AEInstallVersion.compare(*iter))
409 <                         If mod is too old, skip this mod.
410 <                         */
411 <                        /*else*/if (!NameOfMod.compare(*iter))  {       //if it contains the name
412 <                                for ( ; iter !=tokens.end() && SLASHSLASH.compare(*iter); iter++) {     // iterates through the words, ends if it reaches the end of the line or a "//" comment
413 <                                        if (ARROW.compare(*iter) && NameOfMod.compare(*iter)) {                 // ignores "->" and "NameOfMod"
404 >                tokenize(line, tokens);
405 >                if (tokens.capacity() >= 3)
406 >                {
407 >                        iter = tokens.begin();
408 >
409 >                        if (!AEInstallVersion.compare(*iter))
410 >                        {
411 >                                iter++; iter++;
412 >                                package.installerVersion = *iter;
413 >                        }
414 >                        else if (!NameOfMod.compare(*iter))
415 >                        {
416 >                                for ( ; iter !=tokens.end() && SLASHSLASH.compare(*iter); iter++) // iterates through the words, ends if it reaches the end of the line or a "//" comment
417 >                                {
418 >                                        if (ARROW.compare(*iter) && NameOfMod.compare(*iter)) // ignores "->" and "NameOfMod"
419                                                  package.name += *iter + " ";
399                                        }
420                                  }
401                                
421                          }
422 <                        else if (!ModString.compare(*iter)) {
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 (!HasOnis.compare(*iter)) {
434 >                        else if (!Platform.compare(*iter))
435 >                        {
436 >                                iter++; iter++;
437 >                                package.platform = *iter;
438 >                        }
439 >                        else if (!HasOnis.compare(*iter))
440 >                        {
441                                  iter++; iter++;  
442 <                                if ( boost::iequals(*iter, "Yes")) package.hasOnis = 1;
442 >                                if (boost::iequals(*iter, "Yes")) package.hasOnis = 1;
443                          }      
444 <                        else if (!HasBSL.compare(*iter)) {
445 <                                if(toupper((*iter)[0]) == 'Y' && toupper((*iter)[1]) == 'E' && toupper((*iter)[2]) == 'S') package.hasBSL = true;
446 <                                else if ( boost::iequals(*iter, "Addon")) package.hasAddon = true;
444 >                        else if (!HasBSL.compare(*iter))
445 >                        {
446 >                                iter++; iter++;
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)) {
450 >                        else if (!HasDeltas.compare(*iter))
451 >                        {
452                                  iter++; iter++;  
453 <                                if (toupper((*iter)[0]) + toupper((*iter)[1]) + toupper((*iter)[2]) == 'Y' + 'E' + 'S') package.hasDeltas = 1;
453 >                                if (toupper((*iter)[0]) == 'Y' && toupper((*iter)[1]) == 'E' && toupper((*iter)[2]) == 'S') package.hasDeltas = 1;
454                          }
455 <                        else if (!HasDats.compare(*iter)) {
455 >                        else if (!HasDats.compare(*iter))
456 >                        {
457                                  iter++; iter++;  
458 <                                if (toupper((*iter)[0]) + toupper((*iter)[1]) + toupper((*iter)[2]) == 'Y' + 'E' + 'S') package.hasDats = 1;
458 >                                if (toupper((*iter)[0]) == 'Y' && toupper((*iter)[1]) == 'E' && toupper((*iter)[2]) == 'S') package.hasDats = 1;
459                          }
460 <                        else if (!IsEngine.compare(*iter)) {
460 >                        else if (!IsEngine.compare(*iter))
461 >                        {
462                                  iter++; iter++;  
463 <                                if (toupper((*iter)[0]) + toupper((*iter)[1]) + toupper((*iter)[2]) == 'Y' + 'E' + 'S') package.isEngine = 1;
463 >                                if (toupper((*iter)[0]) == 'Y' && toupper((*iter)[1]) == 'E' && toupper((*iter)[2]) == 'S') package.isEngine = 1;
464                          }
465 <                        else if (!GlobalNeeded.compare(*iter)) {
465 >                        else if (!GlobalNeeded.compare(*iter))
466 >                        {
467                                  iter++; iter++;  
468 <                                if (toupper((*iter)[0]) + toupper((*iter)[1]) + toupper((*iter)[2]) == 'Y' + 'E' + 'S') package.globalNeeded = 1;
469 <                                else if (toupper((*iter)[0]) + toupper((*iter)[1]) == 'N' + 'O') package.globalNeeded = 1; // only place where checking for "No" is important atm.
468 >                                if (toupper((*iter)[0]) == 'Y' && toupper((*iter)[1]) == 'E' && toupper((*iter)[2]) == 'S') package.globalNeeded = 1;
469 >                                else if (toupper((*iter)[0]) == 'N' && toupper((*iter)[1]) == 'O') package.globalNeeded = 1; // only place where checking for "No" is important atm
470                          }
471 <                        else if (!Category.compare(*iter))  {  
472 <                                for ( ; iter !=tokens.end() && SLASHSLASH.compare(*iter); iter++) {     // iterates through the words, ends if it reaches end of line or a "//" comment
473 <                                        if (ARROW.compare(*iter) && Category.compare(*iter)) {                  // ignores "->" and "Category"
471 >                        else if (!Category.compare(*iter))
472 >                        {      
473 >                                for ( ; iter !=tokens.end() && SLASHSLASH.compare(*iter); iter++)
474 >                                {
475 >                                        if (ARROW.compare(*iter) && Category.compare(*iter)) // ignores "->" and "Category"
476                                                  package.category += *iter + " ";
438                                        }
477                                  }
478                          }
479 <                        else if (!Creator.compare(*iter))  {    //if it contains the name
480 <                                for ( ; iter !=tokens.end() && SLASHSLASH.compare(*iter); iter++) {     // iterates through the words, ends if it reaches end of line or a "//" comment
481 <                                        if (ARROW.compare(*iter) && Creator.compare(*iter)) {                   // ignores "->" and "Creator"
479 >                        else if (!Creator.compare(*iter))
480 >                        {
481 >                                for ( ; iter !=tokens.end() && SLASHSLASH.compare(*iter); iter++)
482 >                                {
483 >                                        if (ARROW.compare(*iter) && Creator.compare(*iter)) // ignores "->" and "Creator"
484                                                  package.creator += *iter + " ";
445                                        }
485                                  }
486                          }
487 <                        else if (!Readme.compare(*iter))  {     //if it contains the name
488 <                                for ( ; iter !=tokens.end() && SLASHSLASH.compare(*iter); iter++) {     // iterates through the words, ends if it reaches end of line or a "//" comment
489 <                                        if (ARROW.compare(*iter) && Readme.compare(*iter)) {                    // ignores "->" and "Readme"
490 <                                                if(!(*iter).compare("\\n")) package.readme += '\n';
487 >                        else if (!Readme.compare(*iter))
488 >                        {
489 >                                for ( ; iter !=tokens.end() && SLASHSLASH.compare(*iter); iter++)
490 >                                {
491 >                                        if (ARROW.compare(*iter) && Readme.compare(*iter)) // ignores "->" and "Readme"
492 >                                        {
493 >                                                if (!(*iter).compare("\\n")) package.readme += '\n';
494                                                  else package.readme += *iter + " ";
495                                          }
496                                  }
497                          }
498                  }
457                
499          }
500  
501          return package;
# Line 528 | 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 584 | 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 661 | 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 692 | Line 735 | void copyBSL(string copypath, vector<str
735                                                          copy_file(bsl_itr->path(),  "../GameDataFolder/IGMD/" + dir_itr->path().filename() + "/" + bsl_itr->path().filename());
736                                                  }
737                                          }
738 <                                        BSLfolders.push_back( dir_itr->path().filename() ); //add back check for addon
739 <                                        BSLlog << "Pushing " << dir_itr->path().filename() << "\n" ;
738 >                                        if( !pkg.hasAddon ) {
739 >                                                BSLfolders.push_back( dir_itr->path().filename() ); //add back check for addon
740 >                                                BSLlog << "Pushing " << dir_itr->path().filename() << "\n" ;
741 >                                        }
742                                  }
743                          }
744                  }
# Line 769 | Line 814 | vector<string> getInstallString(string C
814   |                                                          Installer to be replaced (when the new Installer                     |
815   |                                                          launches, this function will be called again but will        |
816   |                                                          return UPDATE_SIMP_AVAIL or UPDATE_GLOB_AVAIL)                       |
817 + |  UPDATE_PKG_AVAIL                     -- A newer version of individual package(s) is available        |
818   \* UPDATE_CONT_UPD                      -- Currently unused                                                                                */
819   int GetUpdateStatus(Install_info_cfg *currentAE, Install_info_cfg *updateAE, bool *installerJustUpdated)
820   {
# Line 797 | Line 843 | int GetUpdateStatus(Install_info_cfg *cu
843                  else
844                          return UPDATE_LOG_READ_ERR;
845          }
846 <        
846 >
847          // Is there an update folder, and is it a monthly release or a patch?
848 <        if (!exists("../updates/Edition"))
848 >        bool firstParty = 0;
849 >        if (exists("../updates/Edition"))
850          {
851 +                firstParty = 1;
852 +        }
853 +        else {
854                  strEUFN = "Edition-patch";
855 <                if (!exists("../updates/Edition-patch"))
856 <                        return UPDATE_NO_UPD_AVAIL;
855 >                if (exists("../updates/Edition-patch")) {
856 >                        firstParty = 1;
857 >                }
858 >
859          }
860 <        
861 <        // Unlike the current AE's version info, we *need* to find the update's version info or we won't continue
862 <        string updateCfgPath = ("../updates/" + strEUFN + "/install/packages/Globalize/Install_Info.cfg");
863 <        updateAECfg.open(updateCfgPath.c_str());
864 <        if (!updateAECfg.fail())
865 <        {
866 <                if (!ReadInstallInfoCfg(&updateAECfg, updateAE))
860 >
861 >        if(firstParty) {
862 >                // Unlike the current AE's version info, we *need* to find the update's version info or we won't continue
863 >                string updateCfgPath = ("../updates/" + strEUFN + "/install/packages/Globalize/Install_Info.cfg");
864 >                updateAECfg.open(updateCfgPath.c_str());
865 >                if (!updateAECfg.fail())
866 >                {
867 >                        if (!ReadInstallInfoCfg(&updateAECfg, updateAE))
868 >                                return UPDATE_LOG_READ_ERR;
869 >
870 >                        updateAECfg.close();
871 >                        updateAECfg.clear();
872 >                }
873 >                else
874                          return UPDATE_LOG_READ_ERR;
816                
817                updateAECfg.close();
818                updateAECfg.clear();
819        }
820        else
821                return UPDATE_LOG_READ_ERR;
875  
876 <        // Now we check for an Installer update in progress
877 <        if (exists("Update.log"))
878 <        {
879 <                updateLog.open("Update.log");
880 <                if (!updateLog.fail())
828 <                {
829 <                        vector<string> lines;
830 <                        string line;
831 <                        int num_lines = 0;
832 <                        bool readingInstallerVersion = false, doneReadingFile = false;
833 <                        
834 <                        while (!updateLog.eof() && !doneReadingFile)
876 >                // Now we check for an Installer update in progress
877 >                if (exists("Update.log"))
878 >                {
879 >                        updateLog.open("Update.log");
880 >                        if (!updateLog.fail())
881                          {
882 <                                getline(updateLog, line);
883 <                                lines.push_back(line);
884 <                                num_lines++;
885 <                                vector<string> tokens;
886 <                                vector<string>::iterator iter;
887 <                                tokenize(line, tokens);
842 <                                iter = tokens.begin();
843 <                                if (!readingInstallerVersion && tokens.capacity() >= 4)
882 >                                vector<string> lines;
883 >                                string line;
884 >                                int num_lines = 0;
885 >                                bool readingInstallerVersion = false, doneReadingFile = false;
886 >
887 >                                while (!updateLog.eof() && !doneReadingFile)
888                                  {
889 <                                        if (!strInstaller.compare(*iter))
889 >                                        getline(updateLog, line);
890 >                                        lines.push_back(line);
891 >                                        num_lines++;
892 >                                        vector<string> tokens;
893 >                                        vector<string>::iterator iter;
894 >                                        tokenize(line, tokens);
895 >                                        iter = tokens.begin();
896 >                                        if (!readingInstallerVersion && tokens.capacity() >= 4)
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
898 >                                                if (!strInstaller.compare(*iter))
899 >                                                {
900 >                                                        if (!strBeing.compare(*++iter))
901 >                                                                readingInstallerVersion = true;
902 >                                                        else if (!strWas.compare(*iter))
903 >                                                                *installerJustUpdated = true; // our third indirect return value after currentAE and updateAE
904 >                                                }
905                                          }
906 <                                }
853 <                                else if (readingInstallerVersion && tokens.capacity() >= 3)
854 <                                {
855 <                                        readingInstallerVersion = false;
856 <                                        string installerVersion = INSTALLER_VERSION;
857 <                                        if (installerVersion.compare(*iter)) // then the shell script-powered replacement failed
858 <                                                return UPDATE_INST_REPL_ERR;
859 <                                        else
906 >                                        else if (readingInstallerVersion && tokens.capacity() >= 3)
907                                          {
908 <                                                updateLog.close();
909 <                                                updateLog.clear();
910 <                                                Sleep(1000);
911 <                                                remove("Update.log");
912 <                                                ofstream newUpdateLog("Update.log");
866 <                                                if (!newUpdateLog.fail())
908 >                                                readingInstallerVersion = false;
909 >                                                string installerVersion = INSTALLER_VERSION;
910 >                                                if (installerVersion.compare(*iter)) // then the shell script-powered replacement failed
911 >                                                        return UPDATE_INST_REPL_ERR;
912 >                                                else
913                                                  {
914 <                                                        // Write over old log with updated information
915 <                                                        ptime startTime(second_clock::local_time());
916 <                                                        string strStartTime = to_simple_string(startTime);
917 <                                                        string newUpdateLine = installerVersion + " on " + strStartTime;
918 <                                                        for (int a = 0; a < lines.capacity() - 2; a++) // if there were even lines in the log before this at all
914 >                                                        updateLog.close();
915 >                                                        updateLog.clear();
916 >                                                        Sleep(1000);
917 >                                                        remove("Update.log");
918 >                                                        ofstream newUpdateLog("Update.log");
919 >                                                        if (!newUpdateLog.fail())
920                                                          {
921 <                                                                newUpdateLog << lines[a].c_str();
922 <                                                                newUpdateLog << "\n";
921 >                                                                // Write over old log with updated information
922 >                                                                ptime startTime(second_clock::local_time());
923 >                                                                string strStartTime = to_simple_string(startTime);
924 >                                                                string newUpdateLine = installerVersion + " on " + strStartTime;
925 >                                                                for (int a = 0; a < lines.capacity() - 2; a++) // if there were even lines in the log before this at all
926 >                                                                {
927 >                                                                        newUpdateLog << lines[a].c_str();
928 >                                                                        newUpdateLog << "\n";
929 >                                                                }
930 >                                                                newUpdateLog << "Installer was updated to:\n";
931 >                                                                newUpdateLog << newUpdateLine.c_str();
932 >                                                                *installerJustUpdated = true; // this value is indirectly returned to AEInstallerApp::OnInit()
933 >                                                                doneReadingFile = true;
934 >                                                                newUpdateLog.close();
935 >                                                                newUpdateLog.clear();
936 >                                                                //return UPDATE_CONT_UPD; // as noted above, we are not using this return value; in fact, we want...
937 >                                                                //                                                       ...the code to continue running down through the Edition version check
938                                                          }
939 <                                                        newUpdateLog << "Installer was updated to:\n";
940 <                                                        newUpdateLog << newUpdateLine.c_str();
879 <                                                        *installerJustUpdated = true; // this value is indirectly returned to AEInstallerAp::OnInit()
880 <                                                        doneReadingFile = true;
881 <                                                        newUpdateLog.close();
882 <                                                        newUpdateLog.clear();
883 <                                                        //return UPDATE_CONT_UPD; // as noted above, we are not using this return value; in fact, we want...
884 <                                                        //                                                       ...the code to continue running down through the Edition version check
939 >                                                        else
940 >                                                                return UPDATE_LOG_READ_ERR;
941                                                  }
886                                                else
887                                                        return UPDATE_LOG_READ_ERR;
942                                          }
943                                  }
944 +                                updateLog.close();
945 +                                updateLog.clear();
946                          }
947 <                        updateLog.close();
948 <                        updateLog.clear();
947 >                        else
948 >                                return UPDATE_LOG_READ_ERR;
949                  }
950 <                else
951 <                        return UPDATE_LOG_READ_ERR;
896 <        }
897 <        
898 <        if (updateAE->AEVersion.compare(currentAE->AEVersion) >= 1) // is the release update newer than what's installed?
899 <        {
900 <                if (!strEUFN.compare("Edition-patch")) // if update is a patch...
950 >
951 >                if (updateAE->AEVersion.compare(currentAE->AEVersion) >= 1) // is the release update newer than what's installed?
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;
953 >                        if (!strEUFN.compare("Edition-patch")) // if update is a patch...
954 >                        {
955 >                                if (currentAE->AEVersion.compare(updateAE->AEVersion.substr(0, updateAE->AEVersion.length() - 1))) // ...is it for a different month?
956 >                                        return UPDATE_MNTH_REQD_ERR;
957 >                        }
958 >                        string strNewInstallerPath = "../updates/" + strEUFN + "/install/" + strInstallerName;
959 >                        string installerVersion = INSTALLER_VERSION;
960 >                        if (updateAE->InstallerVersion.compare(installerVersion) >= 1)
961 >                        {
962 >                                if (exists(strNewInstallerPath))
963 >                                        return UPDATE_INST_AVAIL;
964 >                        }
965 >                        else if (updateAE->globalizationRequired)
966 >                                return UPDATE_GLOB_AVAIL;
967 >                        else
968 >                                return UPDATE_SIMP_AVAIL;
969                  }
970 <                string strNewInstallerPath = "../updates/" + strEUFN + "/install/" + strInstallerName;
971 <                string installerVersion = INSTALLER_VERSION;
972 <                if (updateAE->InstallerVersion.compare(installerVersion) >= 1)
970 >        }
971 >        try
972 >        {
973 >                directory_iterator end;
974 >                if (exists("../updates"))
975                  {
976 <                        if (exists(strNewInstallerPath))
977 <                                return UPDATE_INST_AVAIL;
976 >                        for (directory_iterator install_iter("../updates"); install_iter != end; ++install_iter)
977 >                        {
978 >                                ModPackage installedPackage, updatePackage;
979 >                                if (is_directory(install_iter->path()) && exists(install_iter->path().string() + "/Mod_Info.cfg"))
980 >                                {
981 >                                        fstream file;
982 >                                        file.open((install_iter->path().string() + "/Mod_Info.cfg").c_str());
983 >                                        if (!file.fail())
984 >                                                updatePackage = fileToModPackage(file, install_iter->path().filename());
985 >                                        else
986 >                                        {
987 >                                                file.close();
988 >                                                continue;
989 >                                        }
990 >                                        if (exists("packages/" + install_iter->path().filename() + "/Mod_Info.cfg"))
991 >                                        {
992 >                                                file.close();
993 >                                                file.clear();
994 >                                                file.open(("packages/" + install_iter->path().filename() + "/Mod_Info.cfg").c_str());
995 >                                                if (!file.fail())
996 >                                                        installedPackage = fileToModPackage(file, install_iter->path().filename());
997 >                                                file.close();
998 >                                                if (updatePackage.modStringVersion > installedPackage.modStringVersion)
999 >                                                {
1000 >                                                        if (updatePackage.installerVersion <= INSTALLER_VERSION)
1001 >                                                                return UPDATE_PKG_AVAIL;
1002 >                                                }
1003 >                                        }
1004 >                                        else
1005 >                                        {
1006 >                                                file.close();
1007 >                                                return UPDATE_PKG_AVAIL;
1008 >                                        }
1009 >                                }
1010 >                        }
1011                  }
912                else if (updateAE->globalizationRequired)
913                        return UPDATE_GLOB_AVAIL;
914                else
915                        return UPDATE_SIMP_AVAIL;
1012          }
1013 <        else
1014 <                return UPDATE_NO_UPD_AVAIL;
1015 <        
1013 >        catch (exception & ex) {
1014 >        //      setStatusArea("Warning, handled exception: " + (string)ex.what());
1015 >        }
1016 >
1017          return UPDATE_NO_UPD_AVAIL;
1018   }
1019  
# Line 930 | Line 1027 | bool ReadInstallInfoCfg(fstream *fileHan
1027          string strDaodanVersion = "Daodan_Version";
1028          string strOniSplitVersion = "OniSplit_Version";
1029          string strGUIWinVersion = "GUI_Win_Version";
1030 <        string strGUIMacVersion = "GUI_Mac_Version";
1030 >        string strGUIMacVersion = "GUI_Mac_Version";
1031          string strReglobalize = "Reglobalize";
1032          string strDeleteList = "Delete_List";
1033          string strArrow = "->";
# Line 939 | Line 1036 | bool ReadInstallInfoCfg(fstream *fileHan
1036          
1037          while (getline(*fileHandler, line))
1038          {
1039 +                StripNewlines(&line);
1040                  tokenize(line, tokens);
1041                  iter = tokens.begin();
1042                  
# Line 1141 | Line 1239 | bool ProcessInstallerUpdate(Install_info
1239          
1240          string popenCommand = "../updates/" + strEUFN + "/install/";
1241   #ifdef WIN32
1242 <        // TODO: Fill in Windows equivalent of code below :-3
1242 >        popenCommand = "replace_installer.bat";
1243   #else
1244          // We can't just use '~' to mean "the home directory" because we need to check the path in C...
1245          // ...so we actually get the current user's shortname and manually construct the path to home
# Line 1163 | Line 1261 | bool ProcessInstallerUpdate(Install_info
1261   #endif
1262          file.close();
1263          file.clear();
1264 + #ifdef WIN32
1265 +        system(popenCommand.c_str());
1266 + #else
1267          popen(popenCommand.c_str(), "r");
1268 <        
1268 > #endif
1269          return true; // returning 'true' tells the Installer to quit itself ASAP so it can be replaced by the process that is now running
1270   }
1271  
# Line 1193 | Line 1294 | bool ProcessAEUpdate(Install_info_cfg *c
1294          bool needNewTrashDir = false;
1295          bool readingVerAndDate = false;
1296          
1196        // TODO: Fill in Windows equivalent of code below
1297   #ifdef WIN32
1298 <        string strTrashDir = "%RECYCLE%";
1298 >        string strTrashDir = "Trash\\"; // string unused in Windows because files are simply deleted
1299   #else
1300          FILE *fUserName = NULL;
1301          char chrUserName[32];
# Line 1240 | Line 1340 | bool ProcessAEUpdate(Install_info_cfg *c
1340                                  needNewTrashDir = true;
1341                  }
1342          }
1343 <        
1343 > #ifndef WIN32
1344          if (!*installerJustUpdated || needNewTrashDir) // prepare a new directory for deleted files to go to
1345          {
1346                  tm tmStartTime = to_tm(startTime);
# Line 1248 | Line 1348 | bool ProcessAEUpdate(Install_info_cfg *c
1348                                            boost::lexical_cast<string>(tmStartTime.tm_min) + "-" + boost::lexical_cast<string>(tmStartTime.tm_sec) + "/";
1349                  create_directory(strTrashDir);
1350          }
1351 + #endif
1352          file.close();
1353          file.clear();
1354  
# Line 1323 | Line 1424 | bool ProcessAEUpdate(Install_info_cfg *c
1424                                  curPos = thePath.find("/", lastPos);
1425                                  aParentPath = aParentPath + "/";
1426                          }
1427 + #ifndef WIN32
1428                          rename((path)("../" + thePath), (path)(strTrashDir + thePath));
1429 + #else
1430 +                        remove((path)("../" + thePath));
1431 + #endif
1432                  }
1433          }
1434          
1435 <        // Now we crawl the update's package folders for newer versions and move them over, trashing ones that are already present
1331 <        vector<ModPackage> updatePackages, currentPackages;
1332 <        bool matchFound;
1333 <        updatePackages.reserve(256);
1334 <        currentPackages.reserve(256);
1335 <        
1336 <        currentPackages = getPackages();
1337 <        updatePackages = getPackages(strPathToEUFNPackages);
1338 <
1339 <        for (vector<ModPackage>::iterator iter1 = updatePackages.begin(); iter1 != updatePackages.end(); iter1++)
1340 <        {
1341 <                matchFound = false;
1342 <                for (vector<ModPackage>::iterator iter2 = currentPackages.begin(); iter2 != currentPackages.end(); iter2++)
1343 <                {
1344 <                        if (!iter1->modStringName.compare(iter2->modStringName))
1345 <                        {
1346 <                                matchFound = true;
1347 <                                if (iter1->modStringVersion > iter2->modStringVersion)
1348 <                                {
1349 <                                        rename((path)(strPathToPackages + iter2->modStringName), (path)(strTrashDir + iter2->modStringName));
1350 <                                        rename((path)(strPathToEUFNPackages + iter1->modStringName), (path)(strPathToPackages + iter1->modStringName));
1351 <                                }
1352 <                        }
1353 <                }
1354 <                if (!matchFound) // then there's no old package in the way, so just move in the one from the update
1355 <                        rename((path)(strPathToEUFNPackages + iter1->modStringName), (path)(strPathToPackages + iter1->modStringName));
1356 <        }
1435 >        ProcessPackageUpdates(strPathToEUFNPackages, strPathToPackages);
1436          
1437          // 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...
1438          // ...and folders which do not exist in the current AE will be created there
# Line 1410 | Line 1489 | bool ProcessAEUpdate(Install_info_cfg *c
1489                  CheckForGlobalization(true); // the 'true' value forces re-globalization
1490          
1491          globalPackages = getPackages(); // refresh the list in memory
1492 <        
1493 <        // TODO: Refresh the packages list in the window
1415 <
1492 >        wxCommandEvent e;
1493 >        TheWindow->OnRefreshButtonClick( e );
1494          return true;
1495   }
1496  
1497 + void ProcessPackageUpdates(string pathToUpdate, string strPathToPackages)
1498 + {
1499 +        ptime startTime(second_clock::local_time());
1500 + #ifdef WIN32
1501 +        string strTrashDir = "Trash\\"; // string unused in Windows because files are simply deleted
1502 + #else
1503 +        FILE *fUserName = NULL;
1504 +        char chrUserName[32];
1505 +        fUserName = popen("whoami", "r");
1506 +        fgets(chrUserName, sizeof(chrUserName), fUserName);
1507 +        pclose(fUserName);
1508 +        string strUserName = (string)chrUserName; // stringsblaaarrrgggghhhh
1509 +        int endOfName = strUserName.find("\n", 0);
1510 +        string strTrashDir = "/Users/" + strUserName.substr(0, endOfName) + "/.Trash/";
1511 +        bool needNewTrashDir = true;
1512 +        tm tmStartTime = to_tm(startTime);
1513 + #endif
1514 +        
1515 +        try
1516 +        {
1517 +                directory_iterator end;
1518 +                for (directory_iterator update_iter(pathToUpdate); update_iter != end; ++update_iter)
1519 +                {
1520 +                        ModPackage installedPackage, updatePackage;
1521 +                        string updtPath = update_iter->path().string();
1522 +                        string updtFolder = update_iter->path().filename();
1523 +                        string updtModInfo = updtPath + "/Mod_Info.cfg";
1524 +                        string instModInfo = strPathToPackages + "/" + updtFolder + "/Mod_Info.cfg";
1525 +                        if (!boost::iequals(updtFolder, "Edition")
1526 +                                && !boost::iequals(updtFolder, "Edition-patch")
1527 +                                && is_directory(update_iter->path())
1528 +                                && exists(updtModInfo))
1529 +                        {
1530 +                                fstream file;
1531 +                                file.open((updtModInfo).c_str());      
1532 +                                if (!file.fail())
1533 +                                        updatePackage = fileToModPackage(file, updtFolder);
1534 +                                else
1535 +                                {
1536 +                                        file.close();
1537 +                                        continue;
1538 +                                }
1539 +                                if (exists(instModInfo))
1540 +                                {
1541 +                                        file.close();
1542 +                                        file.clear();
1543 +                                        file.open(instModInfo.c_str());
1544 +                                        if (!file.fail())
1545 +                                        {
1546 +                                                installedPackage = fileToModPackage(file, updtFolder);
1547 +                                        }
1548 +                                        file.close();
1549 +                                }
1550 +                                file.close();
1551 +                                if (updatePackage.modStringVersion > installedPackage.modStringVersion)
1552 +                                {
1553 +                                        if (updatePackage.installerVersion <= INSTALLER_VERSION)
1554 +                                        {
1555 +                                                if(exists(strPathToPackages +  "/" + updatePackage.modStringName)) {
1556 + #ifdef WIN32
1557 +                                                        remove_all((path)(strPathToPackages +  "/" + updatePackage.modStringName));
1558 + #else
1559 +                                                        if (needNewTrashDir)
1560 +                                                        {
1561 +                                                                strTrashDir = strTrashDir + "Old_packages_" + boost::lexical_cast<string>(tmStartTime.tm_hour) + "-" +
1562 +                                                                        boost::lexical_cast<string>(tmStartTime.tm_min) + "-" + boost::lexical_cast<string>(tmStartTime.tm_sec) + "/";
1563 +                                                                create_directory(strTrashDir);
1564 +                                                                needNewTrashDir = false;
1565 +                                                        }
1566 +                                                        rename((path)(strPathToPackages +  "/" + updatePackage.modStringName), (path)(strTrashDir + updatePackage.modStringName));
1567 + #endif
1568 +                                                }
1569 +                                                rename((path)(pathToUpdate + "/" + updatePackage.modStringName), (path)(strPathToPackages + "/" + updatePackage.modStringName));
1570 +                                        }
1571 +                                }
1572 +                        }
1573 +                }
1574 +        }
1575 +        catch (exception & ex)
1576 +        {
1577 +                setStatusArea("Warning, handled exception: " + (string)ex.what());
1578 +        }
1579 +        wxCommandEvent e;
1580 +        TheWindow->OnRefreshButtonClick( e );
1581 + }
1582 +
1583   /* MakePathLocalToGlobalize is a function used once by ProcessAEUpdate() that takes a file in an        \
1584   |  update's Globalize folder and changes its path, originally relative to the Installer, to be          |
1585   |  relative to the structure of the Globalize folder; this makes it easier to have the Installer        |
# Line 1457 | Line 1621 | void tokenize(const string& str, vector<
1621          }
1622   }
1623  
1624 + /* StripNewlines() gets rids of any linebreaks that come from text returned by getline(); \
1625 + |  getline() should be stripping those out, but Windows CR/LF files seem to be sneaking   |
1626 + \  some extra return characters into strings in the ReadInstallInfoCfg() function.               */
1627 + void StripNewlines(string *theLine)
1628 + {
1629 +        int deleteFromHere = 0;
1630 +        deleteFromHere = theLine->find("\r");
1631 +        if (deleteFromHere > 0)
1632 +                theLine->erase(deleteFromHere, theLine->size());
1633 + }
1634 +
1635   void clearOldDats(void) {
1636          directory_iterator end_iter_gdf;
1637          for ( directory_iterator dir_itr_gdf( "../GameDataFolder" );
# Line 1571 | Line 1746 | ModPackage::ModPackage()
1746          name = "";
1747          modStringName = "";
1748          modStringVersion = 0;
1749 +        platform = "Both";
1750          hasOnis = false;
1751          hasDeltas = false;
1752          hasBSL = false;

Diff Legend

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