Customize Cocos Framework & Simulator
Overview
The following section provides guidance on how to create and include custom Cocos Framework & Simulator for your games.
Version Requirement
Customizing Cocos Framework requires Cocos Framework v3.7 or higher. This document is used for version v3.8 or higher.
The directories below are based on v3.8 and the installation of Cocos Framework.
How to customize Cocos Framework
Customizing Cocos Framework is actually modifying its source codes. After the installation of Cocos Framework, you can customize the framework with IDE or code editors.
- On Mac, you can open projects
/Applications/Cocos/frameworks/cocos2d-x-v3.8/build/CocosFramework.xcodeproj
with XCode. Then you need to modify and debug codes. - On Windows, you can open projects
[installation directory]/frameworks/cocos2d-x-v3.8/build/CocosFramework.sln
with Visual Studio. Then you need to modify and debug codes.
How to release the custom Cocos Framework
Build a new precompiled library
There is a scripting tool in Cocos Framework to compile source codes to precompiled library: cocos gen-libs
.
The following is a detailed description of how to use this scripting tool:
1 | usage: cocos gen-libs [-h] [-c] [-e ENGINE_PATH] [-p {ios,mac,android,win32}] |
For example:
cocos gen-libs -c
: Clear previous precompiled library and compile all platforms.cocos gen-libs -p win32 --vs 2015
: Compile Win32 platform with Visual Studio 2015.
Precompiled library will be created in the following directory frameworks/cocos2d-x-v3.8/prebuilt
. Include the new precompiled library to game projects.
Note
- To customize Cocos Framework, you need to modify source codes and maintain project files. Any problem in the custom codes or projects will lead to a failure in implementing compiling tools.
- When you’re genrating prebuilt libs with
-m debug
, you should modify the Visual Studio configuration of your game project like this:
Change the value ofC/C++ -> Code Generation -> Runtime Library
from/MD
to/MDd
. Take a look at the image:
Create a new simulator
There is a scripting tool in Cocos Framework to compile source codes to precompiled library: cocos gen-simulator
。
The following is a detailed description of how to use this scripting tool:
1 | usage: cocos gen-simulator [-h] [-c] [-e ENGINE_PATH] [-m {debug,release}] |
For example:
cocos gen-simulator -c
: Clear previous simulators and compile all platforms.cocos gen-simulator -p win32 --vs 2015
: Compile Win32 simulator with Visual Studio 2015.
Integrate custom simulator
Copy and replace the files under “ installation directory/Cocos/cocos-simulator-bin “. Once you have done it, you can use the custom simulator.
*Note Simulator is mainly used to preview projects. If you want to use a new simulator, you need to replace the current used simulator with the new one.*
扫描二维码或在微信中搜索 KeepMovingXin