axmol/extensions/scripting/lua-bindings/script/init.lua

112 lines
2.9 KiB
Lua
Raw Normal View History

2014-12-29 01:58:16 +08:00
--[[
2014-10-11 01:27:12 +08:00
Copyright (c) 2014-2017 Chukong Technologies Inc.
2022-02-12 19:56:00 +08:00
Copyright (c) 2022 Bytedance Inc.
2014-10-11 01:27:12 +08:00
2014-12-29 01:58:16 +08:00
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
2014-10-11 01:27:12 +08:00
2014-12-29 01:58:16 +08:00
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
2014-10-11 01:27:12 +08:00
2014-12-29 01:58:16 +08:00
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
2014-10-11 01:27:12 +08:00
2014-12-29 01:58:16 +08:00
]]
2014-10-11 01:27:12 +08:00
-- >= lua-5.4
2021-03-13 16:47:09 +08:00
if (math.pow == nil) then
math.pow = function (x,y)
return x ^ y
end
end
-- < lua-5.4
if (unpack) then
table.unpack = unpack
end
2022-07-12 21:31:54 +08:00
-- < axis-1.0
cc = ax
cc.Director.setDisplayStats = ax.Director.setStatsDisplay
cc.Sprite3D = ax.MeshRenderer
ccexp = axexp
ccui = axui
ccb = axb
2022-08-15 16:28:32 +08:00
require "axys.cocos2d.Cocos2d"
require "axys.cocos2d.Cocos2dConstants"
require "axys.cocos2d.functions"
2014-12-29 01:58:16 +08:00
2015-03-13 16:39:36 +08:00
__G__TRACKBACK__ = function(msg)
local msg = debug.traceback(msg, 3)
print(msg)
return msg
end
2015-03-25 16:35:11 +08:00
-- cocosstudio
if nil ~= ccs then
2022-08-15 16:28:32 +08:00
require "axys.cocostudio.CocoStudio"
2015-03-25 16:35:11 +08:00
end
-- ui
if nil ~= ccui then
2022-08-15 16:28:32 +08:00
require "axys.ui.GuiConstants"
2015-03-25 16:35:11 +08:00
end
-- extensions
2022-08-15 16:28:32 +08:00
require "axys.extension.ExtensionConstants"
2015-03-25 16:35:11 +08:00
-- network
2022-08-15 16:28:32 +08:00
require "axys.network.NetworkConstants"
2015-03-25 16:35:11 +08:00
-- Spine
if nil ~= sp then
2022-08-15 16:28:32 +08:00
require "axys.spine.SpineConstants"
2015-03-25 16:35:11 +08:00
end
2022-08-15 16:28:32 +08:00
-- require "axys.cocos2d.deprecated"
2015-03-25 16:35:11 +08:00
-- Lua extensions
2022-08-15 16:28:32 +08:00
require "axys.cocos2d.bitExtend"
2015-03-25 16:35:11 +08:00
-- CCLuaEngine
2022-08-15 16:28:32 +08:00
-- require "axys.cocos2d.DeprecatedCocos2dClass"
-- require "axys.cocos2d.DeprecatedCocos2dEnum"
-- require "axys.cocos2d.DeprecatedCocos2dFunc"
2015-03-25 16:35:11 +08:00
-- register_cocostudio_module
2019-02-28 11:17:05 +08:00
-- if nil ~= ccs then
2022-08-15 16:28:32 +08:00
-- require "axys.cocostudio.DeprecatedCocoStudioClass"
-- require "axys.cocostudio.DeprecatedCocoStudioFunc"
2019-02-28 11:17:05 +08:00
-- end
2015-03-25 16:35:11 +08:00
-- register_extension_module
2022-08-15 16:28:32 +08:00
-- require "axys.extension.DeprecatedExtensionClass"
-- require "axys.extension.DeprecatedExtensionEnum"
-- require "axys.extension.DeprecatedExtensionFunc"
2015-03-25 16:35:11 +08:00
-- register_network_module
2022-08-15 16:28:32 +08:00
-- require "axys.network.DeprecatedNetworkClass"
-- require "axys.network.DeprecatedNetworkEnum"
-- require "axys.network.DeprecatedNetworkFunc"
2015-03-25 16:35:11 +08:00
2017-02-04 10:35:56 +08:00
-- register_ui_module
2019-02-28 11:17:05 +08:00
-- if nil ~= ccui then
2022-08-15 16:28:32 +08:00
-- require "axys.ui.DeprecatedUIEnum"
-- require "axys.ui.DeprecatedUIFunc"
2019-02-28 11:17:05 +08:00
-- end
2015-03-25 16:35:11 +08:00
-- physics3d
2022-08-15 16:28:32 +08:00
require "axys.physics3d.physics3d-constants"
2022-07-15 19:17:01 +08:00
if AX_USE_FRAMEWORK then
2022-08-15 16:28:32 +08:00
require "axys.framework.init"
2014-10-11 01:27:12 +08:00
end