/usr/src/castle-game-engine-5.2.0/x3d/x3dnodes_save.inc is in castle-game-engine-src 5.2.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 | {
Copyright 2008-2014 Michalis Kamburelis.
This file is part of "Castle Game Engine".
"Castle Game Engine" is free software; see the file COPYING.txt,
included in this distribution, for details about the copyright.
"Castle Game Engine" is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
----------------------------------------------------------------------------
}
{ Save routines, common for both XML and classic encoding. }
{$ifdef read_interface}
{ Which VRML/X3D version should be used to save this 3D model. }
function Save3DVersion(Node: TX3DNode): TX3DVersion;
{ Write VRML/X3D model to a file.
Generates a complete file, with header lines (XML headers,
or #VRML / #X3D in classic encoding) and everything.
Overloaded version that takes an URL will automatically compress
the file with gzip if an extension indicating gzip compression is present
(like .x3dv.gz, or .x3d.gz).
Generator and Source, if not empty, will be used to set appropriate
META values of X3D root file node. This way you can indicate inside X3D file
the generator (your program) name and source (original 3D model file name).
If this is not an X3D root file node, we will record it inside a comment.
When ForceConvertingToX3D or when Encoding <> xeClassic,
the node graph will be converted to X3D (if it isn't X3D already).
This can be used to convert VRML 2.0 to X3D.
For VRML 1.0 or Inventor, this will just save them in X3D (XML or classic)
encoding, which is not really usable. We simply don't implement
VRML 1.0/Inventor convertion (it's difficult, and not worth the trouble,
VRML 1.0/Inventor are really old).
Note that converting to X3D will change the nodes graph, possibly
removing some nodes. If you use TCastleSceneCore, you should call
TCastleSceneCore.BeforeNodesFree before and TCastleSceneCore.ChangedAll
when such convertion occcurs (you can easily test whether it may
happen by Save3DWillConvertToX3D). If you use Encoding=xeClassic
and ForceConvertingToX3D=false, you're safe: convertion will not happen.
@param(Version Which VRML/X3D specification version should be used
to encode. It should be calculated by Save3DVersion(Node).
You often want to calculate it yourself, before calling Save3D,
this way you can propose a sensible saved model extension for user
(.wrl for VRML <= 2.0 in classic encoding, .x3dv for X3D in classic encoding).
Note that @italic(this parameter is @bold(not) a mechanism to convert
between various VRML/X3D versions). This procedure does not convert VRML/X3D
nodes/fields inside. For example, you can't just change Version.Major value
from 1 to 3 to convert VRML 1.0 to X3D.
It would cause some information to be encoded in X3D style
(e.g. generated file will have X3D header and PROFILE information),
but the nodes would stil have VRML 1.0 names and fields.
Which means that you would not generate correct X3D file.
So this should really be calculated based on model contents,
usually by Save3DVersion(Node).
A limited VRML 2.0 convertion is possible by ForceConvertingToX3D = true.
In this case, Version will be automatically changed to X3D anyway.)
@groupBegin }
procedure Save3D(Node: TX3DNode;
const Stream: TStream; const Generator, Source: string;
Version: TX3DVersion; const Encoding: TX3DEncoding;
const ForceConvertingToX3D: boolean = false); overload;
procedure Save3D(Node: TX3DNode;
const URL, Generator, Source: string;
const Version: TX3DVersion; const Encoding: TX3DEncoding;
const ForceConvertingToX3D: boolean = false); overload;
procedure Save3D(Node: TX3DNode;
const Stream: TStream; const Generator, Source: string;
const Encoding: TX3DEncoding;
const ForceConvertingToX3D: boolean = false); overload;
procedure Save3D(Node: TX3DNode;
const URL, Generator, Source: string;
const Encoding: TX3DEncoding;
const ForceConvertingToX3D: boolean = false); overload;
{ @groupEnd }
function Save3DWillConvertToX3D(Version: TX3DVersion;
const Encoding: TX3DEncoding;
const ForceConvertingToX3D: boolean): boolean;
{$endif read_interface}
{$ifdef read_implementation}
type
{ TX3DWriter extended with NodeNames. }
TX3DWriterNames = class(TX3DWriter)
{ Record known node names.
This allows to write correct DEF / USE when saving. }
NodeNames: TX3DNodeNames;
constructor Create(AStream: TStream;
const AVersion: TX3DVersion; const AEncoding: TX3DEncoding);
destructor Destroy; override;
end;
constructor TX3DWriterNames.Create(AStream: TStream;
const AVersion: TX3DVersion; const AEncoding: TX3DEncoding);
begin
inherited;
NodeNames := TX3DNodeNames.Create(false);
end;
destructor TX3DWriterNames.Destroy;
begin
FreeAndNil(NodeNames);
inherited;
end;
const
{ Used when we have to save as X3D, but profile information is missing. }
DefaultX3DSaveProfile = 'Interchange';
function Save3DVersion(Node: TX3DNode): TX3DVersion;
begin
if (Node is TX3DRootNode) and
TX3DRootNode(Node).HasForceVersion then
Result := TX3DRootNode(Node).ForceVersion else
{ Use latest X3D. We should promote latest, best version of VRML/X3D.
Also, this avoids convertion to X3D when saving it to XML encoding. }
Result := X3DVersion;
end;
type
TVRMLToX3DConverter = class
procedure Convert(ParentNode: TX3DNode; var Node: TX3DNode);
end;
procedure TVRMLToX3DConverter.Convert(ParentNode: TX3DNode; var Node: TX3DNode);
function CoordinateNode(Coords: TMFVec3f): TCoordinateNode;
begin
Result := TCoordinateNode.Create('', Node.BaseUrl);
Result.FdPoint.AssignValue(Coords);
end;
function ConvertNurbsCurve(Node: TNurbsCurveNode_2): TNurbsCurveNode;
begin
Result := TNurbsCurveNode.Create(Node.NodeName, Node.BaseUrl);
Result.PositionInParent := Node.PositionInParent;
Result.FdcontrolPoint.Value := CoordinateNode(Node.FdcontrolPoint);
Result.Fdweight.Items.Assign(Node.FdWeight.Items); { converts float to double }
Result.Fdtessellation.AssignValue(Node.Fdtessellation);
Result.Fdknot.Items.Assign(Node.Fdknot.Items); { converts float to double }
Result.Fdorder.AssignValue(Node.Fdorder);
Result.FdClosed.Value := true; { true means "possibly closed" }
end;
function ConvertNurbsSurface(Node: TNurbsSurfaceNode): TNurbsPatchSurfaceNode;
begin
Result := TNurbsPatchSurfaceNode.Create(Node.NodeName, Node.BaseUrl);
Result.PositionInParent := Node.PositionInParent;
Result.FdcontrolPoint.Value := CoordinateNode(Node.FdcontrolPoint);
Result.FdtexCoord.AssignValue(Node.FdtexCoord);
Result.FduTessellation.AssignValue(Node.FduTessellation);
Result.FdvTessellation.AssignValue(Node.FdvTessellation);
Result.Fdweight.Items.Assign(Node.FdWeight.Items); { converts float to double }
Result.FdSolid.AssignValue(Node.FdSolid);
Result.FdUClosed.Value := true; { true means "possibly closed" }
Result.FdUDimension.AssignValue(Node.FdUDimension);
Result.FdUKnot.Items.Assign(Node.FdUknot.Items); { converts float to double }
Result.FdUOrder.AssignValue(Node.FdUorder);
Result.FdVClosed.Value := true; { true means "possibly closed" }
Result.FdVDimension.AssignValue(Node.FdVDimension);
Result.FdVKnot.Items.Assign(Node.FdVKnot.Items); { converts float to double }
Result.FdVOrder.AssignValue(Node.FdVOrder);
end;
function ConvertNurbsPositionInterpolator(Node: TNurbsPositionInterpolatorNode_2): TNurbsPositionInterpolatorNode;
begin
Result := TNurbsPositionInterpolatorNode.Create(Node.NodeName, Node.BaseUrl);
Result.PositionInParent := Node.PositionInParent;
Result.FdcontrolPoint.Value := CoordinateNode(Node.FdKeyValue);
Result.Fdknot.Items.Assign(Node.Fdknot.Items); { converts float to double }
Result.Fdorder.AssignValue(Node.Fdorder);
Result.Fdweight.Items.Assign(Node.FdKeyWeight.Items); { converts float to double }
end;
begin
{ The nodes needing to be converted from VRML 2.0 to X3D:
- Some can be found by grepping for "Version.Major = 2".
This will find which nodes have ForVRMLVersion method requiring
only VRML 2.0. These are only:
TLODNode_2, TNurbsCurveNode_2, TNurbsPositionInterpolatorNode_2.
- TLODNode_2 doesn't actually need convertion. Only a field name
changes, which should be taken care of NameForVersion mechanism.
- TNurbsSurfaceNode needs additionally to be changed in
TNurbsPatchSurfaceNode.
NURBS differences are summarized in
http://castle-engine.sourceforge.net/x3d_implementation_nurbs.php#section_vrml2_support
TODO: this simple replacement will not work for cases when:
- you have ROUTEs leading to old nodes (ROUTEs will become disconnected
when destroying old nodes)
- you rely of reUSEing old nodes (in new version, we will have new node
for each previous reference).
- If you declare your VRML 2 nurbs nodes by EXTERNPROTO
(like White Dune does) e.g. by "urn:web3d:vrml97:node:NurbsCurve"
we *will* convert your NurbsCurve,
but we will not remove (or modify) the EXTERNPROTO.
If you save to classic encoding, this will cause problems,
as when reading we will see EXTERNPROTO and try to read VRML 2 version
of the node.
If you save to XML encoding, this is avoided, as then we have
<NurbsCurve> instead of <ProtoInstance name="NurbsCurve">,
and the invalid externproto is not relevant.
}
if Node is TNurbsCurveNode_2 then
Node := ConvertNurbsCurve(TNurbsCurveNode_2(Node)) else
if Node is TNurbsSurfaceNode then
Node := ConvertNurbsSurface(TNurbsSurfaceNode(Node)) else
if Node is TNurbsPositionInterpolatorNode_2 then
Node := ConvertNurbsPositionInterpolator(TNurbsPositionInterpolatorNode_2(Node));
end;
function Save3DWillConvertToX3D(Version: TX3DVersion;
const Encoding: TX3DEncoding;
const ForceConvertingToX3D: boolean): boolean;
begin
Result := (Version.Major < 3) and
(ForceConvertingToX3D or (Encoding <> xeClassic));
end;
procedure Save3D(Node: TX3DNode;
const Stream: TStream; const Generator, Source: string;
Version: TX3DVersion;
const Encoding: TX3DEncoding;
const ForceConvertingToX3D: boolean);
var
Writer: TX3DWriterNames;
procedure ConvertToX3D;
begin
{ Converts VRML (1, 2) to X3D simply by changing Version used to save.
This will work fine for VRML 2 -> X3D (except for some NURBS nodes
different between VRML 2 and X3D, these will be dealt with TVRMLToX3DConverter).
This will not really work for VRML 1. }
if Version.Major <= 1 then
OnWarning(wtMajor, 'VRML/X3D', 'Converting VRML 1.0 or Inventor to X3D is not implemented. You will get VRML 1.0/Inventor nodes encoded like for X3D, which probably is not much useful.');
Version.Major := 3;
Version.Minor := 0;
{ Since we convert in-place (replacing nodes inside),
then Node must be a TX3DRootNode to replace in it the version.
Fortunately, our Save3DVersion already guarantees it:
if a node isn't TX3DRootNode, it's always treated as X3D already,
so a convertion will not happen. }
Assert(Node is TX3DRootNode, 'Nodes must be TX3DRootNode to convert to X3D, to mark new version.');
(Node as TX3DRootNode).HasForceVersion := true;
(Node as TX3DRootNode).ForceVersion := Version;
Node.EnumerateReplaceChildren(@TVRMLToX3DConverter(nil).Convert);
end;
procedure Classic;
procedure SaveProfile(Root: TX3DRootNode);
begin
if Root.Profile <> '' then
Writer.Writeln('PROFILE ' + Root.Profile + NL) else
Writer.Writeln('PROFILE ' + DefaultX3DSaveProfile + NL);
end;
procedure SaveComponents(Root: TX3DRootNode);
var
I: Integer;
begin
for I := 0 to Root.Components.Count - 1 do
Writer.Writeln(Format('COMPONENT %s:%d',
[ Root.Components.Keys[I],
Root.Components.Data[I] ]));
if Root.Components.Count <> 0 then
Writer.Write(NL);
end;
procedure SaveMetas(Root: TX3DRootNode);
var
I: Integer;
begin
for I := 0 to Root.Meta.Count - 1 do
Writer.Writeln(Format('META %s %s',
[ StringToX3DClassic(Root.Meta.Keys[I]),
StringToX3DClassic(Root.Meta.Data[I])]));
if Root.Meta.Count <> 0 then
Writer.Write(NL);
end;
const
VRML10Header = '#VRML V1.0 ascii';
VRML20Header = '#VRML V2.0 utf8';
X3DHeader = '#X3D V%d.%d utf8';
var
VRMLHeader, PrecedingComment: string;
begin
if Version.Major <= 1 then
VRMLHeader := VRML10Header else
if Version.Major = 2 then
VRMLHeader := VRML20Header else
if Version.Major >= 3 then
VRMLHeader := Format(X3DHeader, [Version.Major, Version.Minor]);
Writer.Writeln(VRMLHeader + NL { yes, one more NL, to look good });
if (Version.Major >= 3) and (Node is TX3DRootNode) then
begin
if Generator <> '' then
TX3DRootNode(Node).Meta.PutPreserve('generator', Generator);
if Source <> '' then
TX3DRootNode(Node).Meta.PutPreserve('source', Source);
SaveProfile(TX3DRootNode(Node));
SaveComponents(TX3DRootNode(Node));
SaveMetas(TX3DRootNode(Node));
end else
if Version.Major >= 3 then
begin
{ X3D, but no TX3DRootNode. Use default X3D profile. }
Writer.Writeln('PROFILE ' + DefaultX3DSaveProfile);
if Generator <> '' then
Writer.Writeln(Format('META %s %s',
[ StringToX3DClassic('generator'),
StringToX3DClassic(Generator)]));
if Source <> '' then
Writer.Writeln(Format('META %s %s',
[ StringToX3DClassic('source'),
StringToX3DClassic(Source)]));
Writer.Writeln;
end else
if (Generator <> '') or (Source <> '') then
begin
{ write Generator and Source as comment }
PrecedingComment := '';
if Generator <> '' then
PrecedingComment += '# Generated by ' + SReplaceChars(Generator, [#10, #13], ' ') + NL;
if Source <> '' then
PrecedingComment += '# Source model: ' + SReplaceChars(Source, [#10, #13], ' ') + NL;
Writer.Writeln(PrecedingComment);
end;
{ Node may be TX3DRootNode here, that's OK,
TX3DRootNode.SaveToStream will magically handle this right. }
Node.SaveToStream(Writer);
end;
procedure Xml;
function Profile: string;
begin
if (Node is TX3DRootNode) and
(TX3DRootNode(Node).Profile <> '') then
Result := TX3DRootNode(Node).Profile else
Result := DefaultX3DSaveProfile;
end;
procedure SaveComponents(Root: TX3DRootNode);
var
I: Integer;
begin
for I := 0 to Root.Components.Count - 1 do
Writer.WritelnIndent(Format('<component name=%s level="%d" />',
[ StringToX3DXml(Root.Components.Keys[I]),
Root.Components.Data[I] ]));
end;
procedure SaveMetas(Root: TX3DRootNode);
var
I: Integer;
begin
for I := 0 to Root.Meta.Count - 1 do
Writer.WritelnIndent(Format('<meta name=%s content=%s />',
[ StringToX3DXml(Root.Meta.Keys[I]),
StringToX3DXml(Root.Meta.Data[I])]));
end;
begin
Writer.Writeln(Format(
'<?xml version="1.0" encoding="UTF-8"?>' + NL +
'<!DOCTYPE X3D PUBLIC "ISO//Web3D//DTD X3D %d.%d//EN" "http://www.web3d.org/specifications/x3d-%0:d.%1:d.dtd">' + NL+
'<X3D profile=%2:s version="%0:d.%1:d"' + NL+
' xmlns:xsd="http://www.w3.org/2001/XMLSchema-instance"' + NL+
' xsd:noNamespaceSchemaLocation="http://www.web3d.org/specifications/x3d-%0:d.%1:d.xsd">' + NL+
'<head>',
[Version.Major, Version.Minor, StringToX3DXml(Profile)]));
Writer.IncIndent;
if Node is TX3DRootNode then
begin
if Generator <> '' then
TX3DRootNode(Node).Meta.PutPreserve('generator', Generator);
if Source <> '' then
TX3DRootNode(Node).Meta.PutPreserve('source', Source);
SaveComponents(TX3DRootNode(Node));
SaveMetas(TX3DRootNode(Node));
end else
begin
{ write Generator etc. directly, as we don't have TX3DRootNode.Meta available }
if Generator <> '' then
Writer.WritelnIndent(Format('<meta name="generator" content=%s />',
[StringToX3DXml(Generator)]));
if Source <> '' then
Writer.WritelnIndent(Format('<meta name="source" content=%s />',
[StringToX3DXml(Source)]));
end;
Writer.DecIndent;
Writer.Writeln('</head>' + NL + '<Scene>');
{ Node may be TX3DRootNode here, that's OK,
TX3DRootNode.SaveToStream will magically handle this right. }
Writer.IncIndent;
Node.SaveToStream(Writer);
Writer.DecIndent;
Writer.Writeln('</Scene>' +NL + '</X3D>');
end;
begin
if Save3DWillConvertToX3D(Version, Encoding, ForceConvertingToX3D) then
ConvertToX3D;
Writer := TX3DWriterNames.Create(Stream, Version, Encoding);
try
case Encoding of
xeClassic: Classic;
xeXML: Xml;
else raise EInternalError.Create('Saving Encoding?');
end;
finally FreeAndNil(Writer) end;
end;
procedure Save3D(Node: TX3DNode;
const URL, Generator, Source: string; const Version: TX3DVersion;
const Encoding: TX3DEncoding;
const ForceConvertingToX3D: boolean);
var
Stream: TStream;
Gzipped: boolean;
StreamOptions: TStreamOptions;
begin
{ calculate StreamOptions to include gzip compression when necessary }
StreamOptions := [];
URIMimeType(URL, Gzipped);
if Gzipped then
Include(StreamOptions, soGzip);
Stream := URLSaveStream(URL, StreamOptions);
try
Save3D(Node, Stream, Generator, Source, Version,
Encoding, ForceConvertingToX3D);
finally Stream.Free end;
end;
procedure Save3D(Node: TX3DNode;
const Stream: TStream; const Generator, Source: string;
const Encoding: TX3DEncoding;
const ForceConvertingToX3D: boolean);
begin
Save3D(Node, Stream, Generator, Source, Save3DVersion(Node),
Encoding, ForceConvertingToX3D);
end;
procedure Save3D(Node: TX3DNode;
const URL, Generator, Source: string;
const Encoding: TX3DEncoding;
const ForceConvertingToX3D: boolean);
begin
Save3D(Node, URL, Generator, Source, Save3DVersion(Node),
Encoding, ForceConvertingToX3D);
end;
{$endif read_implementation}
|