12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #define _CRT_SECURE_NO_WARNINGS
- #include <iostream>
- #include <ctime>
- #include <algorithm>
- #ifdef WIN32
- #include <direct.h>
- #define mkdir(dir, mode) _mkdir(dir)
- #endif
- #include "LotroDatPatcher.h"
- using namespace LOTRO_DAT;
- const std::string path = "E:\\SteamLibrary\\steamapps\\common\\";
- const std::string filename = "client_local_English.dat";
- const std::string patch_filename = "image.jpg";
- const int file_id = 0;
- int main() {
- const clock_t begin_time = clock();
- freopen("patch_errors.log", "w", stderr);
- try {
- std::cout << "Starting search...\n";
- DatFile a(path + filename, 0);
- std::cout << "Total files found: " << a.dictionary().size() << std::endl;
- fprintf(stdout, "Spent %f seconds on running patcher! Thank you for your patience!\n",
- float(clock() - begin_time) / CLOCKS_PER_SEC);
- system("pause");
- } catch (...) {
- printf("Some critical errors occured. Need to stop execution. See information in errors.log file");
- fprintf(stderr, "Some critical errors occured. Need to stop execution now...");
- }
- return 0;
- }
|