aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Keresztes Schmidt <carbenium@outlook.com>2020-07-22 16:09:32 +0200
committerGitHub <noreply@github.com>2020-07-22 16:09:32 +0200
commit6ab9922171cf6e2877c39f503bcf987dd9faa898 (patch)
treed355e4ea893a2c294de5a2a0fc4885b8f834a68f
parent6bdba191b52a584f4345a3c0985ad6e62853b5a3 (diff)
EventMap: Remove GetNextEventTime and GetTimer methods (PR #25092)
-rw-r--r--src/common/Utilities/EventMap.cpp12
-rw-r--r--src/common/Utilities/EventMap.h26
2 files changed, 0 insertions, 38 deletions
diff --git a/src/common/Utilities/EventMap.cpp b/src/common/Utilities/EventMap.cpp
index a29861e4574..142b5b85220 100644
--- a/src/common/Utilities/EventMap.cpp
+++ b/src/common/Utilities/EventMap.cpp
@@ -146,18 +146,6 @@ void EventMap::CancelEventGroup(uint32 group)
}
}
-uint32 EventMap::GetNextEventTime(uint32 eventId) const
-{
- if (Empty())
- return 0;
-
- for (std::pair<uint32 const, uint32> const& itr : _eventMap)
- if (eventId == (itr.second & 0x0000FFFF))
- return itr.first;
-
- return 0;
-}
-
uint32 EventMap::GetTimeUntilEvent(uint32 eventId) const
{
for (std::pair<uint32 const, uint32> const& itr : _eventMap)
diff --git a/src/common/Utilities/EventMap.h b/src/common/Utilities/EventMap.h
index e2ccac945df..a9f864267f9 100644
--- a/src/common/Utilities/EventMap.h
+++ b/src/common/Utilities/EventMap.h
@@ -57,15 +57,6 @@ public:
}
/**
- * @name GetTimer
- * @return Current timer value in ms.
- */
- uint32 GetTimer() const
- {
- return _time;
- }
-
- /**
* @name GetPhaseMask
* @return Active phases as mask.
*/
@@ -206,23 +197,6 @@ public:
void CancelEventGroup(uint32 group);
/**
- * @name GetNextEventTime
- * @brief Returns closest occurrence of specified event.
- * @param eventId Wanted event id.
- * @return Time of found event.
- */
- uint32 GetNextEventTime(uint32 eventId) const;
-
- /**
- * @name GetNextEventTime
- * @return Time of next event.
- */
- uint32 GetNextEventTime() const
- {
- return Empty() ? 0 : _eventMap.begin()->first;
- }
-
- /**
* @name IsInPhase
* @brief Returns whether event map is in specified phase or not.
* @param phase Wanted phase.