XML:TXMP: Difference between revisions
Paradox-01 (talk | contribs) m (can't be mentioned enough ...) |
m (link fix) |
||
(24 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{XML_File_Header | type=TXMP | {{XML_File_Header | prev=TXMB | type=TXMP | next=TxtC | name=Texture Map}} | ||
== | ==General notes== | ||
* The | * The XML on this page was tested with OniSplit '''v0.9.61.0'''. | ||
* Textures' | * Textures' X and Y dimensions are typically powers of two (e.g. 128, 256, 512). Oni and OniSplit will accept textures with dimensions that are not power-of-two, however there can be issues with them (see [[User talk:Neo/Archive5]], search "power"), so it's best to avoid them. | ||
* | * A texture's height and width don't need to be equal, e.g. you can use 128x256. | ||
* The camera can look at 2049 transparent textures at once; one more, and Oni crashes. | |||
==Tag hierarchy== | |||
== | |||
{|class="wikitable" width="100%" | {|class="wikitable" width="100%" | ||
! | ! Standard texture | ||
! | ! Animated texture | ||
! | ! Reflective texture | ||
|- | |- | ||
|valign=top| | |valign=top| | ||
Line 45: | Line 45: | ||
|} | |} | ||
==XML tags== | |||
{| class="wikitable" width="100%" | {| class="wikitable" width="100%" | ||
!width=150px| XML tag | !width=150px| XML tag | ||
!width=120px| | !width=120px| Content type | ||
! | ! Description | ||
|- | |- | ||
|valign=top| <Texture> | |valign=top| <Texture> | ||
Line 66: | Line 57: | ||
|valign=top| <Flags> | |valign=top| <Flags> | ||
|valign=top| flag | |valign=top| flag | ||
| | | | ||
[[Image:problems_with_AdditiveBlend_and_regular_transparency.jpg|thumb|200px|right|Be careful with transparent textures.]] | |||
: None | : None | ||
Line 72: | Line 64: | ||
: DisableUWrap | : DisableUWrap | ||
: DisableVWrap | : DisableVWrap | ||
: Unknown0010 | : Unknown0010 (According to SRC, it was used by Bungie's Importer to determine the Pixel Type) | ||
: AnimUseLocalTime (to export an animated texture | : AnimUseLocalTime (to export an animated texture, extract the .oni file as XML) | ||
: HasEnvMap (don't use directly; used via tag) | |||
: AdditiveBlend (makes black texture parts transparent in-game) | : AdditiveBlend (makes black texture parts transparent in-game, usually set for animated textures) | ||
: AnimBackToBack | : AnimBackToBack | ||
: AnimRandom | : AnimRandom | ||
: SwapBytes (defunct; this is automatically added in v0.9.56.0 and above, so you won't see the flag in an exported) | |||
: AnimIgnoreGlobalTime | : AnimIgnoreGlobalTime | ||
: ShieldEffect | : ShieldEffect (hardcoded usage, reserved for TXMPshield) | ||
: InvisibilityEffect | : InvisibilityEffect (hardcoded usage, reserved for TXMPinvis) | ||
: DaodanEffect | : DaodanEffect (hardcoded usage, reserved for TXMPDAODAN_SHIELD) | ||
|- | |- | ||
|valign=top| <Format> | |valign=top| <Format> | ||
|valign=top| flag | |valign=top| flag | ||
| '''A'''RGB formats are used for reflective textures | | '''A'''RGB formats are used for reflective textures (Alpha Red Green Blue) | ||
ARGB8888 can be used only if you use an updated engine (which comes with AE). ( | ARGB8888 can be used only if you use an updated engine (which comes with the AE). (When Macs were still on the PowerPC processor, Oni's textures needed to have [http://oni.bungie.org/forum/viewtopic.php?pid=29967#p29967 their color channels swapped] or else they would appear color-inverted, but after the move to Intel Macs, both platforms used the same Windows-format textures.) | ||
{|class="wikitable" width="100%" | {|class="wikitable" width="100%" | ||
!colspan=2|XML flags | !colspan=2|XML flags | ||
!colspan=2|<font color="#999999">command line | !colspan=2|<font color="#999999">Options for command line argument "-format:"</font> | ||
|- | |- | ||
| | |Up to OniSplit v0.9.52.0 | ||
| | |For higher versions | ||
|<font color="#999999"> | |<font color="#999999">Up to OniSplit v0.9.52.0</font> | ||
|<font color="#999999"> | |<font color="#999999">For higher versions</font> | ||
|- | |- | ||
|width=25%|RGB888 | |width=25%|RGB888 | ||
Line 127: | Line 119: | ||
|valign=top| <Speed> | |valign=top| <Speed> | ||
|valign=top| integer | |valign=top| integer | ||
| This tag is used if | | This tag is used if the XML file is meant to create an animated texture. In that case you would use multiple <Image> tags. | ||
Let's say Speed is set to 7 — then the animation will advance every 7th frame. | |||
|- | |- | ||
|valign=top| <EnvMap> | |valign=top| <EnvMap> | ||
|valign=top| link | |valign=top| link | ||
| TXMP''name'' ( | | | ||
:TXMP''name'' (without suffix) | |||
This tag is used if | This tag is used if the XML file is meant to create a reflective texture. File suffixes like .tga or .oni are not used in the EnvMap link. | ||
|- | |- | ||
|valign=top| <Image> | |valign=top| <Image> | ||
|valign=top| link | |valign=top| link | ||
| | | | ||
:TXMP''name''.tga | |||
Creating a texture from a JPEG, PNG or DDS is only supported via the command line's "-create:txmp" argument. | |||
: | |||
|} | |} | ||
==Animated textures== | |||
[[Image:Animated_level_texture_with_and_without_AdditiveBlend.jpg|200px|thumb|A sample animated billboard.]] | |||
[[Image:Animated_level_texture.gif|200px|thumb|Original animated texture.]] | |||
It's tiresome to manually create an XML file with a large number of <Image> tags. Skip that work by using [http://mods.oni2.net/node/332 Simple OniSplit GUI]. (Normal TXMP creation is also supported.) | |||
Some advice: | |||
# When using XML to import, OniSplit can only accept TGA images. | |||
# AdditiveBlend should only be used on things that are supposed to glow — otherwise you might think that the object ignores its vertex shading. In the case of the billboard at the right, this was an improvement; now it's a transparent OLED billboard. | |||
# Long animations in high quality (512x512, RGB) produce VERY big .oni files. The source billboard GIF is 1.7MB and the resulting .oni file is 273MB. That's because TXAN doesn't support variable timing like the GIF format, so a smooth animation like this one will have a ton of duplicate frames in it. Even as a ZIP, the .oni file was still 66MB, which is unreasonably large. The billboard could possibly be broken into 3 static and 3 transitional images, and then animated "manually" via a [[Creating a level#Texture exchange|BSL loop]]. The conclusion is to use animated images with lower quality settings and to avoid long periods of duplicate frames which waste space. | |||
[[Creating animated images|HERE]] is some information on how to create an animated texture within various graphics programs. | |||
{{XML}} | {{XML}} |
Latest revision as of 01:20, 20 November 2023
TXMP : Texture Map | ||
---|---|---|
XML
TXMB << Other file types >> TxtC |
General notes
- The XML on this page was tested with OniSplit v0.9.61.0.
- Textures' X and Y dimensions are typically powers of two (e.g. 128, 256, 512). Oni and OniSplit will accept textures with dimensions that are not power-of-two, however there can be issues with them (see User talk:Neo/Archive5, search "power"), so it's best to avoid them.
- A texture's height and width don't need to be equal, e.g. you can use 128x256.
- The camera can look at 2049 transparent textures at once; one more, and Oni crashes.
Tag hierarchy
Standard texture | Animated texture | Reflective texture |
---|---|---|
<?xml version="1.0" encoding="utf-8"?> <Oni> <Texture> <Flags>...</Flags> <Format>...</Format> <Image>...</Image> </Texture> </Oni> |
<?xml version="1.0" encoding="utf-8"?> <Oni> <Texture> <Flags>...</Flags> <Format>...</Format> <Speed>...</Speed> <Image>...</Image> <Image>...</Image> </Texture> </Oni> |
<?xml version="1.0" encoding="utf-8"?> <Oni> <Texture> <Flags>...</Flags> <Format>...</Format> <EnvMap>...</EnvMap> <Image>...</Image> </Texture> </Oni> |
XML tags
XML tag | Content type | Description | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
<Texture> | - | |||||||||||||||||||||||||||||||||
<Flags> | flag |
| ||||||||||||||||||||||||||||||||
<Format> | flag | ARGB formats are used for reflective textures (Alpha Red Green Blue)
ARGB8888 can be used only if you use an updated engine (which comes with the AE). (When Macs were still on the PowerPC processor, Oni's textures needed to have their color channels swapped or else they would appear color-inverted, but after the move to Intel Macs, both platforms used the same Windows-format textures.)
| ||||||||||||||||||||||||||||||||
<Speed> | integer | This tag is used if the XML file is meant to create an animated texture. In that case you would use multiple <Image> tags.
Let's say Speed is set to 7 — then the animation will advance every 7th frame. | ||||||||||||||||||||||||||||||||
<EnvMap> | link |
This tag is used if the XML file is meant to create a reflective texture. File suffixes like .tga or .oni are not used in the EnvMap link. | ||||||||||||||||||||||||||||||||
<Image> | link |
Creating a texture from a JPEG, PNG or DDS is only supported via the command line's "-create:txmp" argument. |
Animated textures
It's tiresome to manually create an XML file with a large number of <Image> tags. Skip that work by using Simple OniSplit GUI. (Normal TXMP creation is also supported.)
Some advice:
- When using XML to import, OniSplit can only accept TGA images.
- AdditiveBlend should only be used on things that are supposed to glow — otherwise you might think that the object ignores its vertex shading. In the case of the billboard at the right, this was an improvement; now it's a transparent OLED billboard.
- Long animations in high quality (512x512, RGB) produce VERY big .oni files. The source billboard GIF is 1.7MB and the resulting .oni file is 273MB. That's because TXAN doesn't support variable timing like the GIF format, so a smooth animation like this one will have a ton of duplicate frames in it. Even as a ZIP, the .oni file was still 66MB, which is unreasonably large. The billboard could possibly be broken into 3 static and 3 transitional images, and then animated "manually" via a BSL loop. The conclusion is to use animated images with lower quality settings and to avoid long periods of duplicate frames which waste space.
HERE is some information on how to create an animated texture within various graphics programs.