This version is compatible with Starkku's mod base, and adds an age verification system and the ability to display "healthy game advice".
该版本兼容Starkku的mod base,并且添加了中国特色功能:防沉迷、脏话屏蔽、健康游戏忠告。
The age verification system and healthy game advice are enabled by default in the People's Republic of China, and there will be no options for healthy game advice in non-People's Republic of China regions.
防沉迷、健康游戏忠告和脏话屏蔽在中国区内自动开启,非中国区则不会显示也不会有显示健康游戏忠告的选项。
The flag AgeVerify=
in ClientDefinitions.ini
controls showing age verification.
ClientDefinitions.ini
里的AgeVerify=
语句决定是否启用年龄验证。
The flag CrabsInRivers=
in ClientDefinitions.ini
controls showing age verification.
ClientDefinitions.ini
里的CrabsInRivers=
语句决定是否启用脏话屏蔽。
合并了一部分pr。
The MonoGame / XNA CnCNet client, a platform for playing classic Command & Conquer games and their mods both online and offline. Supports setting up and launching both singleplayer and multiplayer games with a CnCNet game spawner. Includes an IRC-based chat client with advanced features like private messaging, a friend list, a configurable game lobby, flexible and moddable UI graphics, and extras like game setting configuration and keeping track of match statistics. And much more!
MonoGame/XNA CnCNet客户端是游玩经典命令与征服游戏及其MOD的平台,支持使用 CnCNet游戏生成器设置和启动单人游戏和多人游戏。包括基于IRC的聊天客户端,具有高级功能,如私信、好友列表、可配置的游戏大厅、灵活可修改的 UI 图形,以及游戏设置配置和跟踪比赛统计数据等附加功能。还有更多!
You can find the dedicated project development chat at C&C Mod Haven Discord server.
您可以在C&C Mod Haven Discord服务器上找到专用项目开发聊天。
The primary targets of the client project are
该项目主要服务于:
- Dawn of the Tiberium Age 泰伯利亚时代黎明
- Twisted Insurrection 扭曲的暴动
- Mental Omega 心灵终结
- CnCNet Yuri's Revenge 尤里的复仇
However, there is no limitation in the client that would prevent incorporating it into other projects. Any game or mod project that utilizes the CnCNet spawner for Tiberian Sun and Red Alert 2 can be supported. Several other projects also use the client or an unofficial fork of it, including Tiberian Sun Client, Project Phantom, YR Red-Resurrection, The Second Tiberium War and CnC: Final War.
其他项目也可以使用本客户端,也支持任何使用该客户端的游戏或mod。其他几个项目也使用客户端或其第三方分支,包括泰伯利亚之日, 幽灵计划, 红色复活, 第二次泰伯利亚战争 and CnC: Final War.
The client has 2 variants: .NET 4.8 and .NET 8.0.
客户端分为.NET4.8版本和.NET8.0版本。
- Both variants have 3 builds: Windows DirectX11, Windows OpenGL and Windows XNA.
- 两种变体都有3个版本:Windows DirectX11、Windows OpenGL 和 Windows XNA。
- .NET 8.0 in addition has a cross-platform Universal OpenGL build.
- 此外,.NET8.0还具有跨平台的通用 OpenGL 版本。
- The DirectX11 and OpenGL builds rely on MonoGame.
- DirectX11和OpenGL版本依赖MonoGame。
- The XNA build relies on Microsoft's XNA Framework 4.0 Refresh.
- XNA版本依赖Microsoft的XNA Framework 4.0 Refresh。
Building the solution for any platform requires Visual Studio 2022 17.8 or newer and/or the .NET SDK 8.0.200. A modern version of Visual Studio Code, MonoDevelop or Visual Studio for Mac could also work, but are not officially supported. To debug WindowsXNA builds the .NET SDK 8.0 x86 is additionally required. When using the included build scripts PowerShell 7.2 or newer is required. 编译任何平台的版本都要Visual Studio 2022 17.8及以上版本或.NET SDK 8.0.200。Visual Studio Code、MonoDevelop或Visual Studio for Mac的现代版本也可以使用,但不受官方支持。 若要调试WindowsXNA生成,还需要.NET SDK 8.0 x86。 使用包含的生成脚本时,需要PowerShell 7.2及以上版本。 1
- 懒得翻译了,直接点
Scripts\Build**.bat (develop)
或BuildScripts\Build**.bat (master/modified-client)
。 - Compiling itself is simple: assuming you have the .NET 8.0 SDK installed, you can just open the solution with Visual Studio and compile it right away.
- When built as a debug build, the client executable expects to reside in the same directory with the target project's main game executable. Resources should exist in a "Resources" sub-directory in the same directory. The repository contains sample resources and post-build commands for copying them so that you can immediately run the client in debug mode by just hitting the Debug button in Visual Studio.
- When built in release mode, the client executables expect to reside in the
Resources
sub-directory itself for .NET 4.8, namedclientdx.exe
,clientogl.exe
andclientxna.exe
. Each.exe
file or.dll
file expects a.pdb
file for diagnostics purpose. It's advised not to delete these.pdb
files. Keep all.pdb
files even for end users. - The
Scripts
directory has automated build scripts that build the client for all platforms and copy the output files to a folder namedCompiled
in the project root. You can then copy the contents of thisCompiled
directory into theResources
sub-directory of any target project.
.NET 8 builds
- For .NET 8, When built in release mode, the client executables expect to reside in
Resources/BinariesNET8/{Windows, OpenGL, UniversalGL, XNA}
folders, namedclient{dx, ogl, ogl, xna}.dll
, respectively. Note thatclient{dx, ogl, ogl, xna}.runtimeconfig.json
files are required for the corresponding .NET 8 dlls. - When built on an OS other than Windows, only the Universal OpenGL build is available.
Development workarounds
- If you switch among different solution configurations in Visual Studio (e.g. switch to
TSUniversalGLRelease
fromAresWindowsDXDebug
), especially switching between .NET 4.8 and .NET 8.0 variants, it is recommended to restart Visual Studio after switching configurations to prevent unexpected error messages. If restarting Visual Studio do not work as intended, try deleting allobj
folders in each project. Due to the same reason, it is highly advised to close Visual Studio when building the client using the scripts inScripts
folder. - Some dependencies are stored in
References
folder instead of the official NuGet source. This folder is also useful if you are working on modifying a dependency and debugging in your local machine without publishing the modification to NuGet. However, if you have replaced the.(s)nupkg
files of a package, without altering the package version, be sure to remove the corresponding package from%USERPROFILE%\.nuget\packages
folder (Windows) to purge the old version.
- Windows: Windows 7 SP1 or higher is required. The preferred build is DirectX11 (.NET 4.8), i.e.,
clientdx.exe
. If your GPU does not support DX11, consider using the OpenGL or XNA build instead. Advanced users may experiment with the .NET 8 builds at their discretion. - Other OS: Use the Universal OpenGL build.
(Optional) The XNA build requires:
- The .NET 8.0 Runtime for your specific platform.
- The .NET 8.0 Runtime for your specific platform.
Windows .NET 8.0 requirements
- The .NET 8.0 Desktop Runtime for your specific platform.
(Optional) The XNA build requires:
Windows 7 SP1 and Windows 8.x additionally require:
Windows 7 SP1 additionally requires:
This repository does not contain the client launcher (for example, DTA.exe
in Dawn of the Tiberium Age) that selects which platform's client executable is most suitable for each user's system.
See dta-mg-client-launcher.
此仓库不包含启动器(例如泰伯利亚时代黎明中的DTA.exe
),该启动器负责选择合适的客户端。
请参阅 dta-mg-client-launcher。
Currently there are only two major active branches. develop
is where development happens, and while things should be fairly stable, occasionally there can also be bugs. If you want stability and reliability, the master
branch is recommended.
目前官方只有两个主要的活跃分支,develop
是开发区,较为稳定,但会偶尔出错。建议使用更稳定的master
分支。本仓库的master
分支为modified-client
。