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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
/* DOC TODO:
 o Internal Module Doc
 - MaterialDescriptor
*/
use crate::identifiers::GroupIDChanger;

use super::{data::MaterialData, Material};

/// A descriptor for a future `Material`.
///
/// A [`MaterialDescriptor`] is used to construct a [`Material`].
///
/// A `Descriptor` is a smiliar idea as a `Builder`,
///  but there is an important difference between which has to be adressed with a differen name.  
///
/// A `Builder` would always construct a new instance of a struct, in this project meaning it cannot be used twice in the same [`KinematicTree`](crate::KinematicTree).
/// Since using a `Builder` twice would result in two exactly the same objects.
///
/// A `Descriptor` on the other hand, first checks if there already exists an instance which matches it description, in this case a [`Material`].
/// If not the case a new instance ([`Material`]) is constructed and added to the index.
/// If an instance already exists, which exactly matches the description, then the 'new' [`Material`] will refer to the pre-existing data.
///
/// This is desirable in the case of [Materials](Material), since they are often reused.
/// This could also allow for changing a [`Material`] and the other used of it changing withit.  
///
/// # OLD STUFF TODO: UPDATE
/// When a `MaterialDescriptor` is constructed for a specific `KinematicDataTee`, the following steps happen:
///  1. Check if the description of the `MaterialDescriptor` matches a pre-existing `Material` already in the tree.
///     - If the a `Material` matches the description, the reference to that material is returned.
///     - If no `Material` matches the desctiption, a new `Material` is constructed and inserted to the `material_index` of the `KinematicDataTree` and the reference is returned.
///     - If only the `name` of the `Material` matches, an error is raised.
#[derive(Debug, PartialEq, Clone)]
pub struct MaterialDescriptor {
	name: Option<String>,
	data: MaterialData,
}

impl MaterialDescriptor {
	/// Creates a new [`MaterialDescriptor`] with a solid color (rgba)
	///
	/// The `red`, `green`, `blue` and `alpha` fields expect a value between 0 and 1.
	///
	/// # Example
	///
	/// ```
	/// # use robot_description_builder::material::MaterialDescriptor;
	/// MaterialDescriptor::new_color(1., 0.4, 0.6, 0.5)
	/// # ;
	/// ```
	pub fn new_color(red: f32, green: f32, blue: f32, alpha: f32) -> Self {
		MaterialDescriptor {
			name: None,
			data: MaterialData::Color(red, green, blue, alpha),
		}
	}

	/// Creates a new [`MaterialDescriptor`] with a solid color (rgb)
	///
	/// The `red`, `green`, `blue` fields expect a value between 0 and 1.
	///
	/// # Example
	///
	/// ```
	/// # use robot_description_builder::material::MaterialDescriptor;
	/// MaterialDescriptor::new_rgb(1., 0.4, 0.6)
	/// # ;
	/// ```
	pub fn new_rgb(red: f32, green: f32, blue: f32) -> Self {
		MaterialDescriptor {
			name: None,
			data: MaterialData::Color(red, green, blue, 1.),
		}
	}

	/// Creates a new [`MaterialDescriptor`] with a texture.
	///
	/// `texture_path` should be a valid package path (e.g. `"package://NAME_OF_PACKAGE/path/{texture}"`). You are on your own here.
	///
	/// # Example
	///
	/// ```
	/// # use robot_description_builder::material::MaterialDescriptor;
	/// MaterialDescriptor::new_texture("package://robot_description/textures/example_texture.png")
	/// # ;
	/// ```
	pub fn new_texture(texture_path: impl Into<String>) -> Self {
		MaterialDescriptor {
			name: None,
			data: MaterialData::Texture(texture_path.into()),
		}
	}

	/// Creates a new [`MaterialDescriptor`] from a pre-existing [`MaterialData`]
	pub(crate) fn new_data(data: MaterialData) -> Self {
		MaterialDescriptor { name: None, data }
	}

	/// Adds a `name` to the [`MaterialDescriptor`], so it can later be used as a referenced [`Material`]
	///
	/// # Important
	/// When a named [`Material`] is used, it needs to be the same as all materials with the same name.
	/// Otherwise, problems will arise later down the line.
	///
	/// # Example
	///
	/// ```
	/// # use robot_description_builder::material::MaterialDescriptor;
	/// MaterialDescriptor::new_rgb(0.5, 1., 0.5).named("soft-green")
	/// # ;
	/// ```
	pub fn named(mut self, name: impl Into<String>) -> Self {
		self.name = Some(name.into());
		self
	}

	/// Builds a [`Material`] from the [`MaterialDescriptor`].
	pub(crate) fn build(self) -> Material {
		match self.name {
			Some(name) => Material::new_named_uninited(name, self.data),
			None => Material::new_unnamed(self.data),
		}
	}
}

/// Non-builder methods
impl MaterialDescriptor {
	/// Gets the optional of the [`MaterialDescriptor`] as a optional reference.
	pub fn name(&self) -> Option<&String> {
		self.name.as_ref()
	}

	/// Gets a reference to the [`MaterialData`] of the [`MaterialDescriptor`]
	pub fn data(&self) -> &MaterialData {
		&self.data
	}
}

impl GroupIDChanger for MaterialDescriptor {
	unsafe fn change_group_id_unchecked(&mut self, new_group_id: &str) {
		if let Some(name) = self.name.as_mut() {
			name.change_group_id_unchecked(new_group_id);
		}
	}

	fn apply_group_id(&mut self) {
		if let Some(name) = self.name.as_mut() {
			name.apply_group_id();
		}
	}
}

#[cfg(test)]
mod tests {
	use super::MaterialDescriptor;
	use test_log::test;

	mod group_id_changer {
		use super::{test, MaterialDescriptor};
		use crate::identifiers::{GroupIDChanger, GroupIDError};

		#[inline]
		fn test_change_group_id_unchecked(
			material_builder: MaterialDescriptor,
			new_group_id: &str,
			final_name: Option<&str>,
		) {
			let mut material_builder = material_builder;
			unsafe {
				material_builder.change_group_id_unchecked(new_group_id);
			}
			assert_eq!(
				material_builder.name,
				final_name.and_then(|final_name| Some(final_name.to_owned()))
			)
		}

		#[test]
		fn change_group_id_unchecked_no_name() {
			// Valid
			test_change_group_id_unchecked(
				MaterialDescriptor::new_color(1., 0.5, 0.25, 0.),
				"R04",
				None,
			);
			test_change_group_id_unchecked(MaterialDescriptor::new_rgb(1., 1., 0.), "C064w", None);
			test_change_group_id_unchecked(
				MaterialDescriptor::new_texture("package://some/texture/path/text.texture"),
				"Yellow",
				None,
			);

			// Invalid
			test_change_group_id_unchecked(
				MaterialDescriptor::new_color(1., 0.5, 0.25, 0.),
				"[[R04",
				None,
			);
			test_change_group_id_unchecked(
				MaterialDescriptor::new_rgb(1., 1., 0.),
				"C064w]]",
				None,
			);
			test_change_group_id_unchecked(
				MaterialDescriptor::new_texture("package://some/texture/path/text.texture"),
				"",
				None,
			);
		}

		#[test]
		fn change_group_id_unchecked_with_name() {
			// name with field and Valid
			test_change_group_id_unchecked(
				MaterialDescriptor::new_color(1., 0.5, 0.25, 0.).named("Leg_[[L01]]_mat"),
				"R04",
				Some("Leg_[[R04]]_mat"),
			);
			test_change_group_id_unchecked(
				MaterialDescriptor::new_rgb(1., 1., 0.).named("rgb_[[dsd]]_dsdadavj,hnmn b v"),
				"C064w",
				Some("rgb_[[C064w]]_dsdadavj,hnmn b v"),
			);
			test_change_group_id_unchecked(
				MaterialDescriptor::new_texture("package://some/texture/path/text.texture")
					.named("SomeCoolTexture[[GroupID]]"),
				"Yellow",
				Some("SomeCoolTexture[[Yellow]]"),
			);

			// Named with field and Invalid
			test_change_group_id_unchecked(
				MaterialDescriptor::new_color(1., 0.5, 0.25, 0.).named("Leg_[[L01]]_mat"),
				"[[R04",
				Some("Leg_[[[[R04]]_mat"),
			);
			test_change_group_id_unchecked(
				MaterialDescriptor::new_rgb(1., 1., 0.).named("[[CADcs]]SomeColor"),
				"C064w]]",
				Some("[[C064w]]]]SomeColor"),
			);
			test_change_group_id_unchecked(
				MaterialDescriptor::new_texture("package://some/texture/path/text.texture")
					.named("SomeCoolTexture[[GroupID]]"),
				"",
				Some("SomeCoolTexture[[]]"),
			);
			// name without field and Valid
			test_change_group_id_unchecked(
				MaterialDescriptor::new_color(1., 0.5, 0.25, 0.).named("Leg_L01_mat"),
				"R04",
				Some("Leg_L01_mat"),
			);
			test_change_group_id_unchecked(
				MaterialDescriptor::new_rgb(1., 1., 0.).named("rgb_[\\[dsd]\\]_dsdadavj,hnmn b v"),
				"C064w",
				Some("rgb_[\\[dsd]\\]_dsdadavj,hnmn b v"),
			);
			test_change_group_id_unchecked(
				MaterialDescriptor::new_texture("package://some/texture/path/text.texture")
					.named("SomeCoolTexture[\\[GroupID]]"),
				"Yellow",
				Some("SomeCoolTexture[\\[GroupID]]"),
			);

			// Named without field and Invalid
			test_change_group_id_unchecked(
				MaterialDescriptor::new_color(1., 0.5, 0.25, 0.).named("Leg_L01_mat"),
				"[[R04",
				Some("Leg_L01_mat"),
			);
			test_change_group_id_unchecked(
				MaterialDescriptor::new_rgb(1., 1., 0.).named("[[CADcs]\\]SomeColor"),
				"C064w]]",
				Some("[[CADcs]\\]SomeColor"),
			);
			test_change_group_id_unchecked(
				MaterialDescriptor::new_texture("package://some/texture/path/text.texture")
					.named("SomeCoolTexture_GroupID_"),
				"",
				Some("SomeCoolTexture_GroupID_"),
			);
		}

		#[inline]
		fn test_change_group_id(
			material_builder: MaterialDescriptor,
			new_group_id: &str,
			change_result: Result<(), GroupIDError>,
			final_name: Option<&str>,
		) {
			let mut material_builder = material_builder;
			assert_eq!(
				material_builder.change_group_id(new_group_id),
				change_result
			);
			assert_eq!(
				material_builder.name,
				final_name.and_then(|final_name| Some(final_name.to_owned()))
			)
		}

		#[test]
		fn change_group_id_no_name() {
			// Valid
			test_change_group_id(
				MaterialDescriptor::new_color(1., 0.5, 0.25, 0.),
				"R04",
				Ok(()),
				None,
			);
			test_change_group_id(
				MaterialDescriptor::new_rgb(1., 1., 0.),
				"C064w",
				Ok(()),
				None,
			);
			test_change_group_id(
				MaterialDescriptor::new_texture("package://some/texture/path/text.texture"),
				"Yellow",
				Ok(()),
				None,
			);

			// Invalid
			test_change_group_id(
				MaterialDescriptor::new_color(1., 0.5, 0.25, 0.),
				"[[R04",
				Err(GroupIDError::new_open("[[R04")),
				None,
			);
			test_change_group_id(
				MaterialDescriptor::new_rgb(1., 1., 0.),
				"C064w]]",
				Err(GroupIDError::new_close("C064w]]")),
				None,
			);
			test_change_group_id(
				MaterialDescriptor::new_texture("package://some/texture/path/text.texture"),
				"",
				Err(GroupIDError::new_empty()),
				None,
			);
		}

		#[test]
		fn change_group_id_with_name() {
			// name with field and Valid
			test_change_group_id(
				MaterialDescriptor::new_color(1., 0.5, 0.25, 0.).named("Leg_[[L01]]_mat"),
				"R04",
				Ok(()),
				Some("Leg_[[R04]]_mat"),
			);
			test_change_group_id(
				MaterialDescriptor::new_rgb(1., 1., 0.).named("rgb_[[dsd]]_dsdadavj,hnmn b v"),
				"C064w",
				Ok(()),
				Some("rgb_[[C064w]]_dsdadavj,hnmn b v"),
			);
			test_change_group_id(
				MaterialDescriptor::new_texture("package://some/texture/path/text.texture")
					.named("SomeCoolTexture[[GroupID]]"),
				"Yellow",
				Ok(()),
				Some("SomeCoolTexture[[Yellow]]"),
			);

			// Named with field and Invalid
			test_change_group_id(
				MaterialDescriptor::new_color(1., 0.5, 0.25, 0.).named("Leg_[[L01]]_mat"),
				"[[R04",
				Err(GroupIDError::new_open("[[R04")),
				Some("Leg_[[L01]]_mat"),
			);
			test_change_group_id(
				MaterialDescriptor::new_rgb(1., 1., 0.).named("[[CADcs]]SomeColor"),
				"C064w]]",
				Err(GroupIDError::new_close("C064w]]")),
				Some("[[CADcs]]SomeColor"),
			);
			test_change_group_id(
				MaterialDescriptor::new_texture("package://some/texture/path/text.texture")
					.named("SomeCoolTexture[[GroupID]]"),
				"",
				Err(GroupIDError::new_empty()),
				Some("SomeCoolTexture[[GroupID]]"),
			);
			// name without field and Valid
			test_change_group_id(
				MaterialDescriptor::new_color(1., 0.5, 0.25, 0.).named("Leg_L01_mat"),
				"R04",
				Ok(()),
				Some("Leg_L01_mat"),
			);
			test_change_group_id(
				MaterialDescriptor::new_rgb(1., 1., 0.).named("rgb_[\\[dsd]\\]_dsdadavj,hnmn b v"),
				"C064w",
				Ok(()),
				Some("rgb_[\\[dsd]\\]_dsdadavj,hnmn b v"),
			);
			test_change_group_id(
				MaterialDescriptor::new_texture("package://some/texture/path/text.texture")
					.named("SomeCoolTexture[\\[GroupID]]"),
				"Yellow",
				Ok(()),
				Some("SomeCoolTexture[\\[GroupID]]"),
			);

			// Named without field and Invalid
			test_change_group_id(
				MaterialDescriptor::new_color(1., 0.5, 0.25, 0.).named("Leg_L01_mat"),
				"[[R04",
				Err(GroupIDError::new_open("[[R04")),
				Some("Leg_L01_mat"),
			);
			test_change_group_id(
				MaterialDescriptor::new_rgb(1., 1., 0.).named("[[CADcs]\\]SomeColor"),
				"C064w]]",
				Err(GroupIDError::new_close("C064w]]")),
				Some("[[CADcs]\\]SomeColor"),
			);
			test_change_group_id(
				MaterialDescriptor::new_texture("package://some/texture/path/text.texture")
					.named("SomeCoolTexture_GroupID_"),
				"",
				Err(GroupIDError::new_empty()),
				Some("SomeCoolTexture_GroupID_"),
			);
		}

		#[inline]
		fn test_apply_group_id(material_builder: MaterialDescriptor, final_name: Option<&str>) {
			let mut material_builder = material_builder;
			material_builder.apply_group_id();
			assert_eq!(
				material_builder.name,
				final_name.and_then(|final_name| Some(final_name.to_owned()))
			)
		}

		#[test]
		fn apply_group_id_no_name() {
			test_apply_group_id(MaterialDescriptor::new_color(1., 0.5, 0.25, 0.), None);
			test_apply_group_id(MaterialDescriptor::new_rgb(1., 1., 0.), None);
			test_apply_group_id(
				MaterialDescriptor::new_texture("package://some/texture/path/text.texture"),
				None,
			);
		}

		#[test]
		fn apply_group_id_with_name() {
			// name with field and Valid
			test_apply_group_id(
				MaterialDescriptor::new_color(1., 0.5, 0.25, 0.).named("Leg_[[L01]]_mat"),
				Some("Leg_L01_mat"),
			);
			test_apply_group_id(
				MaterialDescriptor::new_rgb(1., 1., 0.).named("rgb_[[dsd]]_dsdadavj,hnmn b v"),
				Some("rgb_dsd_dsdadavj,hnmn b v"),
			);
			test_apply_group_id(
				MaterialDescriptor::new_texture("package://some/texture/path/text.texture")
					.named("SomeCoolTexture[[GroupID]]"),
				Some("SomeCoolTextureGroupID"),
			);

			// name with field and Valid and escpaed
			test_apply_group_id(
				MaterialDescriptor::new_color(1., 0.5, 0.25, 0.).named("Leg_[\\[[[L01]]_mat]\\]"),
				Some("Leg_[[L01_mat]]"),
			);
			test_apply_group_id(
				MaterialDescriptor::new_rgb(1., 1., 0.)
					.named("rgb_[[dsd]]_d[\\[sdadavj]\\],hnmn b v"),
				Some("rgb_dsd_d[[sdadavj]],hnmn b v"),
			);
			test_apply_group_id(
				MaterialDescriptor::new_texture("package://some/texture/path/text.texture")
					.named("SomeCoolTexture[[Gro[\\[upID]]"),
				Some("SomeCoolTextureGro[[upID"),
			);

			// This one is has too many opening and closign brackets
			test_apply_group_id(
				MaterialDescriptor::new_rgb(1., 1., 0.)
					.named("rgb_[[dsd]]_d[[sdadavj]\\],hnmn b v"),
				Some("rgb_[[dsd]]_d[[sdadavj]\\],hnmn b v"),
			);

			// name without field and Valid
			test_apply_group_id(
				MaterialDescriptor::new_color(1., 0.5, 0.25, 0.).named("Leg_L01_mat"),
				Some("Leg_L01_mat"),
			);
			test_apply_group_id(
				MaterialDescriptor::new_rgb(1., 1., 0.).named("rgb_[\\[dsd]\\]_dsdadavj,hnmn b v"),
				Some("rgb_[[dsd]]_dsdadavj,hnmn b v"),
			);
			test_apply_group_id(
				MaterialDescriptor::new_texture("package://some/texture/path/text.texture")
					.named("SomeCoolTexture[\\[GroupID"),
				Some("SomeCoolTexture[[GroupID"),
			);

			// This one is has not one of the required amounts of correct brackets
			test_apply_group_id(
				MaterialDescriptor::new_texture("package://some/texture/path/text.texture")
					.named("SomeCoolTexture[\\[GroupID]]"),
				Some("SomeCoolTexture[\\[GroupID]]"),
			);
		}
	}
}