当前位置:网站首页>How Unity handles C# under the hood
How Unity handles C# under the hood
2022-08-11 07:28:00 【Clank's Game Stack】
Foreword
In interviews, we are often asked how the bottom layer of Unity handles C#. This section will analyze this question in detail through the following three points:


History of C#
Before C# came out, at that time, Java relied on Java virtual machine + Java bytecode interpretation and execution, so that Java code can be ported and written to run across platforms.At the same time, Java has a garbage collection mechanism, etc., which greatly reduces the difficulty of development.In response to Java, Microsoft launched the .net platform.The .net platform includes several points:
a: Design and create some programming development languages, such as: C#, J#, etc.
b: .net development tool, which compiles .net programming languages into .net bytecode, which we call CLR or IL, so that the code written in C# can be called by J#, because the bottom layer is based on .net wordsSection code.
c: Develop a .net virtual machine that can interpret and execute CLR bytecode, and transplant the .net virtual machine to multiple platforms (windows, win mobile and other Windows operating systems).In this way, programs developed with C#/J# can cross-platform to the operating system supported by .net, and at the same time, C# and J# can call each other at the same bottom layer.
d: In order to allow .net to support more platforms, Microsoft has opened up the .net CLR standard.
e: An open-source project Mono was developed, which uses .net as the standard to develop a .net virtual machine that supports mainstream PC and mobile operating systems.This gives .net code the opportunity to run on non-win family operating systems.
Why Unity uses C#
After talking about several stages of .net's development history, let's take a look at why Unity uses C# as the development language.When Unity came out, it also needed to solve the game for mac, the game for linux, the game for windows, the game for xbox and other platforms. Later, when the mobile game developed, it also needed to solve the game for Android, the game for IOS and so on.Therefore, the Unity engine must be built on the basis that it can be distributed across platforms.So the early Unity chose Mono as a cross-platform basis, so Unity is a project developed based on mono.Mono is built on .net technology, so it is developed on mono and can support multiple development languages, such as c#, J#, etc. So early Unity can support programming languages such as C#, Boo, Js, etc., all based on mono .net technology.So Mono helps Unity solve the problem of cross-platform, development language and development tools.
Everything looks good, but the technical solution based on mono also has fatal problems. Later, Unity found more and more problems. The main problems are as follows:
a: Program execution efficiency, interpreting and executing CLR code on the mobile terminal is not as efficient as direct native code;
b: Mono virtual machine porting. When a new game development platform comes out, the mono virtual machine needs to be re-ported. Let's not talk about the bugs here, it is not certain whether it can be supported or not;
c: mono copyright issue, when Unity uses mono, mono authorization is required;
d: It is almost impossible to port the mono virtual machine to the web platform, and now the web platform is also very popular, such as WeChat Douyin mini-games, etc.;
e: IOS does not allow running .net virtual machines;

Unity il2cppSavior
In order to solve the problem of mono .net, the Unity development team launched a new technology, which is il2cpp, as the name implies, it is to convert CLR/IL code into c/c++ code through il2cpp, and then based on the platform's native developmentThe tool is then compiled, and finally the native binary code is compiled.
At the same time, high-level programming languages such as C# will have some advanced features, such as garbage collection, etc., which requires some support at the bottom, such as garbage collection based on C/C++, thread library of C#, etc.These functions are implemented on the il2cpp runtime library (il2cpp vm), which provides support for these basic services at runtime.
There is no problem in publishing IOS in this way, and the native code performance is also good. At the same time, if a new platform appears, just port C/C++ to the corresponding platform, which is very convenient when porting.
To summarize the basic principles and steps of Unity's construction and processing of C# based on il2cpp:
(1) The developer is still developing based on .net C#;
(2) Or use .net tools to compile C# code into CLR or IL
(3) Use il2cpp tool to convert CLR/IL bytecode into static C++ code;
(4) Use native development tools (xcode, Android NDK, etc.) to compile the C++ code into the target's native machine code;
In this way, the installation package developed by Unity to the target OS platform is packaged and released.Assuming that there is a new platform, it is enough to transplant the native code of the game engine + platform engineering tools, and obtain better cross-platform portability while obtaining better performance.Finally, the last picture shows the entire architecture, as follows:

This section is shared here, follow me to learn more about Unity development.
边栏推荐
- 基于FPGA的FIR滤波器的实现(4)— 串行结构FIR滤波器的FPGA代码实现
- pytorch调整模型学习率
- 淘宝商品详情API接口
- HCIP MPLS/BGP Comprehensive Experiment
- Find the shops that have sold more than 1,000 yuan per day for more than 30 consecutive days in the past six months
- 淘宝sku API 接口(PHP示例)
- Discourse 的关闭主题(Close Topic )和重新开放主题
- Concurrent programming in eight-part essay
- 每日sql -用户两天留存率
- 一个小时快速熟悉MySQL基本用法
猜你喜欢

Douyin share password url API tool

亚马逊API接口大全

详解BLEU的原理和计算

什么是Inductive learning和Transductive learning

获取拼多多商品信息操作详情

Taobao API common interface and acquisition method

Cobbleland 博览会 基础系列 1

Strongly recommend an easy-to-use API interface

图文带你理解什么是Few-shot Learning

Daily sql: request for friend application pass rate
随机推荐
HCIP Republish/Routing Policy Experiment
Eight-legged text of mysql
My meeting of the OA project (meeting seating & review)
一个小时快速熟悉MySQL基本用法
亚马逊API接口大全
软件测试主要做什么工作,难不难?
每日sql-统计各个专业人数(包括专业人数为0的)
每日sql:求好友申请通过率
sql--7天内(含当天)购买次数超过3次(含),且近7天的购买金额超过1000的用户
2022-08-09 第四小组 修身课 学习笔记(every day)
矩阵分析——Jordan标准形
抖音分享口令url API工具
每日sql - 判断+聚合
radix-4 FFT principle and C language code implementation
抖音API接口
LabelEncoder和LabelBinarizer的区别
Especially the redis
Redis + lua implements distributed interface current limiting implementation scheme
亚马逊获得AMAZON商品详情 API 返回值说明
1688商品详情接口