mirror of
https://github.com/EQEmu/Server.git
synced 2026-04-02 16:32:26 +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)
75 lines
2.9 KiB
C++
75 lines
2.9 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/>.
|
|
*/
|
|
#pragma once
|
|
|
|
#include "repositories/base/base_dynamic_zone_lockouts_repository.h"
|
|
|
|
#include <chrono>
|
|
#include <string>
|
|
|
|
class DzLockout
|
|
{
|
|
public:
|
|
DzLockout() = default;
|
|
DzLockout(std::string uuid, std::string expedition, std::string event, uint64_t expire_time, uint32_t duration);
|
|
DzLockout(std::string_view name, BaseDynamicZoneLockoutsRepository::DynamicZoneLockouts&& lockout);
|
|
|
|
static constexpr char ReplayTimer[] = "Replay Timer";
|
|
|
|
static DzLockout Create(const std::string& expedition, const std::string& event, uint32_t seconds, std::string uuid = {});
|
|
|
|
struct TimeStrings
|
|
{
|
|
std::string days;
|
|
std::string hours;
|
|
std::string mins;
|
|
std::string secs;
|
|
};
|
|
|
|
void AddLockoutTime(int seconds);
|
|
uint32_t GetDuration() const { return static_cast<uint32_t>(m_duration.count()); }
|
|
uint64_t GetExpireTime() const { return std::chrono::system_clock::to_time_t(m_expire_time); }
|
|
uint64_t GetStartTime() const { return std::chrono::system_clock::to_time_t(m_expire_time - m_duration); }
|
|
uint32_t GetSecondsRemaining() const;
|
|
TimeStrings GetTimeRemainingStrs() const;
|
|
const std::string& DzName() const { return m_name; }
|
|
const std::string& Event() const { return m_event; }
|
|
const std::string& UUID() const { return m_uuid; }
|
|
bool IsEvent(std::string_view event) const { return m_event == event; }
|
|
bool IsExpired() const { return GetSecondsRemaining() == 0; }
|
|
bool IsReplay() const { return m_is_replay; }
|
|
bool IsSame(const DzLockout& other) const;
|
|
bool IsSame(const std::string& expedition, const std::string& event) const;
|
|
bool IsUUID(const std::string& uuid) const { return uuid == m_uuid; }
|
|
void Reset() { m_expire_time = std::chrono::system_clock::now() + m_duration; }
|
|
void SetDuration(uint32_t seconds) { m_duration = std::chrono::seconds(seconds); }
|
|
void SetExpireTime(uint64_t expire_time) { m_expire_time = std::chrono::system_clock::from_time_t(expire_time); }
|
|
void SetUUID(const std::string& uuid) { m_uuid = uuid; }
|
|
|
|
template <typename T>
|
|
void serialize(T& archive);
|
|
|
|
private:
|
|
bool m_is_replay = false;
|
|
std::string m_uuid; // dz received in
|
|
std::string m_name;
|
|
std::string m_event;
|
|
std::chrono::seconds m_duration = {};
|
|
std::chrono::time_point<std::chrono::system_clock> m_expire_time;
|
|
};
|