| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  self_list.h                                                          */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2022-01-13 09:45:09 +01:00
										 |  |  | /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #ifndef SELF_LIST_H
 | 
					
						
							|  |  |  | #define SELF_LIST_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-08 10:17:11 +02:00
										 |  |  | #include "core/error_macros.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | #include "core/typedefs.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | template <class T> | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | class SelfList { | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 	class List { | 
					
						
							|  |  |  | 		SelfList<T> *_first; | 
					
						
							| 
									
										
										
										
											2018-04-11 19:59:41 +08:00
										 |  |  | 		SelfList<T> *_last; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	public: | 
					
						
							|  |  |  | 		void add(SelfList<T> *p_elem) { | 
					
						
							|  |  |  | 			ERR_FAIL_COND(p_elem->_root); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			p_elem->_root = this; | 
					
						
							|  |  |  | 			p_elem->_next = _first; | 
					
						
							| 
									
										
										
										
											2021-05-04 16:00:45 +02:00
										 |  |  | 			p_elem->_prev = nullptr; | 
					
						
							| 
									
										
										
										
											2018-04-11 19:59:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (_first) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				_first->_prev = p_elem; | 
					
						
							| 
									
										
										
										
											2018-04-11 19:59:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				_last = p_elem; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			_first = p_elem; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-04-11 19:59:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-15 18:40:47 -03:00
										 |  |  | 		void add_last(SelfList<T> *p_elem) { | 
					
						
							|  |  |  | 			ERR_FAIL_COND(p_elem->_root); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-11 19:59:41 +08:00
										 |  |  | 			p_elem->_root = this; | 
					
						
							| 
									
										
										
										
											2021-05-04 16:00:45 +02:00
										 |  |  | 			p_elem->_next = nullptr; | 
					
						
							| 
									
										
										
										
											2018-04-11 19:59:41 +08:00
										 |  |  | 			p_elem->_prev = _last; | 
					
						
							| 
									
										
										
										
											2017-07-15 18:40:47 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-11 19:59:41 +08:00
										 |  |  | 			if (_last) { | 
					
						
							|  |  |  | 				_last->_next = p_elem; | 
					
						
							| 
									
										
										
										
											2017-07-15 18:40:47 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-11 19:59:41 +08:00
										 |  |  | 			} else { | 
					
						
							|  |  |  | 				_first = p_elem; | 
					
						
							| 
									
										
										
										
											2017-07-15 18:40:47 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-11 19:59:41 +08:00
										 |  |  | 			_last = p_elem; | 
					
						
							| 
									
										
										
										
											2017-07-15 18:40:47 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		void remove(SelfList<T> *p_elem) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			ERR_FAIL_COND(p_elem->_root != this); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			if (p_elem->_next) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				p_elem->_next->_prev = p_elem->_prev; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-11 19:59:41 +08:00
										 |  |  | 			if (p_elem->_prev) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				p_elem->_prev->_next = p_elem->_next; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (_first == p_elem) { | 
					
						
							|  |  |  | 				_first = p_elem->_next; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-11 19:59:41 +08:00
										 |  |  | 			if (_last == p_elem) { | 
					
						
							|  |  |  | 				_last = p_elem->_prev; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-04 16:00:45 +02:00
										 |  |  | 			p_elem->_next = nullptr; | 
					
						
							|  |  |  | 			p_elem->_prev = nullptr; | 
					
						
							|  |  |  | 			p_elem->_root = nullptr; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		_FORCE_INLINE_ SelfList<T> *first() { return _first; } | 
					
						
							|  |  |  | 		_FORCE_INLINE_ const SelfList<T> *first() const { return _first; } | 
					
						
							| 
									
										
										
										
											2018-04-11 19:59:41 +08:00
										 |  |  | 		_FORCE_INLINE_ List() { | 
					
						
							| 
									
										
										
										
											2021-05-04 16:00:45 +02:00
										 |  |  | 			_first = nullptr; | 
					
						
							|  |  |  | 			_last = nullptr; | 
					
						
							| 
									
										
										
										
											2018-04-11 19:59:41 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-05-04 16:00:45 +02:00
										 |  |  | 		_FORCE_INLINE_ ~List() { ERR_FAIL_COND(_first != nullptr); } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | private: | 
					
						
							|  |  |  | 	List *_root; | 
					
						
							|  |  |  | 	T *_self; | 
					
						
							|  |  |  | 	SelfList<T> *_next; | 
					
						
							|  |  |  | 	SelfList<T> *_prev; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	_FORCE_INLINE_ bool in_list() const { return _root; } | 
					
						
							| 
									
										
										
										
											2020-05-05 17:49:17 +02:00
										 |  |  | 	_FORCE_INLINE_ void remove_from_list() { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		if (_root) { | 
					
						
							| 
									
										
										
										
											2021-05-04 14:28:27 +02:00
										 |  |  | 			_root->remove(this); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-05-05 17:49:17 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	_FORCE_INLINE_ SelfList<T> *next() { return _next; } | 
					
						
							|  |  |  | 	_FORCE_INLINE_ SelfList<T> *prev() { return _prev; } | 
					
						
							|  |  |  | 	_FORCE_INLINE_ const SelfList<T> *next() const { return _next; } | 
					
						
							|  |  |  | 	_FORCE_INLINE_ const SelfList<T> *prev() const { return _prev; } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_FORCE_INLINE_ T *self() const { return _self; } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	_FORCE_INLINE_ SelfList(T *p_self) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		_self = p_self; | 
					
						
							| 
									
										
										
										
											2021-05-04 16:00:45 +02:00
										 |  |  | 		_next = nullptr; | 
					
						
							|  |  |  | 		_prev = nullptr; | 
					
						
							|  |  |  | 		_root = nullptr; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_FORCE_INLINE_ ~SelfList() { | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		if (_root) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			_root->remove(this); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // SELF_LIST_H
 |