Add scroll_container formspec element (redo) (#9101)
[oweals/minetest.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 protected:
46         u16 getFreeId() const
47         {
48                 // try to reuse id's as late as possible
49                 static thread_local u16 last_used_id = 0;
50                 u16 startid = last_used_id;
51                 while (!isFreeId(++last_used_id)) {
52                         if (last_used_id == startid)
53                                 return 0;
54                 }
55
56                 return last_used_id;
57         }
58
59         bool isFreeId(u16 id) const
60         {
61                 return id != 0 && m_active_objects.find(id) == m_active_objects.end();
62         }
63
64         std::unordered_map<u16, T *> m_active_objects;
65 };