]> git.lizzy.rs Git - dragonfireclient.git/blob - src/activeobjectmgr.h
Merge pull request #59 from PrairieAstronomer/readme_irrlicht_change
[dragonfireclient.git] / src / activeobjectmgr.h
1 /*
2 Minetest
3 Copyright (C) 2010-2018 nerzhul, Loic BLOT <loic.blot@unix-experience.fr>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #pragma once
21
22 #include <unordered_map>
23 #include "irrlichttypes.h"
24
25 class TestClientActiveObjectMgr;
26 class TestServerActiveObjectMgr;
27
28 template <typename T>
29 class ActiveObjectMgr
30 {
31         friend class ::TestClientActiveObjectMgr;
32         friend class ::TestServerActiveObjectMgr;
33
34 public:
35         virtual void step(float dtime, const std::function<void(T *)> &f) = 0;
36         virtual bool registerObject(T *obj) = 0;
37         virtual void removeObject(u16 id) = 0;
38
39         T *getActiveObject(u16 id)
40         {
41                 typename std::unordered_map<u16, T *>::const_iterator n =
42                                 m_active_objects.find(id);
43                 return (n != m_active_objects.end() ? n->second : nullptr);
44         }
45
46         std::unordered_map<u16, T *> getAllActiveObjects() const
47         {
48                 return m_active_objects;
49         }
50
51 protected:
52         u16 getFreeId() const
53         {
54                 // try to reuse id's as late as possible
55                 static thread_local u16 last_used_id = 0;
56                 u16 startid = last_used_id;
57                 while (!isFreeId(++last_used_id)) {
58                         if (last_used_id == startid)
59                                 return 0;
60                 }
61
62                 return last_used_id;
63         }
64
65         bool isFreeId(u16 id) const
66         {
67                 return id != 0 && m_active_objects.find(id) == m_active_objects.end();
68         }
69
70         std::unordered_map<u16, T *> m_active_objects;
71 };