banner
Olimi

Olimi

SCUT 小菜鸡
github
bilibili

Introduction to 3D Game Engine Course 3 - Resource Management

Preface#

The content of this column is from the online course "Fundamentals of 3D Game Engine Architecture and Design" on XuetangX. I have converted it into a text and image version (I personally prefer text tutorials as they are much faster to read), for easy reference.
Original course link: Fundamentals of 3D Game Engine Architecture and Design.

Resource Management#

Overview of Resource Management#

Organizing and managing game resources. The goal is to effectively organize and manage various types of game resources, providing them to the game program quickly and accurately at the appropriate time. Resource organization refers to designing the memory structure of resource data based on the characteristics and usage of various resources. Resource management refers to abstracting and defining a unified resource processing method, such as resource loading and unloading, resource scheduling, etc.

The process diagram of resource management is as follows:
Resource Management Process Diagram

Game resource management includes:

  • File management: including file loading and unloading, file parsing, file format conversion, file resource packaging, file resource transmission, etc.
    File Management

  • Memory management: including memory allocation, access guarantee, memory release, etc.
    Memory Management

  • State management: generally, a game resource is not stored repeatedly in memory to save memory. Based on the resource state, decisions are made for loading, usage, etc. Resource states include: undefined, defined, unloaded, loaded, in use, etc. Example of a resource state transition diagram:
    Resource State Transition Diagram

  • Scheduling algorithm: the principle is to move resource data as little as possible. When movement is necessary, the movement strategy is determined based on certain conditions. Common scheduling algorithms include: arranging resources by priority, LRU algorithm, determining the most likely used resource based on current operations, etc.

  • Multithreading processing
    Multithreading Processing

Resource Management Examples#

OGRE Resource Management#

OGRE Resource Management
The class diagram of the main classes is as follows:
OGRE Class Diagram
OGRE Class Diagram
OGRE Class Diagram
The relationship diagram of the above three core classes is as follows:
OGRE Relationship Diagram
The timing diagram of the OGRE resource lifecycle is as follows:
OGRE Resource Lifecycle Timing Diagram

Panda3D Resource Management#

Main class modules for Panda3D resource management:

Panda3D Resource Management
Panda3D asynchronous resource loader class diagram:
Panda3D Asynchronous Resource Loader Class Diagram
Panda3D asynchronous loading timing diagram:
Panda3D Asynchronous Loading Timing Diagram

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.