This is the bug/patch tracker for Rockbox. Click here for more information.
Quick links: Bugs · Patches · Rockbox frontpage
FS#7289 - Allow upto 512 images to be used in WPS
Attached to Project:
Rockbox
Opened by Darren Turland (kahuna_999) - Monday, 11 June 2007, 14:28 GMT+2
Last edited by Dave Chapman (linuxstb) - Monday, 24 March 2008, 01:09 GMT+2
Opened by Darren Turland (kahuna_999) - Monday, 11 June 2007, 14:28 GMT+2
Last edited by Dave Chapman (linuxstb) - Monday, 24 March 2008, 01:09 GMT+2
|
DetailsThis patch adds the ability to display part of a loaded bitmap in the wps.
It still only allows the maximum 52 bitmaps to be loaded but adds a new tag %xp to display upto 512 bitmap parts onto the screen. This partners the existing %xd tag. Similar to patch There are two variations on the command. The first will use the x,y coordinates from the corresponding %xl tag, the second allows you to specify them. %xp<bitmap load id>|srcx|srcy|w|h| %xp<bitmap load id>|srcx|srcy|w|h|x|y| The %xp tag can be used in conditions. I hope the artists out there can make use of the additional display capabilities and come up with some fancy graphical wps’s Initial version synced to svn13614 |
This task depends upon
Closed by Dave Chapman (linuxstb)
Monday, 24 March 2008, 01:09 GMT+2
Reason for closing: Out of Date
Additional comments about closing: Partial bitmap display has now been implemented in SVN with "bitmap strips".
Monday, 24 March 2008, 01:09 GMT+2
Reason for closing: Out of Date
Additional comments about closing: Partial bitmap display has now been implemented in SVN with "bitmap strips".
Now have the following two new tags
%xp<bitmap load id>|srcx|srcy|w|h|
%xx<bitmap load id>|srcx|srcy|w|h|x|y|
Back to a single overloaded tag, but with new parm seperators...
%xp<bitmap load id>:srcx:srcy:w:h
%xp<bitmap load id>:srcx:srcy:w:h:x:y
This makes its use in conditionals _much_ easier to use and read.
However, I don't see why you had to change the separators from the de facto WPS standard pipe (|).