This page has been translated automatically.
Видеоуроки
Interface
Essentials
Advanced
Полезные советы
Программирование на C#
Принципы работы
Свойства (properties)
Компонентная Система
Рендер
Физика
Редактор UnigineEditor
Обзор интерфейса
Работа с ассетами
Настройки и предпочтения
Работа с проектами
Настройка параметров узла
Setting Up Materials
Setting Up Properties
Освещение
Landscape Tool
Sandworm (Experimental)
Использование инструментов редактора для конкретных задач
Extending Editor Functionality
Встроенные объекты
Nodes
Objects
Effects
Decals
Light Sources
Geodetics
World Objects
Sound Objects
Pathfinding Objects
Players
Программирование
Настройка среды разработки
Примеры использования
UnigineScript
C++
C#
Унифицированный язык шейдеров UUSL
File Formats
Rebuilding the Engine Tools
GUI
Двойная точность координат
API
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
Работа с контентом
Оптимизация контента
Материалы
Art Samples
Tutorials
Внимание! Эта версия документация УСТАРЕЛА, поскольку относится к более ранней версии SDK! Пожалуйста, переключитесь на самую актуальную документацию для последней версии SDK.
Внимание! Эта версия документации описывает устаревшую версию SDK, которая больше не поддерживается! Пожалуйста, обновитесь до последней версии SDK.

Engine Main Loop

This article describes in detail the steps taken by the UNIGINE engine when the Engine::update(), Engine::postUpdate(), and Engine::swap() functions are called. For other steps and general information about execution sequence, see the Execution Sequence article.

Notice
Each stage of the main loop is initiated by the application window created during the Initialization stage.

In the performance profiler, the total time the main loop has taken, is displayed by the Total counter.

Update#

The update part of the execution sequence includes the following:

  1. The FPS value starts to be calculated.
    Notice
    Calculation of FPS starts only with the second rendered frame, while the very first one is skipped.
  2. All pending console commands that were called during the previous frame are executed. The commands are executed in the beginning of the update() cycle, but before the scripts are updated, because otherwise they may violate the current process of rendering or physical calculations.
  3. If the video_restart console command was executed previously (not in the current update stage), world shaders are created.
    Notice
    When video is restarted (for example, when the video mode is changed), the application window calls the destroyRenderResources() methods of the system and editor logic and plugins. However, it is performed not in the current update stage, but earlier.
  4. A plugin update() function is called. What happens during it, solely depends on the content of this custom function.
  5. The editor logic that handles all editor-related GUI and logic is updated.
  6. The system logic is updated. The default system script update() function performs the following:
    • The system script handles the mouse. It controls whether the mouse is grabbed when clicked (by default), the mouse cursor disappears when not moved for some time (set by the MOUSE_SOFT definition), or not handled by the system (set by the MOUSE_USER definition, which allows input handling by some custom module).
    • The main menu logic is updated (if the MENU_USER definition is not set).
    • Other system-related user input is handled. For example, the world state is saved or restored, or a screenshot of the current UNIGINE window contents is made, if required.
    • If the GPU Monitor plugin is initialized (the HAS_GPU_MONITOR definition is set), the plugin output is displayed in the application window and additional console commands become available.

      Warning
      The functionality described in this paragraph is not available in the Community SDK edition.
      You should upgrade to Sim SDK edition to use it.
  7. Ambient sound sources timers are updated.
  8. If the world is loaded (it can be done from the console or via the system logic), the world logic gets updated. In the world logic update() function, you can code frame-by-frame behavior of your application (see details here).
    Notice
    Physics, if any, and continuous operations (pushing a car forward depending on current motor's RPM, simulating wind blowing constantly, performing immediate collision response, etc.), can be implemented separately in the updatePhysics() function. This function is called with a fixed frame rate (while the update() function is called each frame).
    The world and its world logic are updated in the following order:
    1. The world logic updateAsyncThread() function is executed. It is designed to perform logic functions that should be called every frame independently of the rendering thread. This function doesn't block the Main Thread.
    2. The world logic updateSyncThread() function is executed: all parallel logic functions that should be executed before update(). This function blocks the Main Thread until all calls are completed.
    3. The world logic update() function is executed: node parameters are updated, transformations for non-physical nodes are set and so on.
    4. The state of nodes existing in the world is updated (mostly for visible nodes): skinned animation is played, particle systems spawn new particles, players are repositioned, and so on. Triggered world callbacks are added to a stack (they will be executed later).
    5. World Expressions are updated. Code in World Expressions can be written via UnigineEditor.
    6. The world logic postUpdate() function is called.
  9. The system logic postUpdate() function is executed, if necessary (see details here). It can access the updated data on node states and correct the behavior accordingly in the same frame.
  10. The postUpdate() function of all plugins is called.
  11. The world spatial tree is updated.
  12. GUI is updated.

At the end of the update stage, physics and pathfinding start to be updated in their separate threads. Then they perform their tasks on all available threads in parallel to rendering.

Notice
Nodes with computationally heavy bodies (like clothes and ropes) should not have one parent; otherwise, they will be updated in one thread.

In the performance profiler, the total time of update stage is displayed by the Update counter.

Rendering#

As soon as the update stage is completed, UNIGINE can start rendering the world. In parallel, physics calculations and pathfinding are performed. This approach enables to effectively balance the load between CPU and GPU, and thus allows for higher framerate in the UNIGINE-based application.

Here is how the render stage works:

  1. The editor logic postUpdate() function is called.
  2. The postUpdate() function of plugins is called, if they exist.
  3. UNIGINE renders the graphics scene (the world) and the sound scene, as they should be in the current frame. The graphics scene is sent to GPU, while the sound scene is sent to the sound card. As soon as the CPU finishes preparation of data and feeds rendering commands to the GPU, the GPU becomes busy with rendering the frame.

    In the performance profiler, the total time of rendering stage is displayed by the Render counter. After that, the CPU is free, so we can load it with calculations we need.

  4. The physics module calls the plugin updatePhysics() function, if it exists.
  5. The physics module calls the world logic updatePhysics() function. In the updatePhysics() function, you can modify physics.

    The updatePhysics() function is not called each frame. The physics module has its own fixed framerate, which does not depend on the rendering framerate. During each of such physics frames (or ticks), a number of calculation iterations are performed (updatePhysics() is called before each iteration).

  6. The physics module is updated: internal physics simulation starts. During this step, Unigine performs collision detection for all objects that have physical bodies and collision shapes.
    In the performance profiler, the total time of updatePhysics() together with physics simulation is displayed by the Physics counter.
  7. The pathfinding module is updated. In the thread performance profiler, the total time of pathfinding is displayed by the PathFind counter.
  8. The gui() function of plugins (if any) is called.
  9. At last and atop of all, GUI is rendered, if required. In the performance profiler, the total time of interface rendering is displayed by the Interface counter.

Swap#

The swap stage is the last one in the main loop. It includes the following:

  1. If the video_grab console command is executed previously, on this stage, the taken screenshot is saved in folder where all application data is stored.
  2. The plugin swap() function is called, if it exists.
  3. Synchronization of physics and pathfinding with the rendered world, i.e. waiting for all additional threads to finish their tasks. Results of the physical calculations are applied to the world. That is, on the previous step we have calculated how physical bodies with collision shapes have changed their position and orientation (due to our update-based logic or interaction). Now these transformations can be finally applied to nodes, i.e. rendered meshes.
    Notice
    As synchronization of physics follows the rendering stage, applied physical transformations will be visible on the screen only in the next frame.
  4. The world logic swap() function is executed. It operates with the results of the updateAsyncThread() function.
  5. Values shown in the performance profiler are updated.

After the swap() is completed, the application window initiates GPU buffers swapping as described here.

Last update: 24.11.2020
Build: ()