GimConv: Difference between revisions

From PS3 Developer wiki
Jump to navigation Jump to search
m (→‎Description: "gim viewer" note)
(all GIM image formats inside "explore_plugin_full.rco" identifyed... only 2 formats, not bad for keeping a record of them)
Line 377: Line 377:
The label names proposed here doesnt makes sense at this point, feel free to add more groups of settings with any label name following this same method, also add some info about how many images uses this format (if posible)
The label names proposed here doesnt makes sense at this point, feel free to add more groups of settings with any label name following this same method, also add some info about how many images uses this format (if posible)


*Inside [[explore_plugin]]_full.rco from firmware 4.70 there are 245 images, 201 of them (included the new icon tex_psn.gim) has been made by using this 3 options:
*Inside [[explore_plugin]]_full.rco from firmware 4.70 there are 245 images, 201 of them (included the new icon tex_psn.gim) has been made by using this options:
{{Boxcode|content=<syntaxhighlight lang="c">
{{Boxcode|content=<syntaxhighlight lang="c">
option -ps3osdnew {
option -ps3bpp32 {
format_style = psp
format_style = psp
format_endian = big
format_endian = big
image_format = rgba8888
pixel_order = normal
pixel_order = normal
pixel_channel = default
pixel_alpha = default
}
}
</syntaxhighlight>}}
</syntaxhighlight>}}


*Inside [[explore_plugin]]_full.rco from firmware 4.70 there are 245 images, 30 of them has been made by using this 4 options:
*Inside [[explore_plugin]]_full.rco from firmware 4.70 there are 245 images, 30 of them has been made by using this options:
{{Boxcode|content=<syntaxhighlight lang="c">
{{Boxcode|content=<syntaxhighlight lang="c">
option -ps3osdold {
option -ps3osdold {
format_style = psp
format_style = psp
format_endian = big
format_endian = big
image_format = rgba8888
pixel_order = normal
pixel_order = normal
pixel_channel = default
pixel_alpha = default
update_fileinfo = on
update_fileinfo = on
}
</syntaxhighlight>}}
*Inside [[explore_plugin]]_full.rco from firmware 4.70 there are 245 images, 14 of them has been made by using this options:
{{Boxcode|content=<syntaxhighlight lang="c">
option -ps3dxt5 {
format_style = psp
format_endian = big
image_format = dxt5
pixel_channel = default
pixel_alpha = default
}
}
</syntaxhighlight>}}
</syntaxhighlight>}}
Line 401: Line 418:
format_style = psp
format_style = psp
format_endian = big
format_endian = big
image_format = ?
pixel_order = ?
pixel_channel = ?
pixel_alpha = ?
}
}
</syntaxhighlight>}}
</syntaxhighlight>}}


=How to identify GIM settings=
=How to identify GIM settings=
*To identify the settings that was used to build a GIM file:
 
*GIM--->GIM method (prefered)
**Use gimconv with .gim files as input and output (this preserves dxt pixel info, because dxt images doesnt suffers a conversion)
{{Keyboard|content='''gimconv.exe test.gim -o test.gim --format_style psp --format_endian big --image_format dxt5 --pixel_channel default --pixel_alpha default'''}}
 
*GIM--->PNG--->GIM method (fails when there is involved a DXT conversion because DXT conversions are lossy, works fine for rgba**** image formats):
**Use rcomagegui to make an extraction of the contents '''without''' conversion of images (this way the GIM are extracted as GIM)
**Use rcomagegui to make an extraction of the contents '''without''' conversion of images (this way the GIM are extracted as GIM)
**Use rcomagegui to make another extraction of the contents '''with''' conversion of images (this way the GIM are extracted as PNG)
**Use rcomagegui to make another extraction of the contents '''with''' conversion of images (this way the GIM are extracted as PNG)
Line 417: Line 443:


=GIM formats used in PS3=
=GIM formats used in PS3=
Has been said [http://endlessparadigm.com/forum/showthread.php?tid=19501&pid=350611#pid350611 here] that PS3 uses at least 2 types of GIM images, both included inside rco's, and in some cases both types in the same rco
PS3 uses at least 2 types of GIM images, both included inside rco's, and in some cases both types in the same rco


When an .RCO contains 2 or more images that was created with different .GIM settings... it means is not posible to compile the .RCO with rcomage by using .PNG images as source (because rcomage.exe sends the GIM settings to gimconv.exe to make the PNG--->GIM image conversion and this settings are applyed to all PNG images)
When an .RCO contains 2 or more images that was created with different .GIM settings... it means is not posible to compile the .RCO with rcomage by using .PNG images as source (because rcomage.exe sends the GIM settings to gimconv.exe to make the PNG--->GIM image conversion and this settings are applyed to all PNG images)
Line 429: Line 455:
! image group or rco !! gim settings !! notes
! image group or rco !! gim settings !! notes
|-
|-
| explore_plugin_full.rco (and other explore_plugin_***.rco ?) || --format_style psp --format_endian big --pixel_order normal || candidate to "standard" gim format for main xmb images
| '''ps3bpp32''' || --format_style psp --format_endian big --pixel_order normal || Most used GIM format inside .rco's
|-
|-
| xmb_plugin_normal.rco (and other xmb_***.rco ?) || ? || uses some variant of dxt5 ?
| '''ps3dxt5''' || '''--format_style psp --format_endian big --image_format dxt5''' || Second most used GIM format inside rco's
|}
|}


Line 438: Line 464:
**201 was created by using options: ''--format_style psp --format_endian big --pixel_order normal'' (exact match of gims after rebuilding gim--->png--->gim)
**201 was created by using options: ''--format_style psp --format_endian big --pixel_order normal'' (exact match of gims after rebuilding gim--->png--->gim)
**030 was created by using options: ''--format_style psp --format_endian big --pixel_order normal --update_fileinfo on'' (exact match of gims after removing footer from originals and rebuilding gim--->png--->gim)
**030 was created by using options: ''--format_style psp --format_endian big --pixel_order normal --update_fileinfo on'' (exact match of gims after removing footer from originals and rebuilding gim--->png--->gim)
**014 not identifyed yet (are variants of dxt5, but doesnt gives an exact match after rebuilding gim--->png--->gim so im not 100% sure i have the exact gim settings--[[User:Sandungas|Sandungas]] ([[User talk:Sandungas|talk]]) 06:45, 12 March 2015 (EDT))
**014 was created by using options: ''--format_style psp --format_endian big --image_format dxt5'' (exact match of gims after rebuilding gim--->gim)
 
***item_tex_trophy.gim, trophy_tex_grade_bronze.gim, trophy_tex_grade_gold.gim, trophy_tex_grade_hidden.gim, trophy_tex_grade_platinum.gim, trophy_tex_grade_silver.gim, item_tex_CardBallon.gim, item_tex_Profile_Game.gim, item_tex_Profile_Highlight.gim, item_tex_Profile_Onlines.gim, tex_indi_Me.gim, tex_sb_base.gim, tex_sb_base_s.gim, tex_sb_slider.gim
--- trophy related ---
item_tex_trophy.gim
trophy_tex_grade_bronze.gim
trophy_tex_grade_gold.gim
trophy_tex_grade_hidden.gim
trophy_tex_grade_platinum.gim
trophy_tex_grade_silver.gim
--- low quality ? ---
item_tex_CardBallon.gim
item_tex_Profile_Game.gim
item_tex_Profile_Highlight.gim
item_tex_Profile_Onlines.gim
tex_indi_Me.gim
tex_sb_base.gim
tex_sb_base_s.gim
tex_sb_slider.gim


This is the footer of item_tex_cam_icon.gim (was added to the gim by enabling '''update_fileinfo''' option, variable size)
This is the footer of item_tex_cam_icon.gim (was added to the gim by enabling '''update_fileinfo''' option, variable size)

Revision as of 13:33, 17 March 2015

Description

GimConv v1.20h was released with p3tcompiler v2.00 as part of the PS3 Custom Theme Toolbox

Is the responsible of the .GIM image conversions that are used inside Resource Container (RCO) files, PlayStation 3 Theme (P3T) files, etc...

Usage

The command line help of GimConv.exe displays a very limited list of options with an small explain, some are generic for the tool usage, and others works as lables that loads one option or a group of options from the config file (GimConv.cfg)

Type This
'''C:\PS3_Custom_Theme_v200\GimConv>GimConv.exe'''
gimconv ver 1.20h --- generic picture converter
 Copyright (C) 2006 Sony Computer Entertainment Inc.
  All Rights Reserved.

usage:
        gimconv <input files> [options]

options:
        -interact       input additional options
        -pictures       merge files as pictures
        -frames         merge files as frames
        -levels         merge files as levels
        -prompt         prompt always
        -warning        prompt on warning
        -error          prompt on error
        -viewer         start gimview.exe when process ends
        -o <filename>   specify output file name
        -s <w,h>        resize image data
        -S              output text format
        -P              resize image data to a power of two
        -N              output in normal pixel storage format
        -F              output in faster pixel storage format
        -R              re-convert ( don't swap RGBA <-> ABGR )

GimConv.exe

By specifying an option, or a group of options from command line by his labels (using the names that appears in the help screen, or using the names that appears inside the GimConv.cfg file)

Type This
'''gimconv.exe test.png -o test.gim --DXT'''
  • Note the DXT label at the bottom of GimConv.cfg is composed by 3 options:
Code Sample

By specifying the options strictly from command line (using the names that appears inside the GimConv.cfg file). This is the most accurate way to specify options and to have full controll of all the gim settings

Type This
'''gimconv.exe test.png -o test.gim --format_style psp --format_endian big --pixel_order normal'''
  • Note the 3 options used in the example are overriding the default settings at top of GimConv.cfg:
Code Sample

By sending .gim settings from rcomage.exe ---to---> gimconv.exe when compiling the .rco (see the "compile" help in rcomage page). There are 2 options in rcomage specific for this task, named: --gimconv-cmd and --gimconv-flags

Type This
'''rcomage.exe compile test.xml test.rco --gimconv-cmd ".\gimconv\gimconv.exe" --gimconv-flags "--format_style psp --format_endian big --pixel_order normal"'''

GimConv.cfg

This is the configuration file that defines the help screen, and contains the default values and all available options. The next example is the configuration file provided by sony as part of the PS3 Custom Theme Toolbox

Code Sample

Note there are some modifications made officially by sony at a later version because GimComv was initially made for PSP (those initial GimComv versions compatibles with "PSP only" probably didnt had this PS3 specific settings), but this public release of GimConv was released as part of a toolkit to build PS3 themes so it has some settings specific for PS3

This group at top on the config file are default settings (for PS3) that overrides other default settings of an older version of GimComv (for PSP). They are overwriting default values because the same option is specifyed before in the file, so the last one overrrides the previous one with the same name (and also was added a new option named extend_edge that should be PS3 specific)

Code Sample

This other group seems to be options for GIM formats used in PS3

Code Sample

Custom configurations

The configuration file allows to modify the help screen of the command line by adding custom labels, or by removing useless options to make room for more custom labels, this labels can be composed of groups of options, there is no need at all to do this because doesnt really enables any new funcionallity as you can specify all the options you need one by one from command line included the hability to override default values, but is good to keep a record of the most common used formats for a console by using custom labels with intuitive names that defines the GIM format

The config file supplyed by Rcomage contains some custom options for the formats that are used in PSP, some changes in the default settings that was common for PSP (included a size limit that breaks compatibility with PS3), and a group of options was added for PS3 (labeled -ps3) but this group seems to use wrong options. For more info about the modifications made in the config file supplyed with rcomage see the differences in the Discussion page

This wiki section proposes new groups of options with new label names (to be able to use a new modifyed config file without breaking the compatibility of other tools that uses rcomage as a dependency)

The label names proposed here doesnt makes sense at this point, feel free to add more groups of settings with any label name following this same method, also add some info about how many images uses this format (if posible)

  • Inside explore_plugin_full.rco from firmware 4.70 there are 245 images, 201 of them (included the new icon tex_psn.gim) has been made by using this options:
Code Sample
  • Inside explore_plugin_full.rco from firmware 4.70 there are 245 images, 30 of them has been made by using this options:
Code Sample
  • Inside explore_plugin_full.rco from firmware 4.70 there are 245 images, 14 of them has been made by using this options:
Code Sample
  • Any other (this 2 options seems to be common for all ps3 4.70 rco's)
Code Sample

How to identify GIM settings

  • GIM--->GIM method (prefered)
    • Use gimconv with .gim files as input and output (this preserves dxt pixel info, because dxt images doesnt suffers a conversion)
Type This
'''gimconv.exe test.gim -o test.gim --format_style psp --format_endian big --image_format dxt5 --pixel_channel default --pixel_alpha default'''
  • GIM--->PNG--->GIM method (fails when there is involved a DXT conversion because DXT conversions are lossy, works fine for rgba**** image formats):
    • Use rcomagegui to make an extraction of the contents without conversion of images (this way the GIM are extracted as GIM)
    • Use rcomagegui to make another extraction of the contents with conversion of images (this way the GIM are extracted as PNG)
    • Use gimconv to convert a PNG ---to---> GIM by the old method of test-error by trying some of the options availables that appears in gimonv.cfg
    • Use a hexeditor to compare the original GIM extracted in step 1 with the rebuilt GIM from your test, there is no need to make accurate comparisons, just an overview of the first 0x80 bytes of the header, and how the pixel data is ordered starting at offset 0x80
    • When the header and pixel data seems similar make a hash comparison, original GIM and rebuild GIM should be exactly the same hash (is posible to create a GIM exactly like the original)
  • By using GimConv.exe with the -S option
    • This generates a .GIS file (is a text based file that contains info about the .GIM file, included all the pixel data)
Type This
'''GimConv\GimConv.exe -S test.gim -o test.gis'''

GIM formats used in PS3

PS3 uses at least 2 types of GIM images, both included inside rco's, and in some cases both types in the same rco

When an .RCO contains 2 or more images that was created with different .GIM settings... it means is not posible to compile the .RCO with rcomage by using .PNG images as source (because rcomage.exe sends the GIM settings to gimconv.exe to make the PNG--->GIM image conversion and this settings are applyed to all PNG images)

In other words, the only way to compile this RCO's is in 2 steps. In the first step is needed to make the different .GIM conversions with gimconv.exe (and all the other conversions in case exists .VAG audio a WAV2VAG conversion or a JS2VSMX for the .VSMX script). In the second step is needed to compile the .RCO with rcomage.exe by using the .GIM's .VAG's and .VSMX's as sources without any kind of file conversions

Also means we have a big problem to document in wiki wich settings are used for each image (there are thousands of images so initially seems not posible), but probably they follows a rule, so the solution is to deduce or imagine the real reason of why the ps3 is using different gim formats inside the .rco's

image group or rco gim settings notes
ps3bpp32 --format_style psp --format_endian big --pixel_order normal Most used GIM format inside .rco's
ps3dxt5 --format_style psp --format_endian big --image_format dxt5 Second most used GIM format inside rco's

Notes about explore_plugin_full.rco from firmware 4.70:

  • There are 245 images
    • 201 was created by using options: --format_style psp --format_endian big --pixel_order normal (exact match of gims after rebuilding gim--->png--->gim)
    • 030 was created by using options: --format_style psp --format_endian big --pixel_order normal --update_fileinfo on (exact match of gims after removing footer from originals and rebuilding gim--->png--->gim)
    • 014 was created by using options: --format_style psp --format_endian big --image_format dxt5 (exact match of gims after rebuilding gim--->gim)
      • item_tex_trophy.gim, trophy_tex_grade_bronze.gim, trophy_tex_grade_gold.gim, trophy_tex_grade_hidden.gim, trophy_tex_grade_platinum.gim, trophy_tex_grade_silver.gim, item_tex_CardBallon.gim, item_tex_Profile_Game.gim, item_tex_Profile_Highlight.gim, item_tex_Profile_Onlines.gim, tex_indi_Me.gim, tex_sb_base.gim, tex_sb_base_s.gim, tex_sb_slider.gim

This is the footer of item_tex_cam_icon.gim (was added to the gim by enabling update_fileinfo option, variable size)

Offset(h) 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F

00006AD0  00 FF 00 00 00 00 00 4C 00 00 00 4C 00 00 00 10  .ÿ.....L...L....
00006AE0  53 70 61 6E 61 2E 74 67 61 00 73 30 30 30 39 33  Spana.tga.s00093
00006AF0  37 00 53 75 6E 20 41 70 72 20 32 33 20 31 38 3A  7.Sun Apr 23 18:
00006B00  33 39 3A 34 38 20 32 30 30 36 00 47 69 6D 43 6F  39:48 2006.GimCo
00006B10  6E 76 20 31 2E 32 30 65 00 00 00 00              nv 1.20e....

And this is the footer of a rebuild gim where the footer was added in the rebuild process

Offset(h) 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F

00002300  00 FF 00 00 00 00 00 54 00 00 00 54 00 00 00 10  .ÿ.....T...T....
00002310  74 65 78 5F 70 73 6E 2E 70 6E 67 00 41 64 6D 69  tex_psn.png.Admi
00002320  6E 69 73 74 72 61 64 6F 72 00 53 61 74 20 4D 61  nistrador.Sat Ma
00002330  72 20 30 37 20 30 31 3A 33 32 3A 30 31 20 32 30  r 07 01:32:01 20
00002340  31 35 00 47 69 6D 43 6F 6E 76 20 31 2E 32 30 68  15.GimConv 1.20h
00002350  00 00 00 00                                      ....

It seems the reason why this images are slighty different is because are ancient (has not been updated lot of firmwares ago, and uses the format from the first firmwares)

As interesting details, in the footer of original files it can be seen the name and format of the original image (.tga), the windows user name, timestamp (from 2006), an the version of GimConv (an old 1.20e)

The 00 00 00 4C (repeated 2 times) at top of the footer in the original gim example is the size of the whole footer (usefull to make the calculation to remove the footer and update the filesize at gim header)

Speculation

Initially... it seems the gim format depends of who is the responsible of displaying them (as an example, in the link above it seems the images reported as "rare" belongs to "tex_indi_***" (are textures for the "indicator", is the information bar at top-right of xmb, are the tiny icons that appears eventually when you receive a message, etc..)

Note is posible to group them based in how his names starts, all "tex_indi" belongs to indicator so should share the same gim format, even if there are more "tex_indi" inside other rco's, doesnt matters in wich .rco are located what matters is his purpose is the same (to be displayed inside the indicator) This assumption seems wrong