Editing Rich Appearance Format (RAF)

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 8: Line 8:
See: [[CXML Containers]] page
See: [[CXML Containers]] page


=RAF contents=
=RAF tools=
It must comply with these max restrictions :
==Rich Apparence Maker==
-Textures size max: 15 mb ( 15728640 Bytes ) ( on [[RSX]] local memory at run time )
http://r.a.m.games-hack.fr/index.php
-Geometry & script size max: 1 mb ( 1048576 Bytes ) ( on main memory at run time )
-Actor size max: 1.25mb ( 1310720 Bytes ) ( in the intermediate buffer )
-Cameras: 1 (perspective or orthographic)
-Lights: 2 (ambient and/or point)
-Scripts: 1
-Actors: 128
  -Models: 64 per actor ?
  -Animations: 8 per model
  -Materials: 1 per actor ?
  -Textures: 4 per material ?


==RAF Scene (.XML)==
guide http://r.a.m.games-hack.fr/doc/Rich%20Appearance%20Maker%20-%20Quick%20Start%20Guide.pdf
A RAF animation consists in an "scene" (think in it like a theatre performance), viewed from a "camera" (think in it as the frame of your TV), is visible because there are "lights" (lights are mandatory otherway the scene will be completly in darkness), and is performed using an "script" file (think in it like the theatre director)


The most important element of a scene are the "actors" that are composed by a "model" (for an human the model is his body surface, or parts of his body) and a "material" (for an human the material of his body is flesh, or clothes for some of his body parts)
R.A.M on PS3 News: http://www.ps3news.com/ps3-hacks-jailbreak/video-ps3-rich-appearance-maker-r-a-m-beta-is-now-open/


The "model" is associated with an "animation" (otherway it will not move) and the "material" is associated with a "texture" (for an human the texture is his skin, think in the textures as stickers you place over the model surface)
R.A.M on PSX Scene: http://psx-scene.com/forums/content/rich-appearance-maker-r-m-free-beta-now-open-dynamic-theme-maker-2161/


So an "actor" is composed by one or several "model" (associated with an "animation"), and a "material" (associated with a "texture")
==PS3 Color Logo Creator V2.511==
PCLC Source: http://tizzyt-archive.blogspot.co.uk/2012/04/playstation-color-logo-creator-v2511.html


The camera and lights are a bit special, there are different 2 ways to integrate them in the scene because are not visible (is imposible to see the camera because you are looking at the scene from inside of the camera) and lights are just light rays (the emitter is not visible, only the rays)... For this reason camera and lights can be completly defined in the scene.xml (so no need to create 3D object for them)... but they also admits to be defined as 3D objects (for this method is needed to create 3D objects for them, this allows for more complex lights animations or cinematic effects like camera travellings)
PCLC on PS3 News: http://www.ps3news.com/ps3-hacks-jailbreak/ps3-color-logo-creator-v2-50-v2-51-updates-now-available/


{{Boxcode|code=<syntaxhighlight lang="xml">
PCLC V2.511 Download: http://www.mediafire.com/download/zbb3e07wdx22jub
<?xml version='1.0' encoding="UTF-8"?>


<raf angle_unit="radian/degree">
=RAF contents=


<model id="model" file="model.dae" vertex_color="disable/enable" >
It must comply with these restrictions :
<animation id="animation" file="animation.dae" start="1" end="100" sampling_rate="1" />
-Textures size max: 15 mb ( 15728640 Bytes ) ( on [[RSX]] local memory at run time )
</model>
-Geometry & script size max: 1 mb ( 1048576 Bytes ) ( on main memory at run time )
-Actor size max: 1.25mb ( 1310720 Bytes ) ( in the intermediate buffer )
-Actor number max: 128
-Cameras: 1
-Lights: 2 (ambient + point)
-Scripts: 1
-Models: 64 (with 8 animations each model)


<material id="material" effect="pure_texture/pure_texture_alpha_0_depth_1/pure_texture_alpha_1_depth_0/pure_texture_alpha_0_depth_0/basic_lighting/basic_lighting_alpha_0/basic_lighting_edge_lit/basic_lighting_edge_lit_alpha_0/basic_lighting_alpha_add" >
==RAF Scene (.XML)==
<texture file="texture.jpg/texture.dds" type="color_map/normal_map/specular_map/tangent_normal_map" />
</material>
 
<actor id="actor" model="model" material="material" position="x,y,z" rotation="x,y,z" scale="x,y,z" color="r,g,b,a" uv_scale="u,v" uv_offset="u,v" anim_weight="anim0, anim1, anim2, anim3" anim_speed="anim0, anim1, anim2, anim3" anim_time="anim0, anim1, anim2, anim3" />
 
<camera id="camera" file="camera.dae" type="perspective/orthographic" yfov="1" ymag="1" znear="1" zfar="1" position="x,y,z" direction="x,y,z" up="x,y,z" />
 
<light id="light" file="light.dae" type="ambient/point" color="r,g,b" position="x,y,z" direction="x,y,z" attenuation="1,1,1" />
 
<script file="script.js" />
 
</raf>
</syntaxhighlight>}}
*Notes
**The maximum length of the string that can be specified to the id attribute of an element is 31 characters
**Time is in seconds
**A vector (in code) is composed by a group of datas, the number or the type of this datas can be different:
***For 3D space "x, y, z" are the values of the axis that defines a point, rotation, scale, a direction etc...
***For colors "r, g, b, a" are red, green, blue channels, and alpha for transparency
***For textures "u, v" represents displacement in the x and y axis when the texture is applyed over a 2D surface
 
{| class="wikitable"
|+ <raf>
! Attribute !! Description
|-
| angle_unit  ||  Unit of angles in the scene file (radian/degree)
|}
 
*Angles values conversions notes goes here ???
 
===Model===
{| class="wikitable"
|+ <model>
! Attribute !! Description
|-
| id  || String accessed as the model attribute of the <actor> element
|-
| file || Path to the model's .dae file exported by the DCC tool
|-
| vertex_color || Usage (or lack) of color regarding each vertex
*enable/disable
|}
 
====Animation====
{| class="wikitable"
|+ <animation>
! Attribute !! Description
|-
| id || String accessed by scripts
|-
| file || Path to the animation's .dae file exported by the DCC tool
|-
| start || Start time
|-
| end || End time
|-
| sampling_rate || Sampling rate
|}
 
===Material===
{| class="wikitable"
|+ <material>
! Attribute !! Description
|-
| id  || String accessed as the material attribute of the <actor> element
|-
| effect || String specifying the effect. Effects are selected from the preset values in the system software.
* pure_texture : No lighting. Display the texture as is.
* pure_texture_alpha_0_depth_1 : Remove alpha from pure_texture
* pure_texture_alpha_1_depth_0 : Remove depth from pure_texture
* pure_texture_alpha_0_depth_0 : Remove alpha and depth from pure_texture
* basic_lighting : Basic lighting
* basic_lighting_alpha_0 : Remove alpha from basic_lighting
* basic_lighting_edge_lit : Throw light on object's edges in addition to basic_lighting
* basic_lighting_edge_lit_alpha_0 : Remove alpha from basic_lighting_edge_lit
* basic_lighting_alpha_add : Derive blending of basic_lighting by addition calculation
* sce01 : internal/reserved ? (used in coldboot.raf compiled with raf tools v1.00)
|}
 
====Texture====
{| class="wikitable"
|+ <texture>
! Attribute !! Description
|-
| file || Path to the texture file
|-
| type || String specifying the texture map method. This is selected from the preset values in the system software:
*color_map : Color (RGBA)
*normal_map : Normal in object space (RGB)
*specular_map : Specular strength (G)
*tangent_normal_map : Normal in tangent space, valid only for models with TEXTANGENT (RGB)
|}
 
===Actor===
{| class="wikitable"
|+ <actor>
! Attribute !! Description
|-
| id || String accessed by scripts
|-
| model || String that accesses the id attribute of the <model> element
|-
| material || String that accesses the id attribute of the <material> element
|-
| position || Vector to the initial position (x, y, z)
|-
| rotation || Vector to the initial rotation angle (x, y, z)
|-
| scale || Vector to the initial scale (x, y, z)
|-
| color || Vector to the initial color (r, g, b, a)
|-
| uv_scale || Vector to the texture coordinates' initial scale (u, v)
|-
| uv_offset || Vector to the texture coordinates' initial offset (u, v)
|-
| anim_weight || Vector to the animation's initial blend weights (anim0, anim1, anim2, anim3)
|-
| anim_speed || Vector to the animation's initial speed (anim0, anim1, anim2, anim3)
|-
| anim_time || Vector to the animation's initial time (anim0, anim1, anim2, anim3)
|-{{cellcolors|lightgrey}}
| zsort || String indicating the z sort type (unspecified/back to front/front to back) <!-- mandatory in raf format v1.02... not mandatory/inexistant in raf format v1.00 -->
|}


*'''zsort''' was not supported in raf tools v1 (the version used to build [[coldboot.raf]]), it was implemented in later versions of the raf tools, because this reason the "actors" in coldboot.raf doesnt uses zsort, see [[Coldboot.raf#Scene]]
==Models and Lights (.DAE)==
 
Models can be geometric 3D objects, or 3D light points
===Camera===
*Typical objects and names used:
{| class="wikitable"
**bg.dae
|+ <camera>
**ambient_light.dae
! Attribute !! Description
**point_light.dae
|-
| id || String accessed by scripts
|-{{cellcolors|lightgrey}}
| file || Path to the camera's .dae file exported by the DCC tool (if .dae is used)
|-
| type || String indicating the camera type (perspective/orthographic)
|-
| yfov || Scalar indicating the field-of-view in the vertical direction (perspective only)
|-
| ymag || Scalar indicating the magnification in the vertical direction (orthographic only)
|-
| znear || Scalar indicating the near clip plane
|-
| zfar || Scalar indicating the far clip plane
|-
| position || Vector to the initial position (x, y, z)
|-
| direction || Vector to the initial direction (x, y, z)
|-
| up || Vector to the initial up direction (x, y, z)
|}
 
===Light===
{| class="wikitable"
|+ <light>
! Attribute !! Description
|-
| id || String accessed by scripts
|-{{cellcolors|lightgrey}}
| file || Path to the light's .dae file exported by the DCC tool (if .dae is used)
|-
| type || String indicating the light type (ambient/point)
|-
| color || Vector to the initial color (r, g, b)
|-
| position || Vector to the initial position (x, y, z)
|-
| direction || Vector to the initial direction (x, y, z)
|-
| attenuation || Vector to the initial attenuation (zero-order, first-order, second-order)
|}
 
===Script===
{| class="wikitable"
|+ <script>
! Attribute !! Description
|-
| file || Path to the script file
|}
 
==Lights, Camera, Models, Animations (.DAE)==
Dae files are geometric 3D objects, generated by collada plugin from one of the collada supported 3D tools (blender, maya, 3dmax, etc...)
 
The raf scene.xml takes .dae files as inputs, this files are converted to .edge and .skel (both seems raw geometric vertex info) and .anim (probably containing raw geometric vertex info + time keyframes)
 
Dae files are xml based, and contains references to the libraries that were used by the 3D tool that build the object, this info is a collada standard and most of it is ignored when converted to .skel and .edge... in other words, most of the .dae info is lost when the .dae file is stored inside the .raf file (though is supposed to have some relationship with the graphic libraries availables in ps3 firmware)


Models files contains references to the libraries that were used by the 3D app that build the object
*Typical entries found in models (3d objects)
*Typical entries found in models (3d objects)
**<asset>
**<asset>
Line 250: Line 64:
**<scene>
**<scene>


==Textures (.JPG .DDS)==
==Textures ==
See [[Multimedia_Formats_and_Tools|Multimedia Formats and Tools page]]
See [[Multimedia_Formats_and_Tools|Multimedia Formats and Tools page]]


Before compiling, only .DDS and .JPG are supported.
Before compiling, only .dds and jpeg are supported.


After compiling, .DDS files are converted to .GTF. And .JPG files are stored as .JPG without conversion
After compiling, '''G'''raphics '''T'''exture '''F'''ormat (GTF) (is a container for storing one or multiple textures, "pack GTF", data in a layout that can be used as is by [[RSX]]).


GTF ('''G'''raphics '''T'''exture '''F'''ormat) is a container for storing one or multiple textures, the stored textures uses the same layout than if there was stored in PS3 RAM, this way is posible to make a direct copy of the textures to ram without any conversion to make them available for [[RSX]] as soon as possible
==Script==
=== .JS ===
script.js (an PlayStation JavaScript, known as PSJS, based on ECMA-262)


==Script (.JS)==
ECMA-262: several well-known implementations such as JavaScript, JScript and ActionScript.
The raf scene.xml takes as input an script with file extension .js written in [[PlayStation_JavaScript|PlayStation JavaScript]] language


This script is converted into an intermediate .jsx file in [[VSMX|VSMX]] format, and then stored inside the .raf file.
Some examples of PS3 theme using PSJS:


*Some examples of PS3 theme using PSJS:
*http://www.studio-output.com/case_study/the-studio/
**http://www.studio-output.com/case_study/the-studio/


=RAF tools=
=== .JSX ===
==Rich Apparence Maker==
The script.js is later on compiled into an intermediate code (.jsx) with a magic header "VSMX".
http://r.a.m.games-hack.fr/index.php


guide http://r.a.m.games-hack.fr/doc/Rich%20Appearance%20Maker%20-%20Quick%20Start%20Guide.pdf
*http://endlessparadigm.com/forum/showthread.php?tid=21485: VSMX file format


R.A.M on PS3 News: http://www.ps3news.com/ps3-hacks-jailbreak/video-ps3-rich-appearance-maker-r-a-m-beta-is-now-open/
Virtual Script Machine Instructions (VSMX) file layout:
<pre>
VSMX header
Compiled instructions
String constants
Object property/method names?
Variable/function names
</pre>


R.A.M on PSX Scene: http://psx-scene.com/forums/content/rich-appearance-maker-r-m-free-beta-now-open-dynamic-theme-maker-2161/
==== Header ====


==PS3 Color Logo Creator V2.511==
{| class="wikitable" style="text-align: center;"
PCLC Source: http://tizzyt-archive.blogspot.co.uk/2012/04/playstation-color-logo-creator-v2511.html
|-
 
| style="background-color:#56534D58; color:#000FFF;" |'''Offset'''
PCLC on PS3 News: http://www.ps3news.com/ps3-hacks-jailbreak/ps3-color-logo-creator-v2-50-v2-51-updates-now-available/
| style="background-color:#56534D58; color:#000FFF;" |'''Size'''
 
| style="background-color:#56534D58; color:#000FFF;" |'''Example (h)'''
PCLC V2.511 Download: http://www.mediafire.com/download/zbb3e07wdx22jub
| style="background-color:#56534D58; color:#000FFF;" |'''Value (conversion)'''
| style="background-color:#56534D58; color:#000FFF;" |'''Notes'''
|-
| 0x00 || 0x04 || 0x56534D58 ||  || Magic
|-
| 0x04 || 0x04 || 0x00000200 || 0002.0000 || Version?
*v1.0 on PSP RCO RCOs (from video/music UMDs and two lftv RCOs in the PSP's flash0/vsh/ressource/.)?
*V2.0 on PS3 PSJS script.jsx
|-
| 0x08 || 0x04 || 0x34000000 || 34 (52) || header length
|-
| 0x0C || 0x04 || - ||  || length of compiled instructions section
|-
| 0x10 || 0x04 || - ||  || offset of string constants section
|-
| 0x14 || 0x04 || - ||  || length of string constants section
|-
| 0x18 || 0x04 || - ||  || number of string constants (seen: 1 or 2)
|-
| 0x1C || 0x04 || - ||  || offset of property/method section
|-
| 0x20 || 0x04 || - ||  || length of property/method section
|-
| 0x24 || 0x04 || - ||  || number of property/method names
|-
| 0x28 || 0x04 || - ||  || offset of variable/function names section
|-
| 0x2C || 0x04 || - ||  || length of variable/function names section
|-
| 0x30 || 0x04 || - ||  || number of variable/function names section
|-
|}


=Links=
=Links=
*RAF pages in other wiki/s
*RAF pages in other wiki/s
**https://web.archive.org/web/20141027141848/http://dudu.clx.free.fr/wiki/index.php?title=PS3RAF
**http://dudu.clx.free.fr/wiki/index.php?title=PS3RAF
**http://ps3.duduclx.fr/index.php?title=Th%C3%A8mes_dynamiques_PS3
**http://ps3.duduclx.fr/index.php?title=Th%C3%A8mes_dynamiques_PS3
**https://web.archive.org/web/20141119010210/http://dudu.clx.free.fr/wiki/index.php?title=PS3Them
**http://dudu.clx.free.fr/wiki/index.php?title=PS3Them
*Interesting info about Animations/3D support in themes https://web.archive.org/web/20141119010206/http://www.ps3hax.net/showthread.php?t=28426
*Interesting info about Animations/3D support in themes http://www.ps3hax.net/showthread.php?t=28426
*See also: [[Qt Resource Container (QRC)]]
*See also: [[Qt Resource Container (QRC)]]


Please note that all contributions to PS3 Developer wiki are considered to be released under the GNU Free Documentation License 1.2 (see PS3 Developer wiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

To protect the wiki against automated edit spam, we kindly ask you to solve the following hCaptcha:

Cancel Editing help (opens in new window)