Raf debug.p3t: Difference between revisions

From PS3 Developer wiki
Jump to navigation Jump to search
(Created page with "= Description = Raf debug is an special dynamic PlayStation 3 Theme (P3T) intended to be used in the development of the Rich Appearance Format (RAF) animations The pu...")
 
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:


== Standard dynamic theme example ==
== Standard dynamic theme example ==
In a standard dynamic theme the raf animation appears as a single '''bgimage''' (background image), identifyed with the tag '''anim''', uses any filename, and a "fake" file extension .jpg (is actually a .raf with his extension renamed to .jpg)
In a standard dynamic theme the raf animation appears as a single '''bgimage''' (background image), identifyed with the tag '''anim''' (animation), uses any filename, and the fileextension .jpg (is actually a .raf renamed to .jpg)


The file '''anim_1.jpg''' (raf animation) in this example is contained inside the .p3t
The file '''anim_1.jpg''' (raf animation) in this example is contained inside the .p3t (is an internal path of the .p3t container but because the file is in the root only appears his filename and his fileextension)
{{Boxcode|content=<syntaxhighlight lang="xml">
{{Boxcode|code=<syntaxhighlight lang="xml">
<bgimagetable>
<bgimagetable>
<bgimage anim="anim_1.jpg"/>
<bgimage anim="anim_1.jpg"/>
Line 14: Line 14:
</syntaxhighlight>}}
</syntaxhighlight>}}


=Raf Debug variations =
== Raf Debug app_home ==
== Raf Debug app_home ==
In raf debug the tag is '''anim_debug''' and points to a device path (in this case a virtual device)
In raf debug the tag is '''anim_debug''' and points to a device path (in this case a virtual device)


The file '''debug.raf''' (raf animation) in this example is loaded externally to the .p3t
The file '''debug.raf''' (raf animation) in this example is loaded externally to the .p3t (intended for loading the raf file from a pc connected by network)
{{Boxcode|content=<syntaxhighlight lang="xml">
{{Boxcode|code=<syntaxhighlight lang="xml">
<bgimagetable>
<bgimagetable>
<bgimage anim_debug="/app_home/debug.raf"/>
<bgimage anim_debug="/app_home/debug.raf"/>
Line 26: Line 27:
== Raf Debug usb ==
== Raf Debug usb ==
Is also posible to point to a removable device (reported as blocked after firmware 4.30)
Is also posible to point to a removable device (reported as blocked after firmware 4.30)
{{Boxcode|content=<syntaxhighlight lang="xml">
{{Boxcode|code=<syntaxhighlight lang="xml">
<bgimagetable>
<bgimagetable>
<bgimage anim_debug="/dev_usb/coldboot/coldboot.raf"/>
<bgimage anim_debug="/dev_usb/coldboot/coldboot.raf"/>
Line 32: Line 33:
</syntaxhighlight>}}
</syntaxhighlight>}}


== Sources ==
= Sources =
*http://www.ps3-themes.com/forum/ps3-themes/tutorial-how-to-create-an-dynamic-theme-with-rotation-element-inside (step 7 of the manual)
*http://www.ps3-themes.com/forum/ps3-themes/tutorial-how-to-create-an-dynamic-theme-with-rotation-element-inside (step 7 of the manual)
*http://www.ps3hax.net/showthread.php?t=34270&page=4&p=330392&viewfull=1#post330392 (glowball1 message)
*http://www.ps3hax.net/showthread.php?t=34270&page=4&p=330392&viewfull=1#post330392 (glowball1 message)

Latest revision as of 05:58, 30 August 2021

Description[edit | edit source]

Raf debug is an special dynamic PlayStation 3 Theme (P3T) intended to be used in the development of the Rich Appearance Format (RAF) animations

The purpose is to be able to "swap" the raf file in a easy way without the need to rebuild/reinstall the theme for every new version of the raf file

Standard dynamic theme example[edit | edit source]

In a standard dynamic theme the raf animation appears as a single bgimage (background image), identifyed with the tag anim (animation), uses any filename, and the fileextension .jpg (is actually a .raf renamed to .jpg)

The file anim_1.jpg (raf animation) in this example is contained inside the .p3t (is an internal path of the .p3t container but because the file is in the root only appears his filename and his fileextension)

	<bgimagetable>
		<bgimage anim="anim_1.jpg"/>
	</bgimagetable>

Raf Debug variations[edit | edit source]

Raf Debug app_home[edit | edit source]

In raf debug the tag is anim_debug and points to a device path (in this case a virtual device)

The file debug.raf (raf animation) in this example is loaded externally to the .p3t (intended for loading the raf file from a pc connected by network)

	<bgimagetable>
		<bgimage anim_debug="/app_home/debug.raf"/>
	</bgimagetable>

Raf Debug usb[edit | edit source]

Is also posible to point to a removable device (reported as blocked after firmware 4.30)

	<bgimagetable>
		<bgimage anim_debug="/dev_usb/coldboot/coldboot.raf"/>
	</bgimagetable>

Sources[edit | edit source]