Endless Paradigm

Full Version: [PSP] Rcomage v1.1.1 - new RCO manipulation tool
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
Hi

Understand why I was when I put an animation in my system_plugin_fg.rco my psp crash : (
Here is the xml attached Emptyone
Xickam Wrote:Hi

Understand why I was when I put an animation in my system_plugin_fg.rco my psp crash : (
Here is the xml attached Emptyone

i did a quick view,. and i think "Recolour" is't an anim  command,. ;)
"Recolour" should be fine (I renamed "ColourChange" to "Recolour") and unknown tags should generate a warning by rcomage.
Rcomage doesn't guarantee that compiled RCOs will be accepted by the PSP unfortunately.

Looking at your XML, everything actually looks fine.  If you give me the compiled RCO, I can take a look, otherwise, I'd probably start by trying to remove the two Plane objects you added and see if it works alright.
Here the rco compiled
thanks for your help Gongxi
The RCO you supplied does appear to work perfectly fine on my 5.00 PSP.
I did notice this though:

XML Code
				<Recolour object="object:tex_mini_icon_inbar" duration="500" unknown1="0x0" red="1" green="1" blue="1" alpha="1" />
				<Delay time="500" />
				<Recolour object="object:tex_mini_icon_inbar" duration="500" unknown1="0x0" red="1" green="1" blue="1" alpha="0.3" />

You actually named the objects without the "tex_" prefix (yeah, I know rcomage doesn't have enough error checking at the moment).
See if that helps.

I had a problem with the plain text feature. I was making custom text entries in topmenu_plugin.rco - long story, but my problem was that I had to save everyting in unicode (It takes a while when you have to save 50+ new text entries uusing notepad and metapad). I had originally tried to use DOS and ANSI text files. When you would open the RCO I made using ANSI or DOS text encoding in RCOEditor, it would show it as as having ?????e - (???? then some random letter, usually). Could you add support for other formats or explain how to fix this.
Yo Zinga Burga, What is meant by "delay time" in the XML? I know that "duration" is how long the event will last but "delay" after the "duration" kinda confuses me.
yammata684 Wrote:I had a problem with the plain text feature. I was making custom text entries in topmenu_plugin.rco - long story, but my problem was that I had to save everyting in unicode (It takes a while when you have to save 50+ new text entries uusing notepad and metapad). I had originally tried to use DOS and ANSI text files. When you would open the RCO I made using ANSI or DOS text encoding in RCOEditor, it would show it as as having ?????e - (???? then some random letter, usually). Could you add support for other formats or explain how to fix this.
Are the text data in XML or TXT files after dumping?  If XML, did you update the "encoding" directive in the XML?  Also note that Rcomage sticks UTF-8/UTF-16 signatures for these files, so you may have to remove them if you're using ANSI encoding.
Otherwise, libxml2/iconv does the character set encoding, so I imagine they work fine >_>

WoobiE Wrote:Yo Zinga Burga, What is meant by "delay time" in the XML? I know that "duration" is how long the event will last but "delay" after the "duration" kinda confuses me.
The PSP executes instructions in an <Animation> sequence in parallel.  That is, say you had something like:
- Move, duration=100ms
- Resize, duration=100ms

Both the above instructions would be executed at the same time for the same duration of time.
This works until the PSP hits a <Delay> instruction, where it will pause execution until the delay time is up.  For example:
- Move, duration=100ms
- Delay, time=100ms
- Resize, duration=100ms

The move will be executed, then straight after it finishes animating, the resize will be executed.

Hope that helps.
Oh thanks man. That explains everything about delays and durations. I also would like to appologise for calling you "Zing Burg", You proper name in Zinga Burga and I was just a bit frustrated at the time and I typed in your name wrong.
No that's perfectly fine :P
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
Reference URL's