Post Reply 
[Tutorial] Animate Rco´s
RCOMage
Author Message
zeusfriends
Neophitic Presence

Posts: 4.3967
Threads: 0
Joined: 4th Jan 2011
Reputation: 0
E-Pigs: 0.6890
Offline
Post: #35
RE: [Tutorial] Animate Rco´s
well! ... according to some analysis and some work and search i reached the following about RCO as I'm so interested to unlock the secret of UMD videos and i see interesting things

1- the name structure of the XML
here's an example:

<?xml ver='1.0' encoding='UTF-8'?>
<resource id='SelectMenus' ver='0.10' />
    <script id='main' src='main.jsx' type='Javascript/jsx'/>
    <texturetable>
        <tex id='texPlay' src='texture/texPlay.png' type='texture/png' />
        <tex id='texAudio' src='texture/texAudio.png' type='texture/png' />
        <tex id='texSubs' src='texture/texSubs.png' type='texture/png' />
    </texturetable>
    <soundtable>
        <snd id='sndAct' src='sound/sndAct.vag' type='sound/vag' />
    </soundtable>
    <animtable>
        <anim id='anim1'>
            <time wait = '100' />
            <fade target='texture:/texPlay' />
            <time wait = '500' />
       </anim>
      <pagetable>
         <page id='page1'>
             <button id='btn1'
                 x='100' y='200' scale_x='1' scale_y='1' scale_z='0'
                 src='texture:/texPlay'
                 r='1' g='1' b='1' a='0'
                 onCanel='main:/Canel'
                 ....... etc />
     </pagetable>
</resource>

so wee introduce the concept of widget inside the could be 'widgettable'
i have no information about Plane and concept yet but working on that ...

i was able to decrypt and even make a C software that make a reverse nmonics of the main.vsmx and manually i was able to figure out somehow what is RCO File and so function

for example:
resource.animtable.anim1.root.children.animColor(1,1,1,1,timer) or
resource.animtable['anim1'].root.children.animColor(1,1,1,1,timer) ... both are the same
and relating colors with the parameters you find that it's r,g,b,a and a timer (in milisecond)
that would make a visual effect as the color is changed to the new paramters (older paramters already saved in player status) in a timer milisecond...

for animtable objects
=================
animColor(r,g,b,a,timer);
animPos(x, y, z, timer);
animScale(scale_x, scale_y, scale_z, timer);
play(page);

for pagetable objects
=================
array = getPos();
array = getScale();
(r,g,b,a) = getColor();
(width, height) = getSize();
setFocus();
setPos(x,y,z,timer);
setScale(scale_x,scale_y, scale_z);
animColor(r,g,b,a,timer);
open();
activate();
open().activate();
close();

that was a direct data from decoding some javascript (VSMX files) which i would wish to help to
1- understand how the authoring of a software that can author the RCO from scratch not only modify it! ... and the hard part is done by me as i can make a tool to encrypt the js files into jsx (already exists from PS3 in the file raf_script.exe) ...

2- make an pc emulation for the PSP interactive system and i have the exact format of the PlayLists [don't ask how i got it;)] ... so with the resource + playlist an emulation could be done (since it's Java based and xml it could be done even as a web base emulator]

so any suggestions or ideas...
25/03/2011 07:41 AM
Find all posts by this user Quote this message in a reply
Post Reply 


Messages In This Thread
[Tutorial] Animate Rco´s - gsmoke - 16/12/2009, 06:53 AM
RE: [Tutorial] Animate Rco´s - Vegetano1 - 16/12/2009, 09:53 AM
RE: [Tutorial] Animate Rco´s - gsmoke - 16/12/2009, 12:26 PM
RE: [Tutorial] Animate Rco´s - WoobiE - 16/12/2009, 03:54 PM
RE: [Tutorial] Animate Rco´s - gsmoke - 16/12/2009, 04:05 PM
RE: [Tutorial] Animate Rco´s - Cirehpsa - 16/12/2009, 04:02 PM
RE: [Tutorial] Animate Rco´s - WoobiE - 16/12/2009, 05:47 PM
RE: [Tutorial] Animate Rco´s - gsmoke - 17/12/2009, 05:41 AM
RE: [Tutorial] Animate Rco´s - pinkee - 28/12/2009, 10:16 PM
RE: [Tutorial] Animate Rco´s - WoobiE - 19/01/2010, 03:05 PM
RE: [Tutorial] Animate Rco´s - SchmilK - 19/01/2010, 07:23 AM
RE: [Tutorial] Animate Rco´s - WoobiE - 19/01/2010, 04:39 PM
RE: [Tutorial] Animate Rco´s - WoobiE - 19/01/2010, 10:47 PM
RE: [Tutorial] Animate Rco´s - WoobiE - 20/01/2010, 06:51 PM
RE: [Tutorial] Animate Rco´s - Mr. Shizzy - 20/01/2010, 08:08 PM
RE: [Tutorial] Animate Rco´s - WoobiE - 20/01/2010, 08:12 PM
RE: [Tutorial] Animate Rco´s - Mr. Shizzy - 20/01/2010, 08:23 PM
RE: [Tutorial] Animate Rco´s - Mr. Shizzy - 20/01/2010, 08:39 PM
RE: [Tutorial] Animate Rco´s - WoobiE - 20/01/2010, 09:01 PM
RE: [Tutorial] Animate Rco´s - Mr. Shizzy - 20/01/2010, 09:09 PM
RE: [Tutorial] Animate Rco´s - zeusfriends - 25/03/2011 07:41 AM
RE: [Tutorial] Animate Rco´s - eznoir - 29/03/2011, 07:57 AM
RE: [Tutorial] Animate Rco´s - Mr. Shizzy - 29/03/2011, 09:33 AM
RE: [Tutorial] Animate Rco´s - eznoir - 29/03/2011, 02:13 PM
RE: [Tutorial] Animate Rco´s - Mr. Shizzy - 29/03/2011, 03:17 PM
RE: [Tutorial] Animate Rco´s - eznoir - 29/03/2011, 06:36 PM
RE: [Tutorial] Animate Rco´s - Mr. Shizzy - 29/03/2011, 09:02 PM
RE: [Tutorial] Animate Rco´s - eznoir - 30/03/2011, 03:58 PM
RE: [Tutorial] Animate Rco´s - Mr. Shizzy - 30/03/2011, 09:06 PM
RE: [Tutorial] Animate Rco´s - eznoir - 31/03/2011, 04:54 AM
RE: [Tutorial] Animate Rco´s - Mr. Shizzy - 31/03/2011, 05:36 AM
RE: [Tutorial] Animate Rco´s - eznoir - 02/04/2011, 04:26 PM
RE: [Tutorial] Animate Rco´s - eznoir - 30/03/2011, 05:58 PM
RE: [Tutorial] Animate Rco´s - eznoir - 30/03/2011, 07:12 PM
RE: [Tutorial] Animate Rco´s - eznoir - 30/03/2011, 08:52 PM
RE: [Tutorial] Animate Rco´s - stickhand - 15/04/2011, 10:27 PM
RE: [Tutorial] Animate Rco´s - stickhand - 15/04/2011, 11:52 PM
RE: [Tutorial] Animate Rco´s - stickhand - 16/04/2011, 04:03 AM
RE: [Tutorial] Animate Rco´s - stickhand - 16/04/2011, 12:06 PM

Forum Jump:


User(s) browsing this thread: 1 Guest(s)

 Quick Theme: