mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
346 lines
7.6 KiB
C++
346 lines
7.6 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/eqemu_logsys.h"
|
|
#include "../../common/global_define.h"
|
|
#include "../../common/shareddb.h"
|
|
#include "../../common/eqemu_config.h"
|
|
#include "../../common/platform.h"
|
|
#include "../../common/crash.h"
|
|
#include "../../common/rulesys.h"
|
|
#include "../../common/string_util.h"
|
|
#include "../../common/content/world_content_service.h"
|
|
|
|
EQEmuLogSys LogSys;
|
|
WorldContentService content_service;
|
|
|
|
void ImportSpells(SharedDatabase *db);
|
|
void ImportSkillCaps(SharedDatabase *db);
|
|
void ImportBaseData(SharedDatabase *db);
|
|
void ImportDBStrings(SharedDatabase *db);
|
|
|
|
int main(int argc, char **argv) {
|
|
RegisterExecutablePlatform(ExePlatformClientImport);
|
|
LogSys.LoadLogSettingsDefaults();
|
|
set_exception_handler();
|
|
|
|
LogInfo("Client Files Import Utility");
|
|
if(!EQEmuConfig::LoadConfig()) {
|
|
LogError("Unable to load configuration file.");
|
|
return 1;
|
|
}
|
|
|
|
auto Config = EQEmuConfig::get();
|
|
|
|
SharedDatabase database;
|
|
SharedDatabase content_db;
|
|
|
|
LogInfo("Connecting to database");
|
|
if (!database.Connect(
|
|
Config->DatabaseHost.c_str(),
|
|
Config->DatabaseUsername.c_str(),
|
|
Config->DatabasePassword.c_str(),
|
|
Config->DatabaseDB.c_str(),
|
|
Config->DatabasePort
|
|
)) {
|
|
LogError("Unable to connect to the database, cannot continue without a database connection");
|
|
return 1;
|
|
}
|
|
|
|
/**
|
|
* Multi-tenancy: Content database
|
|
*/
|
|
if (!Config->ContentDbHost.empty()) {
|
|
if (!content_db.Connect(
|
|
Config->ContentDbHost.c_str() ,
|
|
Config->ContentDbUsername.c_str(),
|
|
Config->ContentDbPassword.c_str(),
|
|
Config->ContentDbName.c_str(),
|
|
Config->ContentDbPort
|
|
)) {
|
|
LogError("Cannot continue without a content database connection");
|
|
return 1;
|
|
}
|
|
} else {
|
|
content_db.SetMysql(database.getMySQL());
|
|
}
|
|
|
|
LogSys.SetDatabase(&database)
|
|
->LoadLogDatabaseSettings()
|
|
->StartFileLogs();
|
|
|
|
ImportSpells(&content_db);
|
|
ImportSkillCaps(&content_db);
|
|
ImportBaseData(&content_db);
|
|
ImportDBStrings(&database);
|
|
|
|
LogSys.CloseFileLogs();
|
|
|
|
return 0;
|
|
}
|
|
|
|
int GetSpellColumns(SharedDatabase *db) {
|
|
|
|
const std::string query = "DESCRIBE spells_new";
|
|
auto results = db->QueryDatabase(query);
|
|
if(!results.Success()) {
|
|
return 0;
|
|
}
|
|
|
|
return results.RowCount();
|
|
}
|
|
|
|
bool IsStringField(int i) {
|
|
switch(i)
|
|
{
|
|
case 1:
|
|
case 2:
|
|
case 3:
|
|
case 4:
|
|
case 5:
|
|
case 6:
|
|
case 7:
|
|
case 8:
|
|
return true;
|
|
break;
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
void ImportSpells(SharedDatabase *db) {
|
|
LogInfo("Importing Spells");
|
|
FILE *f = fopen("import/spells_us.txt", "r");
|
|
if(!f) {
|
|
LogError("Unable to open import/spells_us.txt to read, skipping.");
|
|
return;
|
|
}
|
|
|
|
std::string query = "DELETE FROM spells_new";
|
|
db->QueryDatabase(query);
|
|
|
|
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 += "'";
|
|
}
|
|
|
|
if(split[i].compare("") == 0 && !IsStringField(i)) {
|
|
sql += "0";
|
|
}
|
|
else {
|
|
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 += "'";
|
|
}
|
|
|
|
if(split[i].compare("") == 0 && !IsStringField(i)) {
|
|
sql += "0";
|
|
} else {
|
|
sql += split[i];
|
|
}
|
|
|
|
sql += "'";
|
|
}
|
|
|
|
for(; i < columns; ++i) {
|
|
sql += ", '0'";
|
|
}
|
|
|
|
sql += ");";
|
|
}
|
|
|
|
db->QueryDatabase(sql);
|
|
|
|
spells_imported++;
|
|
if(spells_imported % 1000 == 0) {
|
|
LogInfo("[{}] spells imported", spells_imported);
|
|
}
|
|
}
|
|
|
|
if(spells_imported % 1000 != 0) {
|
|
LogInfo("[{}] spells imported", spells_imported);
|
|
}
|
|
|
|
fclose(f);
|
|
}
|
|
|
|
void ImportSkillCaps(SharedDatabase *db) {
|
|
LogInfo("Importing Skill Caps");
|
|
|
|
FILE *f = fopen("import/SkillCaps.txt", "r");
|
|
if(!f) {
|
|
LogError("Unable to open import/SkillCaps.txt to read, skipping.");
|
|
return;
|
|
}
|
|
|
|
std::string delete_sql = "DELETE FROM skill_caps";
|
|
db->QueryDatabase(delete_sql);
|
|
|
|
char buffer[2048];
|
|
while(fgets(buffer, 2048, f)) {
|
|
auto split = SplitString(buffer, '^');
|
|
|
|
if(split.size() < 4) {
|
|
continue;
|
|
}
|
|
|
|
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());
|
|
|
|
std::string sql = StringFormat("INSERT INTO skill_caps(class, skillID, level, cap) VALUES(%d, %d, %d, %d)",
|
|
class_id, skill_id, level, cap);
|
|
|
|
db->QueryDatabase(sql);
|
|
}
|
|
|
|
fclose(f);
|
|
}
|
|
|
|
void ImportBaseData(SharedDatabase *db) {
|
|
LogInfo("Importing Base Data");
|
|
|
|
FILE *f = fopen("import/BaseData.txt", "r");
|
|
if(!f) {
|
|
LogError("Unable to open import/BaseData.txt to read, skipping.");
|
|
return;
|
|
}
|
|
|
|
std::string delete_sql = "DELETE FROM base_data";
|
|
db->QueryDatabase(delete_sql);
|
|
|
|
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());
|
|
|
|
sql = StringFormat("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->QueryDatabase(sql);
|
|
}
|
|
|
|
fclose(f);
|
|
}
|
|
|
|
void ImportDBStrings(SharedDatabase *db) {
|
|
LogInfo("Importing DB Strings");
|
|
|
|
FILE *f = fopen("import/dbstr_us.txt", "r");
|
|
if(!f) {
|
|
LogError("Unable to open import/dbstr_us.txt to read, skipping.");
|
|
return;
|
|
}
|
|
|
|
std::string delete_sql = "DELETE FROM db_str";
|
|
db->QueryDatabase(delete_sql);
|
|
|
|
char buffer[2048];
|
|
bool first = true;
|
|
while(fgets(buffer, 2048, f)) {
|
|
if(first) {
|
|
first = false;
|
|
continue;
|
|
}
|
|
|
|
for(int i = 0; i < 2048; ++i) {
|
|
if(buffer[i] == '\n') {
|
|
buffer[i] = 0;
|
|
break;
|
|
}
|
|
}
|
|
|
|
auto split = SplitString(buffer, '^');
|
|
|
|
if(split.size() < 2) {
|
|
continue;
|
|
}
|
|
|
|
std::string sql;
|
|
int id, type;
|
|
std::string value;
|
|
|
|
id = atoi(split[0].c_str());
|
|
type = atoi(split[1].c_str());
|
|
|
|
if(split.size() >= 3) {
|
|
value = ::EscapeString(split[2]);
|
|
}
|
|
|
|
sql = StringFormat("INSERT INTO db_str(id, type, value) VALUES(%u, %u, '%s')",
|
|
id, type, value.c_str());
|
|
|
|
db->QueryDatabase(sql);
|
|
}
|
|
|
|
fclose(f);
|
|
}
|