mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Construction of TCollection_ExtendedString from plain C string is fixed to consider input string as UTF-8 in several places (identified as described in notes to #31113). Message_MsgFile is corrected to load resource file as UTF-8 (unless it has BOM indicating use of UTF-16). Added tests for use of Unicode in some DRAW commands (bugs demo bug14673_*)
45 lines
1.0 KiB
Plaintext
45 lines
1.0 KiB
Plaintext
puts "# ============================================================"
|
|
puts "# 0014673: Provide true support for Unicode symbols"
|
|
puts "# ============================================================"
|
|
puts ""
|
|
puts "# Check that different file open / save commands can deal with Unicode"
|
|
|
|
pload ALL
|
|
|
|
# Name means "Japanese"
|
|
set filePrefix "$imagedir/${casename}_日本語"
|
|
|
|
proc checkFile {filepath} {
|
|
if { [file exists $filepath] } {
|
|
puts "File $filepath is ceated, OK"
|
|
} else {
|
|
puts "Error: Could not find file $filepath"
|
|
}
|
|
}
|
|
|
|
puts "# OCAF documents"
|
|
NewDocument Xml XmlOcaf
|
|
SaveAs Xml ${filePrefix}.xml
|
|
checkFile ${filePrefix}.xml
|
|
Close Xml
|
|
Open ${filePrefix}.xml Xml
|
|
|
|
NewDocument Bin BinOcaf
|
|
SaveAs Bin ${filePrefix}.cbf
|
|
checkFile ${filePrefix}.cbf
|
|
Close Bin
|
|
Open ${filePrefix}.cbf Bin
|
|
|
|
puts "# STEP and IGES"
|
|
box b 10 10 10
|
|
NewDocument XDE BinOcaf
|
|
XAddShape XDE b
|
|
|
|
WriteStep XDE ${filePrefix}.stp
|
|
checkFile ${filePrefix}.stp
|
|
ReadStep Step ${filePrefix}.stp
|
|
|
|
WriteIges XDE ${filePrefix}.igs
|
|
checkFile ${filePrefix}.igs
|
|
ReadIges Iges ${filePrefix}.igs
|