バージョン

menu_open
Wwise SDK 2023.1.3
ak_wwise_plugin_host_xml_v1 構造体

API interface for XML-based plug-in persistence. [詳解]

#include <HostXml.h>

ak_wwise_plugin_host_xml_v1 の継承関係図
ak_wwise_plugin_interface_ptr

公開型

using ReaderInstance = ak_wwise_plugin_host_xml_reader_instance_v1
 
using WriterInstance = ak_wwise_plugin_host_xml_writer_instance_v1
 

公開メンバ関数

 ak_wwise_plugin_host_xml_v1 ()
 
- 基底クラス ak_wwise_plugin_interface_ptr に属する継承公開メンバ関数
constexpr ak_wwise_plugin_base_interface (decltype(m_interface) in_interface, decltype(m_version) in_version)
 
constexpr ak_wwise_plugin_base_interface ()
 
constexpr ak_wwise_plugin_base_interface (std::underlying_type< decltype(m_interface)>::type in_interface, decltype(m_version) in_version)
 

公開変数類

const char *(* GetName )(const struct ak_wwise_plugin_host_xml_reader_instance_v1 *in_this)
 Returns the name of the current node being read. [詳解]
 
AK::Wwise::Plugin::XmlNodeType::NodeType(* GetNodeType )(const struct ak_wwise_plugin_host_xml_reader_instance_v1 *in_this)
 Returns the type of the current node being read. [詳解]
 
bool(* IsEmptyElement )(const struct ak_wwise_plugin_host_xml_reader_instance_v1 *in_this)
 Tests whether the current node being read is empty. [詳解]
 
const char *(* GetValue )(const struct ak_wwise_plugin_host_xml_reader_instance_v1 *in_this)
 Returns the value of the current node being read. [詳解]
 
bool(* IsEOF )(const struct ak_wwise_plugin_host_xml_reader_instance_v1 *in_this)
 Tests whether the end of file is reached while reading the XML. [詳解]
 
int(* GetLineNumber )(const struct ak_wwise_plugin_host_xml_reader_instance_v1 *in_this)
 Retrieves the line number that contains the start of the current node being read. [詳解]
 
int(* GetLinePosition )(const struct ak_wwise_plugin_host_xml_reader_instance_v1 *in_this)
 Retrieves the column in the line that contains the start of the current node being read. [詳解]
 
AK::Wwise::Plugin::XmlNodeType::NodeType(* MoveToContent )(struct ak_wwise_plugin_host_xml_reader_instance_v1 *in_this)
 Makes sure the cursor points to a content-type entity while reading XML. [詳解]
 
bool(* Read )(struct ak_wwise_plugin_host_xml_reader_instance_v1 *in_this)
 Sets the reading pointer to the next node, recursively. [詳解]
 
const char *(* ReadElementString )(struct ak_wwise_plugin_host_xml_reader_instance_v1 *in_this)
 Reads simple text-only elements, and increments the pointer. [詳解]
 
void(* ReadInnerXml )(struct ak_wwise_plugin_host_xml_reader_instance_v1 *in_this, const char **out_csXml)
 Reads all the contents of an Element or Attribute as a string, including markup. Increments the pointer. [詳解]
 
void(* ReadOuterXml )(struct ak_wwise_plugin_host_xml_reader_instance_v1 *in_this, const char **out_csXml)
 Reads the Element or Attribute as a string, including markup. Increments the pointer. [詳解]
 
void(* Skip )(struct ak_wwise_plugin_host_xml_reader_instance_v1 *in_this)
 Sets the reading pointer past the current node, skipping any inner content. [詳解]
 
bool(* GetAttribute )(struct ak_wwise_plugin_host_xml_reader_instance_v1 *in_this, const char *in_rcsAttributeName, const char **out_rcsValue)
 Reads the value of a particular attribute under the current node. [詳解]
 
bool(* IsReady )(const struct ak_wwise_plugin_host_xml_writer_instance_v1 *in_this)
 Determines if the writer is ready to be used. [詳解]
 
AK::Wwise::Plugin::XmlWriteReady::WriteReady(* GetReadyState )(const struct ak_wwise_plugin_host_xml_writer_instance_v1 *in_this)
 Determines the state of readiness of the writer. [詳解]
 
bool(* Append )(struct ak_wwise_plugin_host_xml_writer_instance_v1 *in_this, struct ak_wwise_plugin_host_xml_writer_instance_v1 *in_pWriterToAppend)
 Appending a first XML writer to a second XML writer. [詳解]
 
AK::Wwise::Plugin::XmlWriteState::WriteState(* GetWriteState )(const struct ak_wwise_plugin_host_xml_writer_instance_v1 *in_this)
 Retrieves the state of the node the writer is currently populating. [詳解]
 
void(* WriteStartDocument )(struct ak_wwise_plugin_host_xml_writer_instance_v1 *in_this)
 Starts a new XML document. [詳解]
 
void(* WriteEndDocument )(struct ak_wwise_plugin_host_xml_writer_instance_v1 *in_this)
 Ends a completed XML document. [詳解]
 
void(* WriteStartElement )(struct ak_wwise_plugin_host_xml_writer_instance_v1 *in_this, const char *in_rcsElementName, AK::Wwise::Plugin::XmlElementType::ElementType in_eType)
 Creates a new inner node. [詳解]
 
void(* WriteEndElement )(struct ak_wwise_plugin_host_xml_writer_instance_v1 *in_this)
 Closes the previous node. [詳解]
 
void(* WriteAttributeString )(struct ak_wwise_plugin_host_xml_writer_instance_v1 *in_this, const char *in_rcsAttribute, const char *in_rcsValue)
 Adds an attribute to the current node. [詳解]
 
void(* WriteString )(struct ak_wwise_plugin_host_xml_writer_instance_v1 *in_this, const char *in_rcsValue)
 Appends a string as value to the current node. [詳解]
 
void(* WriteCData )(struct ak_wwise_plugin_host_xml_writer_instance_v1 *in_this, const char *in_rcsValue)
 Appends a raw CDATA string as value to the current node. [詳解]
 
void(* WriteRaw )(struct ak_wwise_plugin_host_xml_writer_instance_v1 *in_this, const char *in_rcsValue)
 Appends a raw string at this precise point of the XML file. [詳解]
 
- 基底クラス ak_wwise_plugin_interface_ptr に属する継承公開変数類
ak_wwise_plugin_interface_type m_interface: 32
 Interface type (see ak_wwise_plugin_interface_type) [詳解]
 
uint32_t m_version: 32
 Version of the interface [詳解]
 

詳解

API interface for XML-based plug-in persistence.

The XML plug-in persistence is useful when a plug-in provides custom data handling. Normally, plug-in data is stored through the property sets (see PropertySet and ObjectStore). However, a plug-in might provide its own custom handling. For complex interfaces, it might be worthwhile to use the CustomData interface. Loading and saving can then be done through this XML interface.

The XML interface represents a cursor pointing to a node (element), alongside methods to navigate through the hierarchy.

注釈: One unique XML interface is provided for both reading and writing XML. Depending on the instance being provided, it will allow reading or writing through this interface.

It can either be a ak_wwise_plugin_host_xml_reader_instance_v1 or a ak_wwise_plugin_host_xml_writer_instance_v1.

HostXml.h141 行目に定義があります。


このページはお役に立ちましたか?

サポートは必要ですか?

ご質問や問題、ご不明点はございますか?お気軽にお問い合わせください。

サポートページをご確認ください

あなたのプロジェクトについて教えてください。ご不明な点はありませんか。

プロジェクトを登録していただくことで、ご利用開始のサポートをいたします。

Wwiseからはじめよう