mirror of https://github.com/axmolengine/axmol.git
a2adfaf7df
* #improve node sort performance by std::sort + unsigned long long (_localZOrder) * Use bit field for make _localZOrder storage more clearly. * #Comment _localZOrder members for meaningful. * fix issues * #use explicit bits integer of localZOrder storage * #Fix compile error, add include <cstdint> to CCNode.h * use the optimization for 64bit and no optimization solution for 32bit * Use the optimization for 64bit and no optimization solution for 32bit * #Improve node sort performance 64-bit by std::sort + long long (_localZOrder) * fix issues * test case * Revert "test case" This reverts commit 85471d07a433f2b7f0265c3b7dd483fcc28e3e2f. * fix issues * use lambda, and any other sort issues. * skip sotNodes * fix compile error * fix compile issue |
||
---|---|---|
.. | ||
README.mdown | ||
cocos2dx.ini | ||
cocos2dx_3d.ini | ||
cocos2dx_audioengine.ini | ||
cocos2dx_cocosbuilder.ini | ||
cocos2dx_cocosdenshion.ini | ||
cocos2dx_controller.ini | ||
cocos2dx_csloader.ini | ||
cocos2dx_experimental.ini | ||
cocos2dx_experimental_video.ini | ||
cocos2dx_experimental_webview.ini | ||
cocos2dx_extension.ini | ||
cocos2dx_navmesh.ini | ||
cocos2dx_physics.ini | ||
cocos2dx_physics3d.ini | ||
cocos2dx_spine.ini | ||
cocos2dx_studio.ini | ||
cocos2dx_ui.ini | ||
genbindings.py |
README.mdown
How to Use bindings-generator
On Windows:
- Make sure that you have installed
android-ndk-r10c
or later. - Download python2.7.3 (32bit) from (http://www.python.org/ftp/python/2.7.3/python-2.7.3.msi).
- Add the installed path of python (e.g. C:\Python27) to windows environment variable named 'PATH'.
- Download pyyaml from http://pyyaml.org/download/pyyaml/PyYAML-3.11.win32-py2.7.exe and install it.
- Download pyCheetah from https://raw.github.com/dumganhar/my_old_cocos2d-x_backup/download/downloads/Cheetah.zip, unzip it to "C:\Python27\Lib\site-packages"
- Set environment variables
NDK_ROOT
andPYTHON_BIN
- Go to "cocos2d-x/tools/tolua" folder, and run "genbindings.py". The generated codes will be under "cocos\scripting\auto-generated\lua-bindings".
On MAC:
- The OSX 10.10 has a built-in python2.7 and if your os don't have python2.7 then use Homebrew to install the python and use pip install the python dependencies.
brew install python
- Install python dependices by pip.
sudo easy_install pip sudo pip install PyYAML sudo pip install Cheetah
- Download NDK 64bit r10c or later from Android Ndk
- Run
export NDK_ROOT=/path/to/android-ndk-10c ./genbindings.py
On Ubuntu Linux 12.04 64bit
- Install python
sudo apt-get install python2.7
- Install python dependices by pip.
sudo apt-get install python-pip sudo pip install PyYAML sudo pip install Cheetah
- Download NDK 64bit r10c or later from Android Ndk
- Go to "cocos2d-x/tools/tolua", Run
export NDK_ROOT=/path/to/android-ndk-r10c ./genbindings.py