axmol/tools/tolua
halx99 a2adfaf7df #Improve node sort performance for 64-bit by std::sort + long long (_localZOrder) (#16262)
* #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
2016-07-31 22:44:24 +08:00
..
README.mdown Refine lua/js binding tool 2015-09-19 00:08:15 +08:00
cocos2dx.ini #Improve node sort performance for 64-bit by std::sort + long long (_localZOrder) (#16262) 2016-07-31 22:44:24 +08:00
cocos2dx_3d.ini not export Sprite3DMaterial::setTexture 2015-12-01 20:27:31 +08:00
cocos2dx_audioengine.ini lua binding : Rename end() to endToLua(). 2016-06-14 23:35:17 +08:00
cocos2dx_cocosbuilder.ini Refine lua/js binding tool 2015-09-19 00:08:15 +08:00
cocos2dx_cocosdenshion.ini Refine lua/js binding tool 2015-09-19 00:08:15 +08:00
cocos2dx_controller.ini Refine lua/js binding tool 2015-09-19 00:08:15 +08:00
cocos2dx_csloader.ini Refine lua/js binding tool 2015-09-19 00:08:15 +08:00
cocos2dx_experimental.ini Refine lua/js binding tool 2015-09-19 00:08:15 +08:00
cocos2dx_experimental_video.ini adds tvOS support 2015-12-28 15:59:36 -08:00
cocos2dx_experimental_webview.ini adds tvOS support 2015-12-28 15:59:36 -08:00
cocos2dx_extension.ini Refine lua/js binding tool 2015-09-19 00:08:15 +08:00
cocos2dx_navmesh.ini Refine lua/js binding tool 2015-09-19 00:08:15 +08:00
cocos2dx_physics.ini Fix spelling for `getPolygonCenter` function 2016-07-19 08:24:22 +09:00
cocos2dx_physics3d.ini Refine lua/js binding tool 2015-09-19 00:08:15 +08:00
cocos2dx_spine.ini Refine lua/js binding tool 2015-09-19 00:08:15 +08:00
cocos2dx_studio.ini lua binding : Rename end() to endToLua(). 2016-06-14 23:35:17 +08:00
cocos2dx_ui.ini defaults and append tag support 2016-04-21 10:03:57 +09:00
genbindings.py Fix mistaken uploaded lua bindings 2015-09-29 14:52:47 +08:00

README.mdown

How to Use bindings-generator

On Windows:

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