]> git.lizzy.rs Git - dragonfireclient.git/blob - src/activeobjectmgr.h
Improved Tracers
[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> class ActiveObjectMgr
29 {
30         friend class ::TestClientActiveObjectMgr;
31         friend class ::TestServerActiveObjectMgr;
32
33 public:
34         virtual void step(float dtime, const std::function<void(T *)> &f) = 0;
35         virtual bool registerObject(T *obj) = 0;
36         virtual void removeObject(u16 id) = 0;
37
38         T *getActiveObject(u16 id)
39         {
40                 typename std::unordered_map<u16, T *>::const_iterator n =
41                                 m_active_objects.find(id);
42                 return (n != m_active_objects.end() ? n->second : nullptr);
43         }
44         
45         std::unordered_map<u16, T *> getAllActiveObjects() const
46         {
47                 return m_active_objects;
48         }
49         
50 protected:
51         u16 getFreeId() const
52         {
53                 // try to reuse id's as late as possible
54                 static thread_local u16 last_used_id = 0;
55                 u16 startid = last_used_id;
56                 while (!isFreeId(++last_used_id)) {
57                         if (last_used_id == startid)
58                                 return 0;
59                 }
60
61                 return last_used_id;
62         }
63
64         bool isFreeId(u16 id) const
65         {
66                 return id != 0 && m_active_objects.find(id) == m_active_objects.end();
67         }
68
69         std::unordered_map<u16, T *> m_active_objects;
70 };