data schema
definition
formal description of structures a system is working with
basic idea
a way of communicating
"there is a Type of something"
it has
properties
int
float
string
...
references to other Types
usage scenarios
Content creators can
create it
manipulate it
in a property inspector
File system interactions
save data to disk
load data from disk
Load it and use it at runtime
examples of schemas
Unity
script components
public properties
Unreal
properties of UClass
Blind data in Maya
Table columns in a database
Frostbite
Data Definition Format
DDF
schema format
three different data schemas
runtime schema
critical for performance
used by
the game for loading the data into memory
the programmers in the code
purpose
performance
patching
loading
nicely packed in memory
optimized for
reading
storage schema
a.k.a
disk version
what you save
the logical peace of data
not data format
xml
block chains
json
used by
tools to save users work on some form of persistent storage
purpose
automatable with Tools
fit into revision control
multi-user editing support
can be split into multiple parts
for simultaneous editing
optimized for
writing to disk
can be very Object Oriented
tools schema
what the content creators' envision
how the data looks in the mind of the content creator
how you display data
graph
property inspector
timeline
related to UX
can be a subset of UX
used by
content creators
engineers
analysis and decision making
tools developers
to create an editing experience
purpose
UX
visualization and understanding
workflows
optimized for
editing
iteration
usually very Object Oriented
Examples of data schema setups
Transformation
data schemas
represented in the editor (tools data schema)
something more user-friendly
property grid
translations
euler angles
scale
gizmo for transformation
represented on disk (storage data schema)
4x3 matrix
not expecting users to skew mesh
represented in code ( runtime data schema)
4x4 matrix
convert between schemas
using the build pipeline to convert from the storage schema to the runtime schema
Cinematic Tools
Animation Curves
data schemas
tools data schema (tools frontend)
curve editor
keyframes
storage data schema (tools backend)
list of keyframes
array of structs
continent for
reordering
inserting
removing
runtime data schema
lists of key frame properties
struct of arrays
efficient for
searching
traversing
memory layout
using the pipeline to convert from the storage schema to the runtime schema
designing data schemas
requires consideration
1) start with the storage schema
2) build your tools (data schema) around the storage schema
3) implement the runtime schema around the storage schema
if the performance isn't up to your standard
1) measure
2) change the runtime schema
3) write pipeline code to convert from the storage schema to the runtime schema
there can be two extremes
a programmer bias
better for the runtime
the data schema will be
flat
packed
not optimal for a user to understand
a user bias
Object Oriented
easier to build tools around
easier for the users to understand
not optimal for
runtime
not efficiently laid out in memory
wastes cpu cycles for iterating through the structure
not cache friendly
storage
too much space
the most important data schema
storage schema
the only one that is persistent
when the power goes
most expensive to change
update content
need to process a lot of content
things to look out for
lose of data when converting between schemas
example
converting from degrees to radians and back
making more than 3 data schemas
one more thing that the programmers have to maintain
like the network transport schema
UX and data schemas have a strong relationship
if one of them is changed this might lead to the other changing as well
formal support of multiple schemas
no known engine supports multiple data schemas
conditional compilation can help achieve this
make sure the tools/storage schema doesn't reach production code
Loading...