mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
238 lines
6.4 KiB
C++
238 lines
6.4 KiB
C++
/* EQEMu: Everquest Server Emulator
|
|
Copyright (C) 2001-2013 EQEMu Development Team (http://eqemulator.net)
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY except by those people which sell it, which
|
|
are required to give you total support for your newly bought product;
|
|
without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include "../../common/debug.h"
|
|
#include "../../common/shareddb.h"
|
|
#include "../../common/EQEmuConfig.h"
|
|
#include "../../common/platform.h"
|
|
#include "../../common/crash.h"
|
|
#include "../../common/rulesys.h"
|
|
#include "../../common/StringUtil.h"
|
|
|
|
void ImportSpells(SharedDatabase *db);
|
|
void ImportSkillCaps(SharedDatabase *db);
|
|
void ImportBaseData(SharedDatabase *db);
|
|
|
|
int main(int argc, char **argv) {
|
|
RegisterExecutablePlatform(ExePlatformClientImport);
|
|
set_exception_handler();
|
|
|
|
LogFile->write(EQEMuLog::Status, "Client Files Import Utility");
|
|
if(!EQEmuConfig::LoadConfig()) {
|
|
LogFile->write(EQEMuLog::Error, "Unable to load configuration file.");
|
|
return 1;
|
|
}
|
|
|
|
const EQEmuConfig *config = EQEmuConfig::get();
|
|
if(!load_log_settings(config->LogSettingsFile.c_str())) {
|
|
LogFile->write(EQEMuLog::Error, "Warning: unable to read %s.", config->LogSettingsFile.c_str());
|
|
}
|
|
|
|
SharedDatabase database;
|
|
LogFile->write(EQEMuLog::Status, "Connecting to database...");
|
|
if(!database.Connect(config->DatabaseHost.c_str(), config->DatabaseUsername.c_str(),
|
|
config->DatabasePassword.c_str(), config->DatabaseDB.c_str(), config->DatabasePort)) {
|
|
LogFile->write(EQEMuLog::Error, "Unable to connect to the database, cannot continue without a "
|
|
"database connection");
|
|
return 1;
|
|
}
|
|
|
|
ImportSpells(&database);
|
|
ImportSkillCaps(&database);
|
|
ImportBaseData(&database);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int GetSpellColumns(SharedDatabase *db) {
|
|
char errbuf[MYSQL_ERRMSG_SIZE];
|
|
const char *query = "DESCRIBE spells_new";
|
|
MYSQL_RES *result;
|
|
MYSQL_ROW row;
|
|
int res = 0;
|
|
if(db->RunQuery(query, (uint32)strlen(query), errbuf, &result)) {
|
|
while(row = mysql_fetch_row(result)) {
|
|
++res;
|
|
}
|
|
mysql_free_result(result);
|
|
} else {
|
|
LogFile->write(EQEMuLog::Error, "Error in GetSpellColumns query '%s' %s", query, errbuf);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
void ImportSpells(SharedDatabase *db) {
|
|
LogFile->write(EQEMuLog::Status, "Importing Spells...");
|
|
FILE *f = fopen("import/spells_us.txt", "r");
|
|
if(!f) {
|
|
LogFile->write(EQEMuLog::Error, "Unable to open import/spells_us.txt to read, skipping.");
|
|
return;
|
|
}
|
|
|
|
std::string delete_sql = "DELETE FROM spells_new";
|
|
db->RunQuery(delete_sql.c_str(), (uint32)delete_sql.length());
|
|
|
|
int columns = GetSpellColumns(db);
|
|
int spells_imported = 0;
|
|
|
|
char buffer[2048];
|
|
while(fgets(buffer, 2048, f)) {
|
|
for(int i = 0; i < 2048; ++i) {
|
|
if(buffer[i] == '\n') {
|
|
buffer[i] = 0;
|
|
break;
|
|
}
|
|
}
|
|
|
|
std::string escaped = ::EscapeString(buffer);
|
|
auto split = SplitString(escaped, '^');
|
|
int line_columns = (int)split.size();
|
|
std::string sql;
|
|
|
|
if(line_columns >= columns) {
|
|
sql = "INSERT INTO spells_new VALUES(";
|
|
for(int i = 0; i < columns; ++i) {
|
|
if(i != 0) {
|
|
sql += ", '";
|
|
} else {
|
|
sql += "'";
|
|
}
|
|
|
|
sql += split[i];
|
|
sql += "'";
|
|
}
|
|
|
|
sql += ");";
|
|
} else {
|
|
int i = 0;
|
|
sql = "INSERT INTO spells_new VALUES(";
|
|
for(; i < line_columns; ++i) {
|
|
if(i != 0) {
|
|
sql += ", '";
|
|
} else {
|
|
sql += "'";
|
|
}
|
|
|
|
sql += split[i];
|
|
sql += "'";
|
|
}
|
|
|
|
for(; i < columns; ++i) {
|
|
sql += ", '0'";
|
|
}
|
|
|
|
sql += ");";
|
|
}
|
|
|
|
db->RunQuery(sql.c_str(), (uint32)sql.length());
|
|
|
|
spells_imported++;
|
|
if(spells_imported % 1000 == 0) {
|
|
LogFile->write(EQEMuLog::Status, "%d spells imported.", spells_imported);
|
|
}
|
|
}
|
|
|
|
if(spells_imported % 1000 != 0) {
|
|
LogFile->write(EQEMuLog::Status, "%d spells imported.", spells_imported);
|
|
}
|
|
|
|
fclose(f);
|
|
}
|
|
|
|
void ImportSkillCaps(SharedDatabase *db) {
|
|
LogFile->write(EQEMuLog::Status, "Importing Skill Caps...");
|
|
|
|
FILE *f = fopen("import/SkillCaps.txt", "r");
|
|
if(!f) {
|
|
LogFile->write(EQEMuLog::Error, "Unable to open import/SkillCaps.txt to read, skipping.");
|
|
return;
|
|
}
|
|
|
|
std::string delete_sql = "DELETE FROM skill_caps";
|
|
db->RunQuery(delete_sql.c_str(), (uint32)delete_sql.length());
|
|
|
|
char buffer[2048];
|
|
while(fgets(buffer, 2048, f)) {
|
|
auto split = SplitString(buffer, '^');
|
|
|
|
if(split.size() < 4) {
|
|
continue;
|
|
}
|
|
|
|
std::string sql;
|
|
int class_id, skill_id, level, cap;
|
|
class_id = atoi(split[0].c_str());
|
|
skill_id = atoi(split[1].c_str());
|
|
level = atoi(split[2].c_str());
|
|
cap = atoi(split[3].c_str());
|
|
|
|
StringFormat(sql, "INSERT INTO skill_caps(class, skillID, level, cap) VALUES(%d, %d, %d, %d)",
|
|
class_id, skill_id, level, cap);
|
|
|
|
db->RunQuery(sql.c_str(), (uint32)sql.length());
|
|
}
|
|
|
|
fclose(f);
|
|
}
|
|
|
|
void ImportBaseData(SharedDatabase *db) {
|
|
LogFile->write(EQEMuLog::Status, "Importing Base Data...");
|
|
|
|
FILE *f = fopen("import/BaseData.txt", "r");
|
|
if(!f) {
|
|
LogFile->write(EQEMuLog::Error, "Unable to open import/BaseData.txt to read, skipping.");
|
|
return;
|
|
}
|
|
|
|
std::string delete_sql = "DELETE FROM base_data";
|
|
db->RunQuery(delete_sql.c_str(), (uint32)delete_sql.length());
|
|
|
|
char buffer[2048];
|
|
while(fgets(buffer, 2048, f)) {
|
|
auto split = SplitString(buffer, '^');
|
|
|
|
if(split.size() < 10) {
|
|
continue;
|
|
}
|
|
|
|
std::string sql;
|
|
int level, class_id;
|
|
double hp, mana, end, unk1, unk2, hp_fac, mana_fac, end_fac;
|
|
|
|
level = atoi(split[0].c_str());
|
|
class_id = atoi(split[1].c_str());
|
|
hp = atof(split[2].c_str());
|
|
mana = atof(split[3].c_str());
|
|
end = atof(split[4].c_str());
|
|
unk1 = atof(split[5].c_str());
|
|
unk2 = atof(split[6].c_str());
|
|
hp_fac = atof(split[7].c_str());
|
|
mana_fac = atof(split[8].c_str());
|
|
end_fac = atof(split[9].c_str());
|
|
|
|
StringFormat(sql, "INSERT INTO base_data(level, class, hp, mana, end, unk1, unk2, hp_fac, "
|
|
"mana_fac, end_fac) VALUES(%d, %d, %f, %f, %f, %f, %f, %f, %f, %f)",
|
|
level, class_id, hp, mana, end, unk1, unk2, hp_fac, mana_fac, end_fac);
|
|
|
|
db->RunQuery(sql.c_str(), (uint32)sql.length());
|
|
}
|
|
|
|
fclose(f);
|
|
}
|