mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-29 19:53:44 -06:00 
			
		
		
		
	Merge branch 'master' of https://github.com/prusa3d/slic3r
This commit is contained in:
		
						commit
						868b400120
					
				
					 2 changed files with 28 additions and 3 deletions
				
			
		|  | @ -679,8 +679,6 @@ sub select_view { | |||
|         # Avoid gimball lock. | ||||
|         $self->_stheta(GIMBALL_LOCK_THETA_MAX) if $self->_stheta > GIMBALL_LOCK_THETA_MAX; | ||||
|         $self->_stheta(0) if $self->_stheta < 0; | ||||
|         # View everything. | ||||
|         $self->zoom_to_bounding_box($bb); | ||||
|         $self->on_viewport_changed->() if $self->on_viewport_changed; | ||||
|         $self->Refresh; | ||||
|     } | ||||
|  |  | |||
|  | @ -674,6 +674,33 @@ bool load_amf(const char *path, PresetBundle* bundle, Model *model) | |||
|         return false; | ||||
| } | ||||
| 
 | ||||
| std::string xml_escape(std::string text) | ||||
| { | ||||
|     std::string::size_type pos = 0; | ||||
|     for (;;) | ||||
|     { | ||||
|         pos = text.find_first_of("\"\'&<>", pos); | ||||
|         if (pos == std::string::npos) | ||||
|             break; | ||||
| 
 | ||||
|         std::string replacement; | ||||
|         switch (text[pos]) | ||||
|         { | ||||
|         case '\"': replacement = """; break; | ||||
|         case '\'': replacement = "'"; break; | ||||
|         case '&':  replacement = "&";  break; | ||||
|         case '<':  replacement = "<";   break; | ||||
|         case '>':  replacement = ">";   break; | ||||
|         default: break; | ||||
|         } | ||||
| 
 | ||||
|         text.replace(pos, 1, replacement); | ||||
|         pos += replacement.size(); | ||||
|     } | ||||
| 
 | ||||
|     return text; | ||||
| } | ||||
| 
 | ||||
| bool store_amf(const char *path, Model *model, Print* print, bool export_print_config) | ||||
| { | ||||
|     if ((path == nullptr) || (model == nullptr) || (print == nullptr)) | ||||
|  | @ -701,7 +728,7 @@ bool store_amf(const char *path, Model *model, Print* print, bool export_print_c | |||
|     { | ||||
|         std::string config = "\n"; | ||||
|         GCode::append_full_config(*print, config); | ||||
|         stream << "<metadata type=\"" << SLIC3R_CONFIG_TYPE << "\">" << config << "</metadata>\n"; | ||||
|         stream << "<metadata type=\"" << SLIC3R_CONFIG_TYPE << "\">" << xml_escape(config) << "</metadata>\n"; | ||||
|     } | ||||
| 
 | ||||
|     for (const auto &material : model->materials) { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 bubnikv
						bubnikv