This page has been translated automatically.
Видеоуроки
Интерфейс
Основы
Продвинутый уровень
Подсказки и советы
Основы
Программирование на C#
Рендеринг
Профессиональный уровень (SIM)
Принципы работы
Свойства (properties)
Компонентная Система
Рендер
Физика
Редактор UnigineEditor
Обзор интерфейса
Работа с ассетами
Контроль версий
Настройки и предпочтения
Работа с проектами
Настройка параметров ноды
Setting Up Materials
Настройка свойств
Освещение
Sandworm
Использование инструментов редактора для конкретных задач
Расширение функционала редактора
Встроенные объекты
Ноды (Nodes)
Объекты (Objects)
Эффекты
Декали
Источники света
Geodetics
World-ноды
Звуковые объекты
Объекты поиска пути
Player-ноды
Программирование
Основы
Настройка среды разработки
Примеры использования
C++
C#
UnigineScript
UUSL (Unified UNIGINE Shader Language)
Плагины
Форматы файлов
Материалы и шейдеры
Rebuilding the Engine Tools
Интерфейс пользователя (GUI)
Двойная точность координат
API
Animations-Related Classes
Containers
Common Functionality
Controls-Related Classes
Engine-Related Classes
Filesystem Functionality
GUI-Related Classes
Math Functionality
Node-Related Classes
Objects-Related Classes
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
IG Plugin
CIGIConnector Plugin
Rendering-Related Classes
VR-Related Classes
Работа с контентом
Оптимизация контента
Материалы
Визуальный редактор материалов
Material Nodes Library
Miscellaneous
Input
Math
Matrix
Textures
Art Samples
Учебные материалы

Unigine.Import Class

Warning
The functionality described in this article is not available in the Community SDK edition.
You should upgrade to Engineering / Sim SDK edition to use it.

This is an import manager class. It is used to create and manage importers, processors as well as to directly import files in non-native formats, if an importer for such files was previously registered.

You can manage the set of available importers dynamically by adding them to or removing from the registry.

Each importer has a unique identifier (or ID) represented by the ImporterID structure combining the following values:

  • Vendor Name - name of a company or person offering the importer.
  • Importer Name - name of the importer (e.g. there can be multiple importers having the same name FBXImporter but offered by different vendors).

Each importer has a priority index indicating the order in which it will be used for processing files among other available importers registered for the same file extension (an importer with higher priority value among others available shall be used).

You can also get the list of all currently supported file extensions or a list of all file extensions supported by a specific importer.

Import Class

Members


bool IsInitialized ( ) #

Returns a value indicating if the import manager is initialized;.

Return value

true if the import manager is initialized; otherwise, false.

bool ContainsImporter ( ImporterID id, string extension ) #

Returns a value indicating if there is an importer with the specified name and vendor name available for processing files with the specified extension.

Arguments

  • ImporterID id - ImporterID structure.
  • string extension - Extension of files supported by the importer.

Return value

true if there is an importer with the specified ID available for processing files with the specified extension; otherwise, false.

bool ContainsImporter ( string vendor_name, string importer_name, string extension ) #

Returns a value indicating if there is an importer with the specified name and vendor name available for processing files with the specified extension.

Arguments

  • string vendor_name - Importer vendor name.
  • string importer_name - Importer name.
  • string extension - Extension of files supported by the importer.

Return value

true if there is an importer with the specified name and vendor name available for processing files with the specified extension; otherwise, false.

static IntPtr RegisterImporter ( ImporterID id, string extension, ImporterCreationFunction creation_func, ImporterDeletionFunction deletion_func, string args = nullptr, int int = 0 ) #

Registers a new importer with the specified parameters.

Arguments

  • ImporterID id - ImporterID structure.
  • string extension - Extension of files supported by the importer.
  • ImporterCreationFunction creation_func - Importer creation function having the following signature:
    Source code (C++)
    Importer * (*)(void *args)
    .
  • ImporterDeletionFunction deletion_func - Importer removal function having the following signature:
    Source code (C++)
    void (*)(Importer *importer, void *args)
    .
  • string args - List of importer arguments.
  • int int - Priority of the importer for processing files with the specified extension.

Return value

Importer handle, if it was registered successfully; otherwise, nullptr.

static IntPtr RegisterImporter ( string vendor_name, string importer_name, string extension, ImporterCreationFunction creation_func, ImporterDeletionFunction deletion_func, string args = nullptr, int int = 0 ) #

Registers a new importer with the specified parameters.

Arguments

  • string vendor_name - Importer vendor name.
  • string importer_name - Name of the importer.
  • string extension - Extension of files supported by the importer.
  • ImporterCreationFunction creation_func - Importer creation function having the following signature:
    Source code (C++)
    Importer * (*)(void *args)
    .
  • ImporterDeletionFunction deletion_func - Importer removal function having the following signature:
    Source code (C++)
    void (*)(Importer *importer, void *args)
    .
  • string args - List of importer arguments.
  • int int - Priority of the importer for processing files with the specified extension.

Return value

Importer handle, if it was registered successfully; otherwise, nullptr.

bool UnregisterImporter ( IntPtr handle ) #

Unregisters the specified importer.

Arguments

  • IntPtr handle - Importer handle.

Return value

true if the specified importer was successfully unregistered; otherwise false.

int GetImporterPriority ( ImporterID id, string extension ) #

Returns a priority for the importer with the specified ID for processing files with the specified extension.

Arguments

  • ImporterID id - ImporterID structure.
  • string extension - Extension of a file to be imported.

Return value

Priority of the importer with the specified ID for the specified extension.

int GetImporterPriority ( string vendor_name, string importer_name, string extension ) #

Returns a priority for the importer with the specified name and vendor name for processing files with the specified extension.

Arguments

  • string vendor_name - Importer vendor name.
  • string importer_name - Importer name.
  • string extension - Extension of a file to be imported.

Return value

Priority of the importer with the specified name and vendor name for the specified extension.

bool IsSupportedExtension ( string extension ) #

Returns a value indicating whether the specified file extension is supported by the importer.

Arguments

  • string extension - Null-terminated string with file extension to be checked.

Return value

true if the specified file extension is supported by the importer; otherwise, false.

string[] GetSupportedExtensions ( ) #

Returns the list of all supported file extensions as a vector of strings.

Return value

List of all supported extensions as a vector of strings.

string[] GetImporterExtensions ( string vendor_name, string importer_name ) #

Returns the list of all extensions supported by an importer with the specified name and vendor name.

Arguments

  • string vendor_name - Importer vendor name.
  • string importer_name - Importer name.

Return value

List of all extensions supported by an importer with the specified name and vendor name.

string[] GetImporterExtensions ( ImporterID id ) #

Returns the list of all extensions supported by an importer with the specified ID.

Arguments

Return value

List of all extensions supported by an importer with the specified ID.

ImporterID[] GetImporterIDsByExtension ( string extension, bool sort_by_priority = true ) #

Returns the list of identifiers (ImporterID) of importers available for processing files with the specified extension.

Arguments

  • string extension - Extension of files to be imported.
  • bool sort_by_priority - Set true if you want to sort importers by the priority value; otherwise, set false.

Return value

List of identifiers (ImporterID structures) of importers available for the specified extension.

ImporterID[] GetImporterIDsByExtension ( string vendor_name, string extension, bool sort_by_priority = true ) #

Returns the list of identifiers (ImporterID) of importers from the specified vendor available for processing files with the specified extension.

Arguments

  • string vendor_name - Importer vendor name.
  • string extension - Extension of files to be imported.
  • bool sort_by_priority - Set true if you want to sort importers by the priority value; otherwise, set false.

Return value

List of identifiers (ImporterID structures) of importers from the specified vendor available for the specified extension.

ImporterID[] GetImporterIDsByExtension ( ImporterID id, string extension, bool sort_by_priority = true ) #

Returns the list of identifiers (ImporterID) of importers with the specified ID for processing files with the specified extension.

Arguments

  • ImporterID id - ImporterID structure.
  • string extension - Extension of files to be imported.
  • bool sort_by_priority - Set true if you want to sort importers by the priority value; otherwise, set false.

Return value

List of identifiers (ImporterID structures) of importers with the specified ID for the specified extension.

ImporterID[] GetImporterIDsByExtension ( string vendor_name, string importer_name, string extension, bool sort_by_priority = true ) #

Returns the list of identifiers (ImporterID) of importers with the specified name and vendor name for processing files with the specified extension.

Arguments

  • string vendor_name - Importer vendor name.
  • string importer_name - Importer name.
  • string extension - Extension of files to be imported.
  • bool sort_by_priority - Set true if you want to sort importers by the priority value; otherwise, set false.

Return value

List of identifiers (ImporterID structures) of importers with the specified name and vendor name for the specified extension.

ImporterID[] GetImporterIDs ( ) #

Returns the list of identifiers (ImporterID structures) of all available importers.

Return value

List of identifiers (ImporterID structures) of all available importers.

Importer CreateImporter ( ImporterID id, string extension ) #

Creates an importer with the specified ID for processing files with the specified extension.

Arguments

  • ImporterID id - ImporterID structure.
  • string extension - Extension of files to be imported.

Return value

New created importer with the specified ID for processing files with the specified extension (if it was created successfully).

Importer CreateImporter ( string vendor_name, string importer_name, string extension ) #

Creates an importer with the specified name and vendor name for processing files with the specified extension.

Arguments

  • string vendor_name - Importer vendor name.
  • string importer_name - Importer name.
  • string extension - Extension of files to be imported.

Return value

New created importer with the specified name and vendor name for processing files with the specified extension (if it was created successfully).

Importer CreateImporterByFileName ( string filename ) #

Creates an importer for processing the specified file based on the extension provided.

Arguments

  • string filename - Name of the file to be imported.

Return value

New created importer for processing files with the specified extension (if it was created successfully).

Importer CreateImporterByFileName ( string vendor_name, string filename ) #

Creates an importer with the specified vendor name for processing the specified file based on the extension provided.

Arguments

  • string vendor_name - Importer vendor name.
  • string filename - Name of the file to be imported.

Return value

New created importer with the specified vendor name for processing the specified file based on the extension provided (if it was created successfully).

Importer CreateImporterByFileName ( ImporterID id, string filename ) #

Creates an importer with the specified ID for processing the specified file based on the extension provided.

Arguments

  • ImporterID id - ImporterID structure.
  • string filename - Name of the file to be imported.

Return value

New created importer with the specified ID for processing the specified file based on the extension provided (if it was created successfully).

Importer CreateImporterByFileName ( string vendor_name, string importer_name, string filename ) #

Creates an importer with the specified name and vendor name for processing the specified file based on the extension provided.

Arguments

  • string vendor_name - Importer vendor name.
  • string importer_name - Importer name.
  • string filename - Name of the file to be imported.

Return value

New created importer with the specified name and vendor name for processing the specified file based on the extension provided (if it was created successfully).

string DoImport ( string filepath, string output_path ) #

Imports the contents from the specified input file to the specified output path using a suitable importer. This method returns the path to the resulting output file.

Arguments

  • string filepath - Path to an input file to be imported.
  • string output_path - Output path to be used to put files with imported scene elements to.

Return value

Path to the resulting output file.

string DoImport ( string vendor_name, string filepath, string output_path ) #

Imports the contents from the specified input file to the specified output path using a suitable importer from the specified vendor. This method returns the path to the resulting output file.

Arguments

  • string vendor_name - Importer vendor name.
  • string filepath - Path to an input file to be imported.
  • string output_path - Output path to be used to put files with imported scene elements to.

Return value

Path to the resulting output file.

string DoImport ( ImporterID id, string filepath, string output_path ) #

Imports the contents from the specified input file to the specified output path using the importer with the specified ID. This method returns the path to the resulting output file.

Arguments

  • ImporterID id - ImporterID structure.
  • string filepath - Path to an input file to be imported.
  • string output_path - Output path to be used to put files with imported scene elements to.

Return value

Path to the resulting output file.

string DoImport ( string vendor_name, string importer_name, string filepath, string output_path ) #

Imports the contents from the specified input file to the specified output path using the importer with the specified name and vendor name. This method returns the path to the resulting output file.

Arguments

  • string vendor_name - Importer vendor name.
  • string importer_name - Importer name.
  • string filepath - Path to an input file to be imported.
  • string output_path - Output path to be used to put files with imported scene elements to.

Return value

Path to the resulting output file.

bool ContainsImportProcessor ( string type_name ) #

Returns a value indicating if there is an import processor with the specified type name available.

Arguments

  • string type_name - Import processor type name.

Return value

true if there is an import processor with the specified type name available; otherwise, false.

ImportProcessor CreateImportProcessor ( string type_name ) #

Creates a new import processor of the specified type.
Notice
The processor type name specified must be previously registered.

Arguments

  • string type_name - Import processor type name.

Return value

New created import processor with the specified type name (if it was created successfully).

static IntPtr RegisterImportProcessor ( string type_name, ImportProcessorCreationFunction creation_func, ImportProcessorDeletionFunction deletion_func, IntPtr args = nullptr ) #

Registers a new import processor with the specified parameters.

Arguments

  • string type_name - Import processor type name.
  • ImportProcessorCreationFunction creation_func - Import processor creation function having the following signature:
    Source code (C++)
    ImportProcessor * (*)(void *args)
    .
  • ImportProcessorDeletionFunction deletion_func - Import processor removal function having the following signature:
    Source code (C++)
    void (*)(ImportProcessor *processor, void *args);
    .
  • IntPtr args - Import processor arguments.

Return value

Import processor handle, if it was registered successfully; otherwise, nullptr.

bool UnregisterImportProcessor ( IntPtr handle ) #

Unregisters the specified import processor.

Arguments

  • IntPtr handle - Import processor handle.

Return value

true if the specified import processor was successfully unregistered; otherwise false.
Last update: 19.04.2024
Build: ()