Skip to main content

Provide a Data Exporter

Exporter Entry Points

  • implement VRPExportProc (Lua: export) to recieve the export request
  • implement VRPFormatsProc (Lua: exportFormats) to provide a description of supported formats
  • optionally implement VRPSettingsInterfaceProc (Lua: exportSettingsInterface) to provide a description of configurable settings that affect the export behaviour
  • if providing settings interface, implement VRPDefaultRecipeProc (Lua: exportRecipe) to provide a default filename for the recipe file generated by the settings description

When a plugin implements these entry points, it appears in the application export menu.

Example Code

PLUGIN_ENTRY_POINT const char* VRTREE_APIENTRY VRPExportFormats()
{
return "<filetypes><type ext=\"txt\" desc=\"Text File\" /></filetypes>";
}

PLUGIN_ENTRY_POINT int VRTREE_APIENTRY VRPExport(const char *file,
HNode root,
HNode scenes,
HNode libs,
const char *recipePath)
{
//read nodes from scenes and/or libs and write them to the exported file format

//return 0 on successful export
return 1;
}

Settings Interface

The exporter settings interface behaves in exactly the same way as the one for Data Importers.