2013-03-11 16:39:28 +08:00
[cocos2dx_extension]
# the prefix to be added to the generated functions. You might or might not use this in your own
# templates
prefix = cocos2dx_extension
# create a target namespace (in javascript, this would create some code like the equiv. to `ns = ns || {}`)
# all classes will be embedded in that namespace
target_namespace = cc
2013-06-21 21:27:45 +08:00
android_headers = -I%(androidndkdir)s/platforms/android-14/arch-arm/usr/include -I%(androidndkdir)s/sources/cxx-stl/gnu-libstdc++/4.7/libs/armeabi-v7a/include -I%(androidndkdir)s/sources/cxx-stl/gnu-libstdc++/4.7/include
2013-03-11 16:39:28 +08:00
android_flags = -D_SIZE_T_DEFINED_
2013-06-21 21:27:45 +08:00
clang_headers = -I%(clangllvmdir)s/lib/clang/3.3/include
2013-06-04 04:09:49 +08:00
clang_flags = -nostdinc -x c++ -std=c++11
2013-03-11 16:39:28 +08:00
2013-08-07 13:07:01 +08:00
cocos_headers = -I%(cocosdir)s/cocos2dx/include -I%(cocosdir)s/cocos2dx/platform -I%(cocosdir)s/cocos2dx/platform/android -I%(cocosdir)s/cocos2dx -I%(cocosdir)s/cocos2dx/kazmath/include -I%(cocosdir)s/extensions
2013-03-11 16:39:28 +08:00
cocos_flags = -DANDROID -DCOCOS2D_JAVASCRIPT
cxxgenerator_headers = -I%(cxxgeneratordir)s/targets/spidermonkey/common
# extra arguments for clang
2013-03-17 14:11:15 +08:00
extra_arguments = %(android_headers)s %(clang_headers)s %(cxxgenerator_headers)s %(cocos_headers)s %(android_flags)s %(clang_flags)s %(cocos_flags)s %(extra_flags)s
2013-03-11 16:39:28 +08:00
# what headers to parse
headers = %(cocosdir)s/extensions/cocos-ext.h
# what classes to produce code for. You can use regular expressions here. When testing the regular
2013-06-20 14:24:36 +08:00
# expression, it will be enclosed in "^$", like this: "^Menu*$".
2013-09-09 17:20:16 +08:00
classes = AssetsManager.* CCBReader.* CCBAnimationManager.* Scale9Sprite Control.* ControlButton.* ScrollView$ TableView$ TableViewCell$ EditBox$
2013-03-11 16:39:28 +08:00
# what should we skip? in the format ClassName::[function function]
# ClassName is a regular expression, but will be used like this: "^ClassName$" functions are also
# regular expressions, they will not be surrounded by "^$". If you want to skip a whole class, just
# add a single "*" as functions. See bellow for several examples. A special class name is "*", which
# will apply to all class names. This is a convenience wildcard to be able to skip similar named
# functions from all classes.
skip = CCBReader::[^CCBReader$ addOwnerCallbackName isJSControlled readByte getCCBMemberVariableAssigner readFloat getCCBSelectorResolver toLowerCase lastPathComponent deletePathExtension endsWith concat getResolutionScale getAnimatedProperties readBool readInt addOwnerCallbackNode addDocumentCallbackName readCachedString readNodeGraphFromData addDocumentCallbackNode getLoadedSpriteSheet initWithData readFileWithCleanUp getOwner$ readNodeGraphFromFile createSceneWithNodeGraphFromFile getAnimationManagers$ setAnimationManagers],
CCBAnimationManager::[setAnimationCompletedCallback],
2013-06-20 14:24:36 +08:00
ScrollView::[(g|s)etDelegate$],
.*Delegate::[*],
.*Loader.*::[*],
2013-08-12 11:23:16 +08:00
*::[^visit$ copyWith.* onEnter.* onExit.* ^description$ getObjectType .*HSV],
2013-06-20 14:24:36 +08:00
EditBox::[(g|s)etDelegate ^keyboard.* touchDownAction getScriptEditBoxHandler registerScriptEditBoxHandler unregisterScriptEditBoxHandler],
TableView::[create (g|s)etDataSource$ (g|s)etDelegate],
2013-08-07 13:07:01 +08:00
AssetsManager::[setDelegate],
2013-08-08 17:36:56 +08:00
AssetsManagerDelegateProtocol::[*],
2013-08-12 11:23:16 +08:00
Control::[removeHandleOfControlEvent addHandleOfControlEvent],
ControlUtils::[*],
ControlSwitchSprite::[*]
2013-03-11 16:39:28 +08:00
2013-03-19 06:45:08 +08:00
rename_functions = CCBReader::[getAnimationManager=getActionManager setAnimationManager=setActionManager],
2013-06-20 14:24:36 +08:00
CCBAnimationManager::[setCallFunc = setCallFuncForJSCallbackNamed]
2013-03-11 16:39:28 +08:00
2013-06-20 15:08:22 +08:00
rename_classes = CCBReader::_Reader,
2013-06-20 14:24:36 +08:00
CCBAnimationManager::AnimationManager
2013-03-11 16:39:28 +08:00
# for all class names, should we remove something when registering in the target VM?
2013-06-20 14:24:36 +08:00
remove_prefix =
2013-03-11 16:39:28 +08:00
# classes for which there will be no "parent" lookup
classes_have_no_parents =
# base classes which will be skipped when their sub-classes found them.
2013-06-20 14:24:36 +08:00
base_classes_to_skip = Object
2013-03-11 16:39:28 +08:00
# classes that create no constructor
2013-06-20 14:24:36 +08:00
# Set is special and we will use a hand-written constructor
2013-03-11 16:39:28 +08:00
abstract_classes =
# Determining whether to use script object(js object) to control the lifecycle of native(cpp) object or the other way around. Supported values are 'yes' or 'no'.
script_control_cpp = no