当前位置:网站首页>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.
边栏推荐
猜你喜欢
随机推荐
redis + lua实现分布式接口限流实现方案
Implement general-purpose, high-performance sorting and quicksort optimizations
sql--7天内(含当天)购买次数超过3次(含),且近7天的购买金额超过1000的用户
亚马逊API接口大全
1688 product interface
torch.cat()用法
那些事情是用Unity开发项目应该一开始规划好的?如何避免后期酿成巨坑?
Monte Carlo
unable to extend table xxx by 1024 in tablespace xxxx
亚马逊获得AMAZON商品详情 API 返回值说明
空间金字塔池化 -Spatial Pyramid Pooling(含源码)
torch.cat()使用方法
如何选择专业、安全、高性能的远程控制软件
LeetCode刷题系列 -- 46. 全排列
Conference OA Project My Conference
导航定位中的坐标系
MySQL之CRUD
【预约观看】Ambire 智能钱包 AMA 活动第四期即将举行
Trill keyword search goods - API
你是如何做好Unity项目性能优化的