mirror of
https://github.com/EQEmu/Server.git
synced 2026-01-06 05:13:52 +00:00
* Fix for GENERIC_9_STRINGS * Add Bot Heal Message Display Creates a new rule to display Bot heal messages to the Bot Owner * 2021-03-25 11L04pm Spell and Heal Rule added to allow for Bot spell and heal damage to be sent to the Bot Owner's Group. Also added a check to remove duplicate message for #damage on self. * Update .gitignore * BOT work Added BOT logging damage/heals to owner Added BOT message to owner for harmony fails Made var Critical global to remove duplicate crit messages Added a NULL check to Mob:GetCleanname() * Bot Group Work Fixed botid=charid spawn on zone issue Added a group_list update on zone to refresh from database to fix a dangling pointer to a Bot object that was camped but was previously in a group within the zone being entered. Modified Bot::ProcessBotGroupInvite to use the client of the bot when doing the Bot initialization so that a leader can invite another owner's Bot * Jan 4 Basic structure in place for Raid::AddBot though not working * Basement Jan 5 * End of day Jan 5 Working Raid Invite to a Bot. * Update to Client::QueuePacket to not attempt to send a packet to a BoT. Not clean, but a broad solution. * Updated Raid::VerifyRaid * Some Bot Raid working * Before VS Crash * Use Case 1, 2, 3,4,7 working. Need to fix 5, 6, 8 * Work on usecase 5 * A few more use cases working * New work on Raid invite with a invitor having a group * Bot Raid inviting working for all use cases * A few changes * end of day jan 10 * Jan 11 * end of day Jan 11 * Bot Invite/Accept cleanup * Start of moving raid bot functions to their own methods * More bot raid changes * More raid spell work * end of day Jan 16 * spawn work * Spawn on login working * End of Day Jan 18 * Raid leader and mana/hp updates fixed * Spell Tracking * Issue with Bot Death in raid when casted upon. 1741 raid.cpp * Bot Death fixed and few other crashes * Working on botgroup removal * Bot Disbanding Work 90% * Looks like BOTs are working * Fixed a bot crash * bug tracing on entity list mismatch * safe_delete resoves problem. No to track down leak * seems to be working * Memory corruption found - sending packets to BoTs using Client class * added Raid::IsRaidMemberBot() * Update p_raid_instance * g3 * Final - Bot Raid Working * Fixed IsRaidMemberBot to remove memory leak Fixed altcombat crash though RaidMainAssist (428) needs fixing * add RaidMember.IsBot * Repaired IsBot function to be more preformant. Now works on standard performance machine * Fixed Bard AE Target Spells Removed assert for buffs * updated based on Feb 2022 master updates * Added bot_db_updates and version increment * Cleanup of bot raid work and inclusion of bot_raid in cmake * Fix repop crash * Bot databse change to not use view * Revert "Merge branch 'master' of https://github.com/neckkola/Server" This reverts commit 18268306378a34a6f0a9015cfcb4f48364bef013, reversing changes made to 7c1a1399918aeee1dc3f6f30e39044d7d1bec4c9. * Updated syntax for 9230 Updated this syntax as to run on maria 10.1 * Revert "Updated syntax for 9230" This reverts commit ffdd46c8b26a8607d41b95af3c3ab575c41f4231. * Fix for cross zone mark npc when entity ids are reused. * Fixed and tested added db change and tested across zones * Transition to direct attributes instead of encode Update the pattern to utilize direct raid object attributes for entity id, zone id and instance id instead of an encoded single field.
446 lines
12 KiB
C++
446 lines
12 KiB
C++
/**
|
|
* DO NOT MODIFY THIS FILE
|
|
*
|
|
* This repository was automatically generated and is NOT to be modified directly.
|
|
* Any repository modifications are meant to be made to the repository extending the base.
|
|
* Any modifications to base repositories are to be made by the generator only
|
|
*
|
|
* @generator ./utils/scripts/generators/repository-generator.pl
|
|
* @docs https://eqemu.gitbook.io/server/in-development/developer-area/repositories
|
|
*/
|
|
|
|
#ifndef EQEMU_BASE_RAID_DETAILS_REPOSITORY_H
|
|
#define EQEMU_BASE_RAID_DETAILS_REPOSITORY_H
|
|
|
|
#include "../../database.h"
|
|
#include "../../strings.h"
|
|
#include <ctime>
|
|
|
|
|
|
class BaseRaidDetailsRepository {
|
|
public:
|
|
struct RaidDetails {
|
|
int32_t raidid;
|
|
int32_t loottype;
|
|
int8_t locked;
|
|
std::string motd;
|
|
uint32_t marked_npc_1_entity_id;
|
|
uint32_t marked_npc_1_zone_id;
|
|
uint32_t marked_npc_1_instance_id;
|
|
uint32_t marked_npc_2_entity_id;
|
|
uint32_t marked_npc_2_zone_id;
|
|
uint32_t marked_npc_2_instance_id;
|
|
uint32_t marked_npc_3_entity_id;
|
|
uint32_t marked_npc_3_zone_id;
|
|
uint32_t marked_npc_3_instance_id;
|
|
};
|
|
|
|
static std::string PrimaryKey()
|
|
{
|
|
return std::string("raidid");
|
|
}
|
|
|
|
static std::vector<std::string> Columns()
|
|
{
|
|
return {
|
|
"raidid",
|
|
"loottype",
|
|
"locked",
|
|
"motd",
|
|
"marked_npc_1_entity_id",
|
|
"marked_npc_1_zone_id",
|
|
"marked_npc_1_instance_id",
|
|
"marked_npc_2_entity_id",
|
|
"marked_npc_2_zone_id",
|
|
"marked_npc_2_instance_id",
|
|
"marked_npc_3_entity_id",
|
|
"marked_npc_3_zone_id",
|
|
"marked_npc_3_instance_id",
|
|
};
|
|
}
|
|
|
|
static std::vector<std::string> SelectColumns()
|
|
{
|
|
return {
|
|
"raidid",
|
|
"loottype",
|
|
"locked",
|
|
"motd",
|
|
"marked_npc_1_entity_id",
|
|
"marked_npc_1_zone_id",
|
|
"marked_npc_1_instance_id",
|
|
"marked_npc_2_entity_id",
|
|
"marked_npc_2_zone_id",
|
|
"marked_npc_2_instance_id",
|
|
"marked_npc_3_entity_id",
|
|
"marked_npc_3_zone_id",
|
|
"marked_npc_3_instance_id",
|
|
};
|
|
}
|
|
|
|
static std::string ColumnsRaw()
|
|
{
|
|
return std::string(Strings::Implode(", ", Columns()));
|
|
}
|
|
|
|
static std::string SelectColumnsRaw()
|
|
{
|
|
return std::string(Strings::Implode(", ", SelectColumns()));
|
|
}
|
|
|
|
static std::string TableName()
|
|
{
|
|
return std::string("raid_details");
|
|
}
|
|
|
|
static std::string BaseSelect()
|
|
{
|
|
return fmt::format(
|
|
"SELECT {} FROM {}",
|
|
SelectColumnsRaw(),
|
|
TableName()
|
|
);
|
|
}
|
|
|
|
static std::string BaseInsert()
|
|
{
|
|
return fmt::format(
|
|
"INSERT INTO {} ({}) ",
|
|
TableName(),
|
|
ColumnsRaw()
|
|
);
|
|
}
|
|
|
|
static RaidDetails NewEntity()
|
|
{
|
|
RaidDetails e{};
|
|
|
|
e.raidid = 0;
|
|
e.loottype = 0;
|
|
e.locked = 0;
|
|
e.motd = "";
|
|
e.marked_npc_1_entity_id = 0;
|
|
e.marked_npc_1_zone_id = 0;
|
|
e.marked_npc_1_instance_id = 0;
|
|
e.marked_npc_2_entity_id = 0;
|
|
e.marked_npc_2_zone_id = 0;
|
|
e.marked_npc_2_instance_id = 0;
|
|
e.marked_npc_3_entity_id = 0;
|
|
e.marked_npc_3_zone_id = 0;
|
|
e.marked_npc_3_instance_id = 0;
|
|
|
|
return e;
|
|
}
|
|
|
|
static RaidDetails GetRaidDetails(
|
|
const std::vector<RaidDetails> &raid_detailss,
|
|
int raid_details_id
|
|
)
|
|
{
|
|
for (auto &raid_details : raid_detailss) {
|
|
if (raid_details.raidid == raid_details_id) {
|
|
return raid_details;
|
|
}
|
|
}
|
|
|
|
return NewEntity();
|
|
}
|
|
|
|
static RaidDetails FindOne(
|
|
Database& db,
|
|
int raid_details_id
|
|
)
|
|
{
|
|
auto results = db.QueryDatabase(
|
|
fmt::format(
|
|
"{} WHERE {} = {} LIMIT 1",
|
|
BaseSelect(),
|
|
PrimaryKey(),
|
|
raid_details_id
|
|
)
|
|
);
|
|
|
|
auto row = results.begin();
|
|
if (results.RowCount() == 1) {
|
|
RaidDetails e{};
|
|
|
|
e.raidid = static_cast<int32_t>(atoi(row[0]));
|
|
e.loottype = static_cast<int32_t>(atoi(row[1]));
|
|
e.locked = static_cast<int8_t>(atoi(row[2]));
|
|
e.motd = row[3] ? row[3] : "";
|
|
e.marked_npc_1_entity_id = static_cast<uint32_t>(strtoul(row[4], nullptr, 10));
|
|
e.marked_npc_1_zone_id = static_cast<uint32_t>(strtoul(row[5], nullptr, 10));
|
|
e.marked_npc_1_instance_id = static_cast<uint32_t>(strtoul(row[6], nullptr, 10));
|
|
e.marked_npc_2_entity_id = static_cast<uint32_t>(strtoul(row[7], nullptr, 10));
|
|
e.marked_npc_2_zone_id = static_cast<uint32_t>(strtoul(row[8], nullptr, 10));
|
|
e.marked_npc_2_instance_id = static_cast<uint32_t>(strtoul(row[9], nullptr, 10));
|
|
e.marked_npc_3_entity_id = static_cast<uint32_t>(strtoul(row[10], nullptr, 10));
|
|
e.marked_npc_3_zone_id = static_cast<uint32_t>(strtoul(row[11], nullptr, 10));
|
|
e.marked_npc_3_instance_id = static_cast<uint32_t>(strtoul(row[12], nullptr, 10));
|
|
|
|
return e;
|
|
}
|
|
|
|
return NewEntity();
|
|
}
|
|
|
|
static int DeleteOne(
|
|
Database& db,
|
|
int raid_details_id
|
|
)
|
|
{
|
|
auto results = db.QueryDatabase(
|
|
fmt::format(
|
|
"DELETE FROM {} WHERE {} = {}",
|
|
TableName(),
|
|
PrimaryKey(),
|
|
raid_details_id
|
|
)
|
|
);
|
|
|
|
return (results.Success() ? results.RowsAffected() : 0);
|
|
}
|
|
|
|
static int UpdateOne(
|
|
Database& db,
|
|
const RaidDetails &e
|
|
)
|
|
{
|
|
std::vector<std::string> v;
|
|
|
|
auto columns = Columns();
|
|
|
|
v.push_back(columns[0] + " = " + std::to_string(e.raidid));
|
|
v.push_back(columns[1] + " = " + std::to_string(e.loottype));
|
|
v.push_back(columns[2] + " = " + std::to_string(e.locked));
|
|
v.push_back(columns[3] + " = '" + Strings::Escape(e.motd) + "'");
|
|
v.push_back(columns[4] + " = " + std::to_string(e.marked_npc_1_entity_id));
|
|
v.push_back(columns[5] + " = " + std::to_string(e.marked_npc_1_zone_id));
|
|
v.push_back(columns[6] + " = " + std::to_string(e.marked_npc_1_instance_id));
|
|
v.push_back(columns[7] + " = " + std::to_string(e.marked_npc_2_entity_id));
|
|
v.push_back(columns[8] + " = " + std::to_string(e.marked_npc_2_zone_id));
|
|
v.push_back(columns[9] + " = " + std::to_string(e.marked_npc_2_instance_id));
|
|
v.push_back(columns[10] + " = " + std::to_string(e.marked_npc_3_entity_id));
|
|
v.push_back(columns[11] + " = " + std::to_string(e.marked_npc_3_zone_id));
|
|
v.push_back(columns[12] + " = " + std::to_string(e.marked_npc_3_instance_id));
|
|
|
|
auto results = db.QueryDatabase(
|
|
fmt::format(
|
|
"UPDATE {} SET {} WHERE {} = {}",
|
|
TableName(),
|
|
Strings::Implode(", ", v),
|
|
PrimaryKey(),
|
|
e.raidid
|
|
)
|
|
);
|
|
|
|
return (results.Success() ? results.RowsAffected() : 0);
|
|
}
|
|
|
|
static RaidDetails InsertOne(
|
|
Database& db,
|
|
RaidDetails e
|
|
)
|
|
{
|
|
std::vector<std::string> v;
|
|
|
|
v.push_back(std::to_string(e.raidid));
|
|
v.push_back(std::to_string(e.loottype));
|
|
v.push_back(std::to_string(e.locked));
|
|
v.push_back("'" + Strings::Escape(e.motd) + "'");
|
|
v.push_back(std::to_string(e.marked_npc_1_entity_id));
|
|
v.push_back(std::to_string(e.marked_npc_1_zone_id));
|
|
v.push_back(std::to_string(e.marked_npc_1_instance_id));
|
|
v.push_back(std::to_string(e.marked_npc_2_entity_id));
|
|
v.push_back(std::to_string(e.marked_npc_2_zone_id));
|
|
v.push_back(std::to_string(e.marked_npc_2_instance_id));
|
|
v.push_back(std::to_string(e.marked_npc_3_entity_id));
|
|
v.push_back(std::to_string(e.marked_npc_3_zone_id));
|
|
v.push_back(std::to_string(e.marked_npc_3_instance_id));
|
|
|
|
auto results = db.QueryDatabase(
|
|
fmt::format(
|
|
"{} VALUES ({})",
|
|
BaseInsert(),
|
|
Strings::Implode(",", v)
|
|
)
|
|
);
|
|
|
|
if (results.Success()) {
|
|
e.raidid = results.LastInsertedID();
|
|
return e;
|
|
}
|
|
|
|
e = NewEntity();
|
|
|
|
return e;
|
|
}
|
|
|
|
static int InsertMany(
|
|
Database& db,
|
|
const std::vector<RaidDetails> &entries
|
|
)
|
|
{
|
|
std::vector<std::string> insert_chunks;
|
|
|
|
for (auto &e: entries) {
|
|
std::vector<std::string> v;
|
|
|
|
v.push_back(std::to_string(e.raidid));
|
|
v.push_back(std::to_string(e.loottype));
|
|
v.push_back(std::to_string(e.locked));
|
|
v.push_back("'" + Strings::Escape(e.motd) + "'");
|
|
v.push_back(std::to_string(e.marked_npc_1_entity_id));
|
|
v.push_back(std::to_string(e.marked_npc_1_zone_id));
|
|
v.push_back(std::to_string(e.marked_npc_1_instance_id));
|
|
v.push_back(std::to_string(e.marked_npc_2_entity_id));
|
|
v.push_back(std::to_string(e.marked_npc_2_zone_id));
|
|
v.push_back(std::to_string(e.marked_npc_2_instance_id));
|
|
v.push_back(std::to_string(e.marked_npc_3_entity_id));
|
|
v.push_back(std::to_string(e.marked_npc_3_zone_id));
|
|
v.push_back(std::to_string(e.marked_npc_3_instance_id));
|
|
|
|
insert_chunks.push_back("(" + Strings::Implode(",", v) + ")");
|
|
}
|
|
|
|
std::vector<std::string> v;
|
|
|
|
auto results = db.QueryDatabase(
|
|
fmt::format(
|
|
"{} VALUES {}",
|
|
BaseInsert(),
|
|
Strings::Implode(",", insert_chunks)
|
|
)
|
|
);
|
|
|
|
return (results.Success() ? results.RowsAffected() : 0);
|
|
}
|
|
|
|
static std::vector<RaidDetails> All(Database& db)
|
|
{
|
|
std::vector<RaidDetails> all_entries;
|
|
|
|
auto results = db.QueryDatabase(
|
|
fmt::format(
|
|
"{}",
|
|
BaseSelect()
|
|
)
|
|
);
|
|
|
|
all_entries.reserve(results.RowCount());
|
|
|
|
for (auto row = results.begin(); row != results.end(); ++row) {
|
|
RaidDetails e{};
|
|
|
|
e.raidid = static_cast<int32_t>(atoi(row[0]));
|
|
e.loottype = static_cast<int32_t>(atoi(row[1]));
|
|
e.locked = static_cast<int8_t>(atoi(row[2]));
|
|
e.motd = row[3] ? row[3] : "";
|
|
e.marked_npc_1_entity_id = static_cast<uint32_t>(strtoul(row[4], nullptr, 10));
|
|
e.marked_npc_1_zone_id = static_cast<uint32_t>(strtoul(row[5], nullptr, 10));
|
|
e.marked_npc_1_instance_id = static_cast<uint32_t>(strtoul(row[6], nullptr, 10));
|
|
e.marked_npc_2_entity_id = static_cast<uint32_t>(strtoul(row[7], nullptr, 10));
|
|
e.marked_npc_2_zone_id = static_cast<uint32_t>(strtoul(row[8], nullptr, 10));
|
|
e.marked_npc_2_instance_id = static_cast<uint32_t>(strtoul(row[9], nullptr, 10));
|
|
e.marked_npc_3_entity_id = static_cast<uint32_t>(strtoul(row[10], nullptr, 10));
|
|
e.marked_npc_3_zone_id = static_cast<uint32_t>(strtoul(row[11], nullptr, 10));
|
|
e.marked_npc_3_instance_id = static_cast<uint32_t>(strtoul(row[12], nullptr, 10));
|
|
|
|
all_entries.push_back(e);
|
|
}
|
|
|
|
return all_entries;
|
|
}
|
|
|
|
static std::vector<RaidDetails> GetWhere(Database& db, const std::string &where_filter)
|
|
{
|
|
std::vector<RaidDetails> all_entries;
|
|
|
|
auto results = db.QueryDatabase(
|
|
fmt::format(
|
|
"{} WHERE {}",
|
|
BaseSelect(),
|
|
where_filter
|
|
)
|
|
);
|
|
|
|
all_entries.reserve(results.RowCount());
|
|
|
|
for (auto row = results.begin(); row != results.end(); ++row) {
|
|
RaidDetails e{};
|
|
|
|
e.raidid = static_cast<int32_t>(atoi(row[0]));
|
|
e.loottype = static_cast<int32_t>(atoi(row[1]));
|
|
e.locked = static_cast<int8_t>(atoi(row[2]));
|
|
e.motd = row[3] ? row[3] : "";
|
|
e.marked_npc_1_entity_id = static_cast<uint32_t>(strtoul(row[4], nullptr, 10));
|
|
e.marked_npc_1_zone_id = static_cast<uint32_t>(strtoul(row[5], nullptr, 10));
|
|
e.marked_npc_1_instance_id = static_cast<uint32_t>(strtoul(row[6], nullptr, 10));
|
|
e.marked_npc_2_entity_id = static_cast<uint32_t>(strtoul(row[7], nullptr, 10));
|
|
e.marked_npc_2_zone_id = static_cast<uint32_t>(strtoul(row[8], nullptr, 10));
|
|
e.marked_npc_2_instance_id = static_cast<uint32_t>(strtoul(row[9], nullptr, 10));
|
|
e.marked_npc_3_entity_id = static_cast<uint32_t>(strtoul(row[10], nullptr, 10));
|
|
e.marked_npc_3_zone_id = static_cast<uint32_t>(strtoul(row[11], nullptr, 10));
|
|
e.marked_npc_3_instance_id = static_cast<uint32_t>(strtoul(row[12], nullptr, 10));
|
|
|
|
all_entries.push_back(e);
|
|
}
|
|
|
|
return all_entries;
|
|
}
|
|
|
|
static int DeleteWhere(Database& db, const std::string &where_filter)
|
|
{
|
|
auto results = db.QueryDatabase(
|
|
fmt::format(
|
|
"DELETE FROM {} WHERE {}",
|
|
TableName(),
|
|
where_filter
|
|
)
|
|
);
|
|
|
|
return (results.Success() ? results.RowsAffected() : 0);
|
|
}
|
|
|
|
static int Truncate(Database& db)
|
|
{
|
|
auto results = db.QueryDatabase(
|
|
fmt::format(
|
|
"TRUNCATE TABLE {}",
|
|
TableName()
|
|
)
|
|
);
|
|
|
|
return (results.Success() ? results.RowsAffected() : 0);
|
|
}
|
|
|
|
static int64 GetMaxId(Database& db)
|
|
{
|
|
auto results = db.QueryDatabase(
|
|
fmt::format(
|
|
"SELECT COALESCE(MAX({}), 0) FROM {}",
|
|
PrimaryKey(),
|
|
TableName()
|
|
)
|
|
);
|
|
|
|
return (results.Success() && results.begin()[0] ? strtoll(results.begin()[0], nullptr, 10) : 0);
|
|
}
|
|
|
|
static int64 Count(Database& db, const std::string &where_filter = "")
|
|
{
|
|
auto results = db.QueryDatabase(
|
|
fmt::format(
|
|
"SELECT COUNT(*) FROM {} {}",
|
|
TableName(),
|
|
(where_filter.empty() ? "" : "WHERE " + where_filter)
|
|
)
|
|
);
|
|
|
|
return (results.Success() && results.begin()[0] ? strtoll(results.begin()[0], nullptr, 10) : 0);
|
|
}
|
|
|
|
};
|
|
|
|
#endif //EQEMU_BASE_RAID_DETAILS_REPOSITORY_H
|