axmol/README.md

96 lines
4.7 KiB
Markdown
Raw Normal View History

2020-10-22 10:23:41 +08:00
# cocos-re - Cocos2dx Refine
[![Build Status](https://travis-ci.com/c4games/cocos-re.svg?branch=master)](https://travis-ci.com/c4games/cocos-re)
[![Windows Build Status](https://ci.appveyor.com/api/projects/status/4936wev2r2ot606s/branch/master?svg=true)](https://ci.appveyor.com/project/halx99/cocos-re)
[![dev](https://img.shields.io/badge/v1.0.0-alpha18-yellow.svg)](https://github.com/c4games/cocos-re/releases)
2019-11-25 14:59:33 +08:00
2020-10-22 10:23:41 +08:00
**This is another more radical fork of *Cocos2d-x-4.0*, use OpenAL for all platforms, single texture multi GPU texture handler, C++14/17, etc.**
2019-11-25 10:23:47 +08:00
**[简体中文](README_CN.md)**
### Purpose Summary:
* C++14/17
* Focus on native game dev (quick starting, easy to use, fast)
* Bugfixes ASAP
* Usefull PRs from **you** are welcome (review/merge ASAP)
### Highlight Features:
2020-08-15 18:17:03 +08:00
* Refactor AudioEngine, OpenAL for all platforms
2020-08-24 15:09:02 +08:00
* [openal-soft](https://github.com/kcat/openal-soft), pass -DBUILD_EXT_ALSOFT=ON to cmake to force enable it
* [OpenAL.framework](https://opensource.apple.com/tarballs/OpenAL), if no ```BUILD_EXT_ALSOFT``` option specified, cmake script will choose it on osx/ios, even through it was mark as deprecated, but still available.
* Refactor UserDefault with [mio](https://github.com/mandreyel/mio)
2020-09-22 18:14:39 +08:00
* Modularize all optional extension, move from engine core to folder extensions
* Implement all .wav formats supported by ```openal-soft```, such as MS-ADPCM, ADPCM, ...
* Use modern gl loader ```glad``` (instead of glew)
* Add google angle renderer backend support
* C++14 standard
2020-08-24 15:09:02 +08:00
* IOS SDK 9.0 as minimal deployment
2020-09-22 18:14:39 +08:00
* Use fast pugixml
* Using curl for transferring data with URL syntax
* Use SAX parser for all plist file
* Spine-3.8 support
* Add engine extension ```FairyGUI``` support
* Add ASTC 4x4/6x6/8x8 support, if hardware decoder not present, use software decoder
* Add ETC2 RGB/RGBA support, if hardware decoder not present, use software decoder
* **ImGui integrated, easy to write game embedded tools, very ease to use, please read [ImGuiEXT](extensions/ImGuiEXT/README.md)**
2019-11-25 10:22:58 +08:00
2020-10-22 10:23:41 +08:00
### [Roadmap](https://github.com/c4games/cocos-re/issues/1)
### Quick Start
#### Common Requirement [python](https://www.python.org/downloads/)
* python-2.7.17+, python-3.7+
#### Windows
1. Install [CMake](https://cmake.org/) 3.6+
2. Install Visual Studio 2019 build(we strong recommend you use this version)
3. Execute follow command at command line(Console, Window Terminal or Powershell)
```bat
2020-10-22 10:23:41 +08:00
cd cocos-re\
cmake -S . -B build -G "Visual Studio 16 2019" -A Win32
```
2019-11-25 10:22:58 +08:00
2020-02-04 21:42:43 +08:00
#### Android
1. Install Android Studio 4.0+
2020-08-06 15:45:59 +08:00
2. When first start Android Studio, It will guide you to install sdk and other tools, just install them
2020-10-22 10:23:41 +08:00
3. Start Android and choose [Open an existing Android Studio Project] to open ```cocos-re\tests\cpp-tests\proj.android```
2020-08-06 15:45:59 +08:00
4. Start Android Studio and Open [Tools][SDKManager], then switch to ```SDK Tools```, check the ```Show Package Details```, choose follow tools and click the button ```Apply``` to install them:
* Android SDK Platform 28 r3
* Android SDK Build-Tools 29.0.2
* NDK r16b+
* CMake 3.6
2020-08-06 15:45:59 +08:00
5. Waiting for ```Gradle sync``` finish.
2020-04-20 12:10:21 +08:00
6. Remark: If you use non-sdk provided CMake edition, you need download ```ninja``` from https://github.com/ninja-build/ninja/releases, and copy ```ninja.exe``` to cmake's bin directory
2020-02-04 21:42:43 +08:00
#### iOS
1. Ensure xcode11+ & [cmake3.6+](https://github.com/Kitware/CMake/releases) installed, install cmake command line support: ```sudo "/Applications/CMake.app/Contents/bin/cmake-gui" --install```
2. Execute follow command
2020-02-08 21:55:36 +08:00
```sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer```
3. Generate xcode project
2020-02-06 12:52:13 +08:00
```sh
2020-08-24 16:26:12 +08:00
# for device arm64
cmake -S . -B build -GXcode -DCMAKE_TOOLCHAIN_FILE=cmake/ios.mini.cmake
# for device combined armv7,arm64
2020-08-24 16:28:55 +08:00
# cmake -S . -B build -GXcode -DCMAKE_TOOLCHAIN_FILE=cmake/ios.mini.cmake "-DCMAKE_OSX_ARCHITECTURES=armv7;arm64"
2020-08-24 16:26:12 +08:00
# for simulator x86_64
# cmake -S . -B build -GXcode -DCMAKE_TOOLCHAIN_FILE=cmake/ios.mini.cmake -DCMAKE_OSX_SYSROOT=iphonesimulator
2020-02-06 12:52:13 +08:00
```
4. After cmake generate finish, you can open xcode project at ```build``` folder and run cpp-tests or other test targets.
5. Notes
a. **The code sign required to run ios app on device, just change bundle identifier until the auto manage siging solved**
2020-08-24 16:26:12 +08:00
b. **EGNX only provide armv7,arm64,x86_64 prebuilt libraries for ios**
2020-06-19 18:26:24 +08:00
### Pitfalls
* ThreadLocalStorage(TLS)
- ios x86 simulator ios>=10
- ios x64 or devices(armv7,arm64) ios sdk>=9.0
- the openal-soft maintained by kcat use TLS
2020-07-21 20:13:44 +08:00
### Reference links
2020-10-22 10:23:41 +08:00
* cocos-re: https://github.com/c4games/cocos-re-3rd
* official v4: https://github.com/cocos2d/cocos2d-x