forked from CoppeliaRobotics/simUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProxy.cpp
164 lines (128 loc) · 4.32 KB
/
Proxy.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
#include "Proxy.h"
#include "debug.h"
#include <vector>
#include <map>
#include <iostream>
#include "UIProxy.h"
#include "UIFunctions.h"
#include "v_repLib.h"
int Proxy::nextProxyHandle = 1000;
std::map<int, Proxy *> Proxy::proxies;
Proxy::Proxy(bool destroyAfterSimulationStop_, int sceneID_, int scriptID_, Window *ui_, std::map<int, Widget*>& widgets_)
: handle(nextProxyHandle++),
widgets(widgets_),
destroyAfterSimulationStop(destroyAfterSimulationStop_),
ui(ui_),
sceneID(sceneID_),
scriptID(scriptID_)
{
DEBUG_OUT << "[enter]" << std::endl;
Proxy::proxies[handle] = this;
DEBUG_OUT << "Proxy::proxies[" << handle << "] = " << this << " (tableSize=" << Proxy::proxies.size() << ")" << std::endl;
DEBUG_OUT << "[leave]" << std::endl;
}
Proxy::~Proxy()
{
ASSERT_THREAD(UI);
DEBUG_OUT << "[enter]" << std::endl;
// should be destroyed from the UI thread
if(ui)
{
DEBUG_OUT << "delete 'ui' member..." << std::endl;
delete ui;
}
Proxy::proxies.erase(handle);
DEBUG_OUT << "[leave]" << std::endl;
}
Proxy* Proxy::byHandle(int handle)
{
std::map<int, Proxy*>::const_iterator it = Proxy::proxies.find(handle);
Proxy *ret = it == Proxy::proxies.end() ? NULL : it->second;
DEBUG_OUT << "handle " << handle << " -> " << ret << " (tableSize=" << Proxy::proxies.size() << ")" << std::endl;
return ret;
}
Widget * Proxy::getWidgetById(int id)
{
std::map<int, Widget*>::const_iterator it = widgets.find(id);
Widget *ret = it == widgets.end() ? NULL : it->second;
return ret;
}
void Proxy::createQtWidget(UIProxy *uiproxy)
{
ASSERT_THREAD(UI);
ui->createQtWidget(this, uiproxy, UIProxy::vrepMainWindow);
}
// this function will be called at simulation end to destroy objects that
// were created during simulation, which otherwise would leak indefinitely:
void Proxy::destroyTransientObjects()
{
ASSERT_THREAD(!UI);
DEBUG_OUT << "[enter]" << std::endl;
std::vector<int> t;
for(std::map<int, Proxy*>::const_iterator it = Proxy::proxies.begin(); it != Proxy::proxies.end(); ++it)
{
if(it->second->destroyAfterSimulationStop)
t.push_back(it->first);
}
for(std::vector<int>::const_iterator it = t.begin(); it != t.end(); ++it)
{
Proxy *proxy = Proxy::byHandle(*it);
if(proxy)
{
DEBUG_OUT << "destroying proxy " << proxy->getHandle() << "... (call UIFunctions::destroy())" << std::endl;
UIFunctions::getInstance()->destroy(proxy); // will also delete proxy
}
}
DEBUG_OUT << "[leave]" << std::endl;
}
// destroy all objects (must be called from SIM thread):
void Proxy::destroyAllObjects()
{
ASSERT_THREAD(!UI);
DEBUG_OUT << "[enter]" << std::endl;
for(std::map<int, Proxy*>::const_iterator it = Proxy::proxies.begin(); it != Proxy::proxies.end(); ++it)
{
Proxy *proxy = it->second;
if(proxy)
{
DEBUG_OUT << "destroying proxy " << proxy->getHandle() << "... (call UIFunctions::destroy())" << std::endl;
UIFunctions::getInstance()->destroy(proxy); // will also delete proxy
}
}
DEBUG_OUT << "[leave]" << std::endl;
}
// analogous of previous function, but to be used when called from UI thread:
void Proxy::destroyAllObjectsFromUIThread()
{
ASSERT_THREAD(UI);
DEBUG_OUT << "[enter]" << std::endl;
for(std::map<int, Proxy*>::const_iterator it = Proxy::proxies.begin(); it != Proxy::proxies.end(); ++it)
{
Proxy *proxy = it->second;
if(proxy)
{
DEBUG_OUT << "destroying proxy " << proxy->getHandle() << "... (call UIProxy::onDestroy())" << std::endl;
UIProxy::getInstance()->onDestroy(proxy); // will also delete proxy
}
}
DEBUG_OUT << "[leave]" << std::endl;
}
void Proxy::sceneChange(int oldSceneID, int newSceneID, void *dummy)
{
ASSERT_THREAD(!UI);
if(ui)
{
UIFunctions::getInstance()->sceneChange(ui, oldSceneID, newSceneID);
}
}
void Proxy::sceneChange(int oldSceneID, int newSceneID)
{
ASSERT_THREAD(!UI);
void *arg = 0;
for(std::map<int, Proxy*>::const_iterator it = Proxy::proxies.begin(); it != Proxy::proxies.end(); ++it)
{
Proxy *proxy = it->second;
if(proxy)
proxy->sceneChange(oldSceneID, newSceneID, arg);
}
}