-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cdo and archetype explained cdo and archetype explained cdo and archetype explained cdo and archetype explained
- Loading branch information
1 parent
495d2cf
commit a07ff27
Showing
4 changed files
with
149 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
digraph { | ||
rankdir="DT"; | ||
|
||
{ | ||
{ | ||
rank = same; | ||
cdo[label=<ClassDefault Object<BR/> | ||
<FONT SIZE="10"><B>"CDO"</B></FONT>>, shape=box, group=g1]; | ||
ao[label="Archetype Object", shape=box, group=g1]; | ||
obj[label="Object instance", shape=box]; | ||
} | ||
{ | ||
rank = same; | ||
uasset[label="uasset file", shape=box3d, group=g2]; | ||
"constructor code"[shape=signature, group=g2] | ||
superCDO[label="SuperClass CDO", shape=box, group=g2] | ||
} | ||
{ | ||
rankdir = "LR"; | ||
template[label="Template object", shape=box, group=g3] | ||
inFlag[label="InFlags", group=g3] | ||
} | ||
newObject[label=<new object <BR/> | ||
<FONT POINT-SIZE="10">can also be an <B>Archetype object</B> or a <B>CDO</B></FONT>>, shape=box] | ||
} | ||
{ | ||
uasset->ao [label="deserialize"] | ||
uasset->cdo [style=dashed label="deserialize\n(if any)"] | ||
"constructor code"->cdo [label="initialize"] | ||
superCDO->cdo[label="copy properties to\n(if any)", style=dashed] | ||
obj->template | ||
cdo->template | ||
ao->template | ||
|
||
template->newObject [label="copy properties to"] | ||
inFlag->newObject [label="set flags to"] | ||
} | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
digraph { | ||
rankdir="LR"; | ||
|
||
FrameStart, Update, Skinning, UIRebuild, Sound, Render, FrameEnd | ||
{ | ||
FrameStart -> Update | ||
Update -> Skinning | ||
Update -> UIRebuild | ||
Update -> Sound | ||
|
||
Skinning -> Render | ||
UIRebuild -> Render | ||
|
||
Sound -> FrameEnd | ||
Render -> FrameEnd | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters