CrystalSpace

Public API Reference

Public Member Functions
iSyntaxService Struct Reference

This component provides services for other loaders to easily parse properties of standard CS world syntax. More...

#include <imap/services.h>

Inheritance diagram for iSyntaxService:
iBase

List of all members.

Public Member Functions

virtual bool HandlePortalParameter (iDocumentNode *child, iLoaderContext *ldr_context, csRef< csRefCount > &parseState, CS::Utility::PortalParameters &params, bool &handled)=0
 Handles a common portal parameter.
virtual bool ParseAlphaMode (iDocumentNode *node, iStringSet *strings, csAlphaMode &alphaMode, bool allowAutoMode=true)=0
 Parse an alphamode description.
virtual bool ParseBool (iDocumentNode *node, bool &result, bool def_result)=0
 Parse the value of this node and return a boolean depending on this value.
virtual bool ParseBoolAttribute (iDocumentNode *node, const char *attrname, bool &result, bool def_result, bool required)=0
 Parse the value of an attribute of this node and return a boolean depending on this value.
virtual bool ParseBox (iDocumentNode *node, csBox3 &v)=0
 Parse a box description.
virtual bool ParseBox (iDocumentNode *node, csOBB &b)=0
 Parse a box description.
virtual bool ParseColor (iDocumentNode *node, csColor &c)=0
 Parse a color description.
virtual bool ParseColor (iDocumentNode *node, csColor4 &c)=0
 Parse a color description.
virtual bool ParseGradient (iDocumentNode *node, iGradient *gradient)=0
 Parse a color gradient.
virtual csPtr< iKeyValuePair > ParseKey (iDocumentNode *node)=0
 Parse a key definition.
virtual bool ParseMatrix (iDocumentNode *node, csMatrix3 &m)=0
 Parse a matrix description.
virtual bool ParseMatrix (iDocumentNode *node, CS::Math::Matrix4 &m)=0
 Parse a 4x4 matrix.
virtual bool ParseMixmode (iDocumentNode *node, uint &mixmode, bool allowFxMesh=false)=0
 Parse a mixmode description.
virtual bool ParsePlane (iDocumentNode *node, csPlane3 &p)=0
 Parse a plane description.
virtual csRef< iRenderBuffer > ParseRenderBuffer (iDocumentNode *node)=0
 Parse a user render buffer.
virtual bool ParseRenderBuffer (iDocumentNode *node, iRenderBuffer *buffer)=0
 Parse into a given render buffer.
virtual csRef< iShader > ParseShader (iLoaderContext *ldr_context, iDocumentNode *node)=0
 Parse a <shader> node (as found in shader XML files or possibly world files.
virtual csRef< iShader > ParseShaderRef (iLoaderContext *ldr_context, iDocumentNode *node)=0
 Parse a node that is a reference to a shader.
virtual bool ParseShaderVar (iLoaderContext *ldr_context, iDocumentNode *node, csShaderVariable &var, iStringArray *failedTextures=0)=0
 Parse a shader variable declaration.
virtual csRef
< iShaderVariableAccessor > 
ParseShaderVarExpr (iDocumentNode *node)=0
 Parse a shader variable expression.
virtual bool ParseVector (iDocumentNode *node, csVector3 &v)=0
 Parse a vector description.
virtual bool ParseVector (iDocumentNode *node, csVector2 &v)=0
 Parse a vector description.
virtual bool ParseZMode (iDocumentNode *node, csZBufMode &zmode, bool allowZmesh=false)=0
 Attempt to parse a zmode from node.
virtual csRef< iRenderBuffer > ReadRenderBuffer (iDataBuffer *buf)=0
 Read a render buffer from a data buffer.
virtual csRef< iDataBuffer > StoreRenderBuffer (iRenderBuffer *rbuf)=0
 Store a render buffer to a data buffer.
virtual bool WriteAlphaMode (iDocumentNode *node, iStringSet *strings, const csAlphaMode &alphaMode)=0
 Write an alphamode description.
virtual bool WriteBool (iDocumentNode *node, const char *name, bool value)=0
 Write a node representing the value of the boolean.
bool WriteBool (iDocumentNode *node, const char *name, bool value, bool default_value)
 Write a node representing the value of the boolean, if it differs from a provided default value.
virtual bool WriteBox (iDocumentNode *node, const csBox3 &v)=0
 Write a box description.
virtual bool WriteBox (iDocumentNode *node, const csOBB &b)=0
 Write a box description.
virtual bool WriteColor (iDocumentNode *node, const csColor &c)=0
 Write a color description.
virtual bool WriteColor (iDocumentNode *node, const csColor4 &c)=0
 Write a color description.
virtual bool WriteGradient (iDocumentNode *node, iGradient *gradient)=0
 Write a color gradient.
virtual bool WriteKey (iDocumentNode *node, iKeyValuePair *keyvalue)=0
 Write a key definition and add the key to the given object, Returns true if successful.
virtual bool WriteMatrix (iDocumentNode *node, const csMatrix3 &m)=0
 Write a matrix description.
virtual bool WriteMixmode (iDocumentNode *node, uint mixmode, bool allowFxMesh)=0
 Write a mixmode description.
virtual bool WritePlane (iDocumentNode *node, const csPlane3 &p)=0
 Write a plane description.
virtual bool WriteRenderBuffer (iDocumentNode *node, iRenderBuffer *buffer)=0
 Write a render buffer.
virtual bool WriteShaderVar (iDocumentNode *node, csShaderVariable &var)=0
 Write a shader variable declaration.
virtual bool WriteVector (iDocumentNode *node, const csVector3 &v)=0
 Write a vector description.
virtual bool WriteVector (iDocumentNode *node, const csVector2 &v)=0
 Write a vector description.
virtual bool WriteZMode (iDocumentNode *node, csZBufMode zmode, bool allowZmesh)=0
 Write a ZMode description.
Parse reporting helpers
virtual void ReportError (const char *msgid, iDocumentNode *errornode, const char *msg,...)=0
 Report an error and also gives a path in the XML tree.
virtual void ReportBadToken (iDocumentNode *badtokennode)=0
 Report a bad token.
virtual void Report (const char *msgid, int severity, iDocumentNode *errornode, const char *msg,...)=0
 Report something, also gives a path in the XML tree.

Detailed Description

This component provides services for other loaders to easily parse properties of standard CS world syntax.

Definition at line 95 of file services.h.


Member Function Documentation

virtual bool iSyntaxService::HandlePortalParameter ( iDocumentNode *  child,
iLoaderContext *  ldr_context,
csRef< csRefCount > &  parseState,
CS::Utility::PortalParameters &  params,
bool &  handled 
) [pure virtual]

Handles a common portal parameter.

Returns false on failure. Returns false in 'handled' if it couldn't understand the token.

Parameters:
childChild node to parse.
ldr_contextLoader context.
parseStateInternal parse state. This should be a null ref the first time HandlePortalParameter is called. The method will automatically set the variable to a state object. Do NOT pass in an instance of csRefCount you created yourself.
handledWhether the token was handled by this method.
virtual bool iSyntaxService::ParseAlphaMode ( iDocumentNode *  node,
iStringSet *  strings,
csAlphaMode &  alphaMode,
bool  allowAutoMode = true 
) [pure virtual]

Parse an alphamode description.

Returns true if successful.

virtual bool iSyntaxService::ParseBool ( iDocumentNode *  node,
bool &  result,
bool  def_result 
) [pure virtual]

Parse the value of this node and return a boolean depending on this value.

The following mapping happens (case insensitive):

  • 1 -> true
  • 0 -> false
  • yes -> true
  • no -> false
  • true -> true
  • false -> false
  • on -> true
  • off -> false
  • (empty value) -> (def_result)
  • (everyting else) -> error
virtual bool iSyntaxService::ParseBoolAttribute ( iDocumentNode *  node,
const char *  attrname,
bool &  result,
bool  def_result,
bool  required 
) [pure virtual]

Parse the value of an attribute of this node and return a boolean depending on this value.

The following mapping happens (case insensitive):

  • 1 -> true
  • 0 -> false
  • yes -> true
  • no -> false
  • true -> true
  • false -> false
  • on -> true
  • off -> false
  • (empty value) -> (def_result)
  • (everyting else) -> error
    Parameters:
    nodeDocument node with the attribute to parse.
    attrnameName of the attribute.
    resultReturns the result.
    def_resultDefault result value.
    requiredif this is true then not having the attribute will result in an error. If this is false then not having the attribute will result in the default value.
    Returns:
    Whether the parsing was successful. false if an error occured.
virtual bool iSyntaxService::ParseBox ( iDocumentNode *  node,
csBox3 &  v 
) [pure virtual]

Parse a box description.

Returns true if successful.

virtual bool iSyntaxService::ParseBox ( iDocumentNode *  node,
csOBB &  b 
) [pure virtual]

Parse a box description.

Returns true if successful.

virtual bool iSyntaxService::ParseColor ( iDocumentNode *  node,
csColor &  c 
) [pure virtual]

Parse a color description.

Returns true if successful.

virtual bool iSyntaxService::ParseColor ( iDocumentNode *  node,
csColor4 &  c 
) [pure virtual]

Parse a color description.

Returns true if successful.

virtual bool iSyntaxService::ParseGradient ( iDocumentNode *  node,
iGradient *  gradient 
) [pure virtual]

Parse a color gradient.

Parameters:
nodeDocument node containing the gradient data.
gradientValid pointer to a gradient interface which is filled with the data from the document node.
virtual csPtr<iKeyValuePair> iSyntaxService::ParseKey ( iDocumentNode *  node) [pure virtual]

Parse a key definition.

A iKeyValuePair instance is returned if successful.

virtual bool iSyntaxService::ParseMatrix ( iDocumentNode *  node,
csMatrix3 &  m 
) [pure virtual]

Parse a matrix description.

Returns true if successful.

virtual bool iSyntaxService::ParseMatrix ( iDocumentNode *  node,
CS::Math::Matrix4 &  m 
) [pure virtual]

Parse a 4x4 matrix.

virtual bool iSyntaxService::ParseMixmode ( iDocumentNode *  node,
uint &  mixmode,
bool  allowFxMesh = false 
) [pure virtual]

Parse a mixmode description.

Returns true if successful.

virtual bool iSyntaxService::ParsePlane ( iDocumentNode *  node,
csPlane3 &  p 
) [pure virtual]

Parse a plane description.

Returns true if successful.

Parse a user render buffer.

virtual bool iSyntaxService::ParseRenderBuffer ( iDocumentNode *  node,
iRenderBuffer *  buffer 
) [pure virtual]

Parse into a given render buffer.

buffer must have the correct component type and must be large enough to hold all read elements.

virtual csRef<iShader> iSyntaxService::ParseShader ( iLoaderContext *  ldr_context,
iDocumentNode *  node 
) [pure virtual]

Parse a <shader> node (as found in shader XML files or possibly world files.

virtual csRef<iShader> iSyntaxService::ParseShaderRef ( iLoaderContext *  ldr_context,
iDocumentNode *  node 
) [pure virtual]

Parse a node that is a reference to a shader.

Those nodes look like <nodename name="shadername" file="/path/to/shader.xml" />. First, the shader manager is queried for a shader of the name specified in the name attribute. If this failed, the shader is attempted to be loaded from the file specified. Note that if the name appearing in the shader file and the name of the name attribute mismatches, this method fails (and the loaded shader is not registered with the shader manager),

virtual bool iSyntaxService::ParseShaderVar ( iLoaderContext *  ldr_context,
iDocumentNode *  node,
csShaderVariable &  var,
iStringArray *  failedTextures = 0 
) [pure virtual]

Parse a shader variable declaration.

Parse a shader variable expression.

Returns an acessor that can be set on a shader variable. The accessor subsequently evaluates the expression.

virtual bool iSyntaxService::ParseVector ( iDocumentNode *  node,
csVector3 &  v 
) [pure virtual]

Parse a vector description.

Returns true if successful.

virtual bool iSyntaxService::ParseVector ( iDocumentNode *  node,
csVector2 &  v 
) [pure virtual]

Parse a vector description.

Returns true if successful.

virtual bool iSyntaxService::ParseZMode ( iDocumentNode *  node,
csZBufMode &  zmode,
bool  allowZmesh = false 
) [pure virtual]

Attempt to parse a zmode from node.

allowZmesh specifies whether ZMESH and ZMESH2 zmodes should be saved to zmode or rejected, causing the method to fail and return 'false'.

Remarks:
As z modes usually appear "in between" other document nodes, this function does not report an error if the token isn't recognized, but only returns 'false'.

Read a render buffer from a data buffer.

Usually the buffer comes from a persistent storage (e.g. disk). It must have been written with StoreRenderBuffer().

virtual void iSyntaxService::Report ( const char *  msgid,
int  severity,
iDocumentNode *  errornode,
const char *  msg,
  ... 
) [pure virtual]

Report something, also gives a path in the XML tree.

See also:
Notes about string formatting in Crystal Space
virtual void iSyntaxService::ReportBadToken ( iDocumentNode *  badtokennode) [pure virtual]

Report a bad token.

This is a convenience function which will eventually call ReportError().

virtual void iSyntaxService::ReportError ( const char *  msgid,
iDocumentNode *  errornode,
const char *  msg,
  ... 
) [pure virtual]

Report an error and also gives a path in the XML tree.

See also:
Notes about string formatting in Crystal Space

Store a render buffer to a data buffer.

Usually this buffer is then stored to a persistent storage (e.g. disk).

virtual bool iSyntaxService::WriteAlphaMode ( iDocumentNode *  node,
iStringSet *  strings,
const csAlphaMode &  alphaMode 
) [pure virtual]

Write an alphamode description.

Returns true if successful.

virtual bool iSyntaxService::WriteBool ( iDocumentNode *  node,
const char *  name,
bool  value 
) [pure virtual]

Write a node representing the value of the boolean.

bool iSyntaxService::WriteBool ( iDocumentNode *  node,
const char *  name,
bool  value,
bool  default_value 
) [inline]

Write a node representing the value of the boolean, if it differs from a provided default value.

Definition at line 174 of file services.h.

virtual bool iSyntaxService::WriteBox ( iDocumentNode *  node,
const csBox3 &  v 
) [pure virtual]

Write a box description.

Returns true if successful.

virtual bool iSyntaxService::WriteBox ( iDocumentNode *  node,
const csOBB &  b 
) [pure virtual]

Write a box description.

Returns true if successful.

virtual bool iSyntaxService::WriteColor ( iDocumentNode *  node,
const csColor &  c 
) [pure virtual]

Write a color description.

Returns true if successful.

virtual bool iSyntaxService::WriteColor ( iDocumentNode *  node,
const csColor4 &  c 
) [pure virtual]

Write a color description.

Returns true if successful.

virtual bool iSyntaxService::WriteGradient ( iDocumentNode *  node,
iGradient *  gradient 
) [pure virtual]

Write a color gradient.

virtual bool iSyntaxService::WriteKey ( iDocumentNode *  node,
iKeyValuePair *  keyvalue 
) [pure virtual]

Write a key definition and add the key to the given object, Returns true if successful.

virtual bool iSyntaxService::WriteMatrix ( iDocumentNode *  node,
const csMatrix3 &  m 
) [pure virtual]

Write a matrix description.

Returns true if successful.

virtual bool iSyntaxService::WriteMixmode ( iDocumentNode *  node,
uint  mixmode,
bool  allowFxMesh 
) [pure virtual]

Write a mixmode description.

Returns true if successful.

virtual bool iSyntaxService::WritePlane ( iDocumentNode *  node,
const csPlane3 &  p 
) [pure virtual]

Write a plane description.

Returns true if successful.

virtual bool iSyntaxService::WriteRenderBuffer ( iDocumentNode *  node,
iRenderBuffer *  buffer 
) [pure virtual]

Write a render buffer.

When the render buffer exhibits an iRenderBufferPersistence interface, the render buffer data may not be stored inline in the document but in an external file. To prevent this behaviour you must provided a render buffer that exhibits an iRenderBufferPersistence interface and does not return a filename.

virtual bool iSyntaxService::WriteShaderVar ( iDocumentNode *  node,
csShaderVariable &  var 
) [pure virtual]

Write a shader variable declaration.

virtual bool iSyntaxService::WriteVector ( iDocumentNode *  node,
const csVector3 &  v 
) [pure virtual]

Write a vector description.

Returns true if successful.

virtual bool iSyntaxService::WriteVector ( iDocumentNode *  node,
const csVector2 &  v 
) [pure virtual]

Write a vector description.

Returns true if successful.

virtual bool iSyntaxService::WriteZMode ( iDocumentNode *  node,
csZBufMode  zmode,
bool  allowZmesh 
) [pure virtual]

Write a ZMode description.

Returns true if successful.


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

Generated for Crystal Space 2.0 by doxygen 1.7.6.1