int ExtractWmo() { char szLocalFile[1024] = ""; bool success=true; //const char* ParsArchiveNames[] = {"patch-2.MPQ", "patch.MPQ", "common.MPQ", "expansion.MPQ"}; for (ArchiveSet::const_iterator ar_itr = gOpenArchives.begin(); ar_itr != gOpenArchives.end() && success; ++ar_itr) { vector<string> filelist; (*ar_itr)->GetFileListTo(filelist); for (vector<string>::iterator fname=filelist.begin(); fname != filelist.end() && success; ++fname) { bool file_ok=true; if (fname->find(".wmo") != string::npos) { // Copy files from archive //std::cout << "found *.wmo file " << *fname << std::endl; sprintf(szLocalFile, "%s/%s", szWorkDirWmo, GetPlainName(fname->c_str())); fixnamen(szLocalFile,strlen(szLocalFile)); FILE * n; if ((n = fopen(szLocalFile, "rb"))== NULL) { int p = 0; //Select root wmo files const char * rchr = strrchr(GetPlainName(fname->c_str()),0x5f); if (rchr != NULL) { char cpy[4]; strncpy((char*)cpy,rchr,4); for (int i=0;i<4; ++i) { int m = cpy[i]; if (isdigit(m)) p++; } } if (p != 3) { std::cout << "Extracting " << *fname << std::endl; WMORoot * froot = new WMORoot(*fname); if (!froot->open()) { printf("Couldn't open RootWmo!!!\n"); delete froot; continue; } FILE *output=fopen(szLocalFile,"wb"); if (!output) { printf("couldn't open %s for writing!\n", szLocalFile); success=false; } froot->ConvertToVMAPRootWmo(output); int Wmo_nVertices = 0; //printf("root has %d groups\n", froot->nGroups); if (froot->nGroups !=0) { for (uint32 i=0; i<froot->nGroups; ++i) { char temp[1024]; strcpy(temp, fname->c_str()); temp[fname->length()-4] = 0; char groupFileName[1024]; sprintf(groupFileName,"%s_%03d.wmo",temp, i); //printf("Trying to open groupfile %s\n",groupFileName); string s = groupFileName; WMOGroup * fgroup = new WMOGroup(s); if (!fgroup->open()) { printf("Could not open all Group file for: %s\n",GetPlainName(fname->c_str())); file_ok=false; break; } Wmo_nVertices += fgroup->ConvertToVMAPGroupWmo(output, froot, preciseVectorData); delete fgroup; } } fseek(output, 8, SEEK_SET); // store the correct no of vertices fwrite(&Wmo_nVertices,sizeof(int),1,output); fclose(output); delete froot; } } else { fclose(n); } } // Delete the extracted file in the case of an error if (!file_ok) remove(szLocalFile); } } if (success) printf("\nExtract wmo complete (No (fatal) errors)\n"); return success; }
//---------------------------------------------------------------------------------------------------------------------------------------------------------------------- int ExtractWmo(const std::vector<std::string>& pArchiveNames) { char* szListFile = ""; char szLocalFile[MAX_PATH] = ""; HANDLE hMpq = ""; BOOL bResult = FALSE; //const char* ParsArchiveNames[] = {"patch-2.MPQ", "patch.MPQ", "common.MPQ", "expansion.MPQ"}; int nError = ERROR_SUCCESS; if(szListFile == NULL || *szListFile == 0) szListFile = NULL; //char tmp[1024]; //for (size_t i=0; i<4; i++) for (size_t i=0; i<pArchiveNames.size(); i++) { //sprintf(tmp,"%s\\%s", input_path, ParsArchiveNames[i]); //if(!SFileOpenArchive(tmp, 0, 0, &hMpq)) if(!SFileOpenArchive(pArchiveNames[i].c_str(), 0, 0, &hMpq)) printf("NOT open!!! %s\n",pArchiveNames[i].c_str()); // Copy files from archive if(nError == ERROR_SUCCESS) { SFILE_FIND_DATA wf; HANDLE hFind = SFileFindFirstFile(hMpq,"*.wmo*", &wf, szListFile); bResult = TRUE; while(hFind != NULL && bResult == TRUE) { ShowProcessedFile(wf.cFileName); SFileSetLocale(wf.lcLocale); sprintf(szLocalFile, "%s\\%s", szWorkDirWmo, GetPlainName(wf.cFileName)); fixnamen(szLocalFile,strlen(szLocalFile)); FILE * n; if ((n = fopen(szLocalFile, "rb"))== NULL) { int p = 0; //Select root wmo files const char * rchr = strrchr(GetPlainName(wf.cFileName),0x5f); if(rchr != NULL) { char cpy[4]; strncpy((char*)cpy,rchr,4); for (int i=0;i<4;i++) { int m = cpy[i]; if(isdigit(m)) p++; } } if(p != 3) { //printf("RootWmo!\n"); string s = wf.cFileName; WMORoot * froot = new WMORoot(s); if(!froot->open()) { printf("Not open RootWmo!!!\n"); bResult = SFileFindNextFile(hFind, &wf); continue; } FILE *output=fopen(szLocalFile,"wb"); froot->ConvertToVMAPRootWmo(output); int Wmo_nVertices = 0; if(froot->nGroups !=0) { for (int i=0; i<froot->nGroups; i++) { char temp[512]; strcpy(temp, wf.cFileName); temp[strlen(wf.cFileName)-4] = 0; char groupFileName[512]; sprintf(groupFileName,"%s_%03d.wmo",temp, i); printf("%s\n",groupFileName); //printf("GroupWmo!\n"); string s = groupFileName; WMOGroup * fgroup = new WMOGroup(s); if(!fgroup->open()) { printf("Not all open Group file for: %s\n",GetPlainName(wf.cFileName)); bResult = SFileFindNextFile(hFind, &wf); break; } Wmo_nVertices += fgroup->ConvertToVMAPGroupWmo(output, preciseVectorData); } } fseek(output, 8, SEEK_SET); // store the correct no of vertices fwrite(&Wmo_nVertices,sizeof(int),1,output); fclose(output); } } else { fclose(n); } wf.dwFileFlags &= ~MPQ_FILE_HAS_EXTRA; wf.dwFileFlags &= ~MPQ_FILE_EXISTS; // Find the next file bResult = SFileFindNextFile(hFind, &wf); } // Delete the extracted file in the case of an error if(nError != ERROR_SUCCESS) DeleteFile(szLocalFile); // Close the search handle if(hFind != NULL) SFileFindClose(hFind); } } // Close both archives if(hMpq != NULL) //SFileCloseArchive(hMpq); if(nError == ERROR_SUCCESS) printf("\nExtract wmo complete (No errors)\n"); return nError; }