@@ -35,6 +35,7 @@ ComponentItemInternalData(MeshMaterialMng* mmg)
35
35
, m_material_mng(mmg)
36
36
, m_component_item_internal_storage(MemoryUtils::getAllocatorForMostlyReadOnlyData())
37
37
, m_shared_infos(MemoryUtils::getAllocatorForMostlyReadOnlyData())
38
+ , m_mat_items_internal_range(MemoryUtils::getAllocatorForMostlyReadOnlyData())
38
39
{
39
40
// Il y a une instance pour les MatCell, les EnvCell et les AllEnvCell
40
41
// Il ne faut ensuite plus modifier ce tableau car on conserve des pointeurs
@@ -49,9 +50,8 @@ void ComponentItemInternalData::
49
50
endCreate ()
50
51
{
51
52
const Int32 nb_env = m_material_mng->environments ().size ();
52
- m_mat_items_internal.clear ();
53
53
m_mat_items_internal.resize (nb_env);
54
-
54
+ m_mat_items_internal_range. resize (nb_env);
55
55
_initSharedInfos ();
56
56
}
57
57
@@ -63,20 +63,21 @@ endCreate()
63
63
void ComponentItemInternalData::
64
64
_resetItemsInternal ()
65
65
{
66
+ ComponentItemInternalLocalId internal_local_id;
67
+ ArrayView<ComponentItemInternal> storage = m_component_item_internal_storage;
68
+
66
69
ComponentItemSharedInfo* all_env_shared_info = allEnvSharedInfo ();
67
- for (ComponentItemInternal& x : m_all_env_items_internal )
68
- x. _reset (all_env_shared_info);
70
+ for (ComponentItemInternalLocalId id : m_all_env_items_internal_range )
71
+ storage[id. localId ()]. _reset (id, all_env_shared_info);
69
72
70
73
ComponentItemSharedInfo* env_shared_info = envSharedInfo ();
71
- for (ComponentItemInternal& x : m_env_items_internal)
72
- x._reset (env_shared_info);
73
-
74
- for (const MeshEnvironment* env : m_material_mng->trueEnvironments ()) {
75
- ArrayView<ComponentItemInternal> mat_items_internal = matItemsInternal (env->id ());
76
- ComponentItemSharedInfo* mat_shared_info = matSharedInfo ();
77
- for (ComponentItemInternal& x : mat_items_internal) {
78
- x._reset (mat_shared_info);
79
- }
74
+ for (ComponentItemInternalLocalId id : m_env_items_internal_range)
75
+ storage[id.localId ()]._reset (id, env_shared_info);
76
+
77
+ ComponentItemSharedInfo* mat_shared_info = matSharedInfo ();
78
+ for (ComponentItemInternalRange mat_range : m_mat_items_internal_range) {
79
+ for (ComponentItemInternalLocalId id : mat_range)
80
+ storage[id.localId ()]._reset (id, mat_shared_info);
80
81
}
81
82
}
82
83
@@ -93,6 +94,7 @@ resizeComponentItemInternals(Int32 max_local_id, Int32 total_env_cell)
93
94
// dès qu'un des nombre d'élément change.
94
95
Int32 total_nb_internal = 0 ;
95
96
total_nb_internal += max_local_id; // Pour les AllEnvCell
97
+
96
98
total_nb_internal += total_env_cell; // Pour les EnvCell
97
99
for (const MeshEnvironment* env : m_material_mng->trueEnvironments ())
98
100
total_nb_internal += env->totalNbCellMat ();
@@ -103,16 +105,24 @@ resizeComponentItemInternals(Int32 max_local_id, Int32 total_env_cell)
103
105
// Maintenant récupère les vues sur chaque partie de 'm_component_item_internal_storage'
104
106
{
105
107
m_all_env_items_internal = m_component_item_internal_storage.subView (0 , max_local_id);
108
+ m_all_env_items_internal_range.setRange (0 , max_local_id);
106
109
m_env_items_internal = m_component_item_internal_storage.subView (max_local_id, total_env_cell);
110
+ m_env_items_internal_range.setRange (max_local_id, total_env_cell);
107
111
Int32 index_in_container = max_local_id + total_env_cell;
108
112
for (const MeshEnvironment* env : m_material_mng->trueEnvironments ()) {
109
113
Int32 nb_cell_mat = env->totalNbCellMat ();
110
- m_mat_items_internal[env->id ()] = m_component_item_internal_storage.subView (index_in_container, nb_cell_mat);
114
+ Int32 env_id = env->id ();
115
+ m_mat_items_internal[env_id] = m_component_item_internal_storage.subView (index_in_container, nb_cell_mat);
116
+ m_mat_items_internal_range[env_id].setRange (index_in_container, nb_cell_mat);
111
117
index_in_container += nb_cell_mat;
112
118
}
113
119
}
114
120
115
121
_resetItemsInternal ();
122
+
123
+ // Met à jour les vues sur m_component_item_internal_storage.
124
+ for (ComponentItemSharedInfo& x : m_shared_infos)
125
+ x.m_component_item_internal_view = m_component_item_internal_storage;
116
126
}
117
127
118
128
/* ---------------------------------------------------------------------------*/
@@ -128,20 +138,22 @@ _initSharedInfos()
128
138
// ne faut pas que conteneurs associés de \a m_materials_mng soient modifiées.
129
139
// Normalement ce n'est pas le cas, car la liste des constituants est fixe.
130
140
ComponentItemSharedInfo* info_mat = sharedInfo (LEVEL_MATERIAL);
141
+ ComponentItemSharedInfo* info_env = sharedInfo (LEVEL_ENVIRONMENT);
142
+ ComponentItemSharedInfo* info_all_env = sharedInfo (LEVEL_ALLENVIRONMENT);
143
+
131
144
info_mat->m_level = LEVEL_MATERIAL;
132
145
info_mat->m_item_shared_info = item_shared_info;
133
146
info_mat->m_components = m_material_mng->materialsAsComponents ();
147
+ info_mat->m_parent_component_item_shared_info = info_env;
134
148
135
- ComponentItemSharedInfo* info_env = sharedInfo (LEVEL_ENVIRONMENT);
136
149
info_env->m_level = LEVEL_ENVIRONMENT;
137
150
info_env->m_item_shared_info = item_shared_info;
138
151
info_env->m_components = m_material_mng->environmentsAsComponents ();
152
+ info_env->m_parent_component_item_shared_info = info_all_env;
139
153
140
- ComponentItemSharedInfo* info_all_env = sharedInfo (LEVEL_ALLENVIRONMENT);
141
154
info_all_env->m_level = LEVEL_ALLENVIRONMENT;
142
155
info_all_env->m_item_shared_info = item_shared_info;
143
156
info_all_env->m_components = ConstArrayView<IMeshComponent*>();
144
-
145
157
info () << " EndCreate ComponentItemInternalData nb_mat=" << info_mat->m_components .size ()
146
158
<< " nb_env=" << info_env->m_components .size ();
147
159
}
0 commit comments