Drag[en]gine Script Module DragonScript  1.21
Dragengine.LoadSave.LoadSkinAnnotations Class Reference

Load SkinAnnotations from XML file. More...

Inheritance diagram for Dragengine.LoadSave.LoadSkinAnnotations:
Dragengine.LoadSave.BaseXmlLoader

Public Member Functions

void loadFromFile (String filename, SkinAnnotations skinAnnotations)
 Load element class from file. More...
 
void loadFromFiles (SkinAnnotations skinAnnotations, String directory, bool recursive)
 Scan for skin annotation files loading them. More...
 
void loadFromFiles (SkinAnnotations skinAnnotations, String directory, String pattern, bool recursive)
 Scan for skin annotation files loading them. More...
 
LoadSkinAnnotations new (Console console)
 Create loader. More...
 
LoadSkinAnnotations new (Console console, String name)
 Create loader. More...
 
- Public Member Functions inherited from Dragengine.LoadSave.BaseXmlLoader
Console getConsole ()
 
String getName ()
 
int hexToInt (byte hex)
 
void logDeprecated (EasyXMLElement tag, String whatIsDeprecated)
 
void logDeprecated (EasyXMLElement tag, String whatIsDeprecated, String useWhatInstead)
 
void logDeprecatedTag (EasyXMLElement tag)
 
void logDuplicateObject (EasyXMLElement tag, String object, String identifier)
 Output error message duplicate object on the application console. More...
 
void logIncompatibleAttributes (EasyXMLElement tag, String attributeNames)
 
void logInvalidAttribute (String filename, EasyXMLElement tag, String attribute)
 Log attribute not allowed. More...
 
void logInvalidAttributeValue (EasyXMLElement tag, String attribute, String value)
 
void logInvalidEmptyString (EasyXMLElement tag)
 
void logInvalidValue (EasyXMLElement tag, String value)
 
void logInvalidValue (String filename, EasyXMLElement tag, String value)
 
void logLoadFileFailed (EasyXMLElement tag, String filename)
 
void logLoadingFailed (String filename)
 Log loading file failed with error log. More...
 
void logLoadingFromFile (String filename)
 
void logMissingAttribute (EasyXMLElement tag, String attrName)
 
void logMissingCData (EasyXMLElement tag)
 
void logMissingTag (String tagName)
 
void logNotSupported (EasyXMLElement tag, String whatIsNotSupported)
 
void logObjectExists (EasyXMLElement tag, String object, String value)
 Output error message value exists already on the application console. More...
 
void logParsingFailed (String errorLog)
 
void logSavingFailed (String filename)
 Log saving to file failed with error log. More...
 
void logSavingFromFile (String filename)
 Log filename on the application console. More...
 
void logUnknownTag (EasyXMLElement tag)
 
void logUnknownTag (String filename, EasyXMLElement tag)
 
void printOnConsole (EasyXMLElement tag, String errorMessage)
 
void printOnConsole (String filename, EasyXMLElement tag, String message)
 Print message on console. More...
 
void printOnConsole (String filename, String message)
 Print message on console. More...
 
void printOnConsole (String message)
 
BorderSize readBorderSize (EasyXMLElement root)
 Read border size area. More...
 
int readCDataHex (EasyXMLElement tag)
 
Color readColor (EasyXMLElement root)
 
Color readColor (EasyXMLElement root, Color defaultColor)
 
ColorMatrix readColorMatrix (EasyXMLElement root)
 Read color matrix. More...
 
CurveBezier readCurveBezier (EasyXMLElement root)
 
void readCurveBezierPoint (EasyXMLElement root, CurveBezier curve)
 
DVector readDVector (EasyXMLElement root)
 
FloatRectArea readFloatRectArea (EasyXMLElement root)
 Read floating point rectangular area. More...
 
Font readFont (EasyXMLElement root)
 Parse font tag. More...
 
Font readFont (EasyXMLElement root, String basePath)
 Parse font tag. More...
 
String readMultilineString (EasyXMLElement root)
 Multi-line string or an empty string if absent. More...
 
Point readPoint (EasyXMLElement root)
 
Point3 readPoint3 (EasyXMLElement root)
 
RectArea readRectArea (EasyXMLElement root)
 Read rectangular area. More...
 
Vector readVector (EasyXMLElement root)
 
Vector2 readVector2 (EasyXMLElement root)
 
Vector2 readVector2UV (EasyXMLElement root)
 
Quaternion readVectorAsQuaternion (EasyXMLElement root)
 Read vector tag as quaternion. More...
 
void writeColor3 (EasyXMLElement root, String name, Color color)
 Write 3-component color tag using rgb attributes. More...
 
void writeColor4 (EasyXMLElement root, String name, Color color)
 Write 4-component color tag using rgba attributes. More...
 
void writeCurveBezier (EasyXMLElement root, String name, CurveBezier curve)
 Write bezier curve tag. More...
 
void writeCurveBezierPoint (EasyXMLElement root, String name, CurveBezier curve, int point)
 Write bezier curve point tag. More...
 
void writeDVector (EasyXMLElement root, String name, DVector vector)
 Write vector tag. More...
 
void writePoint (EasyXMLElement root, String name, Point point)
 Write point tag. More...
 
void writePoint3 (EasyXMLElement root, String name, Point3 point)
 Write point3 tag. More...
 
void writeVector (EasyXMLElement root, String name, Vector vector)
 Write vector tag. More...
 
void writeVector2 (EasyXMLElement root, String name, Vector2 vector)
 Write vector2 tag. More...
 

Additional Inherited Members

- Public Attributes inherited from Dragengine.LoadSave.BaseXmlLoader
Console pConsole
 
String pLogFilename
 
String pName
 
- Protected Member Functions inherited from Dragengine.LoadSave.BaseXmlLoader
Object loadAndParseRootTag (String filename, String rootTagName, Block parseBlock)
 Load file safely. More...
 

Detailed Description

Load SkinAnnotations from XML file.

Example file:

<?xml version='1.0' encoding='ISO-8859-1'?>
<skinAnnotations>
<string path='materials/asphalt' key='footstep'>asphalt</string>
<string path='materials/asphalt/wet.deskin' key='footstep'>asphalt-wet</string>
<float path='models/player/player.deskin/body' key='armor'>0.8</float>
</skinAnnotations>

Supported are these tags:

  • <string></string>: UTF8 encoded string value
  • <float></float>: Floating point value
  • <integer></int>: Integer value
  • <bool></bool>: Boolean value ("true", "false")
  • <point x='' y=''/>: 2-Component point (integer)
  • <point3 x='' y='' z=''/>: 3-Component point (integer)
  • <vector2 x='' y=''/>: 2-Component vector (float)
  • <vector x='' y='' z=''/>: 3-Component vector (float)
  • <borderSize left='' top='' right='' bottom=''/>: BorderSize (int)
  • <rectArea x1='' y1='' x2='' y2=''/>: RectArea (int)
  • <floatRectArea x1='' y1='' x2='' y2=''/>: FloatRectArea (float)
  • <list></list>: List of values
  • <map></map>: Dictionary of key/value pairs
  • <null/>: null value

Member Function Documentation

◆ loadFromFile()

void Dragengine.LoadSave.LoadSkinAnnotations.loadFromFile ( String  filename,
SkinAnnotations  skinAnnotations 
)

Load element class from file.

Loaded content is added to skinAnnotations. It is not cleared first.

◆ loadFromFiles() [1/2]

void Dragengine.LoadSave.LoadSkinAnnotations.loadFromFiles ( SkinAnnotations  skinAnnotations,
String  directory,
bool  recursive 
)

Scan for skin annotation files loading them.

Skin annotation files have the extension ".deskinann".

Parameters
skinAnnotationsSkin annotations to load files into.
directoryAbsolute path to directory to scan for files.
recursiveIf true scans also in all child directories.

◆ loadFromFiles() [2/2]

void Dragengine.LoadSave.LoadSkinAnnotations.loadFromFiles ( SkinAnnotations  skinAnnotations,
String  directory,
String  pattern,
bool  recursive 
)

Scan for skin annotation files loading them.

Skin annotation files have the extension ".deskinann".

Parameters
skinAnnotationsSkin annotations to load files into.
directoryAbsolute path to directory to scan for files.
patternFile pattern to match. Has to be of the form "*.extension"
recursiveIf true scans also in all child directories.

◆ new() [1/2]

LoadSkinAnnotations Dragengine.LoadSave.LoadSkinAnnotations.new ( Console  console)

Create loader.

◆ new() [2/2]

LoadSkinAnnotations Dragengine.LoadSave.LoadSkinAnnotations.new ( Console  console,
String  name 
)

Create loader.

Reimplemented from Dragengine.LoadSave.BaseXmlLoader.


The documentation for this class was generated from the following file: