# Rewrite 5
- Move Libraries Source into pd directory and give them all their own CMakeLists.txt - Partial rewrite core (color, autogenerated vec), lithium (now uses UNIQUE PTR for Commands), UI7 - Use MenuV2 as new standart in UI7 - Implementz ViewPort Pre alpha to UI7 - Add Line Drawing to DrawList (not Working) - Implement a Complete new drievrs API (static Drivers) - NO SUPPORT FOR SHARED LIBRARY BUILDS IN VERSION 5 YET - Add Tools to Autogenerate Headers and Stuff
This commit is contained in:
		
							
								
								
									
										244
									
								
								include/pd/core/strings.hpp
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
									
										244
									
								
								include/pd/core/strings.hpp
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							| @@ -1,123 +1,123 @@ | ||||
| #pragma once | ||||
|  | ||||
| /* | ||||
| MIT License | ||||
| Copyright (c) 2024 - 2025 René Amthor (tobid7) | ||||
|  | ||||
| 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. | ||||
|  */ | ||||
|  | ||||
| #include <pd/core/common.hpp> | ||||
|  | ||||
| namespace PD { | ||||
| /** | ||||
|  * Set of String Utillity Functions | ||||
|  */ | ||||
| namespace Strings { | ||||
| /** | ||||
|  * Check if a String ends with a specific extension | ||||
|  * @param str Input string | ||||
|  * @param exts List of Extensions to check for | ||||
|  * @return true if one of the extensions is found in the String | ||||
|  */ | ||||
| PD_CORE_API bool StringEndsWith(const std::string& str, | ||||
|                                 const std::vector<std::string>& exts); | ||||
| /** | ||||
|  * Function to Create a wstring of a string | ||||
|  * @param s Input String to Convert | ||||
|  * @return Result wstring | ||||
|  * @note Returns Empty if it has an error | ||||
|  */ | ||||
| PD_CORE_API std::wstring MakeWstring(const std::string& s); | ||||
| /** | ||||
|  * Generate a Formatted String by an Nanoseconds Input | ||||
|  * @param nanos Nanoseconds Input | ||||
|  * @return Result String | ||||
|  */ | ||||
| PD_CORE_API const std::string FormatNanos(unsigned long long nanos); | ||||
| /** | ||||
|  * Generate a Formatted String by an Milliseconds Input | ||||
|  * @param millis Milliseconds Input | ||||
|  * @return Result String | ||||
|  */ | ||||
| PD_CORE_API const std::string FormatMillis(unsigned long long millis); | ||||
| /** | ||||
|  * Create a formatted String by an input bytes value | ||||
|  * @param bytes value in bytes | ||||
|  * @result Formatted String for example `2.5MB` | ||||
|  */ | ||||
| PD_CORE_API const std::string FormatBytes(unsigned long long bytes); | ||||
| /** | ||||
|  * Extract the Filename out of a Path | ||||
|  * @param path Path to extract from | ||||
|  * @param saperators Path Split Chars | ||||
|  * @return extracted filename | ||||
|  */ | ||||
| PD_CORE_API const std::string GetFileName( | ||||
|     const std::string& path, const std::string& saperators = "/\\"); | ||||
| /** | ||||
|  * Remove Extension from a Path / Filename | ||||
|  * @param path Input Path | ||||
|  * @return Path without Extension | ||||
|  */ | ||||
| PD_CORE_API const std::string PathRemoveExtension(const std::string& path); | ||||
| /** | ||||
|  * Function to Convert a Type to a hex value | ||||
|  * @tparam T Type | ||||
|  * @param v value | ||||
|  * @return hex string beginning with 0x | ||||
|  */ | ||||
| template <typename T> | ||||
| inline const std::string ToHex(const T& v) { | ||||
|   std::stringstream s; | ||||
|   s << "0x" << std::setfill('0') << std::setw(sizeof(v) * 2) << std::hex << v; | ||||
|   return s.str(); | ||||
| } | ||||
| /** | ||||
|  * Generate a Hash out of a string | ||||
|  * @param s String to hash | ||||
|  * @return 32Bit Hash | ||||
|  */ | ||||
| PD_CORE_API u32 FastHash(const std::string& s); | ||||
| /** | ||||
|  * Function to Generate a Compiler Name and Version String | ||||
|  * Based on their Macros | ||||
|  * @return CompilerName: Version | ||||
|  */ | ||||
| inline const std::string GetCompilerVersion() { | ||||
|   /// As the function looks like this Project is meant to | ||||
|   /// Be ported to other systems as well | ||||
|   std::stringstream res; | ||||
| #ifdef __clang__  // Check clang first | ||||
|   res << "Clang: " << __clang_major__ << "."; | ||||
|   res << __clang_minor__ << "."; | ||||
|   res << __clang_patchlevel__; | ||||
| #elif __GNUC__ | ||||
|   res << "GCC: " << __GNUC__; | ||||
|   res << "." << __GNUC_MINOR__ << "."; | ||||
|   res << __GNUC_PATCHLEVEL__; | ||||
| #elif _MSC_VER | ||||
|   res << "MSVC: " << _MSC_VER; | ||||
| #else | ||||
|   res << "Unknown Compiler"; | ||||
| #endif | ||||
|   return res.str(); | ||||
| } | ||||
| }  // namespace Strings | ||||
| #pragma once | ||||
|  | ||||
| /* | ||||
| MIT License | ||||
| Copyright (c) 2024 - 2025 René Amthor (tobid7) | ||||
|  | ||||
| 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. | ||||
|  */ | ||||
|  | ||||
| #include <pd/core/common.hpp> | ||||
|  | ||||
| namespace PD { | ||||
| /** | ||||
|  * Set of String Utillity Functions | ||||
|  */ | ||||
| namespace Strings { | ||||
| /** | ||||
|  * Check if a String ends with a specific extension | ||||
|  * @param str Input string | ||||
|  * @param exts List of Extensions to check for | ||||
|  * @return true if one of the extensions is found in the String | ||||
|  */ | ||||
| PD_CORE_API bool StringEndsWith(const std::string& str, | ||||
|                                 const std::vector<std::string>& exts); | ||||
| /** | ||||
|  * Function to Create a wstring of a string | ||||
|  * @param s Input String to Convert | ||||
|  * @return Result wstring | ||||
|  * @note Returns Empty if it has an error | ||||
|  */ | ||||
| PD_CORE_API std::wstring MakeWstring(const std::string& s); | ||||
| /** | ||||
|  * Generate a Formatted String by an Nanoseconds Input | ||||
|  * @param nanos Nanoseconds Input | ||||
|  * @return Result String | ||||
|  */ | ||||
| PD_CORE_API const std::string FormatNanos(unsigned long long nanos); | ||||
| /** | ||||
|  * Generate a Formatted String by an Milliseconds Input | ||||
|  * @param millis Milliseconds Input | ||||
|  * @return Result String | ||||
|  */ | ||||
| PD_CORE_API const std::string FormatMillis(unsigned long long millis); | ||||
| /** | ||||
|  * Create a formatted String by an input bytes value | ||||
|  * @param bytes value in bytes | ||||
|  * @result Formatted String for example `2.5MB` | ||||
|  */ | ||||
| PD_CORE_API const std::string FormatBytes(unsigned long long bytes); | ||||
| /** | ||||
|  * Extract the Filename out of a Path | ||||
|  * @param path Path to extract from | ||||
|  * @param saperators Path Split Chars | ||||
|  * @return extracted filename | ||||
|  */ | ||||
| PD_CORE_API const std::string GetFileName( | ||||
|     const std::string& path, const std::string& saperators = "/\\"); | ||||
| /** | ||||
|  * Remove Extension from a Path / Filename | ||||
|  * @param path Input Path | ||||
|  * @return Path without Extension | ||||
|  */ | ||||
| PD_CORE_API const std::string PathRemoveExtension(const std::string& path); | ||||
| /** | ||||
|  * Function to Convert a Type to a hex value | ||||
|  * @tparam T Type | ||||
|  * @param v value | ||||
|  * @return hex string beginning with 0x | ||||
|  */ | ||||
| template <typename T> | ||||
| inline const std::string ToHex(const T& v) { | ||||
|   std::stringstream s; | ||||
|   s << "0x" << std::setfill('0') << std::setw(sizeof(v) * 2) << std::hex << v; | ||||
|   return s.str(); | ||||
| } | ||||
| /** | ||||
|  * Generate a Hash out of a string | ||||
|  * @param s String to hash | ||||
|  * @return 32Bit Hash | ||||
|  */ | ||||
| PD_CORE_API u32 FastHash(const std::string& s); | ||||
| /** | ||||
|  * Function to Generate a Compiler Name and Version String | ||||
|  * Based on their Macros | ||||
|  * @return CompilerName: Version | ||||
|  */ | ||||
| inline const std::string GetCompilerVersion() { | ||||
|   /// As the function looks like this Project is meant to | ||||
|   /// Be ported to other systems as well | ||||
|   std::stringstream res; | ||||
| #ifdef __clang__  // Check clang first | ||||
|   res << "Clang: " << __clang_major__ << "."; | ||||
|   res << __clang_minor__ << "."; | ||||
|   res << __clang_patchlevel__; | ||||
| #elif __GNUC__ | ||||
|   res << "GCC: " << __GNUC__; | ||||
|   res << "." << __GNUC_MINOR__ << "."; | ||||
|   res << __GNUC_PATCHLEVEL__; | ||||
| #elif _MSC_VER | ||||
|   res << "MSVC: " << _MSC_VER; | ||||
| #else | ||||
|   res << "Unknown Compiler"; | ||||
| #endif | ||||
|   return res.str(); | ||||
| } | ||||
| }  // namespace Strings | ||||
| }  // namespace PD | ||||
		Reference in New Issue
	
	Block a user