mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-31 04:56:20 +00:00
[Repositories] Update repositories (#2040)
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
|
||||
#include "../../database.h"
|
||||
#include "../../string_util.h"
|
||||
#include <ctime>
|
||||
|
||||
class BaseTrapsRepository {
|
||||
public:
|
||||
@@ -81,11 +82,47 @@ public:
|
||||
};
|
||||
}
|
||||
|
||||
static std::vector<std::string> SelectColumns()
|
||||
{
|
||||
return {
|
||||
"id",
|
||||
"zone",
|
||||
"version",
|
||||
"x",
|
||||
"y",
|
||||
"z",
|
||||
"chance",
|
||||
"maxzdiff",
|
||||
"radius",
|
||||
"effect",
|
||||
"effectvalue",
|
||||
"effectvalue2",
|
||||
"message",
|
||||
"skill",
|
||||
"level",
|
||||
"respawn_time",
|
||||
"respawn_var",
|
||||
"triggered_number",
|
||||
"group",
|
||||
"despawn_when_triggered",
|
||||
"undetectable",
|
||||
"min_expansion",
|
||||
"max_expansion",
|
||||
"content_flags",
|
||||
"content_flags_disabled",
|
||||
};
|
||||
}
|
||||
|
||||
static std::string ColumnsRaw()
|
||||
{
|
||||
return std::string(implode(", ", Columns()));
|
||||
}
|
||||
|
||||
static std::string SelectColumnsRaw()
|
||||
{
|
||||
return std::string(implode(", ", SelectColumns()));
|
||||
}
|
||||
|
||||
static std::string TableName()
|
||||
{
|
||||
return std::string("traps");
|
||||
@@ -95,7 +132,7 @@ public:
|
||||
{
|
||||
return fmt::format(
|
||||
"SELECT {} FROM {}",
|
||||
ColumnsRaw(),
|
||||
SelectColumnsRaw(),
|
||||
TableName()
|
||||
);
|
||||
}
|
||||
@@ -134,8 +171,8 @@ public:
|
||||
entry.group = 0;
|
||||
entry.despawn_when_triggered = 0;
|
||||
entry.undetectable = 0;
|
||||
entry.min_expansion = 0;
|
||||
entry.max_expansion = 0;
|
||||
entry.min_expansion = -1;
|
||||
entry.max_expansion = -1;
|
||||
entry.content_flags = "";
|
||||
entry.content_flags_disabled = "";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user