TexturePacker: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
No edit summary
Line 22: Line 22:
<pre>TexturePacker -input skin.name\themes\Blue -output skin.name\media\Blue.xbt</pre>
<pre>TexturePacker -input skin.name\themes\Blue -output skin.name\media\Blue.xbt</pre>


'''Note:''' When using an XBT file in your skin, your file paths will '''not''' be case sensitive, even if your skin resides on a case sensitive file system!
{{Note|When using an XBT file in your skin, your file paths will '''not''' be case sensitive, even if your skin resides on a case sensitive file system!}}


=== Texturepacker build bat ===
=== Texturepacker build bat ===

Revision as of 19:38, 30 January 2014

Home icon grey.png   ▶ Development ▶ Add-on development ▶ Skinning ▶ TexturePacker

XBMC uses a tool named TexturePacker to compile all images used in a skin into a single file. The benefit of it is that images inside the Textures.xbt will load faster in the skin. This is done by converting all images into a format that take less processing by XBMC when they need to be rendered onto the screen.

A common misconception is that TexturPacker will just compress the images into a single file, this if far from the truth, so don't be surprised if the Textures.xbt file is much larger than to total size of all the individual images.

How To Get It

If you are using Windows, you can simply download an up-to-date version of TexturePacker from the XBMC GIT repo. It is available here: TexturePacker.exe

On other platforms, you will have to compile TexturePacker yourself. This is done by compiling XBMC and when the compile is finished, you can find TexturePacker inside the ../tools/TexturePacker directory.

Missing Dll's error

Grab the Dll's from Testurepacker or for newer SDL dll (smaller Texture.xbt see SDL.dll keeping them in same directory as Texturepacker executable.

Usage

Since TexturePacker is a command-line tool, you will need to open a dos box/terminal/console in order to run it. The general usage is:

TexturePacker -input skin.name\media -output skin.name\media\Textures.xbt

Optionally, you can run TexturePacker with the -dupecheck option. This is useful if you have included the same image multiple times in your media folder. For example, if your skin includes a lot of studio logos, most likely a lot of them are included multiple times but with a slightly different filename. The '-dupecheck' option will make sure each unique image is included only once in the Textures.xbt file and thus keeping the size of it as small as possible.

If your skins includes themes you should also run TexturePacker on your theme folders:

TexturePacker -input skin.name\themes\Blue -output skin.name\media\Blue.xbt

Note: When using an XBT file in your skin, your file paths will not be case sensitive, even if your skin resides on a case sensitive file system!

Texturepacker build bat

Create a Texturepacker.bat with the contents below, inside the skin.name directory along with all the texturepacker.exe and dll's, a double click on the bat file does all the work for you.

@echo off
ECHO ----------------------------------------
echo Creating excludes

Echo .svn>exclude.txt
Echo .git>exclude.txt
Echo Thumbs.db>>exclude.txt
Echo Desktop.ini>>exclude.txt
Echo dsstdfx.bin>>exclude.txt
Echo build.bat>>exclude.txt
Echo \skin.confluence\media\>>exclude.txt
Echo exclude.txt>>exclude.txt

ECHO ----------------------------------------
ECHO Creating XBT File...

START /B /WAIT TexturePacker -dupecheck -input media\ -output media\Textures.xbt

del exclude.txt

echo Textures.xbt build complete - Scroll Up to check for errors.
pause