mirror of
https://github.com/EQEmu/Server.git
synced 2026-04-02 08:12:25 +00:00
- License was intended to be GPLv3 per earlier commit of GPLv3 LICENSE FILE - This is confirmed by the inclusion of libraries that are incompatible with GPLv2 - This is also confirmed by KLS and the agreement of KLS's predecessors - Added GPLv3 license headers to the compilable source files - Removed Folly licensing in strings.h since the string functions do not match the Folly functions and are standard functions - this must have been left over from previous implementations - Removed individual contributor license headers since the project has been under the "developer" mantle for many years - Removed comments on files that were previously automatically generated since they've been manually modified multiple times and there are no automatic scripts referencing them (removed in 2023)
112 lines
3.5 KiB
C++
112 lines
3.5 KiB
C++
/* EQEmu: EQEmulator
|
|
|
|
Copyright (C) 2001-2026 EQEmu Development Team
|
|
|
|
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; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#include "dynamic_zone_lockout.h"
|
|
#include "rulesys.h"
|
|
#include "strings.h"
|
|
#include "util/uuid.h"
|
|
|
|
#include "fmt/format.h"
|
|
#include "cereal/types/chrono.hpp"
|
|
#include "cereal/archives/binary.hpp"
|
|
|
|
DzLockout::DzLockout(std::string uuid, std::string expedition, std::string event, uint64_t expire_time, uint32_t duration)
|
|
: m_uuid(std::move(uuid))
|
|
, m_name(std::move(expedition))
|
|
, m_event(std::move(event))
|
|
, m_expire_time(std::chrono::system_clock::from_time_t(expire_time))
|
|
, m_duration(duration)
|
|
{
|
|
m_is_replay = m_event == ReplayTimer;
|
|
}
|
|
|
|
DzLockout::DzLockout(std::string_view name, BaseDynamicZoneLockoutsRepository::DynamicZoneLockouts&& lockout)
|
|
: m_uuid(std::move(lockout.from_expedition_uuid))
|
|
, m_name(name)
|
|
, m_event(std::move(lockout.event_name))
|
|
, m_expire_time(std::chrono::system_clock::from_time_t(lockout.expire_time))
|
|
, m_duration(lockout.duration)
|
|
{
|
|
m_is_replay = m_event == ReplayTimer;
|
|
}
|
|
|
|
DzLockout DzLockout::Create(const std::string& expedition, const std::string& event, uint32_t seconds, std::string uuid)
|
|
{
|
|
seconds = static_cast<uint32_t>(seconds * RuleR(Expedition, LockoutDurationMultiplier));
|
|
|
|
if (uuid.empty())
|
|
{
|
|
uuid = EQ::Util::UUID::Generate().ToString();
|
|
}
|
|
|
|
DzLockout lockout{uuid, expedition, event, 0, seconds};
|
|
lockout.Reset(); // sets expire time
|
|
return lockout;
|
|
}
|
|
|
|
uint32_t DzLockout::GetSecondsRemaining() const
|
|
{
|
|
auto now = std::chrono::system_clock::now();
|
|
if (m_expire_time > now)
|
|
{
|
|
auto remaining = m_expire_time - now;
|
|
return static_cast<uint32_t>(std::chrono::duration_cast<std::chrono::seconds>(remaining).count());
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
DzLockout::TimeStrings DzLockout::GetTimeRemainingStrs() const
|
|
{
|
|
auto seconds = GetSecondsRemaining();
|
|
return DzLockout::TimeStrings{
|
|
fmt::format_int(seconds / 86400).str(), // days
|
|
fmt::format_int(seconds / 3600 % 24).str(), // hours
|
|
fmt::format_int(seconds / 60 % 60).str(), // minutes
|
|
fmt::format_int(seconds % 60).str() // seconds
|
|
};
|
|
}
|
|
|
|
bool DzLockout::IsSame(const DzLockout& other) const
|
|
{
|
|
return other.IsSame(m_name, m_event);
|
|
}
|
|
|
|
bool DzLockout::IsSame(const std::string& expedition, const std::string& event) const
|
|
{
|
|
return m_name == expedition && m_event == event;
|
|
}
|
|
|
|
void DzLockout::AddLockoutTime(int seconds)
|
|
{
|
|
seconds = static_cast<int>(seconds * RuleR(Expedition, LockoutDurationMultiplier));
|
|
|
|
auto new_duration = std::max(0, static_cast<int>(m_duration.count()) + seconds);
|
|
|
|
auto start_time = m_expire_time - m_duration;
|
|
m_duration = std::chrono::seconds(new_duration);
|
|
m_expire_time = start_time + m_duration;
|
|
}
|
|
|
|
template <typename T>
|
|
void DzLockout::serialize(T& archive)
|
|
{
|
|
archive(m_is_replay, m_uuid, m_name, m_event, m_duration, m_expire_time);
|
|
}
|
|
|
|
template void DzLockout::serialize(cereal::BinaryOutputArchive&);
|
|
template void DzLockout::serialize(cereal::BinaryInputArchive&);
|