diff --git a/glm/gtx/io.hpp b/glm/gtx/io.hpp index 8f556ed2..cee963b9 100644 --- a/glm/gtx/io.hpp +++ b/glm/gtx/io.hpp @@ -166,6 +166,11 @@ namespace glm template std::basic_ios& unformatted(std::basic_ios&); + template + std::basic_ios& reset(std::basic_ios&); + template + std::basic_ios& compressed(std::basic_ios&); + template std::basic_ostream& operator<<(std::basic_ostream&, precision const&); template diff --git a/glm/gtx/io.inl b/glm/gtx/io.inl index 51002ab6..13ed2fc3 100644 --- a/glm/gtx/io.inl +++ b/glm/gtx/io.inl @@ -116,6 +116,7 @@ namespace io template GLM_FUNC_QUALIFIER FTy const& get_facet(std::basic_ios& ios) { + // Destruction handled by locale (0 passed as default argument in the constructor) if(!std::has_facet(ios.getloc())) ios.imbue(std::locale(ios.getloc(), new FTy)); @@ -136,6 +137,44 @@ namespace io return ios; } + template + GLM_FUNC_QUALIFIER std::basic_ios& reset(std::basic_ios& ios) + { + // could leverage on the default constructor, but requires additional memory allocation + //ios.imbue(std::locale(ios.getloc(), new format_punct)); + //return ios; + + format_punct & fmt(const_cast&>(get_facet >(ios))); + + fmt.formatted = true; + fmt.precision = 3; + fmt.width = 4 + 1 + fmt.precision; + fmt.separator = ','; + fmt.delim_left = '['; + fmt.delim_right = ']'; + fmt.fill = ' '; + fmt.space = ' '; + fmt.newline = '\n'; + fmt.firstline = '\n'; + fmt.order = column_major; + + return ios; + } + + template + GLM_FUNC_QUALIFIER std::basic_ios& compressed(std::basic_ios& ios) + { + format_punct & fmt(const_cast&>(get_facet >(ios))); + + fmt.formatted = true; + fmt.width = 0; + //fmt.space = ' '; + fmt.newline = ','; + fmt.firstline = '\0'; + + return ios; + } + template GLM_FUNC_QUALIFIER std::basic_ostream& operator<<(std::basic_ostream& os, precision const& a) {