banner
Olimi

Olimi

SCUT 小菜鸡
github
bilibili

Introduction to 3D Game Engine Course 1 - Overview

Preface#

The content of this column is from the online course "Fundamentals of 3D Game Engine Architecture Design" on XuetangX. I have converted it into a text and image version (I personally prefer text tutorials, which are much faster to read) for easy reference.
Original course link: Fundamentals of 3D Game Engine Architecture Design.
This article is converted from a word document and you can choose to read the entire document (reading it as a web column feels more comfortable). The link is provided at the end.

Mind Map#

Course mind map:
Insert Image Description Here
Link to view the full image: High-resolution Version
Therefore, this column will be divided into 7 chapters according to the mind map index.

Index#

Overview#

Overview of Game Engines#

Definition: If the core basic functions in game development are abstracted and made available for game developers to use, these components are called game engines. Using a game engine to develop games can improve the efficiency and quality of game development. In the early days of game development, designers gradually extracted common components of game design, abstracted and modularized these functions, forming game engines. With the continuous maturity of game development, the functionality of game engines has become more and more powerful.

image
Open-source game engines include Unreal Engine 4, OGRE, Panda3D, etc., and popular commercial game engines include Unity, etc. The following text will mainly use OGRE and Panda3D as examples.

Overview of Game Engine Framework#

Requirement analysis of game engines, i.e., the functions that game engines should include.

Environmental requirements include:

  • Target hardware

  • Device drivers

  • Operating system

  • Third-party software packages and middleware

  • Platform-independent layer supporting the engine

Functional requirements include:

  • Core basic modules of the engine

  • Engine resource management

  • Engine scene management and graphics rendering

  • Character animation

  • Sound

  • Physics and collision detection

  • Artificial intelligence

  • Graphical user interface (GUI)

  • Scripting, etc.

The design principles of game engines include: comprehensive functionality (many), high runtime efficiency (fast), stable performance (good), and good scalability.

The architecture design of game engines should combine the following content in a certain way:

  • Support components of the basic platform

  • Third-party basic libraries: data computation, graphics processing, data structures, etc.

  • Engine functionality (as mentioned in the functional requirements above)

Hierarchical organizational structure of game engines:

Insert Image Description Here
Insert Image Description Here

Casual Games#

Classification of casual games:
Insert Image Description Here

Design Patterns in Game Engines#

Creational patterns:

  • Singleton pattern: Only one instance exists in the system, usually throughout the entire process.

  • Abstract factory pattern: Provides an interface for creating a family of related or dependent objects, without specifying their concrete classes.

  • Factory pattern: Provides an interface for creating objects related to each other, with concrete classes that can be instantiated.

Structural patterns:

  • Adapter pattern: Converts the interface of a class into another interface that clients expect. It lets classes work together that couldn't otherwise because of incompatible interfaces. This pattern can define a unified interface for third-party basic libraries.

Behavioral patterns:

  • Iterator pattern: Sequentially access the elements of an aggregate object without exposing its underlying representation.

  • Observer pattern: Allows multiple observer objects to simultaneously listen to a subject. When the subject object changes, it notifies all observers and makes corresponding responses.

  • Visitor pattern: Encapsulates an operation to be performed on the elements of a data structure. When the operation changes, the elements can remain unchanged. For example, encapsulating rendering algorithms into visitor pattern classes can isolate methods from data structures. If an algorithm of a data structure changes, only the algorithm needs to be modified without affecting the elements of the data structure.

[Kingsoft Document] Fundamentals of 3D Game Engine.doc

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