Property Element

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search

Overview[edit | edit source]

Property Elements are a subgroup of the elements in the Oblivion XML schema, always found as children of Object Elements. They define the properties of their parent element - position on the screen, color, texture, etc. In this sense they are similar to traditional xml attributes.

A Note on the name - Bethesda apparently referred to these elements as "Traits" internally. Likewise, they are called "traits" in the OBSE documentation and several script functions. This makes sense given their purpose - in XML "trait" is often used synonymously with "attribute". However, strictly speaking the subjects of this article are elements. For the purposes of this wiki, the name "Property Element" was chosen to be clear and unambiguous.

There are two basic data types for properties - numeric and string. A number of Oblivion-specific XML entities are defined for commonly used constants of both types. Particularly useful are the numeric entities "&true;" (numeric value 2) and "&false;" (1), used to with boolean properties like Visible or Targetable.

Property elements may contain literal values. However, the real power of Oblivion's XML is that properties can instead have "formulas" expressed using Operator Elements.

If an object element contains more than one property of the same type, the last one defined will take precedence. If it contains no property elements for an applicable property, the default value is used (usually zero or the empty string).

A property (and its operators) is only updated when one of the source properties changes. Either by the engine itself or through scripting. When the property has been updated and the value is different from last time it will continue to update any properties that use it (can be called "derived properties"). This may then repeat itself for each subsequent derived property. A Golden Rule is that nothing gets updated as long as nothing is changed, in that sense there are no 'frames' for the UI.

General[edit | edit source]

Properties which any object element of any type might define.

  • ID (Numeric) Specifies which part of the internal menu "class" the element corresponds to, for the purposes of updating and accepting player input. For example, the game treats whatever element has an ID of 3 in the Recharge menu as the exit button, regardless of the type, name, or any other property of the element - if it can be clicked on, then doing so will close the menu. Likewise, the element with ID 2 in the Enchantment Settings menu is treated as the effect icon and will have its filename property updated by the game (even if it shouldn't have one). Valid ID values depend on the menu class, but generally range 1-20. Giving an element an ID not recognized for that menu will have no effect, while changing an existing ID will prevent the element from updating or accepting input.
  • Childcount (Numeric) Set automatically by the engine to the number of children the element has.
  • User# (type flexible) Element types beginning in "user" are not in general part of the Oblivion XML schema. They may, however, be recognized by specific menu classes and set to specific values. For example, in most contexts an element of type User4 would be parsed and then ignored. The internal class of the Spellmaking menu, though, will look for a User4 property element that is a child of the root Menu element, and update its value to the current magicka cost.

Sizeable[edit | edit source]

Properties defining the size and screen position of an object element, and possibly its children.

  • X,Y (Numeric) The coordinates (in pixels) of the upper-left hand corner of an element. These coordinates can be absolute or relative to the position of the parent element (see Locus). For text elements, this marks the "root" position (see Justify).
  • Height, Width (Numeric) The height and width (in pixels) of the element. For text elements, the width and height are set by the game engine automatically depending on the font and text contents.
  • Locus (Numeric: Boolean) If true then the coordinates of all the element's children are taken relative to the element position. If false, then the coordinates of all the elements children are taken as absolute, from the upper-left hand corner of the screen.

Rendered[edit | edit source]

Properties for any object element with a visible effect, i.e. Image and Text elements. Note, however, that setting the Visible property to false on any element will hide all of it's children.

  • Visible (Numeric: Boolean) If true, the element is visible, and if false the element is hidden. Hiding an element will reveal the elements under it (parents or siblings with lower Depth). Hidden elements cannot be clicked or moused over, but can still be activated from scripts using OBSE's ClickMenuButton function.
  • Alpha (Numeric) Value between 0 and 255 that determines transparency of element. An alpha of 255 is normal, but the lower the alpha the the more transparent. At alpha of 0 the element is completely transparent - although it can still respond to mouse clicks, etc.
  • Depth (Numeric) Determines precedence for overlapping elements - those with a higher Depth will be drawn on top. Note that by default, an element always has higher depth than its parent.
  • Clips (Numeric: Boolean) If the element's (relative) position is outside of its parent element's dimensions it will be hidden. Only works if the parent element's <clipwindow> property is true.

Mouse Targetable[edit | edit source]

Properties for any object elements that can be the focus of mouse events, i.e. the Image and Rect elements.

  • Target (Numeric: Boolean) If false, then the element is just part of the background, and won't react to player input at all. If true, the element may have mouse or keyboard focus - the Mouseover property will be set accordingly by the engine. In addition, if the element has an ID property then clicking on it will set the Clicked property and play the specified Clicksound.
  • Clicksound (Numeric) Which in-game click sound effect to play when the element is clicked.
  • Mouseover (Numeric) For targetable elements, this property is set automatically by the game engine. Its value is 1 when the element has mouse focus, and 0 at all other times.
  • Clicked (Numeric) For targetable elements, this property is set automatically by the game engine. Its value is 1 for a single frame after the element is clicked by the mouse. There are a number of clever uses for this property - the generic scroll bars, for example, use it to count how many times the player has clicked on the increase/decrease buttons.

Textured[edit | edit source]

Properties specific to the Image Element. Note that the texture displayed by an image element is automatically cropped to fit within the elements width and height.

  • Filename (String) Specifies the .dds texture file that the element will display. The file path should be specified relative to the Oblivion\Data\Textures\ directory.
  • Zoom (Numeric) Specifies the zoom percentage of the image. Setting it to 0 will result in a hidden image and can be larger than 100 to magnify the source texture. When using a value of -1 the image will be resized to fit the width and height of the element (and therefore not cropped).
  • FileWidth, FileHeight (Numeric) Set automatically by the game engine to the actual width in pixels of the loaded texture, after zoom has been applied. For zoom = -1, these values are set to zero.
  • Tile (Numeric: Boolean) If the width or height of the image element is larger than the dimensions of the texture this property will extend the image displayed by stacking (or pasting) two or more of the textures together into one single image. It does not appear to account for any alpha channel the texture may have, only the raw dimensions are used to determine if and where the textures are connected. This can cause problems with lower resolutions as many of the Menus80 textures have an alpha channel to hide the excess content.
  • CropX,CropY (Numeric) Specify the point on the texture, in pixels, that will be placed at the upper left hand corner of the image element. Because the texture is cropped to fit inside the image element, this essentially cuts CropX pixels off of the left of the image and CropY off of the top. Note: CropX/CropY are calculated after the zoom property has been applied, so the point (5,10) in the original image would be (10,20) after a 200% zoom.

Examples using all_small_icons.dds (a 384x32 texture containing twelve 32x32 icons in a horizontal row)

<image name="MyIcon">
   <!-- Display the gold piece icon, which is 8th from the left -->
   <filename> Menus\Shared\all_small_icons.dds </filename> 
   <width> 32 </width>
   <height> 32 </height>
   <cropx> 224 </cropx> <-- 7*32 = 224 -->
</image>
<image name="MyIcon">
   <!-- Same as above, but at 200% size -->    
   <filename> Menus\Shared\all_small_icons.dds </filename>
   <zoom> 200 </zoom>
   <width> 64 </width> <-- 32*200% = 64 -->
   <height> 64 </height>
   <cropx> 448 </cropx> <-- 7*32*200% = 448 -->
</image>

Text[edit | edit source]

Properties specific to the Text Element

  • String (String) The text to be displayed.
  • Red, Green, Blue (Numeric) Specifies the color of the text. Values are from 0 to 255 - the greater the value, the more of that color. Default values are "red 117, green 59, blue 33". Example: "red 0, green 0, blue 0" results in a black color, and "red 255, green 0, blue 0" results in a red color. Any combination can be made.
  • Font (Numeric) Specifies the font for the text element. Values are from 1 to 5, associated with the Oblivion.ini fonts. When missing or with an invalid number the game will default it to 1.
  • Justify (Numeric) Specifies where the text begins relative to the element's X coordinate. Options are "&left;" (1), "&center;" (2) and "&right;" (4):
<text> 
   <string> Hello World </string>
   <justify> &right; </justify>
</text>
<text>
   <string> Hello World </string>
   <justify> &center; </justify>
</text>
<text>
   <string> Hello World </string>
   <justify> &left; </justify>
</text>
Output ("X" marks the X position of the element):
          X 
Hello World
     Hello World
          Hello World
  • Wrapwidth (Numeric) the maximum width, in pixels, of the element. If the text is long enough to extend past this width, it is split into multiple lines. This is the only way to control the size of a text element - the width and height properties set by the game engine to whatever the final dimensions of the element end up being.
  • Wraplines (Numeric) the maximum number of lines displayed.
  • IsHTML (Numeric) If value is greater than zero, the String Property is parsed as HTML before being displayed. Note: This only works if the String property is set by script or the game engine, as HTML-formatted text written directly in the *.xml file is not handled correctly.
  • PageNum (Numeric) In Oblivion, html-formatted text may be broken into pages using the <hr> tag. This property specifies which 'page' of text is actually displayed, with zero meaning the first page, 1 meaning the second page, and so on.
  • PageCount (Numeric) Set automatically by the engine to the number of HTML 'pages' in the String Property. This value is zero if the String property isn't being parsed as HTML.

Menu[edit | edit source]

Properties specific to the Menu Element

  • Class (Numeric) Specifies which internal menu "class" to use for handling input & output to the menu. Values match those returned by MenuMode, but are generally specified using a set of XML entities closely based on the menu name (e.g. "&RechargeMenu;" for the Recharge menu, with numerical value 1049). Values for which no internal menu class exists (like zero) will result in a "dead" menu - the menu will open, but will not be updated or accept input.
  • Stackingtype (Numeric) Specifies whether or not the menu blocks the use of other menus and or the gameplay controls while open. Most menus do; only the HUD and the magic effects popup do not by default. Possible values are "&no_click_past;" (numerical value 6006) and "&does_not_stack;" (6008), although any value other than 6006 appears to cause non-blocking behavior.
  • Menufade (Numeric) Specifies the duration (in seconds) of the "fade in" and "fade out" effect when the menu is opened and closed, respectively. While fading, the menu is open but does not update or accept input.