Axmol Engine – A Multi-platform Engine for Desktop, XBOX (UWP) and Mobile games. (A radical fork of Cocos2d-x-4.0)
Go to file
halx99 659fdc4ec7 Build cpp-tests in engine by default 2024-02-21 22:35:57 +08:00
.github Improve dll support (#1706) 2024-02-20 05:37:12 +08:00
1k Don't use force checkout, will lose sentry file 2024-02-17 00:05:53 +08:00
cmake Don't use fmt header only (#1707) 2024-02-20 05:37:28 +08:00
core Allow overriding defines without modifying engine source (#1710) 2024-02-21 09:40:04 +08:00
docs Some additions and corrections for readme files. (#1682) 2024-02-14 15:39:24 +08:00
extensions Fix lua build for Android, iOS (#1709) 2024-02-20 22:11:09 +08:00
templates Fix #1704, control android cmake options by engine axutils.gradle (#1705) 2024-02-20 00:58:47 +08:00
tests Fix #1704, control android cmake options by engine axutils.gradle (#1705) 2024-02-20 00:58:47 +08:00
thirdparty Don't use fmt header only (#1707) 2024-02-20 05:37:28 +08:00
tools Fix axmol console command 2024-02-17 00:29:07 +08:00
.appveyor.yml Bump version to 2.1.1 2024-01-24 22:12:24 +08:00
.clang-format Tidy platform macros/consts value 2023-09-11 19:37:49 +08:00
.editorconfig Add apple tvos support (#846) 2022-09-05 14:13:52 +08:00
.gitattributes Improve make-pkg.ps1 2023-12-27 23:29:38 +08:00
.gitignore Improve build system 2023-12-22 02:39:38 +08:00
AUTHORS.md Update ChangeLog and Authors 2024-01-17 00:44:03 +08:00
CHANGELOG.md Build cpp-tests in engine by default 2024-02-21 22:35:57 +08:00
CMakeLists.txt Improve android build gradle script 2024-01-16 00:47:19 +08:00
CMakeOptions.md Ability to disable default implementations of HTTP and WebSocket clients (#1656) 2024-02-06 22:19:03 +08:00
CONTRIBUTING.md Some additions and corrections for readme files. (#1682) 2024-02-14 15:39:24 +08:00
LICENSE Prepare 2.1.0 release 2023-12-08 01:04:43 +08:00
README.md Some additions and corrections for readme files. (#1682) 2024-02-14 15:39:24 +08:00
README_CN.md Update reademe files 2024-01-10 00:02:00 +08:00
build.ps1 Build cpp-tests in engine by default 2024-02-21 22:35:57 +08:00
manifest.json Prepare release v2.1.1 2024-02-02 00:00:06 +08:00
setup.ps1 release 2.1.0 finally (#1621) [release 2.1.0] 2024-01-20 16:16:53 +08:00

README.md

axmol logo

Axmol Engine

A Multi-platform Engine for Mobile, Desktop and Xbox.

Axmol Engine is an open-source, C++ multi-platform engine designed for mobile devices, desktop, and Xbox, well-suited for 2D game development. It was launched in November 2019 as a fork of Cocos2d-x v4.0.

Please visit our Wiki to know more about Axmol.


Latest Release LICENSE Codacy Badge cxxstd

Build Status WASM Build Status

issues forks stars GitHub code size in bytes

PRs Welcome Discord

Chinese ver. / 简体中文


Building

If you have a Cocos2d-x project, migrating to Axmol Engine is easy. We have prepared a Migration Guide.

Learning and docs

General information

Axmol Engine has iterated and improved over the Cocos2d-x v4.0 base. Now is faster and more capable, while staying lightweight. Check a comparative here.

Supported platforms:

  • Mobile: iOS, Android
  • Desktop: Windows, Linux, macOS, tvOS
  • Console: Xbox (Universal Windows Platform)
  • Web: WebAssembly (Preview: Axmol tests / FairyGUI tests)

Languages:

  • C++
  • Lua

Renderer backends:

  • Metal for macOS and iOS
  • OpenGL 3.3+ for Linux, macOS and Win32
  • OpenGL ES 2.0+ for Android
  • OpenGL ES 3.0+ for iOS
  • ANGLE GLES 3.0+ for Win32 and UWP
  • WebGL 2.0 (OpenGL ES 3.0): WASM

Architectures:

  • iOS (x64, arm64)
  • Android (x86, x64, armv7, arm64)
  • Windows (x86, x64)
  • Linux (x64)
  • OSX (x64, arm64)
  • UWP (x64, arm64)
  • wasm32

Supported 2D physics engines (more info here):

  • Box2D
  • Box2D-optimized
  • Chipmunk2D

Supported 3D physics engines:

  • Bullet Physics SDK

Included extensions:

More extensions created by our community

Features

Some highlights:

  • New MediaPlayer: render video as texture2D using MediaEngine. More info in our Wiki.
  • Windows video player support (based on Microsoft Media Foundation)
  • WebAssembly support (by @nowasm) - Preview: Axmol tests
  • Universal Windows Platform (UWP) support for Xbox consoles
  • Apple M1 and Android x64 support (by @pietpukkel)
  • Windows x64 build support
  • Improved Windows workflow, supporting linking with engine prebuilt libs. Please read the Windows workflow guide.
  • Refactored AudioEngine, OpenAL for all platforms:
    • OpenAL Soft (pass -DAX_USE_ALSOFT=ON to CMake to force enabling it)
    • OpenAL.framework (if no AX_USE_ALSOFT option specified, cmake script will choose it on OSX/iOS/tvOS, even though it was marked as deprecated is still available)
  • Implemented all .wav formats supported by OpenAL Soft (MS-ADPCM, ADPCM, etc.)
  • Refactored UserDefault with mio
  • Upstream Version License - Third-party:
    • Third-party license overview, for easier publishing of your commercial apps based on Axmol framework.
    • Some links to third party libs which support axmol too.
  • Upstream Version License - Extensions:
    • Extensions license overview, for easier publishing of your commercial apps based on Axmol framework.
  • Reimplemented HttpClient based on yasio for concurrent http requests processing.
  • Modularized all optional extensions, move from engine core folder to an extensions folder.
  • Google Angle renderer backend support
  • Using GL loader Glad.
  • Using pugixml
  • Using curl for transferring data with URL syntax
  • Using SAX parser for .plist files
  • ASTC 4x4 / 6x6 / 8x8 support (if hardware decoding is not supported, then software decoding is used)
  • ETC2 RGB / RGBA support (if hardware decoding is not supported, then software decoding is used)
  • iOS / tvOS SDK 11.0 as minimal deployment.

Please read the full list of changes since Cocos2d-x v4.0.

See the Milestones for planned features.

Contributions

How to contribute:

  • Suggestions, bug fixes, and improvements are highly appreciated!
  • Please do not forget to add the topic axmol and axmolengine to any related repository you create!
  • Adding a star on GitHub will help Axmol grow as well. Thank you!

If you find Axmol Engine helpful, please consider donating in Open Collective or in GitHub Sponsors. Thank you very much!

Community

Our community is growing! Please join us at:

In order to see some of our community works, please check our Axmol Showcase: Made in Axmol

Axmol Stats

Alt