diff --git a/Classes/AppDelegate.cpp b/Classes/AppDelegate.cpp new file mode 100755 index 0000000..4b55560 --- /dev/null +++ b/Classes/AppDelegate.cpp @@ -0,0 +1,88 @@ +/**************************************************************************** + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + + http://www.cocos.com + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated engine source code (the "Software"), a limited, + worldwide, royalty-free, non-assignable, revocable and non-exclusive license + to use Cocos Creator solely to develop games on your target platforms. You shall + not use Cocos Creator software for developing other software or tools that's + used for developing games. You are not granted to publish, distribute, + sublicense, and/or sell copies of Cocos Creator. + + The software or tools in this License Agreement are licensed, not sold. + Xiamen Yaji Software Co., Ltd. reserves all rights not expressly granted to you. + + 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. + ****************************************************************************/ + +#include "AppDelegate.h" + +//#include "cocos2d.h" + +#include "cocos/scripting/js-bindings/manual/jsb_module_register.hpp" +#include "cocos/scripting/js-bindings/manual/jsb_global.h" +#include "cocos/scripting/js-bindings/jswrapper/SeApi.h" +#include "cocos/scripting/js-bindings/event/EventDispatcher.h" +#include "cocos/scripting/js-bindings/manual/jsb_classtype.hpp" + +USING_NS_CC; + +AppDelegate::AppDelegate(int width, int height) : Application("Cocos Game", width, height) +{ +} + +AppDelegate::~AppDelegate() +{ +} + +bool AppDelegate::applicationDidFinishLaunching() +{ + se::ScriptEngine *se = se::ScriptEngine::getInstance(); + + jsb_set_xxtea_key(""); + jsb_init_file_operation_delegate(); + +#if defined(COCOS2D_DEBUG) && (COCOS2D_DEBUG > 0) + // Enable debugger here + jsb_enable_debugger("0.0.0.0", 6086, false); +#endif + + se->setExceptionCallback([](const char *location, const char *message, const char *stack) { + // Send exception information to server like Tencent Bugly. + cocos2d::log("\nUncaught Exception:\n - location : %s\n - msg : %s\n - detail : \n %s\n", location, message, stack); + }); + + jsb_register_all_modules(); + + se->start(); + + se::AutoHandleScope hs; + jsb_run_script("js/jsb-adapter/jsb-builtin.js"); + jsb_run_script("js/main.js"); + + se->addAfterCleanupHook([]() { + JSBClassType::destroy(); + }); + + return true; +} + +// This function will be called when the app is inactive. When comes a phone call,it's be invoked too +void AppDelegate::onPause() +{ + EventDispatcher::dispatchOnPauseEvent(); +} + +// this function will be called when the app is active again +void AppDelegate::onResume() +{ + EventDispatcher::dispatchOnResumeEvent(); +} diff --git a/Classes/AppDelegate.h b/Classes/AppDelegate.h new file mode 100755 index 0000000..ed1d754 --- /dev/null +++ b/Classes/AppDelegate.h @@ -0,0 +1,55 @@ +/**************************************************************************** + Copyright (c) 2018 Xiamen Yaji Software Co., Ltd. + + http://www.cocos.com + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated engine source code (the "Software"), a limited, + worldwide, royalty-free, non-assignable, revocable and non-exclusive license + to use Cocos Creator solely to develop games on your target platforms. You shall + not use Cocos Creator software for developing other software or tools that's + used for developing games. You are not granted to publish, distribute, + sublicense, and/or sell copies of Cocos Creator. + + The software or tools in this License Agreement are licensed, not sold. + Xiamen Yaji Software Co., Ltd. reserves all rights not expressly granted to you. + + 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. + ****************************************************************************/ +#pragma once + +#include "platform/CCApplication.h" +/** + @brief The cocos2d Application. + + The reason for implement as private inheritance is to hide some interface call by Director. + */ +class AppDelegate : public cocos2d::Application +{ +public: + AppDelegate(int width, int height); + virtual ~AppDelegate(); + + /** + @brief Implement Director and Scene init code here. + @return true Initialize success, app continue. + @return false Initialize failed, app terminate. + */ + virtual bool applicationDidFinishLaunching() override; + + /** + @brief The function be called when the application is paused + */ + virtual void onPause() override; + + /** + @brief The function be called when the application is resumed + */ + virtual void onResume() override; +}; diff --git a/Classes/NativeConfig.h b/Classes/NativeConfig.h new file mode 100755 index 0000000..794398f --- /dev/null +++ b/Classes/NativeConfig.h @@ -0,0 +1,31 @@ +/**************************************************************************** + Copyright (c) 2020 Xiamen Yaji Software Co., Ltd. + + http://www.cocos.com + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated engine source code (the "Software"), a limited, + worldwide, royalty-free, non-assignable, revocable and non-exclusive license + to use Cocos Creator solely to develop games on your target platforms. You shall + not use Cocos Creator software for developing other software or tools that's + used for developing games. You are not granted to publish, distribute, + sublicense, and/or sell copies of Cocos Creator. + + The software or tools in this License Agreement are licensed, not sold. + Xiamen Yaji Software Co., Ltd. reserves all rights not expressly granted to you. + + 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. + ****************************************************************************/ +//window size for mac +#define MACOS_WIN_SIZE_WIDTH 960 +#define MACOS_WIN_SIZE_HEIGHT 640 + +//window size for win32 +#define WINDOWS_WIN_SIZE_WIDTH 960 +#define WINDOWS_WIN_SIZE_HEIGHT 640 diff --git a/Classes/jsb_module_register.cpp b/Classes/jsb_module_register.cpp new file mode 100644 index 0000000..422e82f --- /dev/null +++ b/Classes/jsb_module_register.cpp @@ -0,0 +1,194 @@ +/**************************************************************************** + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + + http://www.cocos.com + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated engine source code (the "Software"), a limited, + worldwide, royalty-free, non-assignable, revocable and non-exclusive license + to use Cocos Creator solely to develop games on your target platforms. You shall + not use Cocos Creator software for developing other software or tools that's + used for developing games. You are not granted to publish, distribute, + sublicense, and/or sell copies of Cocos Creator. + + The software or tools in this License Agreement are licensed, not sold. + Xiamen Yaji Software Co., Ltd. reserves all rights not expressly granted to you. + + 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. + ****************************************************************************/ + +#include "cocos2d.h" + +#include "cocos/scripting/js-bindings/manual/jsb_module_register.hpp" +#include "cocos/scripting/js-bindings/jswrapper/SeApi.h" + +#include "cocos/scripting/js-bindings/auto/jsb_cocos2dx_auto.hpp" + +#include "cocos/scripting/js-bindings/manual/jsb_global.h" +#include "cocos/scripting/js-bindings/manual/jsb_node.hpp" +#include "cocos/scripting/js-bindings/manual/jsb_conversions.hpp" +#include "cocos/scripting/js-bindings/manual/jsb_opengl_manual.hpp" +#include "cocos/scripting/js-bindings/manual/jsb_platform.h" +#include "cocos/scripting/js-bindings/manual/jsb_cocos2dx_manual.hpp" +#include "cocos/scripting/js-bindings/manual/jsb_xmlhttprequest.hpp" +#include "cocos/scripting/js-bindings/manual/jsb_cocos2dx_network_manual.h" +#include "cocos/scripting/js-bindings/auto/jsb_cocos2dx_network_auto.hpp" +#include "cocos/scripting/js-bindings/auto/jsb_cocos2dx_extension_auto.hpp" + +#if USE_GFX_RENDERER +#include "cocos/scripting/js-bindings/auto/jsb_gfx_auto.hpp" +#include "cocos/scripting/js-bindings/auto/jsb_renderer_auto.hpp" +#include "cocos/scripting/js-bindings/manual/jsb_gfx_manual.hpp" +#include "cocos/scripting/js-bindings/manual/jsb_renderer_manual.hpp" +#endif + +#if USE_SOCKET +#include "cocos/scripting/js-bindings/manual/jsb_websocket.hpp" +#include "cocos/scripting/js-bindings/manual/jsb_socketio.hpp" +#if USE_WEBSOCKET_SERVER +#include "cocos/scripting/js-bindings/manual/jsb_websocket_server.hpp" +#endif +#endif // USE_SOCKET + +#if USE_AUDIO +#include "cocos/scripting/js-bindings/auto/jsb_cocos2dx_audioengine_auto.hpp" +#endif + +#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_MAC) +#include "cocos/scripting/js-bindings/manual/JavaScriptObjCBridge.h" +#endif + +#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) +#include "cocos/scripting/js-bindings/manual/JavaScriptJavaBridge.h" +#endif + +#if USE_GFX_RENDERER && USE_MIDDLEWARE +#include "cocos/scripting/js-bindings/auto/jsb_cocos2dx_editor_support_auto.hpp" + +#if USE_SPINE +#include "cocos/scripting/js-bindings/auto/jsb_cocos2dx_spine_auto.hpp" +#include "cocos/scripting/js-bindings/manual/jsb_spine_manual.hpp" +#endif + +#if USE_DRAGONBONES +#include "cocos/scripting/js-bindings/auto/jsb_cocos2dx_dragonbones_auto.hpp" +#include "cocos/scripting/js-bindings/manual/jsb_dragonbones_manual.hpp" +#endif + +#if USE_PARTICLE +#include "cocos/scripting/js-bindings/auto/jsb_cocos2dx_particle_auto.hpp" +#endif + +#endif // USE_MIDDLEWARE + +#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) + +#if USE_VIDEO +#include "cocos/scripting/js-bindings/auto/jsb_video_auto.hpp" +#endif + +#if USE_WEB_VIEW +#include "cocos/scripting/js-bindings/auto/jsb_webview_auto.hpp" +#endif + +#endif // (CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) + +using namespace cocos2d; + +bool jsb_register_all_modules() +{ + se::ScriptEngine* se = se::ScriptEngine::getInstance(); + + se->addBeforeInitHook([](){ + JSBClassType::init(); + }); + + se->addBeforeCleanupHook([se](){ + se->garbageCollect(); + PoolManager::getInstance()->getCurrentPool()->clear(); + se->garbageCollect(); + PoolManager::getInstance()->getCurrentPool()->clear(); + }); + + se->addRegisterCallback(jsb_register_global_variables); + se->addRegisterCallback(JSB_register_opengl); + se->addRegisterCallback(register_all_engine); + se->addRegisterCallback(register_all_cocos2dx_manual); + se->addRegisterCallback(register_platform_bindings); + + se->addRegisterCallback(register_all_network); + se->addRegisterCallback(register_all_cocos2dx_network_manual); + se->addRegisterCallback(register_all_xmlhttprequest); + // extension depend on network + se->addRegisterCallback(register_all_extension); + +#if USE_GFX_RENDERER + se->addRegisterCallback(register_all_gfx); + se->addRegisterCallback(jsb_register_gfx_manual); + se->addRegisterCallback(register_all_renderer); + se->addRegisterCallback(jsb_register_renderer_manual); +#endif + +#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_MAC) + se->addRegisterCallback(register_javascript_objc_bridge); +#endif + +#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) + se->addRegisterCallback(register_javascript_java_bridge); +#endif + +#if USE_AUDIO + se->addRegisterCallback(register_all_audioengine); +#endif + +#if USE_SOCKET + se->addRegisterCallback(register_all_websocket); + se->addRegisterCallback(register_all_socketio); +#if USE_WEBSOCKET_SERVER + se->addRegisterCallback(register_all_websocket_server); +#endif +#endif + +#if USE_GFX_RENDERER && USE_MIDDLEWARE + se->addRegisterCallback(register_all_cocos2dx_editor_support); + +#if USE_SPINE + se->addRegisterCallback(register_all_cocos2dx_spine); + se->addRegisterCallback(register_all_spine_manual); +#endif + +#if USE_DRAGONBONES + se->addRegisterCallback(register_all_cocos2dx_dragonbones); + se->addRegisterCallback(register_all_dragonbones_manual); +#endif + +#if USE_PARTICLE + se->addRegisterCallback(register_all_cocos2dx_particle); +#endif + +#endif // USE_MIDDLEWARE + +#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) + +#if USE_VIDEO + se->addRegisterCallback(register_all_video); +#endif + +#if USE_WEB_VIEW + se->addRegisterCallback(register_all_webview); +#endif + +#endif // (CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) + + se->addAfterCleanupHook([](){ + PoolManager::getInstance()->getCurrentPool()->clear(); + JSBClassType::destroy(); + }); + return true; +} diff --git a/HeadlessCocos.xcodeproj/project.pbxproj b/HeadlessCocos.xcodeproj/project.pbxproj index 8b7c3ed..8ce4b75 100644 --- a/HeadlessCocos.xcodeproj/project.pbxproj +++ b/HeadlessCocos.xcodeproj/project.pbxproj @@ -7,19 +7,44 @@ objects = { /* Begin PBXBuildFile section */ - D5AA8A0D286B029300E2C03E /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = D5AA8A0C286B029300E2C03E /* AppDelegate.m */; }; D5AA8A10286B029300E2C03E /* SceneDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = D5AA8A0F286B029300E2C03E /* SceneDelegate.m */; }; D5AA8A13286B029300E2C03E /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D5AA8A12286B029300E2C03E /* ViewController.m */; }; D5AA8A16286B029300E2C03E /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D5AA8A14286B029300E2C03E /* Main.storyboard */; }; D5AA8A18286B029700E2C03E /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D5AA8A17286B029700E2C03E /* Assets.xcassets */; }; D5AA8A1B286B029700E2C03E /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D5AA8A19286B029700E2C03E /* LaunchScreen.storyboard */; }; D5AA8A1E286B029700E2C03E /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = D5AA8A1D286B029700E2C03E /* main.m */; }; + D5AA8A3B286B043200E2C03E /* AppDelegate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5AA8A39286B043200E2C03E /* AppDelegate.cpp */; }; + D5AA8A3D286B056D00E2C03E /* libcocos2d iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D5AA8A2C286B033C00E2C03E /* libcocos2d iOS.a */; }; + D5AA8A5D286B184000E2C03E /* libicucore.A.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = D5AA8A5C286B184000E2C03E /* libicucore.A.tbd */; }; + D5AA8A64286B390F00E2C03E /* AppController.mm in Sources */ = {isa = PBXBuildFile; fileRef = D5AA8A62286B390E00E2C03E /* AppController.mm */; }; + D5AA8A6B286B4AB900E2C03E /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D5AA8A6A286B4AB900E2C03E /* JavaScriptCore.framework */; }; + D5AA8A6D286B4B0A00E2C03E /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = D5AA8A6C286B4B0A00E2C03E /* libsqlite3.tbd */; }; + D5AA8A6F286B4B3600E2C03E /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D5AA8A6E286B4B3600E2C03E /* CFNetwork.framework */; }; + D5AA8A74286BE42100E2C03E /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D5AA8A71286BE42100E2C03E /* Security.framework */; }; + D5AA8A76286BE4B100E2C03E /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = D5AA8A75286BE4B100E2C03E /* libz.tbd */; }; + D5AA8A78286BE67D00E2C03E /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D5AA8A77286BE67D00E2C03E /* SystemConfiguration.framework */; }; + D5AA8A8C286BF94D00E2C03E /* js in Resources */ = {isa = PBXBuildFile; fileRef = D5AA8A8B286BF94D00E2C03E /* js */; }; /* End PBXBuildFile section */ +/* Begin PBXContainerItemProxy section */ + D5AA8A29286B033C00E2C03E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D5AA8A24286B033C00E2C03E /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 1551A33F158F2AB200E66CFE; + remoteInfo = "libcocos2d Mac"; + }; + D5AA8A2B286B033C00E2C03E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D5AA8A24286B033C00E2C03E /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = A07A4D641783777C0073F6A7; + remoteInfo = "libcocos2d iOS"; + }; +/* End PBXContainerItemProxy section */ + /* Begin PBXFileReference section */ D5AA8A08286B029300E2C03E /* HeadlessCocos.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = HeadlessCocos.app; sourceTree = BUILT_PRODUCTS_DIR; }; - D5AA8A0B286B029300E2C03E /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; - D5AA8A0C286B029300E2C03E /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; D5AA8A0E286B029300E2C03E /* SceneDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SceneDelegate.h; sourceTree = ""; }; D5AA8A0F286B029300E2C03E /* SceneDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SceneDelegate.m; sourceTree = ""; }; D5AA8A11286B029300E2C03E /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = ""; }; @@ -29,6 +54,21 @@ D5AA8A1A286B029700E2C03E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; D5AA8A1C286B029700E2C03E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; D5AA8A1D286B029700E2C03E /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; + D5AA8A24286B033C00E2C03E /* cocos2d_libs.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = cocos2d_libs.xcodeproj; path = "../../cocos/cocos2d-x/build/cocos2d_libs.xcodeproj"; sourceTree = ""; }; + D5AA8A36286B043200E2C03E /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; + D5AA8A38286B043200E2C03E /* NativeConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NativeConfig.h; sourceTree = ""; }; + D5AA8A39286B043200E2C03E /* AppDelegate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AppDelegate.cpp; sourceTree = ""; }; + D5AA8A54286B15D500E2C03E /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; }; + D5AA8A5C286B184000E2C03E /* libicucore.A.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libicucore.A.tbd; path = usr/lib/libicucore.A.tbd; sourceTree = SDKROOT; }; + D5AA8A62286B390E00E2C03E /* AppController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AppController.mm; sourceTree = ""; }; + D5AA8A63286B390F00E2C03E /* AppController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppController.h; sourceTree = ""; }; + D5AA8A6A286B4AB900E2C03E /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; + D5AA8A6C286B4B0A00E2C03E /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; }; + D5AA8A6E286B4B3600E2C03E /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; }; + D5AA8A71286BE42100E2C03E /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; }; + D5AA8A75286BE4B100E2C03E /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; }; + D5AA8A77286BE67D00E2C03E /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; }; + D5AA8A8B286BF94D00E2C03E /* js */ = {isa = PBXFileReference; lastKnownFileType = folder; path = js; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -36,6 +76,14 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + D5AA8A78286BE67D00E2C03E /* SystemConfiguration.framework in Frameworks */, + D5AA8A76286BE4B100E2C03E /* libz.tbd in Frameworks */, + D5AA8A74286BE42100E2C03E /* Security.framework in Frameworks */, + D5AA8A6F286B4B3600E2C03E /* CFNetwork.framework in Frameworks */, + D5AA8A6D286B4B0A00E2C03E /* libsqlite3.tbd in Frameworks */, + D5AA8A6B286B4AB900E2C03E /* JavaScriptCore.framework in Frameworks */, + D5AA8A5D286B184000E2C03E /* libicucore.A.tbd in Frameworks */, + D5AA8A3D286B056D00E2C03E /* libcocos2d iOS.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -45,8 +93,11 @@ D5AA89FF286B029200E2C03E = { isa = PBXGroup; children = ( + D5AA8A35286B043200E2C03E /* Classes */, + D5AA8A24286B033C00E2C03E /* cocos2d_libs.xcodeproj */, D5AA8A0A286B029300E2C03E /* HeadlessCocos */, D5AA8A09286B029300E2C03E /* Products */, + D5AA8A3C286B056D00E2C03E /* Frameworks */, ); sourceTree = ""; }; @@ -61,12 +112,13 @@ D5AA8A0A286B029300E2C03E /* HeadlessCocos */ = { isa = PBXGroup; children = ( - D5AA8A0B286B029300E2C03E /* AppDelegate.h */, - D5AA8A0C286B029300E2C03E /* AppDelegate.m */, + D5AA8A12286B029300E2C03E /* ViewController.m */, + D5AA8A63286B390F00E2C03E /* AppController.h */, + D5AA8A62286B390E00E2C03E /* AppController.mm */, + D5AA8A8B286BF94D00E2C03E /* js */, D5AA8A0E286B029300E2C03E /* SceneDelegate.h */, D5AA8A0F286B029300E2C03E /* SceneDelegate.m */, D5AA8A11286B029300E2C03E /* ViewController.h */, - D5AA8A12286B029300E2C03E /* ViewController.m */, D5AA8A14286B029300E2C03E /* Main.storyboard */, D5AA8A17286B029700E2C03E /* Assets.xcassets */, D5AA8A19286B029700E2C03E /* LaunchScreen.storyboard */, @@ -76,6 +128,40 @@ path = HeadlessCocos; sourceTree = ""; }; + D5AA8A25286B033C00E2C03E /* Products */ = { + isa = PBXGroup; + children = ( + D5AA8A2A286B033C00E2C03E /* libcocos2d Mac.a */, + D5AA8A2C286B033C00E2C03E /* libcocos2d iOS.a */, + ); + name = Products; + sourceTree = ""; + }; + D5AA8A35286B043200E2C03E /* Classes */ = { + isa = PBXGroup; + children = ( + D5AA8A36286B043200E2C03E /* AppDelegate.h */, + D5AA8A39286B043200E2C03E /* AppDelegate.cpp */, + D5AA8A38286B043200E2C03E /* NativeConfig.h */, + ); + path = Classes; + sourceTree = ""; + }; + D5AA8A3C286B056D00E2C03E /* Frameworks */ = { + isa = PBXGroup; + children = ( + D5AA8A77286BE67D00E2C03E /* SystemConfiguration.framework */, + D5AA8A75286BE4B100E2C03E /* libz.tbd */, + D5AA8A71286BE42100E2C03E /* Security.framework */, + D5AA8A6E286B4B3600E2C03E /* CFNetwork.framework */, + D5AA8A6C286B4B0A00E2C03E /* libsqlite3.tbd */, + D5AA8A6A286B4AB900E2C03E /* JavaScriptCore.framework */, + D5AA8A5C286B184000E2C03E /* libicucore.A.tbd */, + D5AA8A54286B15D500E2C03E /* libc++.tbd */, + ); + name = Frameworks; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ @@ -121,6 +207,12 @@ mainGroup = D5AA89FF286B029200E2C03E; productRefGroup = D5AA8A09286B029300E2C03E /* Products */; projectDirPath = ""; + projectReferences = ( + { + ProductGroup = D5AA8A25286B033C00E2C03E /* Products */; + ProjectRef = D5AA8A24286B033C00E2C03E /* cocos2d_libs.xcodeproj */; + }, + ); projectRoot = ""; targets = ( D5AA8A07286B029300E2C03E /* HeadlessCocos */, @@ -128,6 +220,23 @@ }; /* End PBXProject section */ +/* Begin PBXReferenceProxy section */ + D5AA8A2A286B033C00E2C03E /* libcocos2d Mac.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libcocos2d Mac.a"; + remoteRef = D5AA8A29286B033C00E2C03E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + D5AA8A2C286B033C00E2C03E /* libcocos2d iOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libcocos2d iOS.a"; + remoteRef = D5AA8A2B286B033C00E2C03E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; +/* End PBXReferenceProxy section */ + /* Begin PBXResourcesBuildPhase section */ D5AA8A06286B029300E2C03E /* Resources */ = { isa = PBXResourcesBuildPhase; @@ -136,6 +245,7 @@ D5AA8A1B286B029700E2C03E /* LaunchScreen.storyboard in Resources */, D5AA8A18286B029700E2C03E /* Assets.xcassets in Resources */, D5AA8A16286B029300E2C03E /* Main.storyboard in Resources */, + D5AA8A8C286BF94D00E2C03E /* js in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -147,9 +257,10 @@ buildActionMask = 2147483647; files = ( D5AA8A13286B029300E2C03E /* ViewController.m in Sources */, - D5AA8A0D286B029300E2C03E /* AppDelegate.m in Sources */, + D5AA8A3B286B043200E2C03E /* AppDelegate.cpp in Sources */, D5AA8A1E286B029700E2C03E /* main.m in Sources */, D5AA8A10286B029300E2C03E /* SceneDelegate.m in Sources */, + D5AA8A64286B390F00E2C03E /* AppController.mm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -178,7 +289,7 @@ D5AA8A1F286B029700E2C03E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; + ALWAYS_SEARCH_USER_PATHS = YES; CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; CLANG_CXX_LANGUAGE_STANDARD = "gnu++17"; @@ -231,13 +342,33 @@ MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = ( + "/Users/zhl/Documents/workspace/cocos/cocos2d-x", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/base", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/physics", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/math/kazmath", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/2d", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/gui", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/network", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/audio/include", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/editor-support", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/extensions", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/external", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/external/sources", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/external/chipmunk/include/chipmunk", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/external/mac/include/v8", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/scripting/js-bindings/auto", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/scripting/js-bindings/manual", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/renderer", + ); }; name = Debug; }; D5AA8A20286B029700E2C03E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; + ALWAYS_SEARCH_USER_PATHS = YES; CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; CLANG_CXX_LANGUAGE_STANDARD = "gnu++17"; @@ -283,6 +414,26 @@ MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = ( + "/Users/zhl/Documents/workspace/cocos/cocos2d-x", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/base", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/physics", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/math/kazmath", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/2d", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/gui", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/network", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/audio/include", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/editor-support", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/extensions", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/external", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/external/sources", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/external/chipmunk/include/chipmunk", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/external/mac/include/v8", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/scripting/js-bindings/auto", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/scripting/js-bindings/manual", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/renderer", + ); VALIDATE_PRODUCT = YES; }; name = Release; @@ -290,12 +441,15 @@ D5AA8A22286B029700E2C03E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + ALWAYS_SEARCH_USER_PATHS = YES; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_ARC = NO; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = 8TB4N4YTJ3; GENERATE_INFOPLIST_FILE = YES; + HEADER_SEARCH_PATHS = ""; INFOPLIST_FILE = HeadlessCocos/Info.plist; INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; @@ -306,23 +460,38 @@ "$(inherited)", "@executable_path/Frameworks", ); + LIBRARY_SEARCH_PATHS = "/Users/zhl/Documents/workspace/cocos/cocos2d-x/external/ios/libs"; MARKETING_VERSION = 1.0; + OTHER_LDFLAGS = ( + "-ObjC", + "$(inherited)", + ); PRODUCT_BUNDLE_IDENTIFIER = com.zhl.HeadlessCocos; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_EMIT_LOC_STRINGS = YES; TARGETED_DEVICE_FAMILY = "1,2"; + USER_HEADER_SEARCH_PATHS = ( + "$(inherited)", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/platform/mac", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/external/glfw3/include/mac", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/external/mac/include/", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/external/mac/include/spidermonkey", + ); }; name = Debug; }; D5AA8A23286B029700E2C03E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { + ALWAYS_SEARCH_USER_PATHS = YES; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_ARC = NO; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = 8TB4N4YTJ3; GENERATE_INFOPLIST_FILE = YES; + HEADER_SEARCH_PATHS = ""; INFOPLIST_FILE = HeadlessCocos/Info.plist; INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; @@ -333,11 +502,23 @@ "$(inherited)", "@executable_path/Frameworks", ); + LIBRARY_SEARCH_PATHS = "/Users/zhl/Documents/workspace/cocos/cocos2d-x/external/ios/libs"; MARKETING_VERSION = 1.0; + OTHER_LDFLAGS = ( + "-ObjC", + "$(inherited)", + ); PRODUCT_BUNDLE_IDENTIFIER = com.zhl.HeadlessCocos; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_EMIT_LOC_STRINGS = YES; TARGETED_DEVICE_FAMILY = "1,2"; + USER_HEADER_SEARCH_PATHS = ( + "$(inherited)", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/cocos/platform/mac", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/external/glfw3/include/mac", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/external/mac/include/", + "/Users/zhl/Documents/workspace/cocos/cocos2d-x/external/mac/include/spidermonkey", + ); }; name = Release; }; diff --git a/HeadlessCocos.xcodeproj/project.xcworkspace/xcuserdata/zhl.xcuserdatad/IDEFindNavigatorScopes.plist b/HeadlessCocos.xcodeproj/project.xcworkspace/xcuserdata/zhl.xcuserdatad/IDEFindNavigatorScopes.plist new file mode 100644 index 0000000..5dd5da8 --- /dev/null +++ b/HeadlessCocos.xcodeproj/project.xcworkspace/xcuserdata/zhl.xcuserdatad/IDEFindNavigatorScopes.plist @@ -0,0 +1,5 @@ + + + + + diff --git a/HeadlessCocos.xcodeproj/xcuserdata/zhl.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist b/HeadlessCocos.xcodeproj/xcuserdata/zhl.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist new file mode 100644 index 0000000..881442d --- /dev/null +++ b/HeadlessCocos.xcodeproj/xcuserdata/zhl.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist @@ -0,0 +1,24 @@ + + + + + + + + + diff --git a/HeadlessCocos.xcodeproj/xcuserdata/zhl.xcuserdatad/xcschemes/xcschememanagement.plist b/HeadlessCocos.xcodeproj/xcuserdata/zhl.xcuserdatad/xcschemes/xcschememanagement.plist index 32ef06e..3eec0e9 100644 --- a/HeadlessCocos.xcodeproj/xcuserdata/zhl.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/HeadlessCocos.xcodeproj/xcuserdata/zhl.xcuserdatad/xcschemes/xcschememanagement.plist @@ -7,7 +7,7 @@ HeadlessCocos.xcscheme_^#shared#^_ orderHint - 0 + 1 diff --git a/HeadlessCocos/AppController.h b/HeadlessCocos/AppController.h new file mode 100755 index 0000000..3bf12fb --- /dev/null +++ b/HeadlessCocos/AppController.h @@ -0,0 +1,37 @@ +/**************************************************************************** + Copyright (c) 2010-2013 cocos2d-x.org + Copyright (c) 2013-2016 Chukong Technologies Inc. + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + + http://www.cocos2d-x.org + + 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: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + 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. + ****************************************************************************/ +#import + +@class ViewController; + +@interface AppController : NSObject +{ +} + +@property(nonatomic, readonly) ViewController* viewController; + +@end + diff --git a/HeadlessCocos/AppController.mm b/HeadlessCocos/AppController.mm new file mode 100755 index 0000000..d0a7211 --- /dev/null +++ b/HeadlessCocos/AppController.mm @@ -0,0 +1,137 @@ +/**************************************************************************** + Copyright (c) 2010-2013 cocos2d-x.org + Copyright (c) 2013-2016 Chukong Technologies Inc. + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + + http://www.cocos2d-x.org + + 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: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + 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. + ****************************************************************************/ + +#import "AppController.h" +#import "cocos2d.h" +#import "AppDelegate.h" +#import "ViewController.h" +//#import "SDKWrapper.h" +#import "platform/ios/CCEAGLView-ios.h" + + + +using namespace cocos2d; + +@implementation AppController + +Application* app = nullptr; +@synthesize window; + +#pragma mark - +#pragma mark Application lifecycle + +- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { +// [[SDKWrapper getInstance] application:application didFinishLaunchingWithOptions:launchOptions]; + // Add the view controller's view to the window and display. + float scale = [[UIScreen mainScreen] scale]; + CGRect bounds = [[UIScreen mainScreen] bounds]; + window = [[UIWindow alloc] initWithFrame: bounds]; + + // cocos2d application instance + app = new AppDelegate(bounds.size.width * scale, bounds.size.height * scale); + app->setMultitouch(true); + + // Use RootViewController to manage CCEAGLView + _viewController = [[ViewController alloc]init]; +#ifdef NSFoundationVersionNumber_iOS_7_0 + _viewController.automaticallyAdjustsScrollViewInsets = NO; + _viewController.extendedLayoutIncludesOpaqueBars = NO; + _viewController.edgesForExtendedLayout = UIRectEdgeAll; +#else + _viewController.wantsFullScreenLayout = YES; +#endif + // Set RootViewController to window + if ( [[UIDevice currentDevice].systemVersion floatValue] < 6.0) + { + // warning: addSubView doesn't work on iOS6 + [window addSubview: _viewController.view]; + } + else + { + // use this method on ios6 + [window setRootViewController:_viewController]; + } + + [window makeKeyAndVisible]; + + [[UIApplication sharedApplication] setStatusBarHidden:YES]; + + //run the cocos2d-x game scene + app->start(); + + return YES; +} + +- (void)applicationWillResignActive:(UIApplication *)application { + /* + Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. + Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. + */ + app->onPause(); +// [[SDKWrapper getInstance] applicationWillResignActive:application]; +} + +- (void)applicationDidBecomeActive:(UIApplication *)application { + /* + Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. + */ + app->onResume(); +// [[SDKWrapper getInstance] applicationDidBecomeActive:application]; +} + +- (void)applicationDidEnterBackground:(UIApplication *)application { + /* + Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. + If your application supports background execution, called instead of applicationWillTerminate: when the user quits. + */ +// [[SDKWrapper getInstance] applicationDidEnterBackground:application]; +} + +- (void)applicationWillEnterForeground:(UIApplication *)application { + /* + Called as part of transition from the background to the inactive state: here you can undo many of the changes made on entering the background. + */ +// [[SDKWrapper getInstance] applicationWillEnterForeground:application]; +} + +- (void)applicationWillTerminate:(UIApplication *)application +{ +// [[SDKWrapper getInstance] applicationWillTerminate:application]; + delete app; + app = nil; +} + + +#pragma mark - +#pragma mark Memory management + +- (void)applicationDidReceiveMemoryWarning:(UIApplication *)application { + /* + Free up as much memory as possible by purging cached data objects that can be recreated (or reloaded from disk) later. + */ +} + +@end diff --git a/HeadlessCocos/AppDelegate.h b/HeadlessCocos/AppDelegate.h deleted file mode 100644 index 1c48f78..0000000 --- a/HeadlessCocos/AppDelegate.h +++ /dev/null @@ -1,14 +0,0 @@ -// -// AppDelegate.h -// HeadlessCocos -// -// Created by zhl on 2022/6/28. -// - -#import - -@interface AppDelegate : UIResponder - - -@end - diff --git a/HeadlessCocos/AppDelegate.m b/HeadlessCocos/AppDelegate.m deleted file mode 100644 index 130f4c1..0000000 --- a/HeadlessCocos/AppDelegate.m +++ /dev/null @@ -1,40 +0,0 @@ -// -// AppDelegate.m -// HeadlessCocos -// -// Created by zhl on 2022/6/28. -// - -#import "AppDelegate.h" - -@interface AppDelegate () - -@end - -@implementation AppDelegate - - -- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { - // Override point for customization after application launch. - return YES; -} - - -#pragma mark - UISceneSession lifecycle - - -- (UISceneConfiguration *)application:(UIApplication *)application configurationForConnectingSceneSession:(UISceneSession *)connectingSceneSession options:(UISceneConnectionOptions *)options { - // Called when a new scene session is being created. - // Use this method to select a configuration to create the new scene with. - return [[UISceneConfiguration alloc] initWithName:@"Default Configuration" sessionRole:connectingSceneSession.role]; -} - - -- (void)application:(UIApplication *)application didDiscardSceneSessions:(NSSet *)sceneSessions { - // Called when the user discards a scene session. - // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. - // Use this method to release any resources that were specific to the discarded scenes, as they will not return. -} - - -@end diff --git a/HeadlessCocos/js/jsb-adapter/jsb-builtin.js b/HeadlessCocos/js/jsb-adapter/jsb-builtin.js new file mode 100644 index 0000000..40fe73d --- /dev/null +++ b/HeadlessCocos/js/jsb-adapter/jsb-builtin.js @@ -0,0 +1,7889 @@ +(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i 1 ? end : this.data.length), type, this.encoding); + }; + + FB_proto.toString = function () { + return "[object Blob]"; + }; + + FB_proto.close = function () { + this.size = 0; + delete this.data; + }; + + return FakeBlobBuilder; + }(); + + exports.Blob = function (blobParts, options) { + var type = options ? options.type || "" : ""; + var builder = new BlobBuilder(); + + if (blobParts) { + for (var i = 0, len = blobParts.length; i < len; i++) { + if (Uint8Array && blobParts[i] instanceof Uint8Array) { + builder.append(blobParts[i].buffer); + } else { + builder.append(blobParts[i]); + } + } + } + + var blob = builder.getBlob(type); + + if (!blob.slice && blob.webkitSlice) { + blob.slice = blob.webkitSlice; + } + + return blob; + }; + + var getPrototypeOf = Object.getPrototypeOf || function (object) { + return object.__proto__; + }; + + exports.Blob.prototype = getPrototypeOf(new exports.Blob()); + }); +})(typeof self !== "undefined" && self || typeof window !== "undefined" && window || typeof global !== "undefined" && global || (void 0).content || void 0); + +}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{}],2:[function(require,module,exports){ +"use strict"; + +!function () { + function e(e) { + this.message = e; + } + + var t = "undefined" != typeof exports ? exports : "undefined" != typeof self ? self : $.global, + r = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; + e.prototype = new Error(), e.prototype.name = "InvalidCharacterError", t.btoa || (t.btoa = function (t) { + for (var o, n, a = String(t), i = 0, f = r, c = ""; a.charAt(0 | i) || (f = "=", i % 1); c += f.charAt(63 & o >> 8 - i % 1 * 8)) { + if (n = a.charCodeAt(i += .75), n > 255) throw new e("'btoa' failed: The string to be encoded contains characters outside of the Latin1 range."); + o = o << 8 | n; + } + + return c; + }), t.atob || (t.atob = function (t) { + var o = String(t).replace(/[=]+$/, ""); + if (o.length % 4 == 1) throw new e("'atob' failed: The string to be decoded is not correctly encoded."); + + for (var n, a, i = 0, f = 0, c = ""; a = o.charAt(f++); ~a && (n = i % 4 ? 64 * n + a : a, i++ % 4) ? c += String.fromCharCode(255 & n >> (-2 * i & 6)) : 0) { + a = r.indexOf(a); + } + + return c; + }); +}(); + +},{}],3:[function(require,module,exports){ +"use strict"; + + +module.exports = {}; + +},{}],4:[function(require,module,exports){ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + + + +var _require = require('./base64/base64.min'), + btoa = _require.btoa, + atob = _require.atob; + +window.btoa = btoa; +window.atob = atob; + +var _require2 = require('./Blob'), + Blob = _require2.Blob, + URL = _require2.URL; + +window.Blob = Blob; +window.URL = URL; +window.DOMParser = require('./xmldom/dom-parser').DOMParser; + +require('./jsb_prepare'); + +require('./jsb_opengl'); + +require('./jsb-adapter'); + +require('./jsb_audioengine'); + +require('./jsb_input'); // external interface of native renderer + + +require('./renderer/enums'); + +require('./renderer/jsb-vertex-format'); + +require('./renderer/jsb-gfx'); + +require('./renderer/jsb-renderer'); + +var _oldRequestFrameCallback = null; +var _requestAnimationFrameID = 0; +var _requestAnimationFrameCallbacks = {}; +var _firstTick = true; + +window.requestAnimationFrame = function (cb) { + var id = ++_requestAnimationFrameID; + _requestAnimationFrameCallbacks[id] = cb; + return id; +}; + +window.cancelAnimationFrame = function (id) { + delete _requestAnimationFrameCallbacks[id]; +}; + +var _require3 = require('./glOptMode'), + disableBatchGLCommandsToNative = _require3.disableBatchGLCommandsToNative, + flushCommands = _require3.flushCommands; + +window.optConfig = { + disableBatchGLCommandsToNative: disableBatchGLCommandsToNative +}; + +function tick(nowMilliSeconds) { + if (_firstTick) { + _firstTick = false; + + if (window.onload) { + var event = new Event('load'); + event._target = window; + window.onload(event); + } + } + + fireTimeout(nowMilliSeconds); + + for (var id in _requestAnimationFrameCallbacks) { + _oldRequestFrameCallback = _requestAnimationFrameCallbacks[id]; + + if (_oldRequestFrameCallback) { + delete _requestAnimationFrameCallbacks[id]; + + _oldRequestFrameCallback(nowMilliSeconds); + } + } + + flushCommands(); +} + +var _timeoutIDIndex = 0; + +var TimeoutInfo = function TimeoutInfo(cb, delay, isRepeat, target, args) { + _classCallCheck(this, TimeoutInfo); + + this.cb = cb; + this.id = ++_timeoutIDIndex; + this.start = performance.now(); + this.delay = delay; + this.isRepeat = isRepeat; + this.target = target; + this.args = args; +}; + +var _timeoutInfos = {}; + +function fireTimeout(nowMilliSeconds) { + var info; + + for (var id in _timeoutInfos) { + info = _timeoutInfos[id]; + + if (info && info.cb) { + if (nowMilliSeconds - info.start >= info.delay) { + // console.log(`fireTimeout: id ${id}, start: ${info.start}, delay: ${info.delay}, now: ${nowMilliSeconds}`); + if (typeof info.cb === 'string') { + Function(info.cb)(); + } else if (typeof info.cb === 'function') { + info.cb.apply(info.target, info.args); + } + + if (info.isRepeat) { + info.start = nowMilliSeconds; + } else { + delete _timeoutInfos[id]; + } + } + } + } +} + +function createTimeoutInfo(prevFuncArgs, isRepeat) { + var cb = prevFuncArgs[0]; + + if (!cb) { + console.error("createTimeoutInfo doesn't pass a callback ..."); + return 0; + } + + var delay = prevFuncArgs.length > 1 ? prevFuncArgs[1] : 0; + var args; + + if (prevFuncArgs.length > 2) { + args = Array.prototype.slice.call(prevFuncArgs, 2); + } + + var info = new TimeoutInfo(cb, delay, isRepeat, this, args); + _timeoutInfos[info.id] = info; + return info.id; +} + +window.setTimeout = function (cb) { + return createTimeoutInfo(arguments, false); +}; + +window.clearTimeout = function (id) { + delete _timeoutInfos[id]; +}; + +window.setInterval = function (cb) { + return createTimeoutInfo(arguments, true); +}; + +window.clearInterval = window.clearTimeout; +window.alert = console.error.bind(console); +var __motionCallbackID = 0; +var __motionEnabled = false; +var __motionInterval = 16.6; // milliseconds + + +if (typeof jsb.FileUtils !== 'undefined') { + jsb.fileUtils = jsb.FileUtils.getInstance(); + delete jsb.FileUtils; +} + +XMLHttpRequest.prototype.addEventListener = function (eventName, listener, options) { + this['on' + eventName] = listener; +}; + +XMLHttpRequest.prototype.removeEventListener = function (eventName, listener, options) { + this['on' + eventName] = null; +}; // SocketIO + + +if (window.SocketIO) { + window.io = window.SocketIO; + SocketIO.prototype._Emit = SocketIO.prototype.emit; + + SocketIO.prototype.emit = function (uri, delegate) { + if (_typeof(delegate) === 'object') { + delegate = JSON.stringify(delegate); + } + + this._Emit(uri, delegate); + }; +} + +window.gameTick = tick; // generate get set function + +jsb.generateGetSet = function (moduleObj) { + for (var classKey in moduleObj) { + var classProto = moduleObj[classKey] && moduleObj[classKey].prototype; + if (!classProto) continue; + + var _loop = function _loop(getName) { + var getPos = getName.search(/^get/); + if (getPos == -1) return "continue"; + var propName = getName.replace(/^get/, ''); + var nameArr = propName.split(''); + var lowerFirst = nameArr[0].toLowerCase(); + var upperFirst = nameArr[0].toUpperCase(); + nameArr.splice(0, 1); + var left = nameArr.join(''); + propName = lowerFirst + left; + var setName = 'set' + upperFirst + left; + if (classProto.hasOwnProperty(propName)) return "continue"; + var setFunc = classProto[setName]; + var hasSetFunc = typeof setFunc === 'function'; + + if (hasSetFunc) { + Object.defineProperty(classProto, propName, { + get: function get() { + return this[getName](); + }, + set: function set(val) { + this[setName](val); + }, + configurable: true + }); + } else { + Object.defineProperty(classProto, propName, { + get: function get() { + return this[getName](); + }, + configurable: true + }); + } + }; + + for (var getName in classProto) { + var _ret = _loop(getName); + + if (_ret === "continue") continue; + } + } +}; // promise polyfill relies on setTimeout implementation + + +require('./promise.min'); + +},{"./Blob":1,"./base64/base64.min":2,"./glOptMode":3,"./jsb-adapter":27,"./jsb_audioengine":32,"./jsb_input":33,"./jsb_opengl":34,"./jsb_prepare":36,"./promise.min":37,"./renderer/enums":38,"./renderer/jsb-gfx":39,"./renderer/jsb-renderer":40,"./renderer/jsb-vertex-format":41,"./xmldom/dom-parser":42}],5:[function(require,module,exports){ +"use strict"; + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +var DOMRect = function DOMRect(x, y, width, height) { + _classCallCheck(this, DOMRect); + + this.x = x ? x : 0; + this.y = y ? y : 0; + this.width = width ? width : 0; + this.height = height ? height : 0; + this.left = this.x; + this.top = this.y; + this.right = this.x + this.width; + this.bottom = this.y + this.height; +}; + +module.exports = DOMRect; + +},{}],6:[function(require,module,exports){ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } + +function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } + +function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } + +function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + +function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } + +var Event = require('./Event'); + +var DeviceMotionEvent = /*#__PURE__*/function (_Event) { + _inherits(DeviceMotionEvent, _Event); + + var _super = _createSuper(DeviceMotionEvent); + + function DeviceMotionEvent(initArgs) { + var _this; + + _classCallCheck(this, DeviceMotionEvent); + + _this = _super.call(this, 'devicemotion'); + + if (initArgs) { + _this._acceleration = initArgs.acceleration ? initArgs.acceleration : { + x: 0, + y: 0, + z: 0 + }; + _this._accelerationIncludingGravity = initArgs.accelerationIncludingGravity ? initArgs.accelerationIncludingGravity : { + x: 0, + y: 0, + z: 0 + }; + _this._rotationRate = initArgs.rotationRate ? initArgs.rotationRate : { + alpha: 0, + beta: 0, + gamma: 0 + }; + _this._interval = initArgs.interval; + } else { + _this._acceleration = { + x: 0, + y: 0, + z: 0 + }; + _this._accelerationIncludingGravity = { + x: 0, + y: 0, + z: 0 + }; + _this._rotationRate = { + alpha: 0, + beta: 0, + gamma: 0 + }; + _this._interval = 0; + } + + return _this; + } + + _createClass(DeviceMotionEvent, [{ + key: "acceleration", + get: function get() { + return this._acceleration; + } + }, { + key: "accelerationIncludingGravity", + get: function get() { + return this._accelerationIncludingGravity; + } + }, { + key: "rotationRate", + get: function get() { + return this._rotationRate; + } + }, { + key: "interval", + get: function get() { + return this._interval; + } + }]); + + return DeviceMotionEvent; +}(Event); + +module.exports = DeviceMotionEvent; + +},{"./Event":8}],7:[function(require,module,exports){ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } + +function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } + +function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } + +function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + +function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } + +var Node = require('./Node'); + +var DOMRect = require('./DOMRect'); + +var Element = /*#__PURE__*/function (_Node) { + _inherits(Element, _Node); + + var _super = _createSuper(Element); + + function Element() { + var _this; + + _classCallCheck(this, Element); + + _this = _super.call(this); + _this.className = ''; + _this.children = []; + _this.clientLeft = 0; + _this.clientTop = 0; + _this.scrollLeft = 0; + _this.scrollTop = 0; + return _this; + } + + _createClass(Element, [{ + key: "getBoundingClientRect", + value: function getBoundingClientRect() { + return new DOMRect(0, 0, window.innerWidth, window.innerHeight); + } // attrName is a string that names the attribute to be removed from element. + + }, { + key: "removeAttribute", + value: function removeAttribute(attrName) {} + }, { + key: "clientWidth", + get: function get() { + return 0; + } + }, { + key: "clientHeight", + get: function get() { + return 0; + } + }]); + + return Element; +}(Node); + +module.exports = Element; + +},{"./DOMRect":5,"./Node":24}],8:[function(require,module,exports){ +"use strict"; + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +/** + * @see https://dom.spec.whatwg.org/#interface-event + * @private + */ + +/** + * The event wrapper. + * @constructor + * @param {EventTarget} eventTarget The event target of this dispatching. + * @param {Event|{type:string}} event The original event to wrap. + */ +var Event = /*#__PURE__*/function () { + function Event(type, eventInit) { + _classCallCheck(this, Event); + + this._type = type; + this._target = null; + this._eventPhase = 2; + this._currentTarget = null; + this._canceled = false; + this._stopped = false; // The flag to stop propagation immediately. + + this._passiveListener = null; + this._timeStamp = Date.now(); + } + /** + * The type of this event. + * @type {string} + */ + + + _createClass(Event, [{ + key: "composedPath", + + /** + * @returns {EventTarget[]} The composed path of this event. + */ + value: function composedPath() { + var currentTarget = this._currentTarget; + + if (currentTarget === null) { + return []; + } + + return [currentTarget]; + } + /** + * The target of this event. + * @type {number} + */ + + }, { + key: "stopPropagation", + + /** + * Stop event bubbling. + * @returns {void} + */ + value: function stopPropagation() {} + /** + * Stop event bubbling. + * @returns {void} + */ + + }, { + key: "stopImmediatePropagation", + value: function stopImmediatePropagation() { + this._stopped = true; + } + /** + * The flag to be bubbling. + * @type {boolean} + */ + + }, { + key: "preventDefault", + + /** + * Cancel this event. + * @returns {void} + */ + value: function preventDefault() { + if (this._passiveListener !== null) { + console.warn("Event#preventDefault() was called from a passive listener:", this._passiveListener); + return; + } + + if (!this.cancelable) { + return; + } + + this._canceled = true; + } + /** + * The flag to indicate cancellation state. + * @type {boolean} + */ + + }, { + key: "type", + get: function get() { + return this._type; + } + /** + * The target of this event. + * @type {EventTarget} + */ + + }, { + key: "target", + get: function get() { + return this._target; + } + /** + * The target of this event. + * @type {EventTarget} + */ + + }, { + key: "currentTarget", + get: function get() { + return this._currentTarget; + } + }, { + key: "isTrusted", + get: function get() { + // https://heycam.github.io/webidl/#Unforgeable + return false; + } + }, { + key: "timeStamp", + + /** + * The unix time of this event. + * @type {number} + */ + get: function get() { + return this._timeStamp; + } + }, { + key: "eventPhase", + get: function get() { + return this._eventPhase; + } + }, { + key: "bubbles", + get: function get() { + return false; + } + /** + * The flag to be cancelable. + * @type {boolean} + */ + + }, { + key: "cancelable", + get: function get() { + return true; + } + }, { + key: "defaultPrevented", + get: function get() { + return this._canceled; + } + /** + * The flag to be composed. + * @type {boolean} + */ + + }, { + key: "composed", + get: function get() { + return false; + } + }]); + + return Event; +}(); +/** + * Constant of NONE. + * @type {number} + */ + + +Event.NONE = 0; +/** + * Constant of CAPTURING_PHASE. + * @type {number} + */ + +Event.CAPTURING_PHASE = 1; +/** + * Constant of AT_TARGET. + * @type {number} + */ + +Event.AT_TARGET = 2; +/** + * Constant of BUBBLING_PHASE. + * @type {number} + */ + +Event.BUBBLING_PHASE = 3; +module.exports = Event; + +},{}],9:[function(require,module,exports){ +"use strict"; + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +var __targetID = 0; +var __listenerMap = { + touch: {}, + mouse: {}, + keyboard: {}, + devicemotion: {} +}; +var __listenerCountMap = { + touch: 0, + mouse: 0, + keyboard: 0, + devicemotion: 0 +}; +var __enableCallbackMap = { + touch: null, + mouse: null, + keyboard: null, + //FIXME: Cocos Creator invokes addEventListener('devicemotion') when engine initializes, it will active sensor hardware. + // In that case, CPU and temperature cost will increase. Therefore, we require developer to invoke 'jsb.device.setMotionEnabled(true)' + // on native platforms since most games will not listen motion event. + devicemotion: null // devicemotion: function() { + // jsb.device.setMotionEnabled(true); + // } + +}; +var __disableCallbackMap = { + touch: null, + mouse: null, + //FIXME: Cocos Creator invokes addEventListener('devicemotion') when engine initializes, it will active sensor hardware. + // In that case, CPU and temperature cost will increase. Therefore, we require developer to invoke 'jsb.device.setMotionEnabled(true)' + // on native platforms since most games will not listen motion event. + keyboard: null, + devicemotion: null // devicemotion: function() { + // jsb.device.setMotionEnabled(false); + // } + +}; +var __handleEventNames = { + touch: ['touchstart', 'touchmove', 'touchend', 'touchcancel'], + mouse: ['mousedown', 'mousemove', 'mouseup', 'mousewheel'], + keyboard: ['keydown', 'keyup', 'keypress'], + devicemotion: ['devicemotion'] +}; // Listener types + +var CAPTURE = 1; +var BUBBLE = 2; +var ATTRIBUTE = 3; +/** + * Check whether a given value is an object or not. + * @param {any} x The value to check. + * @returns {boolean} `true` if the value is an object. + */ + +function isObject(x) { + return x && _typeof(x) === "object"; //eslint-disable-line no-restricted-syntax +} +/** + * EventTarget. + * + * - This is constructor if no arguments. + * - This is a function which returns a CustomEventTarget constructor if there are arguments. + * + * For example: + * + * class A extends EventTarget {} + */ + + +var EventTarget = /*#__PURE__*/function () { + function EventTarget() { + _classCallCheck(this, EventTarget); + + this._targetID = ++__targetID; + this._listenerCount = { + touch: 0, + mouse: 0, + keyboard: 0, + devicemotion: 0 + }; + this._listeners = new Map(); + } + + _createClass(EventTarget, [{ + key: "_associateSystemEventListener", + value: function _associateSystemEventListener(eventName) { + var handleEventNames; + + for (var key in __handleEventNames) { + handleEventNames = __handleEventNames[key]; + + if (handleEventNames.indexOf(eventName) > -1) { + if (__enableCallbackMap[key] && __listenerCountMap[key] === 0) { + __enableCallbackMap[key](); + } + + if (this._listenerCount[key] === 0) __listenerMap[key][this._targetID] = this; + ++this._listenerCount[key]; + ++__listenerCountMap[key]; + break; + } + } + } + }, { + key: "_dissociateSystemEventListener", + value: function _dissociateSystemEventListener(eventName) { + var handleEventNames; + + for (var key in __handleEventNames) { + handleEventNames = __handleEventNames[key]; + + if (handleEventNames.indexOf(eventName) > -1) { + if (this._listenerCount[key] <= 0) delete __listenerMap[key][this._targetID]; + --__listenerCountMap[key]; + + if (__disableCallbackMap[key] && __listenerCountMap[key] === 0) { + __disableCallbackMap[key](); + } + + break; + } + } + } + /** + * Add a given listener to this event target. + * @param {string} eventName The event name to add. + * @param {Function} listener The listener to add. + * @param {boolean|{capture?:boolean,passive?:boolean,once?:boolean}} [options] The options for this listener. + * @returns {boolean} `true` if the listener was added actually. + */ + + }, { + key: "addEventListener", + value: function addEventListener(eventName, listener, options) { + if (!listener) { + return false; + } + + if (typeof listener !== "function" && !isObject(listener)) { + throw new TypeError("'listener' should be a function or an object."); + } + + var listeners = this._listeners; + var optionsIsObj = isObject(options); + var capture = optionsIsObj ? Boolean(options.capture) : Boolean(options); + var listenerType = capture ? CAPTURE : BUBBLE; + var newNode = { + listener: listener, + listenerType: listenerType, + passive: optionsIsObj && Boolean(options.passive), + once: optionsIsObj && Boolean(options.once), + next: null + }; // Set it as the first node if the first node is null. + + var node = listeners.get(eventName); + + if (node === undefined) { + listeners.set(eventName, newNode); + + this._associateSystemEventListener(eventName); + + return true; + } // Traverse to the tail while checking duplication.. + + + var prev = null; + + while (node) { + if (node.listener === listener && node.listenerType === listenerType) { + // Should ignore duplication. + return false; + } + + prev = node; + node = node.next; + } // Add it. + + + prev.next = newNode; + + this._associateSystemEventListener(eventName); + + return true; + } + /** + * Remove a given listener from this event target. + * @param {string} eventName The event name to remove. + * @param {Function} listener The listener to remove. + * @param {boolean|{capture?:boolean,passive?:boolean,once?:boolean}} [options] The options for this listener. + * @returns {boolean} `true` if the listener was removed actually. + */ + + }, { + key: "removeEventListener", + value: function removeEventListener(eventName, listener, options) { + if (!listener) { + return false; + } + + var listeners = this._listeners; + var capture = isObject(options) ? Boolean(options.capture) : Boolean(options); + var listenerType = capture ? CAPTURE : BUBBLE; + var prev = null; + var node = listeners.get(eventName); + + while (node) { + if (node.listener === listener && node.listenerType === listenerType) { + if (prev) { + prev.next = node.next; + } else if (node.next) { + listeners.set(eventName, node.next); + } else { + listeners["delete"](eventName); + } + + this._dissociateSystemEventListener(eventName); + + return true; + } + + prev = node; + node = node.next; + } + + return false; + } + /** + * Dispatch a given event. + * @param {Event|{type:string}} event The event to dispatch. + * @returns {boolean} `false` if canceled. + */ + + }, { + key: "dispatchEvent", + value: function dispatchEvent(event) { + if (!event || typeof event.type !== "string") { + throw new TypeError("\"event.type\" should be a string."); + } + + var eventName = event.type; + var onFunc = this['on' + eventName]; + + if (onFunc && typeof onFunc === 'function') { + event._target = event._currentTarget = this; + onFunc.call(this, event); + event._target = event._currentTarget = null; + event._eventPhase = 0; + event._passiveListener = null; + if (event.defaultPrevented) return false; + } // If listeners aren't registered, terminate. + + + var listeners = this._listeners; + var node = listeners.get(eventName); + + if (!node) { + return true; + } + + event._target = event._currentTarget = this; // This doesn't process capturing phase and bubbling phase. + // This isn't participating in a tree. + + var prev = null; + + while (node) { + // Remove this listener if it's once + if (node.once) { + if (prev) { + prev.next = node.next; + } else if (node.next) { + listeners.set(eventName, node.next); + } else { + listeners["delete"](eventName); + } + } else { + prev = node; + } // Call this listener + + + event._passiveListener = node.passive ? node.listener : null; + + if (typeof node.listener === "function") { + node.listener.call(this, event); + } // Break if `event.stopImmediatePropagation` was called. + + + if (event._stopped) { + break; + } + + node = node.next; + } + + event._target = event._currentTarget = null; + event._eventPhase = 0; + event._passiveListener = null; + return !event.defaultPrevented; + } + }]); + + return EventTarget; +}(); + +function touchEventHandlerFactory(type) { + return function (touches) { + var touchEvent = new TouchEvent(type); + touchEvent.touches = touches; + touchEvent.targetTouches = Array.prototype.slice.call(touchEvent.touches); + touchEvent.changedTouches = touches; //event.changedTouches + // touchEvent.timeStamp = event.timeStamp + + var i = 0, + touchCount = touches.length; + var target; + var touchListenerMap = __listenerMap.touch; + + for (var key in touchListenerMap) { + target = touchListenerMap[key]; + + for (i = 0; i < touchCount; ++i) { + touches[i].target = target; + } + + target.dispatchEvent(touchEvent); + } + }; +} + +jsb.onTouchStart = touchEventHandlerFactory('touchstart'); +jsb.onTouchMove = touchEventHandlerFactory('touchmove'); +jsb.onTouchEnd = touchEventHandlerFactory('touchend'); +jsb.onTouchCancel = touchEventHandlerFactory('touchcancel'); + +function mouseEventHandlerFactory(type) { + return function (event) { + var button = event.button; + var x = event.x; + var y = event.y; + var mouseEvent = new MouseEvent(type, { + button: button, + which: button + 1, + wheelDelta: event.wheelDeltaY, + clientX: x, + clientY: y, + screenX: x, + screenY: y, + pageX: x, + pageY: y + }); + var target; + var mouseListenerMap = __listenerMap.mouse; + + for (var key in mouseListenerMap) { + target = mouseListenerMap[key]; + target.dispatchEvent(mouseEvent); + } + }; +} + +jsb.onMouseDown = mouseEventHandlerFactory('mousedown'); +jsb.onMouseMove = mouseEventHandlerFactory('mousemove'); +jsb.onMouseUp = mouseEventHandlerFactory('mouseup'); +jsb.onMouseWheel = mouseEventHandlerFactory('mousewheel'); + +function keyboardEventHandlerFactory(type) { + return function (event) { + var keyboardEvent = new KeyboardEvent(type, { + altKey: event.altKey, + ctrlKey: event.ctrlKey, + metaKey: event.metaKey, + shiftKey: event.shiftKey, + repeat: event.repeat, + keyCode: event.keyCode + }); + var target; + var keyboardListenerMap = __listenerMap.keyboard; + + for (var key in keyboardListenerMap) { + target = keyboardListenerMap[key]; + target.dispatchEvent(keyboardEvent); + } + }; +} + +jsb.onKeyDown = keyboardEventHandlerFactory('keydown'); +jsb.onKeyUp = keyboardEventHandlerFactory('keyup'); + + +module.exports = EventTarget; + +},{}],10:[function(require,module,exports){ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } + +function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } + +function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } + +function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + +function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } + +var EventTarget = require('./EventTarget'); + +var FileReader = /*#__PURE__*/function (_EventTarget) { + _inherits(FileReader, _EventTarget); + + var _super = _createSuper(FileReader); + + function FileReader() { + _classCallCheck(this, FileReader); + + return _super.apply(this, arguments); + } + + _createClass(FileReader, [{ + key: "construct", + value: function construct() { + this.result = null; + } // Aborts the read operation. Upon return, the readyState will be DONE. + + }, { + key: "abort", + value: function abort() {} // Starts reading the contents of the specified Blob, once finished, the result attribute contains an ArrayBuffer representing the file's data. + + }, { + key: "readAsArrayBuffer", + value: function readAsArrayBuffer() {} // Starts reading the contents of the specified Blob, once finished, the result attribute contains a data: URL representing the file's data. + + }, { + key: "readAsDataURL", + value: function readAsDataURL(blob) { + this.result = 'data:image/png;base64,' + window.btoa(blob); + var event = new Event('load'); + this.dispatchEvent(event); + } // Starts reading the contents of the specified Blob, once finished, the result attribute contains the contents of the file as a text string. + + }, { + key: "readAsText", + value: function readAsText() {} + }]); + + return FileReader; +}(EventTarget); + +module.exports = FileReader; + +},{"./EventTarget":9}],11:[function(require,module,exports){ +"use strict"; + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +var FontFace = /*#__PURE__*/function () { + function FontFace(family, source, descriptors) { + var _this = this; + + _classCallCheck(this, FontFace); + + this.family = family; + this.source = source; + this.descriptors = descriptors; + this._status = 'unloaded'; + this._loaded = new Promise(function (resolve, reject) { + _this._resolveCB = resolve; + _this._rejectCB = reject; + }); + } + + _createClass(FontFace, [{ + key: "load", + value: function load() {// class FontFaceSet, add(fontFace) have done the load work + } + }, { + key: "status", + get: function get() { + return this._status; + } + }, { + key: "loaded", + get: function get() { + return this._loaded; + } + }]); + + return FontFace; +}(); + +module.exports = FontFace; + +},{}],12:[function(require,module,exports){ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } + +function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } + +function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } + +function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + +function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } + +var EventTarget = require('./EventTarget'); + +var Event = require('./Event'); + +var FontFaceSet = /*#__PURE__*/function (_EventTarget) { + _inherits(FontFaceSet, _EventTarget); + + var _super = _createSuper(FontFaceSet); + + function FontFaceSet() { + var _this; + + _classCallCheck(this, FontFaceSet); + + _this = _super.call(this); + _this._status = 'loading'; + return _this; + } + + _createClass(FontFaceSet, [{ + key: "add", + value: function add(fontFace) { + var _this2 = this; + + this._status = fontFace._status = 'loading'; + this.dispatchEvent(new Event('loading')); // Call native binding method to set the ttf font to native platform. + + var family = jsb.loadFont(fontFace.family, fontFace.source); + setTimeout(function () { + if (family) { + fontFace._status = _this2._status = 'loaded'; + + fontFace._resolveCB(); + + _this2.dispatchEvent(new Event('loadingdone')); + } else { + fontFace._status = _this2._status = 'error'; + + fontFace._rejectCB(); + + _this2.dispatchEvent(new Event('loadingerror')); + } + }, 0); + } + }, { + key: "clear", + value: function clear() {} + }, { + key: "delete", + value: function _delete() {} + }, { + key: "load", + value: function load() {} + }, { + key: "ready", + value: function ready() {} + }, { + key: "status", + get: function get() { + return this._status; + } + }, { + key: "onloading", + set: function set(listener) { + this.addEventListener('loading', listener); + } + }, { + key: "onloadingdone", + set: function set(listener) { + this.addEventListener('loadingdone', listener); + } + }, { + key: "onloadingerror", + set: function set(listener) { + this.addEventListener('loadingerror', listener); + } + }]); + + return FontFaceSet; +}(EventTarget); + +module.exports = FontFaceSet; + +},{"./Event":8,"./EventTarget":9}],13:[function(require,module,exports){ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } + +function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } + +function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } + +function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + +function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +var HTMLElement = require('./HTMLElement'); + +var ImageData = require('./ImageData'); + +var DOMRect = require('./DOMRect'); + +var clamp = function clamp(value) { + value = Math.round(value); + return value < 0 ? 0 : value < 255 ? value : 255; +}; + +var CanvasGradient = /*#__PURE__*/function () { + function CanvasGradient() { + _classCallCheck(this, CanvasGradient); + + console.log("==> CanvasGradient constructor"); + } + + _createClass(CanvasGradient, [{ + key: "addColorStop", + value: function addColorStop(offset, color) { + console.log("==> CanvasGradient addColorStop"); + } + }]); + + return CanvasGradient; +}(); + +var TextMetrics = /*#__PURE__*/function () { + function TextMetrics(width) { + _classCallCheck(this, TextMetrics); + + this._width = width; + } + + _createClass(TextMetrics, [{ + key: "width", + get: function get() { + return this._width; + } + }]); + + return TextMetrics; +}(); + +var HTMLCanvasElement = /*#__PURE__*/function (_HTMLElement) { + _inherits(HTMLCanvasElement, _HTMLElement); + + var _super = _createSuper(HTMLCanvasElement); + + function HTMLCanvasElement(width, height) { + var _this; + + _classCallCheck(this, HTMLCanvasElement); + + _this = _super.call(this, 'canvas'); + _this.id = 'glcanvas'; + _this.type = 'canvas'; + _this.top = 0; + _this.left = 0; + _this._width = width ? Math.ceil(width) : 0; + _this._height = height ? Math.ceil(height) : 0; + _this._context2D = null; + _this._data = null; + _this._alignment = 4; // Canvas is used for rendering text only and we make sure the data format is RGBA. + // Whether the pixel data is premultiplied. + + _this._premultiplied = false; + return _this; + } //REFINE: implement opts. + + + _createClass(HTMLCanvasElement, [{ + key: "getContext", + value: function getContext(name, opts) { + + return null; + } + }, { + key: "getBoundingClientRect", + value: function getBoundingClientRect() { + return new DOMRect(0, 0, window.innerWidth, window.innerHeight); + } + }, { + key: "width", + set: function set(width) { + width = Math.ceil(width); + + if (this._width !== width) { + this._width = width; + + if (this._context2D) { + this._context2D._width = width; + } + } + }, + get: function get() { + return this._width; + } + }, { + key: "height", + set: function set(height) { + height = Math.ceil(height); + + if (this._height !== height) { + this._height = height; + + if (this._context2D) { + this._context2D._height = height; + } + } + }, + get: function get() { + return this._height; + } + }, { + key: "clientWidth", + get: function get() { + return window.innerWidth; + } + }, { + key: "clientHeight", + get: function get() { + return window.innerHeight; + } + }, { + key: "data", + get: function get() { + if (this._data) { + return this._data.data; + } + + return null; + } + }]); + + return HTMLCanvasElement; +}(HTMLElement); + + + +module.exports = HTMLCanvasElement; + +},{"./DOMRect":5,"./HTMLElement":14,"./ImageData":20}],14:[function(require,module,exports){ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } + +function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } + +function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } + +function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + +function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } + +var Element = require('./Element'); + +var _require = require('./util'), + noop = _require.noop; + +var HTMLElement = /*#__PURE__*/function (_Element) { + _inherits(HTMLElement, _Element); + + var _super = _createSuper(HTMLElement); + + function HTMLElement() { + var _this; + + var tagName = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ''; + + _classCallCheck(this, HTMLElement); + + _this = _super.call(this); + _this.tagName = tagName.toUpperCase(); + _this.className = ''; + _this.children = []; + _this.style = { + width: "".concat(window.innerWidth, "px"), + height: "".concat(window.innerHeight, "px") + }; + _this.innerHTML = ''; + _this.parentElement = window.__canvas; + return _this; + } + + _createClass(HTMLElement, [{ + key: "setAttribute", + value: function setAttribute(name, value) { + this[name] = value; + } + }, { + key: "getAttribute", + value: function getAttribute(name) { + return this[name]; + } + }, { + key: "focus", + value: function focus() {} + }]); + + return HTMLElement; +}(Element); + +module.exports = HTMLElement; + +},{"./Element":7,"./util":30}],15:[function(require,module,exports){ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } + +function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } + +function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } + +function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + +function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } + +var HTMLElement = require('./HTMLElement'); + +var Event = require('./Event'); + +var gl = window.__gl; + +var HTMLImageElement = /*#__PURE__*/function (_HTMLElement) { + _inherits(HTMLImageElement, _HTMLElement); + + var _super = _createSuper(HTMLImageElement); + + function HTMLImageElement(width, height, isCalledFromImage) { + var _this; + + _classCallCheck(this, HTMLImageElement); + + if (!isCalledFromImage) { + throw new TypeError("Illegal constructor, use 'new Image(w, h); instead!'"); + return _possibleConstructorReturn(_this); + } + + _this = _super.call(this, 'img'); + _this.width = width ? width : 0; + _this.height = height ? height : 0; + _this._data = null; + _this._src = null; + _this.complete = false; + _this._glFormat = _this._glInternalFormat = gl.RGBA; + _this.crossOrigin = null; + return _this; + } + + _createClass(HTMLImageElement, [{ + key: "getBoundingClientRect", + value: function getBoundingClientRect() { + return new DOMRect(0, 0, this.width, this.height); + } + }, { + key: "src", + set: function set(src) { + var _this2 = this; + + this._src = src; + jsb.loadImage(src, function (info) { + if (!info) { + _this2._data = null; + return; + } else if (info && info.errorMsg) { + _this2._data = null; + var event = new Event('error'); + + _this2.dispatchEvent(event); + + return; + } + + _this2.width = _this2.naturalWidth = info.width; + _this2.height = _this2.naturalHeight = info.height; + _this2._data = info.data; // console.log(`glFormat: ${info.glFormat}, glInternalFormat: ${info.glInternalFormat}, glType: ${info.glType}`); + + _this2._glFormat = info.glFormat; + _this2._glInternalFormat = info.glInternalFormat; + _this2._glType = info.glType; + _this2._numberOfMipmaps = info.numberOfMipmaps; + _this2._compressed = info.compressed; + _this2._bpp = info.bpp; + _this2._premultiplyAlpha = info.premultiplyAlpha; + _this2._alignment = 1; // Set the row align only when mipmapsNum == 1 and the data is uncompressed + + if ((_this2._numberOfMipmaps == 0 || _this2._numberOfMipmaps == 1) && !_this2._compressed) { + var bytesPerRow = _this2.width * _this2._bpp / 8; + if (bytesPerRow % 8 == 0) _this2._alignment = 8;else if (bytesPerRow % 4 == 0) _this2._alignment = 4;else if (bytesPerRow % 2 == 0) _this2._alignment = 2; + } + + _this2.complete = true; + var event = new Event('load'); + + _this2.dispatchEvent(event); + }); + }, + get: function get() { + return this._src; + } + }, { + key: "clientWidth", + get: function get() { + return this.width; + } + }, { + key: "clientHeight", + get: function get() { + return this.height; + } + }]); + + return HTMLImageElement; +}(HTMLElement); + +module.exports = HTMLImageElement; + +},{"./Event":8,"./HTMLElement":14}],16:[function(require,module,exports){ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } + +function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } + +function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } + +function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + +function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } + +var HTMLElement = require('./HTMLElement'); + +var MediaError = require('./MediaError'); + +var HAVE_NOTHING = 0; +var HAVE_METADATA = 1; +var HAVE_CURRENT_DATA = 2; +var HAVE_FUTURE_DATA = 3; +var HAVE_ENOUGH_DATA = 4; + +var HTMLMediaElement = /*#__PURE__*/function (_HTMLElement) { + _inherits(HTMLMediaElement, _HTMLElement); + + var _super = _createSuper(HTMLMediaElement); + + function HTMLMediaElement(type) { + var _this; + + _classCallCheck(this, HTMLMediaElement); + + _this = _super.call(this, type); + _this._volume = 1.0; + _this._duration = 0; + _this._isEnded = false; + _this._isMute = false; + _this._readyState = HAVE_NOTHING; + _this._error = new MediaError(); + return _this; + } + + _createClass(HTMLMediaElement, [{ + key: "addTextTrack", + value: function addTextTrack() {} + }, { + key: "captureStream", + value: function captureStream() {} + }, { + key: "fastSeek", + value: function fastSeek() {} + }, { + key: "load", + value: function load() {} + }, { + key: "pause", + value: function pause() {} + }, { + key: "play", + value: function play() {} + }, { + key: "canPlayType", + value: function canPlayType(mediaType) { + return ''; + } + }, { + key: "volume", + set: function set(volume) { + this._volume = volume; + }, + get: function get() { + return this._volume; + } + }, { + key: "duration", + get: function get() { + return this._duration; + } + }, { + key: "ended", + get: function get() { + return this._isEnded; + } + }, { + key: "muted", + get: function get() { + return this._isMute; + } + }, { + key: "readyState", + get: function get() { + return this._readyState; + } + }, { + key: "error", + get: function get() { + return this._error; + } + }, { + key: "currentTime", + get: function get() { + return 0; + } + }]); + + return HTMLMediaElement; +}(HTMLElement); + +module.exports = HTMLMediaElement; + +},{"./HTMLElement":14,"./MediaError":22}],17:[function(require,module,exports){ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } + +function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } + +function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } + +function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + +function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } + +var HTMLElement = require('./HTMLElement'); + +var Event = require('./Event'); + +var HTMLScriptElement = /*#__PURE__*/function (_HTMLElement) { + _inherits(HTMLScriptElement, _HTMLElement); + + var _super = _createSuper(HTMLScriptElement); + + function HTMLScriptElement(width, height) { + _classCallCheck(this, HTMLScriptElement); + + return _super.call(this, 'script'); + } + + _createClass(HTMLScriptElement, [{ + key: "src", + set: function set(url) { + var _this = this; + + setTimeout(function () { + require(url); + + _this.dispatchEvent(new Event('load')); + }, 0); + } + }]); + + return HTMLScriptElement; +}(HTMLElement); + +module.exports = HTMLScriptElement; + +},{"./Event":8,"./HTMLElement":14}],18:[function(require,module,exports){ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } + +function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } + +function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } + +function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + +function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } + +var HTMLMediaElement = require('./HTMLMediaElement'); + +var HTMLVideoElement = /*#__PURE__*/function (_HTMLMediaElement) { + _inherits(HTMLVideoElement, _HTMLMediaElement); + + var _super = _createSuper(HTMLVideoElement); + + function HTMLVideoElement() { + _classCallCheck(this, HTMLVideoElement); + + return _super.call(this, 'video'); + } + + _createClass(HTMLVideoElement, [{ + key: "canPlayType", + value: function canPlayType(type) { + if (type === 'video/mp4') return true; + return false; + } + }]); + + return HTMLVideoElement; +}(HTMLMediaElement); + +module.exports = HTMLVideoElement; + +},{"./HTMLMediaElement":16}],19:[function(require,module,exports){ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } + +function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } + +function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } + +function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + +function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } + +var HTMLImageElement = require('./HTMLImageElement'); + +var Image = /*#__PURE__*/function (_HTMLImageElement) { + _inherits(Image, _HTMLImageElement); + + var _super = _createSuper(Image); + + function Image(width, height) { + _classCallCheck(this, Image); + + return _super.call(this, width, height, true); + } + + return Image; +}(HTMLImageElement); + +module.exports = Image; + +},{"./HTMLImageElement":15}],20:[function(require,module,exports){ +"use strict"; + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +var ImageData = /*#__PURE__*/function () { + // var imageData = new ImageData(array, width, height); + // var imageData = new ImageData(width, height); + function ImageData(array, width, height) { + _classCallCheck(this, ImageData); + + if (typeof array === 'number' && typeof width == 'number') { + height = width; + width = array; + array = null; + } + + if (array === null) { + this._data = new Uint8ClampedArray(width * height * 4); + } else { + this._data = array; + } + + this._width = width; + this._height = height; + } + + _createClass(ImageData, [{ + key: "data", + get: function get() { + return this._data; + } + }, { + key: "width", + get: function get() { + return this._width; + } + }, { + key: "height", + get: function get() { + return this._height; + } + }]); + + return ImageData; +}(); + +module.exports = ImageData; + +},{}],21:[function(require,module,exports){ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } + +function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } + +function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } + +function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + +function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } + +var Event = require('./Event'); + +var __numberShiftMap = { + '48': ')', + // 0 + '49': '!', + // 1 + '50': '@', + // 2 + '51': '#', + // 3 + '52': '$', + // 4 + '53': '%', + // 5 + '54': '^', + // 6 + '55': '&', + // 7 + '56': '*', + // 8 + '57': '(' // 9 + +}; +var __capsLockActive = false; + +var KeyboardEvent = /*#__PURE__*/function (_Event) { + _inherits(KeyboardEvent, _Event); + + var _super = _createSuper(KeyboardEvent); + + function KeyboardEvent(type, KeyboardEventInit) { + var _this; + + _classCallCheck(this, KeyboardEvent); + + _this = _super.call(this, type); + + if (_typeof(KeyboardEventInit) === 'object') { + _this._altKeyActive = KeyboardEventInit.altKey ? KeyboardEventInit.altKey : false; + _this._ctrlKeyActive = KeyboardEventInit.ctrlKey ? KeyboardEventInit.ctrlKey : false; + _this._metaKeyActive = KeyboardEventInit.metaKey ? KeyboardEventInit.metaKey : false; + _this._shiftKeyActive = KeyboardEventInit.shiftKey ? KeyboardEventInit.shiftKey : false; + _this._keyCode = KeyboardEventInit.keyCode ? KeyboardEventInit.keyCode : -1; + _this._repeat = KeyboardEventInit.repeat ? KeyboardEventInit.repeat : false; + } else { + _this._altKeyActive = false; + _this._ctrlKeyActive = false; + _this._metaKeyActive = false; + _this._shiftKeyActive = false; + _this._keyCode = -1; + _this._repeat = false; + } + + var keyCode = _this._keyCode; + + if (keyCode >= 48 && keyCode <= 57) { + // 0 ~ 9 + var number = keyCode - 48; + _this._code = 'Digit' + number; + _this._key = _this._shiftKeyActive ? __numberShiftMap[keyCode] : '' + number; + } else if (keyCode >= 10048 && keyCode <= 10057) { + // Numberpad 0 ~ 9 + // reset to web keyCode since it's a hack in C++ for distinguish numbers in Numberpad. + keyCode = _this._keyCode = keyCode - 10000; + var number = keyCode - 48; + _this._code = 'Numpad' + number; + _this._key = '' + number; + } else if (keyCode >= 65 && keyCode <= 90) { + // A ~ Z + var charCode = String.fromCharCode(keyCode); + _this._code = 'Key' + charCode; + _this._key = _this._shiftKeyActive || __capsLockActive ? charCode : charCode.toLowerCase(); + } else if (keyCode >= 112 && keyCode <= 123) { + // F1 ~ F12 + _this._code = _this._key = 'F' + (keyCode - 111); + } else if (keyCode === 27) { + _this._code = _this._key = 'Escape'; + } else if (keyCode === 189) { + _this._code = 'Minus'; + _this._key = _this._shiftKeyActive ? '_' : '-'; + } else if (keyCode === 187) { + _this._code = 'Equal'; + _this._key = _this._shiftKeyActive ? '+' : '='; + } else if (keyCode === 220) { + _this._code = 'Backslash'; + _this._key = _this._shiftKeyActive ? '|' : '\\'; + } else if (keyCode === 192) { + _this._code = 'Backquote'; + _this._key = _this._shiftKeyActive ? '~' : '`'; + } else if (keyCode === 8) { + _this._code = _this._key = 'Backspace'; + } else if (keyCode === 13) { + _this._code = _this._key = 'Enter'; + } else if (keyCode === 219) { + _this._code = 'BracketLeft'; + _this._key = _this._shiftKeyActive ? '{' : '['; + } else if (keyCode === 221) { + _this._code = 'BracketRight'; + _this._key = _this._shiftKeyActive ? '}' : ']'; + } else if (keyCode === 186) { + _this._code = 'Semicolon'; + _this._key = _this._shiftKeyActive ? ':' : ';'; + } else if (keyCode === 222) { + _this._code = 'Quote'; + _this._key = _this._shiftKeyActive ? '"' : "'"; + } else if (keyCode === 9) { + _this._code = _this._key = 'Tab'; + } else if (keyCode === 17) { + _this._code = 'ControlLeft'; + _this._key = 'Control'; + } else if (keyCode === 20017) { + _this._keyCode = 17; // Reset to the real value. + + _this._code = 'ControlRight'; + _this._key = 'Control'; + } else if (keyCode === 16) { + _this._code = 'ShiftLeft'; + _this._key = 'Shift'; + } else if (keyCode === 20016) { + _this._keyCode = 16; // Reset to the real value. + + _this._code = 'ShiftRight'; + _this._key = 'Shift'; + } else if (keyCode === 18) { + _this._code = 'AltLeft'; + _this._key = 'Alt'; + } else if (keyCode === 20018) { + _this._keyCode = 18; // Reset to the real value. + + _this._code = 'AltRight'; + _this._key = 'Alt'; + } else if (keyCode === 91) { + _this._code = 'MetaLeft'; + _this._key = 'Meta'; + } else if (keyCode === 93) { + _this._code = 'MetaRight'; + _this._key = 'Meta'; + } else if (keyCode === 37) { + _this._code = _this._key = 'ArrowLeft'; + } else if (keyCode === 38) { + _this._code = _this._key = 'ArrowUp'; + } else if (keyCode === 39) { + _this._code = _this._key = 'ArrowRight'; + } else if (keyCode === 40) { + _this._code = _this._key = 'ArrowDown'; + } else if (keyCode === 20093) { + _this._keyCode = 93; // Bug of brower since its keycode is the same as MetaRight. + + _this._code = _this._key = 'ContextMenu'; + } else if (keyCode === 20013) { + _this._keyCode = 13; + _this._code = 'NumpadEnter'; + _this._key = 'Enter'; + } else if (keyCode === 107) { + _this._code = 'NumpadAdd'; + _this._key = '+'; + } else if (keyCode === 109) { + _this._code = 'NumpadSubtract'; + _this._key = '-'; + } else if (keyCode === 106) { + _this._code = 'NumpadMultiply'; + _this._key = '*'; + } else if (keyCode === 111) { + _this._code = 'NumpadDivide'; + _this._key = '/'; + } else if (keyCode === 12) { + _this._code = 'NumLock'; + _this._key = 'Clear'; + } else if (keyCode === 124) { + _this._code = _this._key = 'F13'; + } else if (keyCode === 36) { + _this._code = _this._key = 'Home'; + } else if (keyCode === 33) { + _this._code = _this._key = 'PageUp'; + } else if (keyCode === 34) { + _this._code = _this._key = 'PageDown'; + } else if (keyCode === 35) { + _this._code = _this._key = 'End'; + } else if (keyCode === 188) { + _this._code = 'Comma'; + _this._key = _this._shiftKeyActive ? '<' : ','; + } else if (keyCode === 190) { + _this._code = 'Period'; + _this._key = _this._shiftKeyActive ? '>' : '.'; + } else if (keyCode === 191) { + _this._code = 'Slash'; + _this._key = _this._shiftKeyActive ? '?' : '/'; + } else if (keyCode === 32) { + _this._code = 'Space'; + _this._key = ' '; + } else if (keyCode === 46) { + _this._code = _this._key = 'Delete'; + } else if (keyCode === 110) { + _this._code = 'NumpadDecimal'; + _this._key = '.'; + } else if (keyCode === 20) { + _this._code = _this._key = 'CapsLock'; + + if (type === 'keyup') { + __capsLockActive = !__capsLockActive; + } + } else { + console.log("Unknown keyCode: " + _this._keyCode); + } + + return _this; + } // Returns a Boolean indicating if the modifier key, like Alt, Shift, Ctrl, or Meta, was pressed when the event was created. + + + _createClass(KeyboardEvent, [{ + key: "getModifierState", + value: function getModifierState() { + return false; + } // Returns a Boolean that is true if the Alt ( Option or ⌥ on OS X) key was active when the key event was generated. + + }, { + key: "altKey", + get: function get() { + return this._altKeyActive; + } // Returns a DOMString with the code value of the key represented by the event. + + }, { + key: "code", + get: function get() { + return this._code; + } // Returns a Boolean that is true if the Ctrl key was active when the key event was generated. + + }, { + key: "ctrlKey", + get: function get() { + return this._ctrlKeyActive; + } // Returns a Boolean that is true if the event is fired between after compositionstart and before compositionend. + + }, { + key: "isComposing", + get: function get() { + return false; + } // Returns a DOMString representing the key value of the key represented by the event. + + }, { + key: "key", + get: function get() { + return this._key; + } + }, { + key: "keyCode", + get: function get() { + return this._keyCode; + } // Returns a Number representing the location of the key on the keyboard or other input device. + + }, { + key: "location", + get: function get() { + return 0; + } // Returns a Boolean that is true if the Meta key (on Mac keyboards, the ⌘ Command key; on Windows keyboards, the Windows key (⊞)) was active when the key event was generated. + + }, { + key: "metaKey", + get: function get() { + return this._metaKeyActive; + } // Returns a Boolean that is true if the key is being held down such that it is automatically repeating. + + }, { + key: "repeat", + get: function get() { + return this._repeat; + } // Returns a Boolean that is true if the Shift key was active when the key event was generated. + + }, { + key: "shiftKey", + get: function get() { + return this._shiftKeyActive; + } + }]); + + return KeyboardEvent; +}(Event); + +module.exports = KeyboardEvent; + +},{"./Event":8}],22:[function(require,module,exports){ +"use strict"; + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +var MEDIA_ERR_ABORTED = 1; +var MEDIA_ERR_NETWORK = 2; +var MEDIA_ERR_DECODE = 3; +var MEDIA_ERR_SRC_NOT_SUPPORTED = 4; + +var MediaError = /*#__PURE__*/function () { + function MediaError() { + _classCallCheck(this, MediaError); + } + + _createClass(MediaError, [{ + key: "code", + get: function get() { + return MEDIA_ERR_ABORTED; + } + }, { + key: "message", + get: function get() { + return ""; + } + }]); + + return MediaError; +}(); + +module.exports = MediaError; + +},{}],23:[function(require,module,exports){ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } + +function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } + +function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } + +function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + +function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } + +var Event = require('./Event'); + +var MouseEvent = /*#__PURE__*/function (_Event) { + _inherits(MouseEvent, _Event); + + var _super = _createSuper(MouseEvent); + + function MouseEvent(type, initArgs) { + var _this; + + _classCallCheck(this, MouseEvent); + + _this = _super.call(this, type); + _this._button = initArgs.button; + _this._which = initArgs.which; + _this._wheelDelta = initArgs.wheelDelta; + _this._clientX = initArgs.clientX; + _this._clientY = initArgs.clientY; + _this._screenX = initArgs.screenX; + _this._screenY = initArgs.screenY; + _this._pageX = initArgs.pageX; + _this._pageY = initArgs.pageY; + return _this; + } + + _createClass(MouseEvent, [{ + key: "button", + get: function get() { + return this._button; + } + }, { + key: "which", + get: function get() { + return this._which; + } + }, { + key: "wheelDelta", + get: function get() { + return this._wheelDelta; + } + }, { + key: "clientX", + get: function get() { + return this._clientX; + } + }, { + key: "clientY", + get: function get() { + return this._clientY; + } + }, { + key: "screenX", + get: function get() { + return this._screenX; + } + }, { + key: "screenY", + get: function get() { + return this._screenY; + } + }, { + key: "pageX", + get: function get() { + return this._pageX; + } + }, { + key: "pageY", + get: function get() { + return this._pageY; + } + }]); + + return MouseEvent; +}(Event); + +module.exports = MouseEvent; + +},{"./Event":8}],24:[function(require,module,exports){ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } + +function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } + +function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } + +function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + +function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } + +var EventTarget = require('./EventTarget'); + +var Node = /*#__PURE__*/function (_EventTarget) { + _inherits(Node, _EventTarget); + + var _super = _createSuper(Node); + + function Node() { + var _this; + + _classCallCheck(this, Node); + + _this = _super.call(this); + _this.childNodes = []; + _this.parentNode = window.__canvas; + return _this; + } + + _createClass(Node, [{ + key: "appendChild", + value: function appendChild(node) { + if (node instanceof Node) { + this.childNodes.push(node); + } else { + throw new TypeError('Failed to executed \'appendChild\' on \'Node\': parameter 1 is not of type \'Node\'.'); + } + } + }, { + key: "insertBefore", + value: function insertBefore(newNode, referenceNode) { + //REFINE: + return newNode; + } + }, { + key: "replaceChild", + value: function replaceChild(newChild, oldChild) { + //REFINE: + return oldChild; + } + }, { + key: "cloneNode", + value: function cloneNode() { + var copyNode = Object.create(this); + Object.assign(copyNode, this); + return copyNode; + } + }, { + key: "removeChild", + value: function removeChild(node) { + var index = this.childNodes.findIndex(function (child) { + return child === node; + }); + + if (index > -1) { + return this.childNodes.splice(index, 1); + } + + return null; + } + }, { + key: "contains", + value: function contains(node) { + return this.childNodes.indexOf(node) > -1; + } + }]); + + return Node; +}(EventTarget); + +module.exports = Node; + +},{"./EventTarget":9}],25:[function(require,module,exports){ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } + +function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } + +function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } + +function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + +function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } + +var Event = require('./Event'); + +var TouchEvent = /*#__PURE__*/function (_Event) { + _inherits(TouchEvent, _Event); + + var _super = _createSuper(TouchEvent); + + function TouchEvent(type, touchEventInit) { + var _this; + + _classCallCheck(this, TouchEvent); + + _this = _super.call(this, type); + _this.touches = []; + _this.targetTouches = []; + _this.changedTouches = []; + return _this; + } + + return TouchEvent; +}(Event); + +module.exports = TouchEvent; + +},{"./Event":8}],26:[function(require,module,exports){ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } + +function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } + +function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } + +function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + +function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } + +var HTMLElement = require('./HTMLElement'); + +var Image = require('./Image'); + +var HTMLCanvasElement = require('./HTMLCanvasElement'); + +var HTMLVideoElement = require('./HTMLVideoElement'); + +var HTMLScriptElement = require('./HTMLScriptElement'); + +var Node = require('./Node'); + +var FontFaceSet = require('./FontFaceSet'); + +var Document = /*#__PURE__*/function (_Node) { + _inherits(Document, _Node); + + var _super = _createSuper(Document); + + function Document() { + var _this; + + _classCallCheck(this, Document); + + _this = _super.call(this); + _this.readyState = 'complete'; + _this.visibilityState = 'visible'; + _this.documentElement = window; + _this.hidden = false; + _this.style = {}; + _this.location = require('./location'); + _this.head = new HTMLElement('head'); + _this.body = new HTMLElement('body'); + _this.fonts = new FontFaceSet(); + _this.scripts = []; + return _this; + } + + _createClass(Document, [{ + key: "createElementNS", + value: function createElementNS(namespaceURI, qualifiedName, options) { + return this.createElement(qualifiedName); + } + }, { + key: "createElement", + value: function createElement(tagName) { + if (tagName === 'canvas') { + return new HTMLCanvasElement(); + } else if (tagName === 'img') { + return new Image(); + } else if (tagName === 'video') { + return new HTMLVideoElement(); + } else if (tagName === 'script') { + return new HTMLScriptElement(); + } + + return new HTMLElement(tagName); + } + }, { + key: "getElementById", + value: function getElementById(id) { + if (id === window.__canvas.id || id === 'canvas') { + return window.__canvas; + } + + return new HTMLElement(id); + } + }, { + key: "getElementsByTagName", + value: function getElementsByTagName(tagName) { + if (tagName === 'head') { + return [document.head]; + } else if (tagName === 'body') { + return [document.body]; + } else if (tagName === 'canvas') { + return [window.__canvas]; + } + + return [new HTMLElement(tagName)]; + } + }, { + key: "getElementsByName", + value: function getElementsByName(tagName) { + if (tagName === 'head') { + return [document.head]; + } else if (tagName === 'body') { + return [document.body]; + } else if (tagName === 'canvas') { + return [window.__canvas]; + } + + return [new HTMLElement(tagName)]; + } + }, { + key: "querySelector", + value: function querySelector(query) { + if (query === 'head') { + return document.head; + } else if (query === 'body') { + return document.body; + } else if (query === 'canvas') { + return window.__canvas; + } else if (query === "#".concat(window.__canvas.id)) { + return window.__canvas; + } + + return new HTMLElement(query); + } + }, { + key: "querySelectorAll", + value: function querySelectorAll(query) { + if (query === 'head') { + return [document.head]; + } else if (query === 'body') { + return [document.body]; + } else if (query === 'canvas') { + return [window.__canvas]; + } + + return [new HTMLElement(query)]; + } + }, { + key: "createTextNode", + value: function createTextNode() { + return new HTMLElement('text'); + } + }, { + key: "elementFromPoint", + value: function elementFromPoint() { + return window.canvas; + } + }, { + key: "createEvent", + value: function createEvent(type) { + if (window[type]) { + return new window[type](); + } + + return null; + } + }]); + + return Document; +}(Node); + +var document = new Document(); +module.exports = document; + +},{"./FontFaceSet":12,"./HTMLCanvasElement":13,"./HTMLElement":14,"./HTMLScriptElement":17,"./HTMLVideoElement":18,"./Image":19,"./Node":24,"./location":28}],27:[function(require,module,exports){ +"use strict"; + +require('./window'); + +},{"./window":31}],28:[function(require,module,exports){ +"use strict"; + +var location = { + href: 'game.js', + pathname: 'game.js', + search: '', + hash: '', + reload: function reload() {} +}; +module.exports = location; + +},{}],29:[function(require,module,exports){ +"use strict"; + +var _require = require('./util'), + noop = _require.noop; + +var navigator = { + platform: __getOS(), + language: __getCurrentLanguage(), + appVersion: '5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1', + userAgent: 'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Mobile/14E8301 NetType/WIFI Language/zh_CN', + onLine: true, + //FIXME: + geolocation: { + getCurrentPosition: noop, + watchPosition: noop, + clearWatch: noop + }, + maxTouchPoints: 10 //FIXME: getting the number from OS. + +}; +module.exports = navigator; + +},{"./util":30}],30:[function(require,module,exports){ +"use strict"; + +function noop() {} + +module.exports = noop; + +},{}],31:[function(require,module,exports){ +"use strict"; + +function inject() { + window.top = window.parent = window; + window.ontouchstart = null; + window.ontouchmove = null; + window.ontouchend = null; + window.ontouchcancel = null; + window.pageXOffset = window.pageYOffset = window.clientTop = window.clientLeft = 0; + window.outerWidth = window.innerWidth; + window.outerHeight = window.innerHeight; + window.location = require('./location'); + window.document = require('./document'); + window.Element = require('./Element'); + window.HTMLElement = require('./HTMLElement'); + window.HTMLCanvasElement = require('./HTMLCanvasElement'); + window.HTMLImageElement = require('./HTMLImageElement'); + window.HTMLMediaElement = require('./HTMLMediaElement'); + window.HTMLVideoElement = require('./HTMLVideoElement'); + window.HTMLScriptElement = require('./HTMLScriptElement'); + window.__canvas = new HTMLCanvasElement(); + window.__canvas._width = window.innerWidth; + window.__canvas._height = window.innerHeight; + window.__gl.canvas = window.__canvas; + window.navigator = require('./navigator'); + window.Image = require('./Image'); + window.FileReader = require('./FileReader'); + window.FontFace = require('./FontFace'); + window.FontFaceSet = require('./FontFaceSet'); + window.EventTarget = require('./EventTarget'); + window.Event = require('./Event'); + window.TouchEvent = require('./TouchEvent'); + window.MouseEvent = require('./MouseEvent'); + window.KeyboardEvent = require('./KeyboardEvent'); + window.DeviceMotionEvent = require('./DeviceMotionEvent'); // window.devicePixelRatio is readonly + + Object.defineProperty(window, "devicePixelRatio", { + get: function get() { + return 1; + }, + set: function set(_dpr) { + /* ignore */ + }, + enumerable: true, + configurable: true + }); + + window.addEventListener = function (eventName, listener, options) { + window.__canvas.addEventListener(eventName, listener, options); + }; + + window.removeEventListener = function (eventName, listener, options) { + window.__canvas.removeEventListener(eventName, listener, options); + }; + + window.dispatchEvent = function (event) { + window.__canvas.dispatchEvent(event); + }; + + window.screen = { + availTop: 0, + availLeft: 0, + availHeight: window.innerWidth, + availWidth: window.innerHeight, + colorDepth: 8, + pixelDepth: 8, + left: 0, + top: 0, + width: window.innerWidth, + height: window.innerHeight, + orientation: { + //FIXME:cjh + type: 'portrait-primary' // portrait-primary, portrait-secondary, landscape-primary, landscape-secondary + + }, + //screen orientation enum + SCREEN_ORIENTATION: { + ROTATION_0: 0, + ROTATION_90: 1, + ROTATION_180: 2, + ROTATION_270: 3 + }, + onOrientationChanged: function onOrientationChanged(event) { + switch (event.rotation) { + case window.screen.SCREEN_ORIENTATION.ROTATION_0: + window.orientation = 0; + break; + + case window.screen.SCREEN_ORIENTATION.ROTATION_90: + window.orientation = 90; + break; + + case window.screen.SCREEN_ORIENTATION.ROTATION_180: + window.orientation = 180; + break; + + case window.screen.SCREEN_ORIENTATION.ROTATION_270: + window.orientation = -90; + break; + + default: + break; + } // emit resize consistent with web behavior + + + var resizeEvent = new Event('orientationchange'); + window.dispatchEvent(resizeEvent); + } + }; + + jsb.onOrientationChanged = function (event) { + window.screen.onOrientationChanged(event); + }; + + window.screen.onOrientationChanged({ + rotation: 1 + }); + + window.getComputedStyle = function (element) { + return { + position: 'absolute', + left: '0px', + top: '0px', + height: '0px' + }; + }; + + window.resize = function (width, height) { + window.innerWidth = width; + window.innerHeight = height; + window.outerWidth = window.innerWidth; + window.outerHeight = window.innerHeight; + window.__canvas._width = window.innerWidth; + window.__canvas._height = window.innerHeight; + window.screen.availWidth = window.innerWidth; + window.screen.availHeight = window.innerHeight; + window.screen.width = window.innerWidth; + window.screen.height = window.innerHeight; // emit resize consistent with web behavior + + var resizeEvent = new Event('resize'); + resizeEvent._target = window; + window.dispatchEvent(resizeEvent); + }; + + window.focus = function () {}; + + window.scroll = function () {}; + + window._isInjected = true; +} + +if (!window._isInjected) { + inject(); +} + +window.localStorage = sys.localStorage; + +},{"./DeviceMotionEvent":6,"./Element":7,"./Event":8,"./EventTarget":9,"./FileReader":10,"./FontFace":11,"./FontFaceSet":12,"./HTMLCanvasElement":13,"./HTMLElement":14,"./HTMLImageElement":15,"./HTMLMediaElement":16,"./HTMLScriptElement":17,"./HTMLVideoElement":18,"./Image":19,"./KeyboardEvent":21,"./MouseEvent":23,"./TouchEvent":25,"./document":26,"./location":28,"./navigator":29}],32:[function(require,module,exports){ +"use strict"; + +(function (jsb) { + if (!jsb || !jsb.AudioEngine) return; + jsb.AudioEngine.AudioState = { + ERROR: -1, + INITIALZING: 0, + PLAYING: 1, + PAUSED: 2, + STOPPED: 3 + }; + jsb.AudioEngine.INVALID_AUDIO_ID = -1; + jsb.AudioEngine.TIME_UNKNOWN = -1; +})(jsb); + +},{}],33:[function(require,module,exports){ +"use strict"; + +var EventTarget = require('./jsb-adapter/EventTarget'); + +var Event = require('./jsb-adapter/Event'); + +var eventTarget = new EventTarget(); +var callbackWrappers = {}; +var callbacks = {}; +var index = 1; + +var callbackWrapper = function callbackWrapper(cb) { + if (!cb) return null; + + var func = function func(event) { + cb({ + value: event.text + }); + }; + + cb.___index = index++; + callbackWrappers[cb.___index] = func; + return func; +}; + +var getCallbackWrapper = function getCallbackWrapper(cb) { + if (cb && cb.___index) { + var ret = callbackWrappers[cb.___index]; + delete callbackWrappers[cb.___index]; + return ret; + } else return null; +}; + +var removeListener = function removeListener(name, cb) { + if (cb) eventTarget.removeEventListener(name, getCallbackWrapper(cb));else { + // remove all listeners of name + var cbs = callbacks[name]; + if (!cbs) return; + + for (var i = 0, len = cbs.length; i < len; ++i) { + eventTarget.removeEventListener(name, cbs[i]); + } + + delete callbacks[name]; + } +}; + +var recordCallback = function recordCallback(name, cb) { + if (!cb || !name || name === '') return; + if (!callbacks[name]) callbacks[name] = []; + callbacks[name].push(cb); +}; + +jsb.inputBox = { + onConfirm: function onConfirm(cb) { + var newCb = callbackWrapper(cb); + eventTarget.addEventListener('confirm', newCb); + recordCallback('confirm', newCb); + }, + offConfirm: function offConfirm(cb) { + removeListener('confirm', cb); + }, + onComplete: function onComplete(cb) { + var newCb = callbackWrapper(cb); + eventTarget.addEventListener('complete', newCb); + recordCallback('complete', newCb); + }, + offComplete: function offComplete(cb) { + removeListener('complete', cb); + }, + onInput: function onInput(cb) { + var newCb = callbackWrapper(cb); + eventTarget.addEventListener('input', newCb); + recordCallback('input', newCb); + }, + offInput: function offInput(cb) { + removeListener('input', cb); + }, + + /** + * @param {string} options.defaultValue + * @param {number} options.maxLength + * @param {bool} options.multiple + * @param {bool} options.confirmHold + * @param {string} options.confirmType + * @param {string} options.inputType + * + * Values of options.confirmType can be [done|next|search|go|send]. + * Values of options.inputType can be [text|email|number|phone|password]. + */ + show: function show(options) { + jsb.showInputBox(options); + }, + hide: function hide() { + jsb.hideInputBox(); + }, + updateRect: function updateRect(x, y, width, height) { + jsb.updateInputBoxRect(x, y, width, height); + } +}; + +jsb.onTextInput = function (eventName, text) { + var event = new Event(eventName); + event.text = text; + eventTarget.dispatchEvent(event); +}; + +},{"./jsb-adapter/Event":8,"./jsb-adapter/EventTarget":9}],34:[function(require,module,exports){ +"use strict"; + + + + +},{"./jsb-adapter/HTMLCanvasElement":13,"./jsb-adapter/HTMLImageElement":15,"./jsb-adapter/ImageData":20,"./jsb_opengl_constants":35}],35:[function(require,module,exports){ +"use strict"; + +var gl = __gl; +gl.GCCSO_SHADER_BINARY_FJ = 0x9260; +gl._3DC_XY_AMD = 0x87fa; +gl._3DC_X_AMD = 0x87f9; +gl.ACTIVE_ATTRIBUTES = 0x8b89; +gl.ACTIVE_ATTRIBUTE_MAX_LENGTH = 0x8b8a; +gl.ACTIVE_PROGRAM_EXT = 0x8259; +gl.ACTIVE_TEXTURE = 0x84e0; +gl.ACTIVE_UNIFORMS = 0x8b86; +gl.ACTIVE_UNIFORM_MAX_LENGTH = 0x8b87; +gl.ALIASED_LINE_WIDTH_RANGE = 0x846e; +gl.ALIASED_POINT_SIZE_RANGE = 0x846d; +gl.ALL_COMPLETED_NV = 0x84f2; +gl.ALL_SHADER_BITS_EXT = 0xffffffff; +gl.ALPHA = 0x1906; +gl.ALPHA16F_EXT = 0x881c; +gl.ALPHA32F_EXT = 0x8816; +gl.ALPHA8_EXT = 0x803c; +gl.ALPHA8_OES = 0x803c; +gl.ALPHA_BITS = 0xd55; +gl.ALPHA_TEST_FUNC_QCOM = 0xbc1; +gl.ALPHA_TEST_QCOM = 0xbc0; +gl.ALPHA_TEST_REF_QCOM = 0xbc2; +gl.ALREADY_SIGNALED_APPLE = 0x911a; +gl.ALWAYS = 0x207; +gl.AMD_compressed_3DC_texture = 0x1; +gl.AMD_compressed_ATC_texture = 0x1; +gl.AMD_performance_monitor = 0x1; +gl.AMD_program_binary_Z400 = 0x1; +gl.ANGLE_depth_texture = 0x1; +gl.ANGLE_framebuffer_blit = 0x1; +gl.ANGLE_framebuffer_multisample = 0x1; +gl.ANGLE_instanced_arrays = 0x1; +gl.ANGLE_pack_reverse_row_order = 0x1; +gl.ANGLE_program_binary = 0x1; +gl.ANGLE_texture_compression_dxt3 = 0x1; +gl.ANGLE_texture_compression_dxt5 = 0x1; +gl.ANGLE_texture_usage = 0x1; +gl.ANGLE_translated_shader_source = 0x1; +gl.ANY_SAMPLES_PASSED_CONSERVATIVE_EXT = 0x8d6a; +gl.ANY_SAMPLES_PASSED_EXT = 0x8c2f; +gl.APPLE_copy_texture_levels = 0x1; +gl.APPLE_framebuffer_multisample = 0x1; +gl.APPLE_rgb_422 = 0x1; +gl.APPLE_sync = 0x1; +gl.APPLE_texture_format_BGRA8888 = 0x1; +gl.APPLE_texture_max_level = 0x1; +gl.ARM_mali_program_binary = 0x1; +gl.ARM_mali_shader_binary = 0x1; +gl.ARM_rgba8 = 0x1; +gl.ARRAY_BUFFER = 0x8892; +gl.ARRAY_BUFFER_BINDING = 0x8894; +gl.ATC_RGBA_EXPLICIT_ALPHA_AMD = 0x8c93; +gl.ATC_RGBA_INTERPOLATED_ALPHA_AMD = 0x87ee; +gl.ATC_RGB_AMD = 0x8c92; +gl.ATTACHED_SHADERS = 0x8b85; +gl.BACK = 0x405; +gl.BGRA8_EXT = 0x93a1; +gl.BGRA_EXT = 0x80e1; +gl.BGRA_IMG = 0x80e1; +gl.BINNING_CONTROL_HINT_QCOM = 0x8fb0; +gl.BLEND = 0xbe2; +gl.BLEND_COLOR = 0x8005; +gl.BLEND_DST_ALPHA = 0x80ca; +gl.BLEND_DST_RGB = 0x80c8; +gl.BLEND_EQUATION = 0x8009; +gl.BLEND_EQUATION_ALPHA = 0x883d; +gl.BLEND_EQUATION_RGB = 0x8009; +gl.BLEND_SRC_ALPHA = 0x80cb; +gl.BLEND_SRC_RGB = 0x80c9; +gl.BLUE_BITS = 0xd54; +gl.BOOL = 0x8b56; +gl.BOOL_VEC2 = 0x8b57; +gl.BOOL_VEC3 = 0x8b58; +gl.BOOL_VEC4 = 0x8b59; +gl.BUFFER = 0x82e0; +gl.BUFFER_ACCESS_OES = 0x88bb; +gl.BUFFER_MAPPED_OES = 0x88bc; +gl.BUFFER_MAP_POINTER_OES = 0x88bd; +gl.BUFFER_OBJECT_EXT = 0x9151; +gl.BUFFER_SIZE = 0x8764; +gl.BUFFER_USAGE = 0x8765; +gl.BYTE = 0x1400; +gl.CCW = 0x901; +gl.CLAMP_TO_BORDER_NV = 0x812d; +gl.CLAMP_TO_EDGE = 0x812f; +gl.COLOR_ATTACHMENT0 = 0x8ce0; +gl.COLOR_ATTACHMENT0_NV = 0x8ce0; +gl.COLOR_ATTACHMENT10_NV = 0x8cea; +gl.COLOR_ATTACHMENT11_NV = 0x8ceb; +gl.COLOR_ATTACHMENT12_NV = 0x8cec; +gl.COLOR_ATTACHMENT13_NV = 0x8ced; +gl.COLOR_ATTACHMENT14_NV = 0x8cee; +gl.COLOR_ATTACHMENT15_NV = 0x8cef; +gl.COLOR_ATTACHMENT1_NV = 0x8ce1; +gl.COLOR_ATTACHMENT2_NV = 0x8ce2; +gl.COLOR_ATTACHMENT3_NV = 0x8ce3; +gl.COLOR_ATTACHMENT4_NV = 0x8ce4; +gl.COLOR_ATTACHMENT5_NV = 0x8ce5; +gl.COLOR_ATTACHMENT6_NV = 0x8ce6; +gl.COLOR_ATTACHMENT7_NV = 0x8ce7; +gl.COLOR_ATTACHMENT8_NV = 0x8ce8; +gl.COLOR_ATTACHMENT9_NV = 0x8ce9; +gl.COLOR_ATTACHMENT_EXT = 0x90f0; +gl.COLOR_BUFFER_BIT = 0x4000; +gl.COLOR_BUFFER_BIT0_QCOM = 0x1; +gl.COLOR_BUFFER_BIT1_QCOM = 0x2; +gl.COLOR_BUFFER_BIT2_QCOM = 0x4; +gl.COLOR_BUFFER_BIT3_QCOM = 0x8; +gl.COLOR_BUFFER_BIT4_QCOM = 0x10; +gl.COLOR_BUFFER_BIT5_QCOM = 0x20; +gl.COLOR_BUFFER_BIT6_QCOM = 0x40; +gl.COLOR_BUFFER_BIT7_QCOM = 0x80; +gl.COLOR_CLEAR_VALUE = 0xc22; +gl.COLOR_EXT = 0x1800; +gl.COLOR_WRITEMASK = 0xc23; +gl.COMPARE_REF_TO_TEXTURE_EXT = 0x884e; +gl.COMPILE_STATUS = 0x8b81; +gl.COMPRESSED_RGBA_ASTC_10x10_KHR = 0x93bb; +gl.COMPRESSED_RGBA_ASTC_10x5_KHR = 0x93b8; +gl.COMPRESSED_RGBA_ASTC_10x6_KHR = 0x93b9; +gl.COMPRESSED_RGBA_ASTC_10x8_KHR = 0x93ba; +gl.COMPRESSED_RGBA_ASTC_12x10_KHR = 0x93bc; +gl.COMPRESSED_RGBA_ASTC_12x12_KHR = 0x93bd; +gl.COMPRESSED_RGBA_ASTC_4x4_KHR = 0x93b0; +gl.COMPRESSED_RGBA_ASTC_5x4_KHR = 0x93b1; +gl.COMPRESSED_RGBA_ASTC_5x5_KHR = 0x93b2; +gl.COMPRESSED_RGBA_ASTC_6x5_KHR = 0x93b3; +gl.COMPRESSED_RGBA_ASTC_6x6_KHR = 0x93b4; +gl.COMPRESSED_RGBA_ASTC_8x5_KHR = 0x93b5; +gl.COMPRESSED_RGBA_ASTC_8x6_KHR = 0x93b6; +gl.COMPRESSED_RGBA_ASTC_8x8_KHR = 0x93b7; +gl.COMPRESSED_RGBA_PVRTC_2BPPV1_IMG = 0x8c03; +gl.COMPRESSED_RGBA_PVRTC_2BPPV2_IMG = 0x9137; +gl.COMPRESSED_RGBA_PVRTC_4BPPV1_IMG = 0x8c02; +gl.COMPRESSED_RGBA_PVRTC_4BPPV2_IMG = 0x9138; +gl.COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83f1; +gl.COMPRESSED_RGBA_S3TC_DXT3_ANGLE = 0x83f2; +gl.COMPRESSED_RGBA_S3TC_DXT5_ANGLE = 0x83f3; +gl.COMPRESSED_RGB_PVRTC_2BPPV1_IMG = 0x8c01; +gl.COMPRESSED_RGB_PVRTC_4BPPV1_IMG = 0x8c00; +gl.COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83f0; +gl.COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR = 0x93db; +gl.COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR = 0x93d8; +gl.COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR = 0x93d9; +gl.COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR = 0x93da; +gl.COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR = 0x93dc; +gl.COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR = 0x93dd; +gl.COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR = 0x93d0; +gl.COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR = 0x93d1; +gl.COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR = 0x93d2; +gl.COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR = 0x93d3; +gl.COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR = 0x93d4; +gl.COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR = 0x93d5; +gl.COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR = 0x93d6; +gl.COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR = 0x93d7; +gl.COMPRESSED_SRGB_ALPHA_S3TC_DXT1_NV = 0x8c4d; +gl.COMPRESSED_SRGB_ALPHA_S3TC_DXT3_NV = 0x8c4e; +gl.COMPRESSED_SRGB_ALPHA_S3TC_DXT5_NV = 0x8c4f; +gl.COMPRESSED_SRGB_S3TC_DXT1_NV = 0x8c4c; +gl.COMPRESSED_TEXTURE_FORMATS = 0x86a3; +gl.CONDITION_SATISFIED_APPLE = 0x911c; +gl.CONSTANT_ALPHA = 0x8003; +gl.CONSTANT_COLOR = 0x8001; +gl.CONTEXT_FLAG_DEBUG_BIT = 0x2; +gl.CONTEXT_ROBUST_ACCESS_EXT = 0x90f3; +gl.COUNTER_RANGE_AMD = 0x8bc1; +gl.COUNTER_TYPE_AMD = 0x8bc0; +gl.COVERAGE_ALL_FRAGMENTS_NV = 0x8ed5; +gl.COVERAGE_ATTACHMENT_NV = 0x8ed2; +gl.COVERAGE_AUTOMATIC_NV = 0x8ed7; +gl.COVERAGE_BUFFERS_NV = 0x8ed3; +gl.COVERAGE_BUFFER_BIT_NV = 0x8000; +gl.COVERAGE_COMPONENT4_NV = 0x8ed1; +gl.COVERAGE_COMPONENT_NV = 0x8ed0; +gl.COVERAGE_EDGE_FRAGMENTS_NV = 0x8ed6; +gl.COVERAGE_SAMPLES_NV = 0x8ed4; +gl.CPU_OPTIMIZED_QCOM = 0x8fb1; +gl.CULL_FACE = 0xb44; +gl.CULL_FACE_MODE = 0xb45; +gl.CURRENT_PROGRAM = 0x8b8d; +gl.CURRENT_QUERY_EXT = 0x8865; +gl.CURRENT_VERTEX_ATTRIB = 0x8626; +gl.CW = 0x900; +gl.DEBUG_CALLBACK_FUNCTION = 0x8244; +gl.DEBUG_CALLBACK_USER_PARAM = 0x8245; +gl.DEBUG_GROUP_STACK_DEPTH = 0x826d; +gl.DEBUG_LOGGED_MESSAGES = 0x9145; +gl.DEBUG_NEXT_LOGGED_MESSAGE_LENGTH = 0x8243; +gl.DEBUG_OUTPUT = 0x92e0; +gl.DEBUG_OUTPUT_SYNCHRONOUS = 0x8242; +gl.DEBUG_SEVERITY_HIGH = 0x9146; +gl.DEBUG_SEVERITY_LOW = 0x9148; +gl.DEBUG_SEVERITY_MEDIUM = 0x9147; +gl.DEBUG_SEVERITY_NOTIFICATION = 0x826b; +gl.DEBUG_SOURCE_API = 0x8246; +gl.DEBUG_SOURCE_APPLICATION = 0x824a; +gl.DEBUG_SOURCE_OTHER = 0x824b; +gl.DEBUG_SOURCE_SHADER_COMPILER = 0x8248; +gl.DEBUG_SOURCE_THIRD_PARTY = 0x8249; +gl.DEBUG_SOURCE_WINDOW_SYSTEM = 0x8247; +gl.DEBUG_TYPE_DEPRECATED_BEHAVIOR = 0x824d; +gl.DEBUG_TYPE_ERROR = 0x824c; +gl.DEBUG_TYPE_MARKER = 0x8268; +gl.DEBUG_TYPE_OTHER = 0x8251; +gl.DEBUG_TYPE_PERFORMANCE = 0x8250; +gl.DEBUG_TYPE_POP_GROUP = 0x826a; +gl.DEBUG_TYPE_PORTABILITY = 0x824f; +gl.DEBUG_TYPE_PUSH_GROUP = 0x8269; +gl.DEBUG_TYPE_UNDEFINED_BEHAVIOR = 0x824e; +gl.DECR = 0x1e03; +gl.DECR_WRAP = 0x8508; +gl.DELETE_STATUS = 0x8b80; +gl.DEPTH24_STENCIL8_OES = 0x88f0; +gl.DEPTH_ATTACHMENT = 0x8d00; +gl.DEPTH_STENCIL_ATTACHMENT = 0x821a; +gl.DEPTH_BITS = 0xd56; +gl.DEPTH_BUFFER_BIT = 0x100; +gl.DEPTH_BUFFER_BIT0_QCOM = 0x100; +gl.DEPTH_BUFFER_BIT1_QCOM = 0x200; +gl.DEPTH_BUFFER_BIT2_QCOM = 0x400; +gl.DEPTH_BUFFER_BIT3_QCOM = 0x800; +gl.DEPTH_BUFFER_BIT4_QCOM = 0x1000; +gl.DEPTH_BUFFER_BIT5_QCOM = 0x2000; +gl.DEPTH_BUFFER_BIT6_QCOM = 0x4000; +gl.DEPTH_BUFFER_BIT7_QCOM = 0x8000; +gl.DEPTH_CLEAR_VALUE = 0xb73; +gl.DEPTH_COMPONENT = 0x1902; +gl.DEPTH_COMPONENT16 = 0x81a5; +gl.DEPTH_COMPONENT16_NONLINEAR_NV = 0x8e2c; +gl.DEPTH_COMPONENT16_OES = 0x81a5; +gl.DEPTH_COMPONENT24_OES = 0x81a6; +gl.DEPTH_COMPONENT32_OES = 0x81a7; +gl.DEPTH_EXT = 0x1801; +gl.DEPTH_FUNC = 0xb74; +gl.DEPTH_RANGE = 0xb70; +gl.DEPTH_STENCIL = 0x84f9; +gl.DEPTH_STENCIL_OES = 0x84f9; +gl.DEPTH_TEST = 0xb71; +gl.DEPTH_WRITEMASK = 0xb72; +gl.DITHER = 0xbd0; +gl.DMP_shader_binary = 0x1; +gl.DONT_CARE = 0x1100; +gl.DRAW_BUFFER0_NV = 0x8825; +gl.DRAW_BUFFER10_NV = 0x882f; +gl.DRAW_BUFFER11_NV = 0x8830; +gl.DRAW_BUFFER12_NV = 0x8831; +gl.DRAW_BUFFER13_NV = 0x8832; +gl.DRAW_BUFFER14_NV = 0x8833; +gl.DRAW_BUFFER15_NV = 0x8834; +gl.DRAW_BUFFER1_NV = 0x8826; +gl.DRAW_BUFFER2_NV = 0x8827; +gl.DRAW_BUFFER3_NV = 0x8828; +gl.DRAW_BUFFER4_NV = 0x8829; +gl.DRAW_BUFFER5_NV = 0x882a; +gl.DRAW_BUFFER6_NV = 0x882b; +gl.DRAW_BUFFER7_NV = 0x882c; +gl.DRAW_BUFFER8_NV = 0x882d; +gl.DRAW_BUFFER9_NV = 0x882e; +gl.DRAW_BUFFER_EXT = 0xc01; +gl.DRAW_FRAMEBUFFER_ANGLE = 0x8ca9; +gl.DRAW_FRAMEBUFFER_APPLE = 0x8ca9; +gl.DRAW_FRAMEBUFFER_BINDING_ANGLE = 0x8ca6; +gl.DRAW_FRAMEBUFFER_BINDING_APPLE = 0x8ca6; +gl.DRAW_FRAMEBUFFER_BINDING_NV = 0x8ca6; +gl.DRAW_FRAMEBUFFER_NV = 0x8ca9; +gl.DST_ALPHA = 0x304; +gl.DST_COLOR = 0x306; +gl.DYNAMIC_DRAW = 0x88e8; +gl.ELEMENT_ARRAY_BUFFER = 0x8893; +gl.ELEMENT_ARRAY_BUFFER_BINDING = 0x8895; +gl.EQUAL = 0x202; +gl.ES_VERSION_2_0 = 0x1; +gl.ETC1_RGB8_OES = 0x8d64; +gl.ETC1_SRGB8_NV = 0x88ee; +gl.EXTENSIONS = 0x1f03; +gl.EXT_blend_minmax = 0x1; +gl.EXT_color_buffer_half_float = 0x1; +gl.EXT_debug_label = 0x1; +gl.EXT_debug_marker = 0x1; +gl.EXT_discard_framebuffer = 0x1; +gl.EXT_map_buffer_range = 0x1; +gl.EXT_multi_draw_arrays = 0x1; +gl.EXT_multisampled_render_to_texture = 0x1; +gl.EXT_multiview_draw_buffers = 0x1; +gl.EXT_occlusion_query_boolean = 0x1; +gl.EXT_read_format_bgra = 0x1; +gl.EXT_robustness = 0x1; +gl.EXT_sRGB = 0x1; +gl.EXT_separate_shader_objects = 0x1; +gl.EXT_shader_framebuffer_fetch = 0x1; +gl.EXT_shader_texture_lod = 0x1; +gl.EXT_shadow_samplers = 0x1; +gl.EXT_texture_compression_dxt1 = 0x1; +gl.EXT_texture_filter_anisotropic = 0x1; +gl.EXT_texture_format_BGRA8888 = 0x1; +gl.EXT_texture_rg = 0x1; +gl.EXT_texture_storage = 0x1; +gl.EXT_texture_type_2_10_10_10_REV = 0x1; +gl.EXT_unpack_subimage = 0x1; +gl.FALSE = 0x0; +gl.FASTEST = 0x1101; +gl.FENCE_CONDITION_NV = 0x84f4; +gl.FENCE_STATUS_NV = 0x84f3; +gl.FIXED = 0x140c; +gl.FJ_shader_binary_GCCSO = 0x1; +gl.FLOAT = 0x1406; +gl.FLOAT_MAT2 = 0x8b5a; +gl.FLOAT_MAT3 = 0x8b5b; +gl.FLOAT_MAT4 = 0x8b5c; +gl.FLOAT_VEC2 = 0x8b50; +gl.FLOAT_VEC3 = 0x8b51; +gl.FLOAT_VEC4 = 0x8b52; +gl.FRAGMENT_SHADER = 0x8b30; +gl.FRAGMENT_SHADER_BIT_EXT = 0x2; +gl.FRAGMENT_SHADER_DERIVATIVE_HINT_OES = 0x8b8b; +gl.FRAGMENT_SHADER_DISCARDS_SAMPLES_EXT = 0x8a52; +gl.FRAMEBUFFER = 0x8d40; +gl.FRAMEBUFFER_ATTACHMENT_ANGLE = 0x93a3; +gl.FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT = 0x8210; +gl.FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT = 0x8211; +gl.FRAMEBUFFER_ATTACHMENT_OBJECT_NAME = 0x8cd1; +gl.FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE = 0x8cd0; +gl.FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_OES = 0x8cd4; +gl.FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE = 0x8cd3; +gl.FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL = 0x8cd2; +gl.FRAMEBUFFER_ATTACHMENT_TEXTURE_SAMPLES_EXT = 0x8d6c; +gl.FRAMEBUFFER_BINDING = 0x8ca6; +gl.FRAMEBUFFER_COMPLETE = 0x8cd5; +gl.FRAMEBUFFER_INCOMPLETE_ATTACHMENT = 0x8cd6; +gl.FRAMEBUFFER_INCOMPLETE_DIMENSIONS = 0x8cd9; +gl.FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT = 0x8cd7; +gl.FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_ANGLE = 0x8d56; +gl.FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_APPLE = 0x8d56; +gl.FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT = 0x8d56; +gl.FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_IMG = 0x9134; +gl.FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_NV = 0x8d56; +gl.FRAMEBUFFER_UNDEFINED_OES = 0x8219; +gl.FRAMEBUFFER_UNSUPPORTED = 0x8cdd; +gl.FRONT = 0x404; +gl.FRONT_AND_BACK = 0x408; +gl.FRONT_FACE = 0xb46; +gl.FUNC_ADD = 0x8006; +gl.FUNC_REVERSE_SUBTRACT = 0x800b; +gl.FUNC_SUBTRACT = 0x800a; +gl.GENERATE_MIPMAP_HINT = 0x8192; +gl.GEQUAL = 0x206; +gl.GPU_OPTIMIZED_QCOM = 0x8fb2; +gl.GREATER = 0x204; +gl.GREEN_BITS = 0xd53; +gl.GUILTY_CONTEXT_RESET_EXT = 0x8253; +gl.HALF_FLOAT_OES = 0x8d61; +gl.HIGH_FLOAT = 0x8df2; +gl.HIGH_INT = 0x8df5; +gl.IMG_multisampled_render_to_texture = 0x1; +gl.IMG_program_binary = 0x1; +gl.IMG_read_format = 0x1; +gl.IMG_shader_binary = 0x1; +gl.IMG_texture_compression_pvrtc = 0x1; +gl.IMG_texture_compression_pvrtc2 = 0x1; +gl.IMPLEMENTATION_COLOR_READ_FORMAT = 0x8b9b; +gl.IMPLEMENTATION_COLOR_READ_TYPE = 0x8b9a; +gl.INCR = 0x1e02; +gl.INCR_WRAP = 0x8507; +gl.INFO_LOG_LENGTH = 0x8b84; +gl.INNOCENT_CONTEXT_RESET_EXT = 0x8254; +gl.INT = 0x1404; +gl.INT_10_10_10_2_OES = 0x8df7; +gl.INT_VEC2 = 0x8b53; +gl.INT_VEC3 = 0x8b54; +gl.INT_VEC4 = 0x8b55; +gl.INVALID_ENUM = 0x500; +gl.INVALID_FRAMEBUFFER_OPERATION = 0x506; +gl.INVALID_OPERATION = 0x502; +gl.INVALID_VALUE = 0x501; +gl.INVERT = 0x150a; +gl.KEEP = 0x1e00; +gl.KHR_debug = 0x1; +gl.KHR_texture_compression_astc_ldr = 0x1; +gl.LEFT = 0x0406; +gl.LEQUAL = 0x203; +gl.LESS = 0x201; +gl.LINEAR = 0x2601; +gl.LINEAR_MIPMAP_LINEAR = 0x2703; +gl.LINEAR_MIPMAP_NEAREST = 0x2701; +gl.LINES = 0x1; +gl.LINE_LOOP = 0x2; +gl.LINE_STRIP = 0x3; +gl.LINE_WIDTH = 0xb21; +gl.LINK_STATUS = 0x8b82; +gl.LOSE_CONTEXT_ON_RESET_EXT = 0x8252; +gl.LOW_FLOAT = 0x8df0; +gl.LOW_INT = 0x8df3; +gl.LUMINANCE = 0x1909; +gl.LUMINANCE16F_EXT = 0x881e; +gl.LUMINANCE32F_EXT = 0x8818; +gl.LUMINANCE4_ALPHA4_OES = 0x8043; +gl.LUMINANCE8_ALPHA8_EXT = 0x8045; +gl.LUMINANCE8_ALPHA8_OES = 0x8045; +gl.LUMINANCE8_EXT = 0x8040; +gl.LUMINANCE8_OES = 0x8040; +gl.LUMINANCE_ALPHA = 0x190a; +gl.LUMINANCE_ALPHA16F_EXT = 0x881f; +gl.LUMINANCE_ALPHA32F_EXT = 0x8819; +gl.MALI_PROGRAM_BINARY_ARM = 0x8f61; +gl.MALI_SHADER_BINARY_ARM = 0x8f60; +gl.MAP_FLUSH_EXPLICIT_BIT_EXT = 0x10; +gl.MAP_INVALIDATE_BUFFER_BIT_EXT = 0x8; +gl.MAP_INVALIDATE_RANGE_BIT_EXT = 0x4; +gl.MAP_READ_BIT_EXT = 0x1; +gl.MAP_UNSYNCHRONIZED_BIT_EXT = 0x20; +gl.MAP_WRITE_BIT_EXT = 0x2; +gl.MAX_3D_TEXTURE_SIZE_OES = 0x8073; +gl.MAX_COLOR_ATTACHMENTS_NV = 0x8cdf; +gl.MAX_COMBINED_TEXTURE_IMAGE_UNITS = 0x8b4d; +gl.MAX_CUBE_MAP_TEXTURE_SIZE = 0x851c; +gl.MAX_DEBUG_GROUP_STACK_DEPTH = 0x826c; +gl.MAX_DEBUG_LOGGED_MESSAGES = 0x9144; +gl.MAX_DEBUG_MESSAGE_LENGTH = 0x9143; +gl.MAX_DRAW_BUFFERS_NV = 0x8824; +gl.MAX_EXT = 0x8008; +gl.MAX_FRAGMENT_UNIFORM_VECTORS = 0x8dfd; +gl.MAX_LABEL_LENGTH = 0x82e8; +gl.MAX_MULTIVIEW_BUFFERS_EXT = 0x90f2; +gl.MAX_RENDERBUFFER_SIZE = 0x84e8; +gl.MAX_SAMPLES_ANGLE = 0x8d57; +gl.MAX_SAMPLES_APPLE = 0x8d57; +gl.MAX_SAMPLES_EXT = 0x8d57; +gl.MAX_SAMPLES_IMG = 0x9135; +gl.MAX_SAMPLES_NV = 0x8d57; +gl.MAX_SERVER_WAIT_TIMEOUT_APPLE = 0x9111; +gl.MAX_TEXTURE_IMAGE_UNITS = 0x8872; +gl.MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84ff; +gl.MAX_TEXTURE_SIZE = 0xd33; +gl.MAX_VARYING_VECTORS = 0x8dfc; +gl.MAX_VERTEX_ATTRIBS = 0x8869; +gl.MAX_VERTEX_TEXTURE_IMAGE_UNITS = 0x8b4c; +gl.MAX_VERTEX_UNIFORM_VECTORS = 0x8dfb; +gl.MAX_VIEWPORT_DIMS = 0xd3a; +gl.MEDIUM_FLOAT = 0x8df1; +gl.MEDIUM_INT = 0x8df4; +gl.MIN_EXT = 0x8007; +gl.MIRRORED_REPEAT = 0x8370; +gl.MULTISAMPLE_BUFFER_BIT0_QCOM = 0x1000000; +gl.MULTISAMPLE_BUFFER_BIT1_QCOM = 0x2000000; +gl.MULTISAMPLE_BUFFER_BIT2_QCOM = 0x4000000; +gl.MULTISAMPLE_BUFFER_BIT3_QCOM = 0x8000000; +gl.MULTISAMPLE_BUFFER_BIT4_QCOM = 0x10000000; +gl.MULTISAMPLE_BUFFER_BIT5_QCOM = 0x20000000; +gl.MULTISAMPLE_BUFFER_BIT6_QCOM = 0x40000000; +gl.MULTISAMPLE_BUFFER_BIT7_QCOM = 0x80000000; +gl.MULTIVIEW_EXT = 0x90f1; +gl.NEAREST = 0x2600; +gl.NEAREST_MIPMAP_LINEAR = 0x2702; +gl.NEAREST_MIPMAP_NEAREST = 0x2700; +gl.NEVER = 0x200; +gl.NICEST = 0x1102; +gl.NONE = 0x0; +gl.NOTEQUAL = 0x205; +gl.NO_ERROR = 0x0; +gl.NO_RESET_NOTIFICATION_EXT = 0x8261; +gl.NUM_COMPRESSED_TEXTURE_FORMATS = 0x86a2; +gl.NUM_PROGRAM_BINARY_FORMATS_OES = 0x87fe; +gl.NUM_SHADER_BINARY_FORMATS = 0x8df9; +gl.NV_coverage_sample = 0x1; +gl.NV_depth_nonlinear = 0x1; +gl.NV_draw_buffers = 0x1; +gl.NV_draw_instanced = 0x1; +gl.NV_fbo_color_attachments = 0x1; +gl.NV_fence = 0x1; +gl.NV_framebuffer_blit = 0x1; +gl.NV_framebuffer_multisample = 0x1; +gl.NV_generate_mipmap_sRGB = 0x1; +gl.NV_instanced_arrays = 0x1; +gl.NV_read_buffer = 0x1; +gl.NV_read_buffer_front = 0x1; +gl.NV_read_depth = 0x1; +gl.NV_read_depth_stencil = 0x1; +gl.NV_read_stencil = 0x1; +gl.NV_sRGB_formats = 0x1; +gl.NV_shadow_samplers_array = 0x1; +gl.NV_shadow_samplers_cube = 0x1; +gl.NV_texture_border_clamp = 0x1; +gl.NV_texture_compression_s3tc_update = 0x1; +gl.NV_texture_npot_2D_mipmap = 0x1; +gl.OBJECT_TYPE_APPLE = 0x9112; +gl.OES_EGL_image = 0x1; +gl.OES_EGL_image_external = 0x1; +gl.OES_compressed_ETC1_RGB8_texture = 0x1; +gl.OES_compressed_paletted_texture = 0x1; +gl.OES_depth24 = 0x1; +gl.OES_depth32 = 0x1; +gl.OES_depth_texture = 0x1; +gl.OES_element_index_uint = 0x1; +gl.OES_fbo_render_mipmap = 0x1; +gl.OES_fragment_precision_high = 0x1; +gl.OES_get_program_binary = 0x1; +gl.OES_mapbuffer = 0x1; +gl.OES_packed_depth_stencil = 0x1; +gl.OES_required_internalformat = 0x1; +gl.OES_rgb8_rgba8 = 0x1; +gl.OES_standard_derivatives = 0x1; +gl.OES_stencil1 = 0x1; +gl.OES_stencil4 = 0x1; +gl.OES_surfaceless_context = 0x1; +gl.OES_texture_3D = 0x1; +gl.OES_texture_float = 0x1; +gl.OES_texture_float_linear = 0x1; +gl.OES_texture_half_float = 0x1; +gl.OES_texture_half_float_linear = 0x1; +gl.OES_texture_npot = 0x1; +gl.OES_vertex_array_object = 0x1; +gl.OES_vertex_half_float = 0x1; +gl.OES_vertex_type_10_10_10_2 = 0x1; +gl.ONE = 0x1; +gl.ONE_MINUS_CONSTANT_ALPHA = 0x8004; +gl.ONE_MINUS_CONSTANT_COLOR = 0x8002; +gl.ONE_MINUS_DST_ALPHA = 0x305; +gl.ONE_MINUS_DST_COLOR = 0x307; +gl.ONE_MINUS_SRC_ALPHA = 0x303; +gl.ONE_MINUS_SRC_COLOR = 0x301; +gl.OUT_OF_MEMORY = 0x505; +gl.PACK_ALIGNMENT = 0xd05; +gl.PACK_REVERSE_ROW_ORDER_ANGLE = 0x93a4; +gl.PALETTE4_R5_G6_B5_OES = 0x8b92; +gl.PALETTE4_RGB5_A1_OES = 0x8b94; +gl.PALETTE4_RGB8_OES = 0x8b90; +gl.PALETTE4_RGBA4_OES = 0x8b93; +gl.PALETTE4_RGBA8_OES = 0x8b91; +gl.PALETTE8_R5_G6_B5_OES = 0x8b97; +gl.PALETTE8_RGB5_A1_OES = 0x8b99; +gl.PALETTE8_RGB8_OES = 0x8b95; +gl.PALETTE8_RGBA4_OES = 0x8b98; +gl.PALETTE8_RGBA8_OES = 0x8b96; +gl.PERCENTAGE_AMD = 0x8bc3; +gl.PERFMON_GLOBAL_MODE_QCOM = 0x8fa0; +gl.PERFMON_RESULT_AMD = 0x8bc6; +gl.PERFMON_RESULT_AVAILABLE_AMD = 0x8bc4; +gl.PERFMON_RESULT_SIZE_AMD = 0x8bc5; +gl.POINTS = 0x0; +gl.POLYGON_OFFSET_FACTOR = 0x8038; +gl.POLYGON_OFFSET_FILL = 0x8037; +gl.POLYGON_OFFSET_UNITS = 0x2a00; +gl.PROGRAM = 0x82e2; +gl.PROGRAM_BINARY_ANGLE = 0x93a6; +gl.PROGRAM_BINARY_FORMATS_OES = 0x87ff; +gl.PROGRAM_BINARY_LENGTH_OES = 0x8741; +gl.PROGRAM_OBJECT_EXT = 0x8b40; +gl.PROGRAM_PIPELINE_BINDING_EXT = 0x825a; +gl.PROGRAM_PIPELINE_OBJECT_EXT = 0x8a4f; +gl.PROGRAM_SEPARABLE_EXT = 0x8258; +gl.QCOM_alpha_test = 0x1; +gl.QCOM_binning_control = 0x1; +gl.QCOM_driver_control = 0x1; +gl.QCOM_extended_get = 0x1; +gl.QCOM_extended_get2 = 0x1; +gl.QCOM_perfmon_global_mode = 0x1; +gl.QCOM_tiled_rendering = 0x1; +gl.QCOM_writeonly_rendering = 0x1; +gl.QUERY = 0x82e3; +gl.QUERY_OBJECT_EXT = 0x9153; +gl.QUERY_RESULT_AVAILABLE_EXT = 0x8867; +gl.QUERY_RESULT_EXT = 0x8866; +gl.R16F_EXT = 0x822d; +gl.R32F_EXT = 0x822e; +gl.R8_EXT = 0x8229; +gl.READ_BUFFER_EXT = 0xc02; +gl.READ_BUFFER_NV = 0xc02; +gl.READ_FRAMEBUFFER_ANGLE = 0x8ca8; +gl.READ_FRAMEBUFFER_APPLE = 0x8ca8; +gl.READ_FRAMEBUFFER_BINDING_ANGLE = 0x8caa; +gl.READ_FRAMEBUFFER_BINDING_APPLE = 0x8caa; +gl.READ_FRAMEBUFFER_BINDING_NV = 0x8caa; +gl.READ_FRAMEBUFFER_NV = 0x8ca8; +gl.RED_BITS = 0xd52; +gl.RED_EXT = 0x1903; +gl.RENDERBUFFER = 0x8d41; +gl.RENDERBUFFER_ALPHA_SIZE = 0x8d53; +gl.RENDERBUFFER_BINDING = 0x8ca7; +gl.RENDERBUFFER_BLUE_SIZE = 0x8d52; +gl.RENDERBUFFER_DEPTH_SIZE = 0x8d54; +gl.RENDERBUFFER_GREEN_SIZE = 0x8d51; +gl.RENDERBUFFER_HEIGHT = 0x8d43; +gl.RENDERBUFFER_INTERNAL_FORMAT = 0x8d44; +gl.RENDERBUFFER_RED_SIZE = 0x8d50; +gl.RENDERBUFFER_SAMPLES_ANGLE = 0x8cab; +gl.RENDERBUFFER_SAMPLES_APPLE = 0x8cab; +gl.RENDERBUFFER_SAMPLES_EXT = 0x8cab; +gl.RENDERBUFFER_SAMPLES_IMG = 0x9133; +gl.RENDERBUFFER_SAMPLES_NV = 0x8cab; +gl.RENDERBUFFER_STENCIL_SIZE = 0x8d55; +gl.RENDERBUFFER_WIDTH = 0x8d42; +gl.RENDERER = 0x1f01; +gl.RENDER_DIRECT_TO_FRAMEBUFFER_QCOM = 0x8fb3; +gl.REPEAT = 0x2901; +gl.REPLACE = 0x1e01; +gl.REQUIRED_TEXTURE_IMAGE_UNITS_OES = 0x8d68; +gl.RESET_NOTIFICATION_STRATEGY_EXT = 0x8256; +gl.RG16F_EXT = 0x822f; +gl.RG32F_EXT = 0x8230; +gl.RG8_EXT = 0x822b; +gl.RGB = 0x1907; +gl.RGB10_A2_EXT = 0x8059; +gl.RGB10_EXT = 0x8052; +gl.RGB16F_EXT = 0x881b; +gl.RGB32F_EXT = 0x8815; +gl.RGB565 = 0x8d62; +gl.RGB565_OES = 0x8d62; +gl.RGB5_A1 = 0x8057; +gl.RGB5_A1_OES = 0x8057; +gl.RGB8_OES = 0x8051; +gl.RGBA = 0x1908; +gl.RGBA16F_EXT = 0x881a; +gl.RGBA32F_EXT = 0x8814; +gl.RGBA4 = 0x8056; +gl.RGBA4_OES = 0x8056; +gl.RGBA8_OES = 0x8058; +gl.RGB_422_APPLE = 0x8a1f; +gl.RG_EXT = 0x8227; +gl.RIGHT = 0x0407; +gl.SAMPLER = 0x82e6; +gl.SAMPLER_2D = 0x8b5e; +gl.SAMPLER_2D_ARRAY_SHADOW_NV = 0x8dc4; +gl.SAMPLER_2D_SHADOW_EXT = 0x8b62; +gl.SAMPLER_3D_OES = 0x8b5f; +gl.SAMPLER_CUBE = 0x8b60; +gl.SAMPLER_CUBE_SHADOW_NV = 0x8dc5; +gl.SAMPLER_EXTERNAL_OES = 0x8d66; +gl.SAMPLES = 0x80a9; +gl.SAMPLE_ALPHA_TO_COVERAGE = 0x809e; +gl.SAMPLE_BUFFERS = 0x80a8; +gl.SAMPLE_COVERAGE = 0x80a0; +gl.SAMPLE_COVERAGE_INVERT = 0x80ab; +gl.SAMPLE_COVERAGE_VALUE = 0x80aa; +gl.SCISSOR_BOX = 0xc10; +gl.SCISSOR_TEST = 0xc11; +gl.SGX_BINARY_IMG = 0x8c0a; +gl.SGX_PROGRAM_BINARY_IMG = 0x9130; +gl.SHADER = 0x82e1; +gl.SHADER_BINARY_DMP = 0x9250; +gl.SHADER_BINARY_FORMATS = 0x8df8; +gl.SHADER_BINARY_VIV = 0x8fc4; +gl.SHADER_COMPILER = 0x8dfa; +gl.SHADER_OBJECT_EXT = 0x8b48; +gl.SHADER_SOURCE_LENGTH = 0x8b88; +gl.SHADER_TYPE = 0x8b4f; +gl.SHADING_LANGUAGE_VERSION = 0x8b8c; +gl.SHORT = 0x1402; +gl.SIGNALED_APPLE = 0x9119; +gl.SLUMINANCE8_ALPHA8_NV = 0x8c45; +gl.SLUMINANCE8_NV = 0x8c47; +gl.SLUMINANCE_ALPHA_NV = 0x8c44; +gl.SLUMINANCE_NV = 0x8c46; +gl.SRC_ALPHA = 0x302; +gl.SRC_ALPHA_SATURATE = 0x308; +gl.SRC_COLOR = 0x300; +gl.SRGB8_ALPHA8_EXT = 0x8c43; +gl.SRGB8_NV = 0x8c41; +gl.SRGB_ALPHA_EXT = 0x8c42; +gl.SRGB_EXT = 0x8c40; +gl.STACK_OVERFLOW = 0x503; +gl.STACK_UNDERFLOW = 0x504; +gl.STATE_RESTORE = 0x8bdc; +gl.STATIC_DRAW = 0x88e4; +gl.STENCIL_ATTACHMENT = 0x8d20; +gl.STENCIL_BACK_FAIL = 0x8801; +gl.STENCIL_BACK_FUNC = 0x8800; +gl.STENCIL_BACK_PASS_DEPTH_FAIL = 0x8802; +gl.STENCIL_BACK_PASS_DEPTH_PASS = 0x8803; +gl.STENCIL_BACK_REF = 0x8ca3; +gl.STENCIL_BACK_VALUE_MASK = 0x8ca4; +gl.STENCIL_BACK_WRITEMASK = 0x8ca5; +gl.STENCIL_BITS = 0xd57; +gl.STENCIL_BUFFER_BIT = 0x400; +gl.STENCIL_BUFFER_BIT0_QCOM = 0x10000; +gl.STENCIL_BUFFER_BIT1_QCOM = 0x20000; +gl.STENCIL_BUFFER_BIT2_QCOM = 0x40000; +gl.STENCIL_BUFFER_BIT3_QCOM = 0x80000; +gl.STENCIL_BUFFER_BIT4_QCOM = 0x100000; +gl.STENCIL_BUFFER_BIT5_QCOM = 0x200000; +gl.STENCIL_BUFFER_BIT6_QCOM = 0x400000; +gl.STENCIL_BUFFER_BIT7_QCOM = 0x800000; +gl.STENCIL_CLEAR_VALUE = 0xb91; +gl.STENCIL_EXT = 0x1802; +gl.STENCIL_FAIL = 0xb94; +gl.STENCIL_FUNC = 0xb92; +gl.STENCIL_INDEX1_OES = 0x8d46; +gl.STENCIL_INDEX4_OES = 0x8d47; +gl.STENCIL_INDEX = 0x1901; +gl.STENCIL_INDEX8 = 0x8d48; +gl.STENCIL_PASS_DEPTH_FAIL = 0xb95; +gl.STENCIL_PASS_DEPTH_PASS = 0xb96; +gl.STENCIL_REF = 0xb97; +gl.STENCIL_TEST = 0xb90; +gl.STENCIL_VALUE_MASK = 0xb93; +gl.STENCIL_WRITEMASK = 0xb98; +gl.STREAM_DRAW = 0x88e0; +gl.SUBPIXEL_BITS = 0xd50; +gl.SYNC_CONDITION_APPLE = 0x9113; +gl.SYNC_FENCE_APPLE = 0x9116; +gl.SYNC_FLAGS_APPLE = 0x9115; +gl.SYNC_FLUSH_COMMANDS_BIT_APPLE = 0x1; +gl.SYNC_GPU_COMMANDS_COMPLETE_APPLE = 0x9117; +gl.SYNC_OBJECT_APPLE = 0x8a53; +gl.SYNC_STATUS_APPLE = 0x9114; +gl.TEXTURE = 0x1702; +gl.TEXTURE0 = 0x84c0; +gl.TEXTURE1 = 0x84c1; +gl.TEXTURE10 = 0x84ca; +gl.TEXTURE11 = 0x84cb; +gl.TEXTURE12 = 0x84cc; +gl.TEXTURE13 = 0x84cd; +gl.TEXTURE14 = 0x84ce; +gl.TEXTURE15 = 0x84cf; +gl.TEXTURE16 = 0x84d0; +gl.TEXTURE17 = 0x84d1; +gl.TEXTURE18 = 0x84d2; +gl.TEXTURE19 = 0x84d3; +gl.TEXTURE2 = 0x84c2; +gl.TEXTURE20 = 0x84d4; +gl.TEXTURE21 = 0x84d5; +gl.TEXTURE22 = 0x84d6; +gl.TEXTURE23 = 0x84d7; +gl.TEXTURE24 = 0x84d8; +gl.TEXTURE25 = 0x84d9; +gl.TEXTURE26 = 0x84da; +gl.TEXTURE27 = 0x84db; +gl.TEXTURE28 = 0x84dc; +gl.TEXTURE29 = 0x84dd; +gl.TEXTURE3 = 0x84c3; +gl.TEXTURE30 = 0x84de; +gl.TEXTURE31 = 0x84df; +gl.TEXTURE4 = 0x84c4; +gl.TEXTURE5 = 0x84c5; +gl.TEXTURE6 = 0x84c6; +gl.TEXTURE7 = 0x84c7; +gl.TEXTURE8 = 0x84c8; +gl.TEXTURE9 = 0x84c9; +gl.TEXTURE_2D = 0xde1; +gl.TEXTURE_3D_OES = 0x806f; +gl.TEXTURE_BINDING_2D = 0x8069; +gl.TEXTURE_BINDING_3D_OES = 0x806a; +gl.TEXTURE_BINDING_CUBE_MAP = 0x8514; +gl.TEXTURE_BINDING_EXTERNAL_OES = 0x8d67; +gl.TEXTURE_BORDER_COLOR_NV = 0x1004; +gl.TEXTURE_COMPARE_FUNC_EXT = 0x884d; +gl.TEXTURE_COMPARE_MODE_EXT = 0x884c; +gl.TEXTURE_CUBE_MAP = 0x8513; +gl.TEXTURE_CUBE_MAP_NEGATIVE_X = 0x8516; +gl.TEXTURE_CUBE_MAP_NEGATIVE_Y = 0x8518; +gl.TEXTURE_CUBE_MAP_NEGATIVE_Z = 0x851a; +gl.TEXTURE_CUBE_MAP_POSITIVE_X = 0x8515; +gl.TEXTURE_CUBE_MAP_POSITIVE_Y = 0x8517; +gl.TEXTURE_CUBE_MAP_POSITIVE_Z = 0x8519; +gl.TEXTURE_DEPTH_QCOM = 0x8bd4; +gl.TEXTURE_EXTERNAL_OES = 0x8d65; +gl.TEXTURE_FORMAT_QCOM = 0x8bd6; +gl.TEXTURE_HEIGHT_QCOM = 0x8bd3; +gl.TEXTURE_IMAGE_VALID_QCOM = 0x8bd8; +gl.TEXTURE_IMMUTABLE_FORMAT_EXT = 0x912f; +gl.TEXTURE_INTERNAL_FORMAT_QCOM = 0x8bd5; +gl.TEXTURE_MAG_FILTER = 0x2800; +gl.TEXTURE_MAX_ANISOTROPY_EXT = 0x84fe; +gl.TEXTURE_MAX_LEVEL_APPLE = 0x813d; +gl.TEXTURE_MIN_FILTER = 0x2801; +gl.TEXTURE_NUM_LEVELS_QCOM = 0x8bd9; +gl.TEXTURE_OBJECT_VALID_QCOM = 0x8bdb; +gl.TEXTURE_SAMPLES_IMG = 0x9136; +gl.TEXTURE_TARGET_QCOM = 0x8bda; +gl.TEXTURE_TYPE_QCOM = 0x8bd7; +gl.TEXTURE_USAGE_ANGLE = 0x93a2; +gl.TEXTURE_WIDTH_QCOM = 0x8bd2; +gl.TEXTURE_WRAP_R_OES = 0x8072; +gl.TEXTURE_WRAP_S = 0x2802; +gl.TEXTURE_WRAP_T = 0x2803; +gl.TIMEOUT_EXPIRED_APPLE = 0x911b; +gl.TIMEOUT_IGNORED_APPLE = 0xffffffffffffffff; +gl.TRANSLATED_SHADER_SOURCE_LENGTH_ANGLE = 0x93a0; +gl.TRIANGLES = 0x4; +gl.TRIANGLE_FAN = 0x6; +gl.TRIANGLE_STRIP = 0x5; +gl.TRUE = 0x1; +gl.UNKNOWN_CONTEXT_RESET_EXT = 0x8255; +gl.UNPACK_ALIGNMENT = 0xcf5; +gl.UNPACK_ROW_LENGTH = 0xcf2; +gl.UNPACK_SKIP_PIXELS = 0xcf4; +gl.UNPACK_SKIP_ROWS = 0xcf3; +gl.UNSIGNALED_APPLE = 0x9118; +gl.UNSIGNED_BYTE = 0x1401; +gl.UNSIGNED_INT = 0x1405; +gl.UNSIGNED_INT64_AMD = 0x8bc2; +gl.UNSIGNED_INT_10_10_10_2_OES = 0x8df6; +gl.UNSIGNED_INT_24_8_OES = 0x84fa; +gl.UNSIGNED_INT_2_10_10_10_REV_EXT = 0x8368; +gl.UNSIGNED_NORMALIZED_EXT = 0x8c17; +gl.UNSIGNED_SHORT = 0x1403; +gl.UNSIGNED_SHORT_1_5_5_5_REV_EXT = 0x8366; +gl.UNSIGNED_SHORT_4_4_4_4 = 0x8033; +gl.UNSIGNED_SHORT_4_4_4_4_REV_EXT = 0x8365; +gl.UNSIGNED_SHORT_4_4_4_4_REV_IMG = 0x8365; +gl.UNSIGNED_SHORT_5_5_5_1 = 0x8034; +gl.UNSIGNED_SHORT_5_6_5 = 0x8363; +gl.UNSIGNED_SHORT_8_8_APPLE = 0x85ba; +gl.UNSIGNED_SHORT_8_8_REV_APPLE = 0x85bb; +gl.VALIDATE_STATUS = 0x8b83; +gl.VENDOR = 0x1f00; +gl.VERSION = 0x1f02; +gl.VERTEX_ARRAY_BINDING_OES = 0x85b5; +gl.VERTEX_ARRAY_OBJECT_EXT = 0x9154; +gl.VERTEX_ATTRIB_ARRAY_BUFFER_BINDING = 0x889f; +gl.VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE = 0x88fe; +gl.VERTEX_ATTRIB_ARRAY_DIVISOR_NV = 0x88fe; +gl.VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622; +gl.VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886a; +gl.VERTEX_ATTRIB_ARRAY_POINTER = 0x8645; +gl.VERTEX_ATTRIB_ARRAY_SIZE = 0x8623; +gl.VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624; +gl.VERTEX_ATTRIB_ARRAY_TYPE = 0x8625; +gl.VERTEX_SHADER = 0x8b31; +gl.VERTEX_SHADER_BIT_EXT = 0x1; +gl.VIEWPORT = 0xba2; +gl.VIV_shader_binary = 0x1; +gl.WAIT_FAILED_APPLE = 0x911d; +gl.WRITEONLY_RENDERING_QCOM = 0x8823; +gl.WRITE_ONLY_OES = 0x88b9; +gl.Z400_BINARY_AMD = 0x8740; +gl.ZERO = 0x0; +gl.RASTERIZER_DISCARD = 0x8C89; +gl.UNPACK_FLIP_Y_WEBGL = 0x9240; +gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL = 0x9241; +gl.CONTEXT_LOST_WEBGL = 0x9242; +gl.UNPACK_COLORSPACE_CONVERSION_WEBGL = 0x9243; +gl.BROWSER_DEFAULT_WEBGL = 0x9244; + +},{}],36:[function(require,module,exports){ +"use strict"; + +jsb.__obj_ref_id = 0; + +jsb.registerNativeRef = function (owner, target) { + if (owner && target && owner !== target) { + var targetID = target.__jsb_ref_id; + if (targetID === undefined) targetID = target.__jsb_ref_id = jsb.__obj_ref_id++; + var refs = owner.__nativeRefs; + + if (!refs) { + refs = owner.__nativeRefs = {}; + } + + refs[targetID] = target; + } +}; + +jsb.unregisterNativeRef = function (owner, target) { + if (owner && target && owner !== target) { + var targetID = target.__jsb_ref_id; + if (targetID === undefined) return; + var refs = owner.__nativeRefs; + + if (!refs) { + return; + } + + delete refs[targetID]; + } +}; + +jsb.unregisterAllNativeRefs = function (owner) { + if (!owner) return; + delete owner.__nativeRefs; +}; + +jsb.unregisterChildRefsForNode = function (node, recursive) { + recursive = !!recursive; + var children = node.getChildren(), + i, + l, + child; + + for (i = 0, l = children.length; i < l; ++i) { + child = children[i]; + jsb.unregisterNativeRef(node, child); + + if (recursive) { + jsb.unregisterChildRefsForNode(child, recursive); + } + } +}; + +},{}],37:[function(require,module,exports){ +(function (global){ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +/* promise.min.js + * A Promise polyfill implementation. + * 2018-11-16 + * + * By taylorhakes, https://github.com/taylorhakes + * License: MIT + * See https://github.com/taylorhakes/promise-polyfill/blob/master/LICENSE + */ + +/*! @source https://cdn.jsdelivr.net/npm/promise-polyfill@8/dist/polyfill.js */ +!function (e, n) { + "object" == (typeof exports === "undefined" ? "undefined" : _typeof(exports)) && "undefined" != typeof module ? n() : "function" == typeof define && define.amd ? define(n) : n(); +}(0, function () { + "use strict"; + + function e(e) { + var n = this.constructor; + return this.then(function (t) { + return n.resolve(e()).then(function () { + return t; + }); + }, function (t) { + return n.resolve(e()).then(function () { + return n.reject(t); + }); + }); + } + + function n() {} + + function t(e) { + if (!(this instanceof t)) throw new TypeError("Promises must be constructed via new"); + if ("function" != typeof e) throw new TypeError("not a function"); + this._state = 0, this._handled = !1, this._value = undefined, this._deferreds = [], u(e, this); + } + + function o(e, n) { + for (; 3 === e._state;) { + e = e._value; + } + + 0 !== e._state ? (e._handled = !0, t._immediateFn(function () { + var t = 1 === e._state ? n.onFulfilled : n.onRejected; + + if (null !== t) { + var o; + + try { + o = t(e._value); + } catch (f) { + return void i(n.promise, f); + } + + r(n.promise, o); + } else (1 === e._state ? r : i)(n.promise, e._value); + })) : e._deferreds.push(n); + } + + function r(e, n) { + try { + if (n === e) throw new TypeError("A promise cannot be resolved with itself."); + + if (n && ("object" == _typeof(n) || "function" == typeof n)) { + var o = n.then; + if (n instanceof t) return e._state = 3, e._value = n, void f(e); + if ("function" == typeof o) return void u(function (e, n) { + return function () { + e.apply(n, arguments); + }; + }(o, n), e); + } + + e._state = 1, e._value = n, f(e); + } catch (r) { + i(e, r); + } + } + + function i(e, n) { + e._state = 2, e._value = n, f(e); + } + + function f(e) { + 2 === e._state && 0 === e._deferreds.length && t._immediateFn(function () { + e._handled || t._unhandledRejectionFn(e._value); + }); + + for (var n = 0, r = e._deferreds.length; r > n; n++) { + o(e, e._deferreds[n]); + } + + e._deferreds = null; + } + + function u(e, n) { + var t = !1; + + try { + e(function (e) { + t || (t = !0, r(n, e)); + }, function (e) { + t || (t = !0, i(n, e)); + }); + } catch (o) { + if (t) return; + t = !0, i(n, o); + } + } + + var c = setTimeout; + t.prototype["catch"] = function (e) { + return this.then(null, e); + }, t.prototype.then = function (e, t) { + var r = new this.constructor(n); + return o(this, new function (e, n, t) { + this.onFulfilled = "function" == typeof e ? e : null, this.onRejected = "function" == typeof n ? n : null, this.promise = t; + }(e, t, r)), r; + }, t.prototype["finally"] = e, t.all = function (e) { + return new t(function (n, t) { + function o(e, f) { + try { + if (f && ("object" == _typeof(f) || "function" == typeof f)) { + var u = f.then; + if ("function" == typeof u) return void u.call(f, function (n) { + o(e, n); + }, t); + } + + r[e] = f, 0 == --i && n(r); + } catch (c) { + t(c); + } + } + + if (!e || "undefined" == typeof e.length) throw new TypeError("Promise.all accepts an array"); + var r = Array.prototype.slice.call(e); + if (0 === r.length) return n([]); + + for (var i = r.length, f = 0; r.length > f; f++) { + o(f, r[f]); + } + }); + }, t.resolve = function (e) { + return e && "object" == _typeof(e) && e.constructor === t ? e : new t(function (n) { + n(e); + }); + }, t.reject = function (e) { + return new t(function (n, t) { + t(e); + }); + }, t.race = function (e) { + return new t(function (n, t) { + for (var o = 0, r = e.length; r > o; o++) { + e[o].then(n, t); + } + }); + }, t._immediateFn = "function" == typeof setImmediate && function (e) { + setImmediate(e); + } || function (e) { + c(e, 0); + }, t._unhandledRejectionFn = function (e) { + void 0 !== console && console && console.warn("Possible Unhandled Promise Rejection:", e); + }; + + var l = function () { + if ("undefined" != typeof self) return self; + if ("undefined" != typeof window) return window; + if ("undefined" != typeof global) return global; + throw Error("unable to locate global object"); + }(); + + "Promise" in l ? l.Promise.prototype["finally"] || (l.Promise.prototype["finally"] = e) : l.Promise = t; +}); + +}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) +},{}],38:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.attrTypeBytes = attrTypeBytes; +exports.glFilter = glFilter; +exports.glTextureFmt = glTextureFmt; +exports.enums = void 0; + +/**************************************************************************** + Copyright (c) 2018 Xiamen Yaji Software Co., Ltd. + + http://www.cocos.com + + 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: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + 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. + ****************************************************************************/ +var gl = window.__gl; +var GL_NEAREST = 9728; // gl.NEAREST + +var GL_LINEAR = 9729; // gl.LINEAR + +var GL_NEAREST_MIPMAP_NEAREST = 9984; // gl.NEAREST_MIPMAP_NEAREST + +var GL_LINEAR_MIPMAP_NEAREST = 9985; // gl.LINEAR_MIPMAP_NEAREST + +var GL_NEAREST_MIPMAP_LINEAR = 9986; // gl.NEAREST_MIPMAP_LINEAR + +var GL_LINEAR_MIPMAP_LINEAR = 9987; // gl.LINEAR_MIPMAP_LINEAR +// const GL_BYTE = 5120; // gl.BYTE + +var GL_UNSIGNED_BYTE = 5121; // gl.UNSIGNED_BYTE +// const GL_SHORT = 5122; // gl.SHORT + +var GL_UNSIGNED_SHORT = 5123; // gl.UNSIGNED_SHORT + +var GL_UNSIGNED_INT = 5125; // gl.UNSIGNED_INT + +var GL_FLOAT = 5126; // gl.FLOAT + +var GL_UNSIGNED_SHORT_5_6_5 = 33635; // gl.UNSIGNED_SHORT_5_6_5 + +var GL_UNSIGNED_SHORT_4_4_4_4 = 32819; // gl.UNSIGNED_SHORT_4_4_4_4 + +var GL_UNSIGNED_SHORT_5_5_5_1 = 32820; // gl.UNSIGNED_SHORT_5_5_5_1 + +var GL_HALF_FLOAT_OES = 36193; // gl.HALF_FLOAT_OES + +var GL_DEPTH_COMPONENT = 6402; // gl.DEPTH_COMPONENT + +var GL_ALPHA = 6406; // gl.ALPHA + +var GL_RGB = 6407; // gl.RGB + +var GL_RGBA = 6408; // gl.RGBA + +var GL_LUMINANCE = 6409; // gl.LUMINANCE + +var GL_LUMINANCE_ALPHA = 6410; // gl.LUMINANCE_ALPHA +// https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_texture_float.txt +// for native GL_ARB_texture_float extension + +var GL_RGBA32F = 0x8814; +var GL_RGB32F = 0x8815; +var GL_RGBA16F = 0x881A; +var GL_RGB16F = 0x881B; +var GL_COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0; // ext.COMPRESSED_RGB_S3TC_DXT1_EXT + +var GL_COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83F1; // ext.COMPRESSED_RGBA_S3TC_DXT1_EXT + +var GL_COMPRESSED_RGBA_S3TC_DXT3_EXT = 0x83F2; // ext.COMPRESSED_RGBA_S3TC_DXT3_EXT + +var GL_COMPRESSED_RGBA_S3TC_DXT5_EXT = 0x83F3; // ext.COMPRESSED_RGBA_S3TC_DXT5_EXT + +var GL_COMPRESSED_RGB_PVRTC_4BPPV1_IMG = 0x8C00; // ext.COMPRESSED_RGB_PVRTC_4BPPV1_IMG + +var GL_COMPRESSED_RGB_PVRTC_2BPPV1_IMG = 0x8C01; // ext.COMPRESSED_RGB_PVRTC_2BPPV1_IMG + +var GL_COMPRESSED_RGBA_PVRTC_4BPPV1_IMG = 0x8C02; // ext.COMPRESSED_RGBA_PVRTC_4BPPV1_IMG + +var GL_COMPRESSED_RGBA_PVRTC_2BPPV1_IMG = 0x8C03; // ext.COMPRESSED_RGBA_PVRTC_2BPPV1_IMG + +var GL_COMPRESSED_RGB_ETC1_WEBGL = 0x8D64; // ext.COMPRESSED_RGB_ETC1_WEBGL + +var GL_COMPRESSED_RGB8_ETC2 = 0x9274; // ext.COMPRESSED_RGB8_ETC2 + +var GL_COMPRESSED_RGBA8_ETC2_EAC = 0x9278; // ext.COMPRESSED_RGBA8_ETC2_EAC + +var _filterGL = [[GL_NEAREST, GL_NEAREST_MIPMAP_NEAREST, GL_NEAREST_MIPMAP_LINEAR], [GL_LINEAR, GL_LINEAR_MIPMAP_NEAREST, GL_LINEAR_MIPMAP_LINEAR]]; +var _textureFmtGL = [// TEXTURE_FMT_RGB_DXT1: 0 +{ + format: GL_RGB, + internalFormat: GL_COMPRESSED_RGB_S3TC_DXT1_EXT, + pixelType: null +}, // TEXTURE_FMT_RGBA_DXT1: 1 +{ + format: GL_RGBA, + internalFormat: GL_COMPRESSED_RGBA_S3TC_DXT1_EXT, + pixelType: null +}, // TEXTURE_FMT_RGBA_DXT3: 2 +{ + format: GL_RGBA, + internalFormat: GL_COMPRESSED_RGBA_S3TC_DXT3_EXT, + pixelType: null +}, // TEXTURE_FMT_RGBA_DXT5: 3 +{ + format: GL_RGBA, + internalFormat: GL_COMPRESSED_RGBA_S3TC_DXT5_EXT, + pixelType: null +}, // TEXTURE_FMT_RGB_ETC1: 4 +{ + format: GL_RGB, + internalFormat: GL_COMPRESSED_RGB_ETC1_WEBGL, + pixelType: null +}, // TEXTURE_FMT_RGB_PVRTC_2BPPV1: 5 +{ + format: GL_RGB, + internalFormat: GL_COMPRESSED_RGB_PVRTC_2BPPV1_IMG, + pixelType: null +}, // TEXTURE_FMT_RGBA_PVRTC_2BPPV1: 6 +{ + format: GL_RGBA, + internalFormat: GL_COMPRESSED_RGBA_PVRTC_2BPPV1_IMG, + pixelType: null +}, // TEXTURE_FMT_RGB_PVRTC_4BPPV1: 7 +{ + format: GL_RGB, + internalFormat: GL_COMPRESSED_RGB_PVRTC_4BPPV1_IMG, + pixelType: null +}, // TEXTURE_FMT_RGBA_PVRTC_4BPPV1: 8 +{ + format: GL_RGBA, + internalFormat: GL_COMPRESSED_RGBA_PVRTC_4BPPV1_IMG, + pixelType: null +}, // TEXTURE_FMT_A8: 9 +{ + format: GL_ALPHA, + internalFormat: GL_ALPHA, + pixelType: GL_UNSIGNED_BYTE +}, // TEXTURE_FMT_L8: 10 +{ + format: GL_LUMINANCE, + internalFormat: GL_LUMINANCE, + pixelType: GL_UNSIGNED_BYTE +}, // TEXTURE_FMT_L8_A8: 11 +{ + format: GL_LUMINANCE_ALPHA, + internalFormat: GL_LUMINANCE_ALPHA, + pixelType: GL_UNSIGNED_BYTE +}, // TEXTURE_FMT_R5_G6_B5: 12 +{ + format: GL_RGB, + internalFormat: GL_RGB, + pixelType: GL_UNSIGNED_SHORT_5_6_5 +}, // TEXTURE_FMT_R5_G5_B5_A1: 13 +{ + format: GL_RGBA, + internalFormat: GL_RGBA, + pixelType: GL_UNSIGNED_SHORT_5_5_5_1 +}, // TEXTURE_FMT_R4_G4_B4_A4: 14 +{ + format: GL_RGBA, + internalFormat: GL_RGBA, + pixelType: GL_UNSIGNED_SHORT_4_4_4_4 +}, // TEXTURE_FMT_RGB8: 15 +{ + format: GL_RGB, + internalFormat: GL_RGB, + pixelType: GL_UNSIGNED_BYTE +}, // TEXTURE_FMT_RGBA8: 16 +{ + format: GL_RGBA, + internalFormat: GL_RGBA, + pixelType: GL_UNSIGNED_BYTE +}, // TEXTURE_FMT_RGB16F: 17 +{ + format: GL_RGB, + internalFormat: GL_RGB16F, + pixelType: GL_HALF_FLOAT_OES +}, // TEXTURE_FMT_RGBA16F: 18 +{ + format: GL_RGBA, + internalFormat: GL_RGBA16F, + pixelType: GL_HALF_FLOAT_OES +}, // TEXTURE_FMT_RGB32F: 19 +{ + format: GL_RGB, + internalFormat: GL_RGB32F, + pixelType: GL_FLOAT +}, // TEXTURE_FMT_RGBA32F: 20 +{ + format: GL_RGBA, + internalFormat: GL_RGBA32F, + pixelType: GL_FLOAT +}, // TEXTURE_FMT_R32F: 21 +{ + format: null, + internalFormat: null, + pixelType: null +}, // TEXTURE_FMT_111110F: 22 +{ + format: null, + internalFormat: null, + pixelType: null +}, // TEXTURE_FMT_SRGB: 23 +{ + format: null, + internalFormat: null, + pixelType: null +}, // TEXTURE_FMT_SRGBA: 24 +{ + format: null, + internalFormat: null, + pixelType: null +}, // TEXTURE_FMT_D16: 25 +{ + format: GL_DEPTH_COMPONENT, + internalFormat: GL_DEPTH_COMPONENT, + pixelType: GL_UNSIGNED_SHORT +}, // TEXTURE_FMT_D32: 26 +{ + format: GL_DEPTH_COMPONENT, + internalFormat: GL_DEPTH_COMPONENT, + pixelType: GL_UNSIGNED_INT +}, // TEXTURE_FMT_D24S8: 27 +{ + format: GL_DEPTH_COMPONENT, + internalFormat: GL_DEPTH_COMPONENT, + pixelType: GL_UNSIGNED_INT +}, // TEXTURE_FMT_RGB_ETC2: 28 +{ + format: GL_RGB, + internalFormat: GL_COMPRESSED_RGB8_ETC2, + pixelType: null +}, // TEXTURE_FMT_RGBA_ETC2: 29 +{ + format: GL_RGBA, + internalFormat: GL_COMPRESSED_RGBA8_ETC2_EAC, + pixelType: null +}]; +/** + * enums + */ + +var enums = { + // buffer usage + USAGE_STATIC: 35044, + // gl.STATIC_DRAW + USAGE_DYNAMIC: 35048, + // gl.DYNAMIC_DRAW + USAGE_STREAM: 35040, + // gl.STREAM_DRAW + // index buffer format + INDEX_FMT_UINT8: 5121, + // gl.UNSIGNED_BYTE + INDEX_FMT_UINT16: 5123, + // gl.UNSIGNED_SHORT + INDEX_FMT_UINT32: 5125, + // gl.UNSIGNED_INT (OES_element_index_uint) + // vertex attribute semantic + ATTR_POSITION: 'a_position', + ATTR_NORMAL: 'a_normal', + ATTR_TANGENT: 'a_tangent', + ATTR_BITANGENT: 'a_bitangent', + ATTR_WEIGHTS: 'a_weights', + ATTR_JOINTS: 'a_joints', + ATTR_COLOR: 'a_color', + ATTR_COLOR0: 'a_color0', + ATTR_COLOR1: 'a_color1', + ATTR_UV: 'a_uv', + ATTR_UV0: 'a_uv0', + ATTR_UV1: 'a_uv1', + ATTR_UV2: 'a_uv2', + ATTR_UV3: 'a_uv3', + ATTR_UV4: 'a_uv4', + ATTR_UV5: 'a_uv5', + ATTR_UV6: 'a_uv6', + ATTR_UV7: 'a_uv7', + ATTR_TEX_COORD: 'a_texCoord', + ATTR_TEX_COORD1: 'a_texCoord1', + ATTR_TEX_COORD2: 'a_texCoord2', + ATTR_TEX_COORD3: 'a_texCoord3', + ATTR_TEX_COORD4: 'a_texCoord4', + ATTR_TEX_COORD5: 'a_texCoord5', + ATTR_TEX_COORD6: 'a_texCoord6', + ATTR_TEX_COORD7: 'a_texCoord7', + ATTR_TEX_COORD8: 'a_texCoord8', + // vertex attribute type + ATTR_TYPE_INT8: 5120, + // gl.BYTE + ATTR_TYPE_UINT8: 5121, + // gl.UNSIGNED_BYTE + ATTR_TYPE_INT16: 5122, + // gl.SHORT + ATTR_TYPE_UINT16: 5123, + // gl.UNSIGNED_SHORT + ATTR_TYPE_INT32: 5124, + // gl.INT + ATTR_TYPE_UINT32: 5125, + // gl.UNSIGNED_INT + ATTR_TYPE_FLOAT32: 5126, + // gl.FLOAT + // texture filter + FILTER_NEAREST: 0, + FILTER_LINEAR: 1, + // texture wrap mode + WRAP_REPEAT: 10497, + // gl.REPEAT + WRAP_CLAMP: 33071, + // gl.CLAMP_TO_EDGE + WRAP_MIRROR: 33648, + // gl.MIRRORED_REPEAT + // texture format + // compress formats + TEXTURE_FMT_RGB_DXT1: 0, + TEXTURE_FMT_RGBA_DXT1: 1, + TEXTURE_FMT_RGBA_DXT3: 2, + TEXTURE_FMT_RGBA_DXT5: 3, + TEXTURE_FMT_RGB_ETC1: 4, + TEXTURE_FMT_RGB_PVRTC_2BPPV1: 5, + TEXTURE_FMT_RGBA_PVRTC_2BPPV1: 6, + TEXTURE_FMT_RGB_PVRTC_4BPPV1: 7, + TEXTURE_FMT_RGBA_PVRTC_4BPPV1: 8, + // normal formats + TEXTURE_FMT_A8: 9, + TEXTURE_FMT_L8: 10, + TEXTURE_FMT_L8_A8: 11, + TEXTURE_FMT_R5_G6_B5: 12, + TEXTURE_FMT_R5_G5_B5_A1: 13, + TEXTURE_FMT_R4_G4_B4_A4: 14, + TEXTURE_FMT_RGB8: 15, + TEXTURE_FMT_RGBA8: 16, + TEXTURE_FMT_RGB16F: 17, + TEXTURE_FMT_RGBA16F: 18, + TEXTURE_FMT_RGB32F: 19, + TEXTURE_FMT_RGBA32F: 20, + TEXTURE_FMT_R32F: 21, + TEXTURE_FMT_111110F: 22, + TEXTURE_FMT_SRGB: 23, + TEXTURE_FMT_SRGBA: 24, + // depth formats + TEXTURE_FMT_D16: 25, + TEXTURE_FMT_D32: 26, + TEXTURE_FMT_D24S8: 27, + // etc2 format + TEXTURE_FMT_RGB_ETC2: 28, + TEXTURE_FMT_RGBA_ETC2: 29, + // depth and stencil function + DS_FUNC_NEVER: 512, + // gl.NEVER + DS_FUNC_LESS: 513, + // gl.LESS + DS_FUNC_EQUAL: 514, + // gl.EQUAL + DS_FUNC_LEQUAL: 515, + // gl.LEQUAL + DS_FUNC_GREATER: 516, + // gl.GREATER + DS_FUNC_NOTEQUAL: 517, + // gl.NOTEQUAL + DS_FUNC_GEQUAL: 518, + // gl.GEQUAL + DS_FUNC_ALWAYS: 519, + // gl.ALWAYS + // render-buffer format + RB_FMT_RGBA4: 32854, + // gl.RGBA4 + RB_FMT_RGB5_A1: 32855, + // gl.RGB5_A1 + RB_FMT_RGB565: 36194, + // gl.RGB565 + RB_FMT_D16: 33189, + // gl.DEPTH_COMPONENT16 + RB_FMT_S8: 36168, + // gl.STENCIL_INDEX8 + RB_FMT_D24S8: 34041, + // gl.DEPTH_STENCIL + // blend-equation + BLEND_FUNC_ADD: 32774, + // gl.FUNC_ADD + BLEND_FUNC_SUBTRACT: 32778, + // gl.FUNC_SUBTRACT + BLEND_FUNC_REVERSE_SUBTRACT: 32779, + // gl.FUNC_REVERSE_SUBTRACT + // blend + BLEND_ZERO: 0, + // gl.ZERO + BLEND_ONE: 1, + // gl.ONE + BLEND_SRC_COLOR: 768, + // gl.SRC_COLOR + BLEND_ONE_MINUS_SRC_COLOR: 769, + // gl.ONE_MINUS_SRC_COLOR + BLEND_DST_COLOR: 774, + // gl.DST_COLOR + BLEND_ONE_MINUS_DST_COLOR: 775, + // gl.ONE_MINUS_DST_COLOR + BLEND_SRC_ALPHA: 770, + // gl.SRC_ALPHA + BLEND_ONE_MINUS_SRC_ALPHA: 771, + // gl.ONE_MINUS_SRC_ALPHA + BLEND_DST_ALPHA: 772, + // gl.DST_ALPHA + BLEND_ONE_MINUS_DST_ALPHA: 773, + // gl.ONE_MINUS_DST_ALPHA + BLEND_CONSTANT_COLOR: 32769, + // gl.CONSTANT_COLOR + BLEND_ONE_MINUS_CONSTANT_COLOR: 32770, + // gl.ONE_MINUS_CONSTANT_COLOR + BLEND_CONSTANT_ALPHA: 32771, + // gl.CONSTANT_ALPHA + BLEND_ONE_MINUS_CONSTANT_ALPHA: 32772, + // gl.ONE_MINUS_CONSTANT_ALPHA + BLEND_SRC_ALPHA_SATURATE: 776, + // gl.SRC_ALPHA_SATURATE + // stencil operation + STENCIL_DISABLE: 0, + // disable stencil + STENCIL_ENABLE: 1, + // enable stencil + STENCIL_INHERIT: 2, + // inherit stencil states + STENCIL_OP_KEEP: 7680, + // gl.KEEP + STENCIL_OP_ZERO: 0, + // gl.ZERO + STENCIL_OP_REPLACE: 7681, + // gl.REPLACE + STENCIL_OP_INCR: 7682, + // gl.INCR + STENCIL_OP_INCR_WRAP: 34055, + // gl.INCR_WRAP + STENCIL_OP_DECR: 7683, + // gl.DECR + STENCIL_OP_DECR_WRAP: 34056, + // gl.DECR_WRAP + STENCIL_OP_INVERT: 5386, + // gl.INVERT + // cull + CULL_NONE: 0, + CULL_FRONT: 1028, + CULL_BACK: 1029, + CULL_FRONT_AND_BACK: 1032, + // primitive type + PT_POINTS: 0, + // gl.POINTS + PT_LINES: 1, + // gl.LINES + PT_LINE_LOOP: 2, + // gl.LINE_LOOP + PT_LINE_STRIP: 3, + // gl.LINE_STRIP + PT_TRIANGLES: 4, + // gl.TRIANGLES + PT_TRIANGLE_STRIP: 5, + // gl.TRIANGLE_STRIP + PT_TRIANGLE_FAN: 6 // gl.TRIANGLE_FAN + +}; +/** + * @method attrTypeBytes + * @param {ATTR_TYPE_*} attrType + */ + +exports.enums = enums; + +function attrTypeBytes(attrType) { + if (attrType === enums.ATTR_TYPE_INT8) { + return 1; + } else if (attrType === enums.ATTR_TYPE_UINT8) { + return 1; + } else if (attrType === enums.ATTR_TYPE_INT16) { + return 2; + } else if (attrType === enums.ATTR_TYPE_UINT16) { + return 2; + } else if (attrType === enums.ATTR_TYPE_INT32) { + return 4; + } else if (attrType === enums.ATTR_TYPE_UINT32) { + return 4; + } else if (attrType === enums.ATTR_TYPE_FLOAT32) { + return 4; + } + + console.warn("Unknown ATTR_TYPE: ".concat(attrType)); + return 0; +} +/** + * @method glFilter + * @param {WebGLContext} gl + * @param {FILTER_*} filter + * @param {FILTER_*} mipFilter + */ + + +function glFilter(gl, filter) { + var mipFilter = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : -1; + var result = _filterGL[filter][mipFilter + 1]; + + if (result === undefined) { + console.warn("Unknown FILTER: ".concat(filter)); + return mipFilter === -1 ? gl.LINEAR : gl.LINEAR_MIPMAP_LINEAR; + } + + return result; +} +/** + * @method glTextureFmt + * @param {TEXTURE_FMT_*} fmt + */ + + +function glTextureFmt(fmt) { + var result = _textureFmtGL[fmt]; + + if (result === undefined) { + console.warn("Unknown TEXTURE_FMT: ".concat(fmt)); + return _textureFmtGL[enums.TEXTURE_FMT_RGBA8]; + } + + return result; +} + +},{}],39:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _enums = require("./enums"); + +var _jsbVertexFormat = _interopRequireDefault(require("./jsb-vertex-format")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +/**************************************************************************** + Copyright (c) 2018 Xiamen Yaji Software Co., Ltd. + + http://www.cocos.com + + 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: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + 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. + ****************************************************************************/ + +exports["default"] = {}; + +},{"./enums":38,"./jsb-vertex-format":41}],40:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +/**************************************************************************** + Copyright (c) 2018 Xiamen Yaji Software Co., Ltd. + + http://www.cocos.com + + 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: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + 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. + ****************************************************************************/ + +exports["default"] = {}; + +},{}],41:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _enums = require("./enums"); + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +var gfx = window.gfx; // ==================== +// exports +// ==================== + +var VertexFormat = /*#__PURE__*/function () { + /** + * @constructor + * @param {Array} infos + * + * @example + * let vertexFmt = new VertexFormat([ + * { name: gfx.ATTR_POSITION, type: gfx.ATTR_TYPE_FLOAT32, num: 3 }, + * { name: gfx.ATTR_UV0, type: gfx.ATTR_TYPE_FLOAT32, num: 2 }, + * { name: gfx.ATTR_COLOR, type: gfx.ATTR_TYPE_FLOAT32, num: 4, normalize: true }, + * ]) + */ + function VertexFormat(infos) { + _classCallCheck(this, VertexFormat); + + this._attr2el = {}; + this._elements = []; + this._bytes = 0; + var offset = 0; + + for (var i = 0, len = infos.length; i < len; ++i) { + var info = infos[i]; + var el = { + name: info.name, + offset: offset, + stride: 0, + stream: -1, + type: info.type, + num: info.num, + normalize: info.normalize === undefined ? false : info.normalize, + bytes: info.num * (0, _enums.attrTypeBytes)(info.type) + }; // log('info.num is:' + info.num + ' attrTypeBytes(info.type) is:' + attrTypeBytes(info.type)); + + this._attr2el[el.name] = el; + + this._elements.push(el); + + this._bytes += el.bytes; + offset += el.bytes; + } + + for (var _i = 0, _len = this._elements.length; _i < _len; ++_i) { + var _el = this._elements[_i]; + _el.stride = this._bytes; + } + + this._nativeObj = new gfx.VertexFormatNative(this._elements); + } + /** + * @method element + * @param {string} attrName + */ + + + _createClass(VertexFormat, [{ + key: "element", + value: function element(attrName) { + return this._attr2el[attrName]; + } + }, { + key: "getElement", + value: function getElement(attrName) { + return this._attr2el[attrName]; + } + }, { + key: "getBytes", + value: function getBytes() { + return this._bytes; + } + }, { + key: "getAttributeNames", + value: function getAttributeNames() { + return Object.keys(this._attr2el); + } + }]); + + return VertexFormat; +}(); + +exports["default"] = VertexFormat; + +},{"./enums":38}],42:[function(require,module,exports){ +"use strict"; + +function DOMParser(options) { + this.options = options || { + locator: {} + }; +} + +DOMParser.prototype.parseFromString = function (source, mimeType) { + var options = this.options; + var sax = new XMLReader(); + var domBuilder = options.domBuilder || new DOMHandler(); //contentHandler and LexicalHandler + + var errorHandler = options.errorHandler; + var locator = options.locator; + var defaultNSMap = options.xmlns || {}; + var isHTML = /\/x?html?$/.test(mimeType); //mimeType.toLowerCase().indexOf('html') > -1; + + var entityMap = isHTML ? htmlEntity.entityMap : { + 'lt': '<', + 'gt': '>', + 'amp': '&', + 'quot': '"', + 'apos': "'" + }; + + if (locator) { + domBuilder.setDocumentLocator(locator); + } + + sax.errorHandler = buildErrorHandler(errorHandler, domBuilder, locator); + sax.domBuilder = options.domBuilder || domBuilder; + + if (isHTML) { + defaultNSMap[''] = 'http://www.w3.org/1999/xhtml'; + } + + defaultNSMap.xml = defaultNSMap.xml || 'http://www.w3.org/XML/1998/namespace'; + + if (source) { + sax.parse(source, defaultNSMap, entityMap); + } else { + sax.errorHandler.error("invalid doc source"); + } + + return domBuilder.doc; +}; + +function buildErrorHandler(errorImpl, domBuilder, locator) { + if (!errorImpl) { + if (domBuilder instanceof DOMHandler) { + return domBuilder; + } + + errorImpl = domBuilder; + } + + var errorHandler = {}; + var isCallback = errorImpl instanceof Function; + locator = locator || {}; + + function build(key) { + var fn = errorImpl[key]; + + if (!fn && isCallback) { + fn = errorImpl.length == 2 ? function (msg) { + errorImpl(key, msg); + } : errorImpl; + } + + errorHandler[key] = fn && function (msg) { + fn('[xmldom ' + key + ']\t' + msg + _locator(locator)); + } || function () {}; + } + + build('warning'); + build('error'); + build('fatalError'); + return errorHandler; +} //console.log('#\n\n\n\n\n\n\n####') + +/** + * +ContentHandler+ErrorHandler + * +LexicalHandler+EntityResolver2 + * -DeclHandler-DTDHandler + * + * DefaultHandler:EntityResolver, DTDHandler, ContentHandler, ErrorHandler + * DefaultHandler2:DefaultHandler,LexicalHandler, DeclHandler, EntityResolver2 + * @link http://www.saxproject.org/apidoc/org/xml/sax/helpers/DefaultHandler.html + */ + + +function DOMHandler() { + this.cdata = false; +} + +function position(locator, node) { + node.lineNumber = locator.lineNumber; + node.columnNumber = locator.columnNumber; +} +/** + * @see org.xml.sax.ContentHandler#startDocument + * @link http://www.saxproject.org/apidoc/org/xml/sax/ContentHandler.html + */ + + +DOMHandler.prototype = { + startDocument: function startDocument() { + this.doc = new DOMImplementation().createDocument(null, null, null); + + if (this.locator) { + this.doc.documentURI = this.locator.systemId; + } + }, + startElement: function startElement(namespaceURI, localName, qName, attrs) { + var doc = this.doc; + var el = doc.createElementNS(namespaceURI, qName || localName); + var len = attrs.length; + appendElement(this, el); + this.currentElement = el; + this.locator && position(this.locator, el); + + for (var i = 0; i < len; i++) { + var namespaceURI = attrs.getURI(i); + var value = attrs.getValue(i); + var qName = attrs.getQName(i); + var attr = doc.createAttributeNS(namespaceURI, qName); + this.locator && position(attrs.getLocator(i), attr); + attr.value = attr.nodeValue = value; + el.setAttributeNode(attr); + } + }, + endElement: function endElement(namespaceURI, localName, qName) { + var current = this.currentElement; + var tagName = current.tagName; + this.currentElement = current.parentNode; + }, + startPrefixMapping: function startPrefixMapping(prefix, uri) {}, + endPrefixMapping: function endPrefixMapping(prefix) {}, + processingInstruction: function processingInstruction(target, data) { + var ins = this.doc.createProcessingInstruction(target, data); + this.locator && position(this.locator, ins); + appendElement(this, ins); + }, + ignorableWhitespace: function ignorableWhitespace(ch, start, length) {}, + characters: function characters(chars, start, length) { + chars = _toString.apply(this, arguments); //console.log(chars) + + if (chars) { + if (this.cdata) { + var charNode = this.doc.createCDATASection(chars); + } else { + var charNode = this.doc.createTextNode(chars); + } + + if (this.currentElement) { + this.currentElement.appendChild(charNode); + } else if (/^\s*$/.test(chars)) { + this.doc.appendChild(charNode); //process xml + } + + this.locator && position(this.locator, charNode); + } + }, + skippedEntity: function skippedEntity(name) {}, + endDocument: function endDocument() { + this.doc.normalize(); + }, + setDocumentLocator: function setDocumentLocator(locator) { + if (this.locator = locator) { + // && !('lineNumber' in locator)){ + locator.lineNumber = 0; + } + }, + //LexicalHandler + comment: function comment(chars, start, length) { + chars = _toString.apply(this, arguments); + var comm = this.doc.createComment(chars); + this.locator && position(this.locator, comm); + appendElement(this, comm); + }, + startCDATA: function startCDATA() { + //used in characters() methods + this.cdata = true; + }, + endCDATA: function endCDATA() { + this.cdata = false; + }, + startDTD: function startDTD(name, publicId, systemId) { + var impl = this.doc.implementation; + + if (impl && impl.createDocumentType) { + var dt = impl.createDocumentType(name, publicId, systemId); + this.locator && position(this.locator, dt); + appendElement(this, dt); + } + }, + + /** + * @see org.xml.sax.ErrorHandler + * @link http://www.saxproject.org/apidoc/org/xml/sax/ErrorHandler.html + */ + warning: function warning(error) { + console.warn('[xmldom warning]\t' + error, _locator(this.locator)); + }, + error: function error(_error) { + console.error('[xmldom error]\t' + _error, _locator(this.locator)); + }, + fatalError: function fatalError(error) { + console.error('[xmldom fatalError]\t' + error, _locator(this.locator)); + throw error; + } +}; + +function _locator(l) { + if (l) { + return '\n@' + (l.systemId || '') + '#[line:' + l.lineNumber + ',col:' + l.columnNumber + ']'; + } +} + +function _toString(chars, start, length) { + if (typeof chars == 'string') { + return chars.substr(start, length); + } else { + //java sax connect width xmldom on rhino(what about: "? && !(chars instanceof String)") + if (chars.length >= start + length || start) { + return new java.lang.String(chars, start, length) + ''; + } + + return chars; + } +} +/* + * @link http://www.saxproject.org/apidoc/org/xml/sax/ext/LexicalHandler.html + * used method of org.xml.sax.ext.LexicalHandler: + * #comment(chars, start, length) + * #startCDATA() + * #endCDATA() + * #startDTD(name, publicId, systemId) + * + * + * IGNORED method of org.xml.sax.ext.LexicalHandler: + * #endDTD() + * #startEntity(name) + * #endEntity(name) + * + * + * @link http://www.saxproject.org/apidoc/org/xml/sax/ext/DeclHandler.html + * IGNORED method of org.xml.sax.ext.DeclHandler + * #attributeDecl(eName, aName, type, mode, value) + * #elementDecl(name, model) + * #externalEntityDecl(name, publicId, systemId) + * #internalEntityDecl(name, value) + * @link http://www.saxproject.org/apidoc/org/xml/sax/ext/EntityResolver2.html + * IGNORED method of org.xml.sax.EntityResolver2 + * #resolveEntity(String name,String publicId,String baseURI,String systemId) + * #resolveEntity(publicId, systemId) + * #getExternalSubset(name, baseURI) + * @link http://www.saxproject.org/apidoc/org/xml/sax/DTDHandler.html + * IGNORED method of org.xml.sax.DTDHandler + * #notationDecl(name, publicId, systemId) {}; + * #unparsedEntityDecl(name, publicId, systemId, notationName) {}; + */ + + +"endDTD,startEntity,endEntity,attributeDecl,elementDecl,externalEntityDecl,internalEntityDecl,resolveEntity,getExternalSubset,notationDecl,unparsedEntityDecl".replace(/\w+/g, function (key) { + DOMHandler.prototype[key] = function () { + return null; + }; +}); +/* Private static helpers treated below as private instance methods, so don't need to add these to the public API; we might use a Relator to also get rid of non-standard public properties */ + +function appendElement(hander, node) { + if (!hander.currentElement) { + hander.doc.appendChild(node); + } else { + hander.currentElement.appendChild(node); + } +} //appendChild and setAttributeNS are preformance key +//if(typeof require == 'function'){ + + +var htmlEntity = require('./entities'); + +var XMLReader = require('./sax').XMLReader; + +var DOMImplementation = exports.DOMImplementation = require('./dom').DOMImplementation; + +exports.XMLSerializer = require('./dom').XMLSerializer; +exports.DOMParser = DOMParser; //} + +},{"./dom":43,"./entities":44,"./sax":45}],43:[function(require,module,exports){ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +/* + * DOM Level 2 + * Object DOMException + * @see http://www.w3.org/TR/REC-DOM-Level-1/ecma-script-language-binding.html + * @see http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html + */ +function copy(src, dest) { + for (var p in src) { + dest[p] = src[p]; + } +} +/** +^\w+\.prototype\.([_\w]+)\s*=\s*((?:.*\{\s*?[\r\n][\s\S]*?^})|\S.*?(?=[;\r\n]));? +^\w+\.prototype\.([_\w]+)\s*=\s*(\S.*?(?=[;\r\n]));? + */ + + +function _extends(Class, Super) { + var pt = Class.prototype; + + if (!(pt instanceof Super)) { + var t = function t() {}; + + ; + t.prototype = Super.prototype; + t = new t(); + copy(pt, t); + Class.prototype = pt = t; + } + + if (pt.constructor != Class) { + if (typeof Class != 'function') { + console.error("unknow Class:" + Class); + } + + pt.constructor = Class; + } +} + +var htmlns = 'http://www.w3.org/1999/xhtml'; // Node Types + +var NodeType = {}; +var ELEMENT_NODE = NodeType.ELEMENT_NODE = 1; +var ATTRIBUTE_NODE = NodeType.ATTRIBUTE_NODE = 2; +var TEXT_NODE = NodeType.TEXT_NODE = 3; +var CDATA_SECTION_NODE = NodeType.CDATA_SECTION_NODE = 4; +var ENTITY_REFERENCE_NODE = NodeType.ENTITY_REFERENCE_NODE = 5; +var ENTITY_NODE = NodeType.ENTITY_NODE = 6; +var PROCESSING_INSTRUCTION_NODE = NodeType.PROCESSING_INSTRUCTION_NODE = 7; +var COMMENT_NODE = NodeType.COMMENT_NODE = 8; +var DOCUMENT_NODE = NodeType.DOCUMENT_NODE = 9; +var DOCUMENT_TYPE_NODE = NodeType.DOCUMENT_TYPE_NODE = 10; +var DOCUMENT_FRAGMENT_NODE = NodeType.DOCUMENT_FRAGMENT_NODE = 11; +var NOTATION_NODE = NodeType.NOTATION_NODE = 12; // ExceptionCode + +var ExceptionCode = {}; +var ExceptionMessage = {}; +var INDEX_SIZE_ERR = ExceptionCode.INDEX_SIZE_ERR = (ExceptionMessage[1] = "Index size error", 1); +var DOMSTRING_SIZE_ERR = ExceptionCode.DOMSTRING_SIZE_ERR = (ExceptionMessage[2] = "DOMString size error", 2); +var HIERARCHY_REQUEST_ERR = ExceptionCode.HIERARCHY_REQUEST_ERR = (ExceptionMessage[3] = "Hierarchy request error", 3); +var WRONG_DOCUMENT_ERR = ExceptionCode.WRONG_DOCUMENT_ERR = (ExceptionMessage[4] = "Wrong document", 4); +var INVALID_CHARACTER_ERR = ExceptionCode.INVALID_CHARACTER_ERR = (ExceptionMessage[5] = "Invalid character", 5); +var NO_DATA_ALLOWED_ERR = ExceptionCode.NO_DATA_ALLOWED_ERR = (ExceptionMessage[6] = "No data allowed", 6); +var NO_MODIFICATION_ALLOWED_ERR = ExceptionCode.NO_MODIFICATION_ALLOWED_ERR = (ExceptionMessage[7] = "No modification allowed", 7); +var NOT_FOUND_ERR = ExceptionCode.NOT_FOUND_ERR = (ExceptionMessage[8] = "Not found", 8); +var NOT_SUPPORTED_ERR = ExceptionCode.NOT_SUPPORTED_ERR = (ExceptionMessage[9] = "Not supported", 9); +var INUSE_ATTRIBUTE_ERR = ExceptionCode.INUSE_ATTRIBUTE_ERR = (ExceptionMessage[10] = "Attribute in use", 10); //level2 + +var INVALID_STATE_ERR = ExceptionCode.INVALID_STATE_ERR = (ExceptionMessage[11] = "Invalid state", 11); +var SYNTAX_ERR = ExceptionCode.SYNTAX_ERR = (ExceptionMessage[12] = "Syntax error", 12); +var INVALID_MODIFICATION_ERR = ExceptionCode.INVALID_MODIFICATION_ERR = (ExceptionMessage[13] = "Invalid modification", 13); +var NAMESPACE_ERR = ExceptionCode.NAMESPACE_ERR = (ExceptionMessage[14] = "Invalid namespace", 14); +var INVALID_ACCESS_ERR = ExceptionCode.INVALID_ACCESS_ERR = (ExceptionMessage[15] = "Invalid access", 15); + +function DOMException(code, message) { + if (message instanceof Error) { + var error = message; + } else { + error = this; + Error.call(this, ExceptionMessage[code]); + this.message = ExceptionMessage[code]; + if (Error.captureStackTrace) Error.captureStackTrace(this, DOMException); + } + + error.code = code; + if (message) this.message = this.message + ": " + message; + return error; +} + +; +DOMException.prototype = Error.prototype; +copy(ExceptionCode, DOMException); +/** + * @see http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-536297177 + * The NodeList interface provides the abstraction of an ordered collection of nodes, without defining or constraining how this collection is implemented. NodeList objects in the DOM are live. + * The items in the NodeList are accessible via an integral index, starting from 0. + */ + +function NodeList() {} + +; +NodeList.prototype = { + /** + * The number of nodes in the list. The range of valid child node indices is 0 to length-1 inclusive. + * @standard level1 + */ + length: 0, + + /** + * Returns the indexth item in the collection. If index is greater than or equal to the number of nodes in the list, this returns null. + * @standard level1 + * @param index unsigned long + * Index into the collection. + * @return Node + * The node at the indexth position in the NodeList, or null if that is not a valid index. + */ + item: function item(index) { + return this[index] || null; + }, + toString: function toString(isHTML, nodeFilter) { + for (var buf = [], i = 0; i < this.length; i++) { + serializeToString(this[i], buf, isHTML, nodeFilter); + } + + return buf.join(''); + } +}; + +function LiveNodeList(node, refresh) { + this._node = node; + this._refresh = refresh; + + _updateLiveList(this); +} + +function _updateLiveList(list) { + var inc = list._node._inc || list._node.ownerDocument._inc; + + if (list._inc != inc) { + var ls = list._refresh(list._node); //console.log(ls.length) + + + __set__(list, 'length', ls.length); + + copy(ls, list); + list._inc = inc; + } +} + +LiveNodeList.prototype.item = function (i) { + _updateLiveList(this); + + return this[i]; +}; + +_extends(LiveNodeList, NodeList); +/** + * + * Objects implementing the NamedNodeMap interface are used to represent collections of nodes that can be accessed by name. Note that NamedNodeMap does not inherit from NodeList; NamedNodeMaps are not maintained in any particular order. Objects contained in an object implementing NamedNodeMap may also be accessed by an ordinal index, but this is simply to allow convenient enumeration of the contents of a NamedNodeMap, and does not imply that the DOM specifies an order to these Nodes. + * NamedNodeMap objects in the DOM are live. + * used for attributes or DocumentType entities + */ + + +function NamedNodeMap() {} + +; + +function _findNodeIndex(list, node) { + var i = list.length; + + while (i--) { + if (list[i] === node) { + return i; + } + } +} + +function _addNamedNode(el, list, newAttr, oldAttr) { + if (oldAttr) { + list[_findNodeIndex(list, oldAttr)] = newAttr; + } else { + list[list.length++] = newAttr; + } + + if (el) { + newAttr.ownerElement = el; + var doc = el.ownerDocument; + + if (doc) { + oldAttr && _onRemoveAttribute(doc, el, oldAttr); + + _onAddAttribute(doc, el, newAttr); + } + } +} + +function _removeNamedNode(el, list, attr) { + //console.log('remove attr:'+attr) + var i = _findNodeIndex(list, attr); + + if (i >= 0) { + var lastIndex = list.length - 1; + + while (i < lastIndex) { + list[i] = list[++i]; + } + + list.length = lastIndex; + + if (el) { + var doc = el.ownerDocument; + + if (doc) { + _onRemoveAttribute(doc, el, attr); + + attr.ownerElement = null; + } + } + } else { + throw DOMException(NOT_FOUND_ERR, new Error(el.tagName + '@' + attr)); + } +} + +NamedNodeMap.prototype = { + length: 0, + item: NodeList.prototype.item, + getNamedItem: function getNamedItem(key) { + // if(key.indexOf(':')>0 || key == 'xmlns'){ + // return null; + // } + //console.log() + var i = this.length; + + while (i--) { + var attr = this[i]; //console.log(attr.nodeName,key) + + if (attr.nodeName == key) { + return attr; + } + } + }, + setNamedItem: function setNamedItem(attr) { + var el = attr.ownerElement; + + if (el && el != this._ownerElement) { + throw new DOMException(INUSE_ATTRIBUTE_ERR); + } + + var oldAttr = this.getNamedItem(attr.nodeName); + + _addNamedNode(this._ownerElement, this, attr, oldAttr); + + return oldAttr; + }, + + /* returns Node */ + setNamedItemNS: function setNamedItemNS(attr) { + // raises: WRONG_DOCUMENT_ERR,NO_MODIFICATION_ALLOWED_ERR,INUSE_ATTRIBUTE_ERR + var el = attr.ownerElement, + oldAttr; + + if (el && el != this._ownerElement) { + throw new DOMException(INUSE_ATTRIBUTE_ERR); + } + + oldAttr = this.getNamedItemNS(attr.namespaceURI, attr.localName); + + _addNamedNode(this._ownerElement, this, attr, oldAttr); + + return oldAttr; + }, + + /* returns Node */ + removeNamedItem: function removeNamedItem(key) { + var attr = this.getNamedItem(key); + + _removeNamedNode(this._ownerElement, this, attr); + + return attr; + }, + // raises: NOT_FOUND_ERR,NO_MODIFICATION_ALLOWED_ERR + //for level2 + removeNamedItemNS: function removeNamedItemNS(namespaceURI, localName) { + var attr = this.getNamedItemNS(namespaceURI, localName); + + _removeNamedNode(this._ownerElement, this, attr); + + return attr; + }, + getNamedItemNS: function getNamedItemNS(namespaceURI, localName) { + var i = this.length; + + while (i--) { + var node = this[i]; + + if (node.localName == localName && node.namespaceURI == namespaceURI) { + return node; + } + } + + return null; + } +}; +/** + * @see http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-102161490 + */ + +function DOMImplementation( +/* Object */ +features) { + this._features = {}; + + if (features) { + for (var feature in features) { + this._features = features[feature]; + } + } +} + +; +DOMImplementation.prototype = { + hasFeature: function hasFeature( + /* string */ + feature, + /* string */ + version) { + var versions = this._features[feature.toLowerCase()]; + + if (versions && (!version || version in versions)) { + return true; + } else { + return false; + } + }, + // Introduced in DOM Level 2: + createDocument: function createDocument(namespaceURI, qualifiedName, doctype) { + // raises:INVALID_CHARACTER_ERR,NAMESPACE_ERR,WRONG_DOCUMENT_ERR + var doc = new Document(); + doc.implementation = this; + doc.childNodes = new NodeList(); + doc.doctype = doctype; + + if (doctype) { + doc.appendChild(doctype); + } + + if (qualifiedName) { + var root = doc.createElementNS(namespaceURI, qualifiedName); + doc.appendChild(root); + } + + return doc; + }, + // Introduced in DOM Level 2: + createDocumentType: function createDocumentType(qualifiedName, publicId, systemId) { + // raises:INVALID_CHARACTER_ERR,NAMESPACE_ERR + var node = new DocumentType(); + node.name = qualifiedName; + node.nodeName = qualifiedName; + node.publicId = publicId; + node.systemId = systemId; // Introduced in DOM Level 2: + //readonly attribute DOMString internalSubset; + //REFINE:.. + // readonly attribute NamedNodeMap entities; + // readonly attribute NamedNodeMap notations; + + return node; + } +}; +/** + * @see http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-1950641247 + */ + +function Node() {} + +; +Node.prototype = { + firstChild: null, + lastChild: null, + previousSibling: null, + nextSibling: null, + attributes: null, + parentNode: null, + childNodes: null, + ownerDocument: null, + nodeValue: null, + namespaceURI: null, + prefix: null, + localName: null, + // Modified in DOM Level 2: + insertBefore: function insertBefore(newChild, refChild) { + //raises + return _insertBefore(this, newChild, refChild); + }, + replaceChild: function replaceChild(newChild, oldChild) { + //raises + this.insertBefore(newChild, oldChild); + + if (oldChild) { + this.removeChild(oldChild); + } + }, + removeChild: function removeChild(oldChild) { + return _removeChild(this, oldChild); + }, + appendChild: function appendChild(newChild) { + return this.insertBefore(newChild, null); + }, + hasChildNodes: function hasChildNodes() { + return this.firstChild != null; + }, + cloneNode: function cloneNode(deep) { + return _cloneNode(this.ownerDocument || this, this, deep); + }, + // Modified in DOM Level 2: + normalize: function normalize() { + var child = this.firstChild; + + while (child) { + var next = child.nextSibling; + + if (next && next.nodeType == TEXT_NODE && child.nodeType == TEXT_NODE) { + this.removeChild(next); + child.appendData(next.data); + } else { + child.normalize(); + child = next; + } + } + }, + // Introduced in DOM Level 2: + isSupported: function isSupported(feature, version) { + return this.ownerDocument.implementation.hasFeature(feature, version); + }, + // Introduced in DOM Level 2: + hasAttributes: function hasAttributes() { + return this.attributes.length > 0; + }, + lookupPrefix: function lookupPrefix(namespaceURI) { + var el = this; + + while (el) { + var map = el._nsMap; //console.dir(map) + + if (map) { + for (var n in map) { + if (map[n] == namespaceURI) { + return n; + } + } + } + + el = el.nodeType == ATTRIBUTE_NODE ? el.ownerDocument : el.parentNode; + } + + return null; + }, + // Introduced in DOM Level 3: + lookupNamespaceURI: function lookupNamespaceURI(prefix) { + var el = this; + + while (el) { + var map = el._nsMap; //console.dir(map) + + if (map) { + if (prefix in map) { + return map[prefix]; + } + } + + el = el.nodeType == ATTRIBUTE_NODE ? el.ownerDocument : el.parentNode; + } + + return null; + }, + // Introduced in DOM Level 3: + isDefaultNamespace: function isDefaultNamespace(namespaceURI) { + var prefix = this.lookupPrefix(namespaceURI); + return prefix == null; + } +}; + +function _xmlEncoder(c) { + return c == '<' && '<' || c == '>' && '>' || c == '&' && '&' || c == '"' && '"' || '&#' + c.charCodeAt() + ';'; +} + +copy(NodeType, Node); +copy(NodeType, Node.prototype); +/** + * @param callback return true for continue,false for break + * @return boolean true: break visit; + */ + +function _visitNode(node, callback) { + if (callback(node)) { + return true; + } + + if (node = node.firstChild) { + do { + if (_visitNode(node, callback)) { + return true; + } + } while (node = node.nextSibling); + } +} + +function Document() {} + +function _onAddAttribute(doc, el, newAttr) { + doc && doc._inc++; + var ns = newAttr.namespaceURI; + + if (ns == 'http://www.w3.org/2000/xmlns/') { + //update namespace + el._nsMap[newAttr.prefix ? newAttr.localName : ''] = newAttr.value; + } +} + +function _onRemoveAttribute(doc, el, newAttr, remove) { + doc && doc._inc++; + var ns = newAttr.namespaceURI; + + if (ns == 'http://www.w3.org/2000/xmlns/') { + //update namespace + delete el._nsMap[newAttr.prefix ? newAttr.localName : '']; + } +} + +function _onUpdateChild(doc, el, newChild) { + if (doc && doc._inc) { + doc._inc++; //update childNodes + + var cs = el.childNodes; + + if (newChild) { + cs[cs.length++] = newChild; + } else { + //console.log(1) + var child = el.firstChild; + var i = 0; + + while (child) { + cs[i++] = child; + child = child.nextSibling; + } + + cs.length = i; + } + } +} +/** + * attributes; + * children; + * + * writeable properties: + * nodeValue,Attr:value,CharacterData:data + * prefix + */ + + +function _removeChild(parentNode, child) { + var previous = child.previousSibling; + var next = child.nextSibling; + + if (previous) { + previous.nextSibling = next; + } else { + parentNode.firstChild = next; + } + + if (next) { + next.previousSibling = previous; + } else { + parentNode.lastChild = previous; + } + + _onUpdateChild(parentNode.ownerDocument, parentNode); + + return child; +} +/** + * preformance key(refChild == null) + */ + + +function _insertBefore(parentNode, newChild, nextChild) { + var cp = newChild.parentNode; + + if (cp) { + cp.removeChild(newChild); //remove and update + } + + if (newChild.nodeType === DOCUMENT_FRAGMENT_NODE) { + var newFirst = newChild.firstChild; + + if (newFirst == null) { + return newChild; + } + + var newLast = newChild.lastChild; + } else { + newFirst = newLast = newChild; + } + + var pre = nextChild ? nextChild.previousSibling : parentNode.lastChild; + newFirst.previousSibling = pre; + newLast.nextSibling = nextChild; + + if (pre) { + pre.nextSibling = newFirst; + } else { + parentNode.firstChild = newFirst; + } + + if (nextChild == null) { + parentNode.lastChild = newLast; + } else { + nextChild.previousSibling = newLast; + } + + do { + newFirst.parentNode = parentNode; + } while (newFirst !== newLast && (newFirst = newFirst.nextSibling)); + + _onUpdateChild(parentNode.ownerDocument || parentNode, parentNode); //console.log(parentNode.lastChild.nextSibling == null) + + + if (newChild.nodeType == DOCUMENT_FRAGMENT_NODE) { + newChild.firstChild = newChild.lastChild = null; + } + + return newChild; +} + +function _appendSingleChild(parentNode, newChild) { + var cp = newChild.parentNode; + + if (cp) { + var pre = parentNode.lastChild; + cp.removeChild(newChild); //remove and update + + var pre = parentNode.lastChild; + } + + var pre = parentNode.lastChild; + newChild.parentNode = parentNode; + newChild.previousSibling = pre; + newChild.nextSibling = null; + + if (pre) { + pre.nextSibling = newChild; + } else { + parentNode.firstChild = newChild; + } + + parentNode.lastChild = newChild; + + _onUpdateChild(parentNode.ownerDocument, parentNode, newChild); + + return newChild; //console.log("__aa",parentNode.lastChild.nextSibling == null) +} + +Document.prototype = { + //implementation : null, + nodeName: '#document', + nodeType: DOCUMENT_NODE, + doctype: null, + documentElement: null, + _inc: 1, + insertBefore: function insertBefore(newChild, refChild) { + //raises + if (newChild.nodeType == DOCUMENT_FRAGMENT_NODE) { + var child = newChild.firstChild; + + while (child) { + var next = child.nextSibling; + this.insertBefore(child, refChild); + child = next; + } + + return newChild; + } + + if (this.documentElement == null && newChild.nodeType == ELEMENT_NODE) { + this.documentElement = newChild; + } + + return _insertBefore(this, newChild, refChild), newChild.ownerDocument = this, newChild; + }, + removeChild: function removeChild(oldChild) { + if (this.documentElement == oldChild) { + this.documentElement = null; + } + + return _removeChild(this, oldChild); + }, + // Introduced in DOM Level 2: + importNode: function importNode(importedNode, deep) { + return _importNode(this, importedNode, deep); + }, + // Introduced in DOM Level 2: + getElementById: function getElementById(id) { + var rtv = null; + + _visitNode(this.documentElement, function (node) { + if (node.nodeType == ELEMENT_NODE) { + if (node.getAttribute('id') == id) { + rtv = node; + return true; + } + } + }); + + return rtv; + }, + //document factory method: + createElement: function createElement(tagName) { + var node = new Element(); + node.ownerDocument = this; + node.nodeName = tagName; + node.tagName = tagName; + node.childNodes = new NodeList(); + var attrs = node.attributes = new NamedNodeMap(); + attrs._ownerElement = node; + return node; + }, + createDocumentFragment: function createDocumentFragment() { + var node = new DocumentFragment(); + node.ownerDocument = this; + node.childNodes = new NodeList(); + return node; + }, + createTextNode: function createTextNode(data) { + var node = new Text(); + node.ownerDocument = this; + node.appendData(data); + return node; + }, + createComment: function createComment(data) { + var node = new Comment(); + node.ownerDocument = this; + node.appendData(data); + return node; + }, + createCDATASection: function createCDATASection(data) { + var node = new CDATASection(); + node.ownerDocument = this; + node.appendData(data); + return node; + }, + createProcessingInstruction: function createProcessingInstruction(target, data) { + var node = new ProcessingInstruction(); + node.ownerDocument = this; + node.tagName = node.target = target; + node.nodeValue = node.data = data; + return node; + }, + createAttribute: function createAttribute(name) { + var node = new Attr(); + node.ownerDocument = this; + node.name = name; + node.nodeName = name; + node.localName = name; + node.specified = true; + return node; + }, + createEntityReference: function createEntityReference(name) { + var node = new EntityReference(); + node.ownerDocument = this; + node.nodeName = name; + return node; + }, + // Introduced in DOM Level 2: + createElementNS: function createElementNS(namespaceURI, qualifiedName) { + var node = new Element(); + var pl = qualifiedName.split(':'); + var attrs = node.attributes = new NamedNodeMap(); + node.childNodes = new NodeList(); + node.ownerDocument = this; + node.nodeName = qualifiedName; + node.tagName = qualifiedName; + node.namespaceURI = namespaceURI; + + if (pl.length == 2) { + node.prefix = pl[0]; + node.localName = pl[1]; + } else { + //el.prefix = null; + node.localName = qualifiedName; + } + + attrs._ownerElement = node; + return node; + }, + // Introduced in DOM Level 2: + createAttributeNS: function createAttributeNS(namespaceURI, qualifiedName) { + var node = new Attr(); + var pl = qualifiedName.split(':'); + node.ownerDocument = this; + node.nodeName = qualifiedName; + node.name = qualifiedName; + node.namespaceURI = namespaceURI; + node.specified = true; + + if (pl.length == 2) { + node.prefix = pl[0]; + node.localName = pl[1]; + } else { + //el.prefix = null; + node.localName = qualifiedName; + } + + return node; + } +}; + +_extends(Document, Node); + +function Element() { + this._nsMap = {}; +} + +; +Element.prototype = { + nodeType: ELEMENT_NODE, + hasAttribute: function hasAttribute(name) { + return this.getAttributeNode(name) != null; + }, + getAttribute: function getAttribute(name) { + var attr = this.getAttributeNode(name); + return attr && attr.value || ''; + }, + getAttributeNode: function getAttributeNode(name) { + return this.attributes.getNamedItem(name); + }, + setAttribute: function setAttribute(name, value) { + var attr = this.ownerDocument.createAttribute(name); + attr.value = attr.nodeValue = "" + value; + this.setAttributeNode(attr); + }, + removeAttribute: function removeAttribute(name) { + var attr = this.getAttributeNode(name); + attr && this.removeAttributeNode(attr); + }, + //four real opeartion method + appendChild: function appendChild(newChild) { + if (newChild.nodeType === DOCUMENT_FRAGMENT_NODE) { + return this.insertBefore(newChild, null); + } else { + return _appendSingleChild(this, newChild); + } + }, + setAttributeNode: function setAttributeNode(newAttr) { + return this.attributes.setNamedItem(newAttr); + }, + setAttributeNodeNS: function setAttributeNodeNS(newAttr) { + return this.attributes.setNamedItemNS(newAttr); + }, + removeAttributeNode: function removeAttributeNode(oldAttr) { + //console.log(this == oldAttr.ownerElement) + return this.attributes.removeNamedItem(oldAttr.nodeName); + }, + //get real attribute name,and remove it by removeAttributeNode + removeAttributeNS: function removeAttributeNS(namespaceURI, localName) { + var old = this.getAttributeNodeNS(namespaceURI, localName); + old && this.removeAttributeNode(old); + }, + hasAttributeNS: function hasAttributeNS(namespaceURI, localName) { + return this.getAttributeNodeNS(namespaceURI, localName) != null; + }, + getAttributeNS: function getAttributeNS(namespaceURI, localName) { + var attr = this.getAttributeNodeNS(namespaceURI, localName); + return attr && attr.value || ''; + }, + setAttributeNS: function setAttributeNS(namespaceURI, qualifiedName, value) { + var attr = this.ownerDocument.createAttributeNS(namespaceURI, qualifiedName); + attr.value = attr.nodeValue = "" + value; + this.setAttributeNode(attr); + }, + getAttributeNodeNS: function getAttributeNodeNS(namespaceURI, localName) { + return this.attributes.getNamedItemNS(namespaceURI, localName); + }, + getElementsByTagName: function getElementsByTagName(tagName) { + return new LiveNodeList(this, function (base) { + var ls = []; + + _visitNode(base, function (node) { + if (node !== base && node.nodeType == ELEMENT_NODE && (tagName === '*' || node.tagName == tagName)) { + ls.push(node); + } + }); + + return ls; + }); + }, + getElementsByTagNameNS: function getElementsByTagNameNS(namespaceURI, localName) { + return new LiveNodeList(this, function (base) { + var ls = []; + + _visitNode(base, function (node) { + if (node !== base && node.nodeType === ELEMENT_NODE && (namespaceURI === '*' || node.namespaceURI === namespaceURI) && (localName === '*' || node.localName == localName)) { + ls.push(node); + } + }); + + return ls; + }); + } +}; +Document.prototype.getElementsByTagName = Element.prototype.getElementsByTagName; +Document.prototype.getElementsByTagNameNS = Element.prototype.getElementsByTagNameNS; + +_extends(Element, Node); + +function Attr() {} + +; +Attr.prototype.nodeType = ATTRIBUTE_NODE; + +_extends(Attr, Node); + +function CharacterData() {} + +; +CharacterData.prototype = { + data: '', + substringData: function substringData(offset, count) { + return this.data.substring(offset, offset + count); + }, + appendData: function appendData(text) { + text = this.data + text; + this.nodeValue = this.data = text; + this.length = text.length; + }, + insertData: function insertData(offset, text) { + this.replaceData(offset, 0, text); + }, + appendChild: function appendChild(newChild) { + throw new Error(ExceptionMessage[HIERARCHY_REQUEST_ERR]); + }, + deleteData: function deleteData(offset, count) { + this.replaceData(offset, count, ""); + }, + replaceData: function replaceData(offset, count, text) { + var start = this.data.substring(0, offset); + var end = this.data.substring(offset + count); + text = start + text + end; + this.nodeValue = this.data = text; + this.length = text.length; + } +}; + +_extends(CharacterData, Node); + +function Text() {} + +; +Text.prototype = { + nodeName: "#text", + nodeType: TEXT_NODE, + splitText: function splitText(offset) { + var text = this.data; + var newText = text.substring(offset); + text = text.substring(0, offset); + this.data = this.nodeValue = text; + this.length = text.length; + var newNode = this.ownerDocument.createTextNode(newText); + + if (this.parentNode) { + this.parentNode.insertBefore(newNode, this.nextSibling); + } + + return newNode; + } +}; + +_extends(Text, CharacterData); + +function Comment() {} + +; +Comment.prototype = { + nodeName: "#comment", + nodeType: COMMENT_NODE +}; + +_extends(Comment, CharacterData); + +function CDATASection() {} + +; +CDATASection.prototype = { + nodeName: "#cdata-section", + nodeType: CDATA_SECTION_NODE +}; + +_extends(CDATASection, CharacterData); + +function DocumentType() {} + +; +DocumentType.prototype.nodeType = DOCUMENT_TYPE_NODE; + +_extends(DocumentType, Node); + +function Notation() {} + +; +Notation.prototype.nodeType = NOTATION_NODE; + +_extends(Notation, Node); + +function Entity() {} + +; +Entity.prototype.nodeType = ENTITY_NODE; + +_extends(Entity, Node); + +function EntityReference() {} + +; +EntityReference.prototype.nodeType = ENTITY_REFERENCE_NODE; + +_extends(EntityReference, Node); + +function DocumentFragment() {} + +; +DocumentFragment.prototype.nodeName = "#document-fragment"; +DocumentFragment.prototype.nodeType = DOCUMENT_FRAGMENT_NODE; + +_extends(DocumentFragment, Node); + +function ProcessingInstruction() {} + +ProcessingInstruction.prototype.nodeType = PROCESSING_INSTRUCTION_NODE; + +_extends(ProcessingInstruction, Node); + +function XMLSerializer() {} + +XMLSerializer.prototype.serializeToString = function (node, isHtml, nodeFilter) { + return nodeSerializeToString.call(node, isHtml, nodeFilter); +}; + +Node.prototype.toString = nodeSerializeToString; + +function nodeSerializeToString(isHtml, nodeFilter) { + var buf = []; + var refNode = this.nodeType == 9 && this.documentElement || this; + var prefix = refNode.prefix; + var uri = refNode.namespaceURI; + + if (uri && prefix == null) { + //console.log(prefix) + var prefix = refNode.lookupPrefix(uri); + + if (prefix == null) { + //isHTML = true; + var visibleNamespaces = [{ + namespace: uri, + prefix: null + } //{namespace:uri,prefix:''} + ]; + } + } + + serializeToString(this, buf, isHtml, nodeFilter, visibleNamespaces); //console.log('###',this.nodeType,uri,prefix,buf.join('')) + + return buf.join(''); +} + +function needNamespaceDefine(node, isHTML, visibleNamespaces) { + var prefix = node.prefix || ''; + var uri = node.namespaceURI; + + if (!prefix && !uri) { + return false; + } + + if (prefix === "xml" && uri === "http://www.w3.org/XML/1998/namespace" || uri == 'http://www.w3.org/2000/xmlns/') { + return false; + } + + var i = visibleNamespaces.length; //console.log('@@@@',node.tagName,prefix,uri,visibleNamespaces) + + while (i--) { + var ns = visibleNamespaces[i]; // get namespace prefix + //console.log(node.nodeType,node.tagName,ns.prefix,prefix) + + if (ns.prefix == prefix) { + return ns.namespace != uri; + } + } //console.log(isHTML,uri,prefix=='') + //if(isHTML && prefix ==null && uri == 'http://www.w3.org/1999/xhtml'){ + // return false; + //} + //node.flag = '11111' + //console.error(3,true,node.flag,node.prefix,node.namespaceURI) + + + return true; +} + +function serializeToString(node, buf, isHTML, nodeFilter, visibleNamespaces) { + if (nodeFilter) { + node = nodeFilter(node); + + if (node) { + if (typeof node == 'string') { + buf.push(node); + return; + } + } else { + return; + } //buf.sort.apply(attrs, attributeSorter); + + } + + switch (node.nodeType) { + case ELEMENT_NODE: + if (!visibleNamespaces) visibleNamespaces = []; + var startVisibleNamespaces = visibleNamespaces.length; + var attrs = node.attributes; + var len = attrs.length; + var child = node.firstChild; + var nodeName = node.tagName; + isHTML = htmlns === node.namespaceURI || isHTML; + buf.push('<', nodeName); + + for (var i = 0; i < len; i++) { + // add namespaces for attributes + var attr = attrs.item(i); + + if (attr.prefix == 'xmlns') { + visibleNamespaces.push({ + prefix: attr.localName, + namespace: attr.value + }); + } else if (attr.nodeName == 'xmlns') { + visibleNamespaces.push({ + prefix: '', + namespace: attr.value + }); + } + } + + for (var i = 0; i < len; i++) { + var attr = attrs.item(i); + + if (needNamespaceDefine(attr, isHTML, visibleNamespaces)) { + var prefix = attr.prefix || ''; + var uri = attr.namespaceURI; + var ns = prefix ? ' xmlns:' + prefix : " xmlns"; + buf.push(ns, '="', uri, '"'); + visibleNamespaces.push({ + prefix: prefix, + namespace: uri + }); + } + + serializeToString(attr, buf, isHTML, nodeFilter, visibleNamespaces); + } // add namespace for current node + + + if (needNamespaceDefine(node, isHTML, visibleNamespaces)) { + var prefix = node.prefix || ''; + var uri = node.namespaceURI; + var ns = prefix ? ' xmlns:' + prefix : " xmlns"; + buf.push(ns, '="', uri, '"'); + visibleNamespaces.push({ + prefix: prefix, + namespace: uri + }); + } + + if (child || isHTML && !/^(?:meta|link|img|br|hr|input)$/i.test(nodeName)) { + buf.push('>'); //if is cdata child node + + if (isHTML && /^script$/i.test(nodeName)) { + while (child) { + if (child.data) { + buf.push(child.data); + } else { + serializeToString(child, buf, isHTML, nodeFilter, visibleNamespaces); + } + + child = child.nextSibling; + } + } else { + while (child) { + serializeToString(child, buf, isHTML, nodeFilter, visibleNamespaces); + child = child.nextSibling; + } + } + + buf.push(''); + } else { + buf.push('/>'); + } // remove added visible namespaces + //visibleNamespaces.length = startVisibleNamespaces; + + + return; + + case DOCUMENT_NODE: + case DOCUMENT_FRAGMENT_NODE: + var child = node.firstChild; + + while (child) { + serializeToString(child, buf, isHTML, nodeFilter, visibleNamespaces); + child = child.nextSibling; + } + + return; + + case ATTRIBUTE_NODE: + return buf.push(' ', node.name, '="', node.value.replace(/[<&"]/g, _xmlEncoder), '"'); + + case TEXT_NODE: + return buf.push(node.data.replace(/[<&]/g, _xmlEncoder)); + + case CDATA_SECTION_NODE: + return buf.push(''); + + case COMMENT_NODE: + return buf.push(""); + + case DOCUMENT_TYPE_NODE: + var pubid = node.publicId; + var sysid = node.systemId; + buf.push(''); + } else if (sysid && sysid != '.') { + buf.push(' SYSTEM "', sysid, '">'); + } else { + var sub = node.internalSubset; + + if (sub) { + buf.push(" [", sub, "]"); + } + + buf.push(">"); + } + + return; + + case PROCESSING_INSTRUCTION_NODE: + return buf.push(""); + + case ENTITY_REFERENCE_NODE: + return buf.push('&', node.nodeName, ';'); + //case ENTITY_NODE: + //case NOTATION_NODE: + + default: + buf.push('??', node.nodeName); + } +} + +function _importNode(doc, node, deep) { + var node2; + + switch (node.nodeType) { + case ELEMENT_NODE: + node2 = node.cloneNode(false); + node2.ownerDocument = doc; + //var attrs = node2.attributes; + //var len = attrs.length; + //for(var i=0;i', + amp: '&', + quot: '"', + apos: "'", + Agrave: "À", + Aacute: "Á", + Acirc: "Â", + Atilde: "Ã", + Auml: "Ä", + Aring: "Å", + AElig: "Æ", + Ccedil: "Ç", + Egrave: "È", + Eacute: "É", + Ecirc: "Ê", + Euml: "Ë", + Igrave: "Ì", + Iacute: "Í", + Icirc: "Î", + Iuml: "Ï", + ETH: "Ð", + Ntilde: "Ñ", + Ograve: "Ò", + Oacute: "Ó", + Ocirc: "Ô", + Otilde: "Õ", + Ouml: "Ö", + Oslash: "Ø", + Ugrave: "Ù", + Uacute: "Ú", + Ucirc: "Û", + Uuml: "Ü", + Yacute: "Ý", + THORN: "Þ", + szlig: "ß", + agrave: "à", + aacute: "á", + acirc: "â", + atilde: "ã", + auml: "ä", + aring: "å", + aelig: "æ", + ccedil: "ç", + egrave: "è", + eacute: "é", + ecirc: "ê", + euml: "ë", + igrave: "ì", + iacute: "í", + icirc: "î", + iuml: "ï", + eth: "ð", + ntilde: "ñ", + ograve: "ò", + oacute: "ó", + ocirc: "ô", + otilde: "õ", + ouml: "ö", + oslash: "ø", + ugrave: "ù", + uacute: "ú", + ucirc: "û", + uuml: "ü", + yacute: "ý", + thorn: "þ", + yuml: "ÿ", + nbsp: " ", + iexcl: "¡", + cent: "¢", + pound: "£", + curren: "¤", + yen: "¥", + brvbar: "¦", + sect: "§", + uml: "¨", + copy: "©", + ordf: "ª", + laquo: "«", + not: "¬", + shy: "­­", + reg: "®", + macr: "¯", + deg: "°", + plusmn: "±", + sup2: "²", + sup3: "³", + acute: "´", + micro: "µ", + para: "¶", + middot: "·", + cedil: "¸", + sup1: "¹", + ordm: "º", + raquo: "»", + frac14: "¼", + frac12: "½", + frac34: "¾", + iquest: "¿", + times: "×", + divide: "÷", + forall: "∀", + part: "∂", + exist: "∃", + empty: "∅", + nabla: "∇", + isin: "∈", + notin: "∉", + ni: "∋", + prod: "∏", + sum: "∑", + minus: "−", + lowast: "∗", + radic: "√", + prop: "∝", + infin: "∞", + ang: "∠", + and: "∧", + or: "∨", + cap: "∩", + cup: "∪", + 'int': "∫", + there4: "∴", + sim: "∼", + cong: "≅", + asymp: "≈", + ne: "≠", + equiv: "≡", + le: "≤", + ge: "≥", + sub: "⊂", + sup: "⊃", + nsub: "⊄", + sube: "⊆", + supe: "⊇", + oplus: "⊕", + otimes: "⊗", + perp: "⊥", + sdot: "⋅", + Alpha: "Α", + Beta: "Β", + Gamma: "Γ", + Delta: "Δ", + Epsilon: "Ε", + Zeta: "Ζ", + Eta: "Η", + Theta: "Θ", + Iota: "Ι", + Kappa: "Κ", + Lambda: "Λ", + Mu: "Μ", + Nu: "Ν", + Xi: "Ξ", + Omicron: "Ο", + Pi: "Π", + Rho: "Ρ", + Sigma: "Σ", + Tau: "Τ", + Upsilon: "Υ", + Phi: "Φ", + Chi: "Χ", + Psi: "Ψ", + Omega: "Ω", + alpha: "α", + beta: "β", + gamma: "γ", + delta: "δ", + epsilon: "ε", + zeta: "ζ", + eta: "η", + theta: "θ", + iota: "ι", + kappa: "κ", + lambda: "λ", + mu: "μ", + nu: "ν", + xi: "ξ", + omicron: "ο", + pi: "π", + rho: "ρ", + sigmaf: "ς", + sigma: "σ", + tau: "τ", + upsilon: "υ", + phi: "φ", + chi: "χ", + psi: "ψ", + omega: "ω", + thetasym: "ϑ", + upsih: "ϒ", + piv: "ϖ", + OElig: "Œ", + oelig: "œ", + Scaron: "Š", + scaron: "š", + Yuml: "Ÿ", + fnof: "ƒ", + circ: "ˆ", + tilde: "˜", + ensp: " ", + emsp: " ", + thinsp: " ", + zwnj: "‌", + zwj: "‍", + lrm: "‎", + rlm: "‏", + ndash: "–", + mdash: "—", + lsquo: "‘", + rsquo: "’", + sbquo: "‚", + ldquo: "“", + rdquo: "”", + bdquo: "„", + dagger: "†", + Dagger: "‡", + bull: "•", + hellip: "…", + permil: "‰", + prime: "′", + Prime: "″", + lsaquo: "‹", + rsaquo: "›", + oline: "‾", + euro: "€", + trade: "™", + larr: "←", + uarr: "↑", + rarr: "→", + darr: "↓", + harr: "↔", + crarr: "↵", + lceil: "⌈", + rceil: "⌉", + lfloor: "⌊", + rfloor: "⌋", + loz: "◊", + spades: "♠", + clubs: "♣", + hearts: "♥", + diams: "♦" +}; //for(var n in exports.entityMap){console.log(exports.entityMap[n].charCodeAt())} + +},{}],45:[function(require,module,exports){ +"use strict"; + +//[4] NameStartChar ::= ":" | [A-Z] | "_" | [a-z] | [#xC0-#xD6] | [#xD8-#xF6] | [#xF8-#x2FF] | [#x370-#x37D] | [#x37F-#x1FFF] | [#x200C-#x200D] | [#x2070-#x218F] | [#x2C00-#x2FEF] | [#x3001-#xD7FF] | [#xF900-#xFDCF] | [#xFDF0-#xFFFD] | [#x10000-#xEFFFF] +//[4a] NameChar ::= NameStartChar | "-" | "." | [0-9] | #xB7 | [#x0300-#x036F] | [#x203F-#x2040] +//[5] Name ::= NameStartChar (NameChar)* +var nameStartChar = /[A-Z_a-z\xC0-\xD6\xD8-\xF6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/; //\u10000-\uEFFFF + +var nameChar = new RegExp("[\\-\\.0-9" + nameStartChar.source.slice(1, -1) + "\\u00B7\\u0300-\\u036F\\u203F-\\u2040]"); +var tagNamePattern = new RegExp('^' + nameStartChar.source + nameChar.source + '*(?:\:' + nameStartChar.source + nameChar.source + '*)?$'); //var tagNamePattern = /^[a-zA-Z_][\w\-\.]*(?:\:[a-zA-Z_][\w\-\.]*)?$/ +//var handlers = 'resolveEntity,getExternalSubset,characters,endDocument,endElement,endPrefixMapping,ignorableWhitespace,processingInstruction,setDocumentLocator,skippedEntity,startDocument,startElement,startPrefixMapping,notationDecl,unparsedEntityDecl,error,fatalError,warning,attributeDecl,elementDecl,externalEntityDecl,internalEntityDecl,comment,endCDATA,endDTD,endEntity,startCDATA,startDTD,startEntity'.split(',') +//S_TAG, S_ATTR, S_EQ, S_ATTR_NOQUOT_VALUE +//S_ATTR_SPACE, S_ATTR_END, S_TAG_SPACE, S_TAG_CLOSE + +var S_TAG = 0; //tag name offerring + +var S_ATTR = 1; //attr name offerring + +var S_ATTR_SPACE = 2; //attr name end and space offer + +var S_EQ = 3; //=space? + +var S_ATTR_NOQUOT_VALUE = 4; //attr value(no quot value only) + +var S_ATTR_END = 5; //attr value end and no space(quot end) + +var S_TAG_SPACE = 6; //(attr value end || tag end ) && (space offer) + +var S_TAG_CLOSE = 7; //closed el + +function XMLReader() {} + +XMLReader.prototype = { + parse: function parse(source, defaultNSMap, entityMap) { + var domBuilder = this.domBuilder; + domBuilder.startDocument(); + + _copy(defaultNSMap, defaultNSMap = {}); + + _parse(source, defaultNSMap, entityMap, domBuilder, this.errorHandler); + + domBuilder.endDocument(); + } +}; + +function _parse(source, defaultNSMapCopy, entityMap, domBuilder, errorHandler) { + function fixedFromCharCode(code) { + // String.prototype.fromCharCode does not supports + // > 2 bytes unicode chars directly + if (code > 0xffff) { + code -= 0x10000; + var surrogate1 = 0xd800 + (code >> 10), + surrogate2 = 0xdc00 + (code & 0x3ff); + return String.fromCharCode(surrogate1, surrogate2); + } else { + return String.fromCharCode(code); + } + } + + function entityReplacer(a) { + var k = a.slice(1, -1); + + if (k in entityMap) { + return entityMap[k]; + } else if (k.charAt(0) === '#') { + return fixedFromCharCode(parseInt(k.substr(1).replace('x', '0x'))); + } else { + errorHandler.error('entity not found:' + a); + return a; + } + } + + function appendText(end) { + //has some bugs + if (end > start) { + var xt = source.substring(start, end).replace(/&#?\w+;/g, entityReplacer); + locator && position(start); + domBuilder.characters(xt, 0, end - start); + start = end; + } + } + + function position(p, m) { + while (p >= lineEnd && (m = linePattern.exec(source))) { + lineStart = m.index; + lineEnd = lineStart + m[0].length; + locator.lineNumber++; //console.log('line++:',locator,startPos,endPos) + } + + locator.columnNumber = p - lineStart + 1; + } + + var lineStart = 0; + var lineEnd = 0; + var linePattern = /.*(?:\r\n?|\n)|.*$/g; + var locator = domBuilder.locator; + var parseStack = [{ + currentNSMap: defaultNSMapCopy + }]; + var closeMap = {}; + var start = 0; + + while (true) { + try { + var tagStart = source.indexOf('<', start); + + if (tagStart < 0) { + if (!source.substr(start).match(/^\s*$/)) { + var doc = domBuilder.doc; + var text = doc.createTextNode(source.substr(start)); + doc.appendChild(text); + domBuilder.currentElement = text; + } + + return; + } + + if (tagStart > start) { + appendText(tagStart); + } + + switch (source.charAt(tagStart + 1)) { + case '/': + var end = source.indexOf('>', tagStart + 3); + var tagName = source.substring(tagStart + 2, end); + var config = parseStack.pop(); + + if (end < 0) { + tagName = source.substring(tagStart + 2).replace(/[\s<].*/, ''); //console.error('#@@@@@@'+tagName) + + errorHandler.error("end tag name: " + tagName + ' is not complete:' + config.tagName); + end = tagStart + 1 + tagName.length; + } else if (tagName.match(/\s + locator && position(tagStart); + end = parseInstruction(source, tagStart, domBuilder); + break; + + case '!': + // start) { + start = end; + } else { + //REFINE: 这里有可能sax回退,有位置错误风险 + appendText(Math.max(tagStart, start) + 1); + } + } +} + +function copyLocator(f, t) { + t.lineNumber = f.lineNumber; + t.columnNumber = f.columnNumber; + return t; +} +/** + * @see #appendElement(source,elStartEnd,el,selfClosed,entityReplacer,domBuilder,parseStack); + * @return end of the elementStartPart(end of elementEndPart for selfClosed el) + */ + + +function parseElementStartPart(source, start, el, currentNSMap, entityReplacer, errorHandler) { + var attrName; + var value; + var p = ++start; + var s = S_TAG; //status + + while (true) { + var c = source.charAt(p); + + switch (c) { + case '=': + if (s === S_ATTR) { + //attrName + attrName = source.slice(start, p); + s = S_EQ; + } else if (s === S_ATTR_SPACE) { + s = S_EQ; + } else { + //fatalError: equal must after attrName or space after attrName + throw new Error('attribute equal must after attrName'); + } + + break; + + case '\'': + case '"': + if (s === S_EQ || s === S_ATTR //|| s == S_ATTR_SPACE + ) { + //equal + if (s === S_ATTR) { + errorHandler.warning('attribute value must after "="'); + attrName = source.slice(start, p); + } + + start = p + 1; + p = source.indexOf(c, start); + + if (p > 0) { + value = source.slice(start, p).replace(/&#?\w+;/g, entityReplacer); + el.add(attrName, value, start - 1); + s = S_ATTR_END; + } else { + //fatalError: no end quot match + throw new Error('attribute value no end \'' + c + '\' match'); + } + } else if (s == S_ATTR_NOQUOT_VALUE) { + value = source.slice(start, p).replace(/&#?\w+;/g, entityReplacer); //console.log(attrName,value,start,p) + + el.add(attrName, value, start); //console.dir(el) + + errorHandler.warning('attribute "' + attrName + '" missed start quot(' + c + ')!!'); + start = p + 1; + s = S_ATTR_END; + } else { + //fatalError: no equal before + throw new Error('attribute value must after "="'); + } + + break; + + case '/': + switch (s) { + case S_TAG: + el.setTagName(source.slice(start, p)); + + case S_ATTR_END: + case S_TAG_SPACE: + case S_TAG_CLOSE: + s = S_TAG_CLOSE; + el.closed = true; + + case S_ATTR_NOQUOT_VALUE: + case S_ATTR: + case S_ATTR_SPACE: + break; + //case S_EQ: + + default: + throw new Error("attribute invalid close char('/')"); + } + + break; + + case '': + //end document + //throw new Error('unexpected end of input') + errorHandler.error('unexpected end of input'); + + if (s == S_TAG) { + el.setTagName(source.slice(start, p)); + } + + return p; + + case '>': + switch (s) { + case S_TAG: + el.setTagName(source.slice(start, p)); + + case S_ATTR_END: + case S_TAG_SPACE: + case S_TAG_CLOSE: + break; + //normal + + case S_ATTR_NOQUOT_VALUE: //Compatible state + + case S_ATTR: + value = source.slice(start, p); + + if (value.slice(-1) === '/') { + el.closed = true; + value = value.slice(0, -1); + } + + case S_ATTR_SPACE: + if (s === S_ATTR_SPACE) { + value = attrName; + } + + if (s == S_ATTR_NOQUOT_VALUE) { + errorHandler.warning('attribute "' + value + '" missed quot(")!!'); + el.add(attrName, value.replace(/&#?\w+;/g, entityReplacer), start); + } else { + if (currentNSMap[''] !== 'http://www.w3.org/1999/xhtml' || !value.match(/^(?:disabled|checked|selected)$/i)) { + errorHandler.warning('attribute "' + value + '" missed value!! "' + value + '" instead!!'); + } + + el.add(value, value, start); + } + + break; + + case S_EQ: + throw new Error('attribute value missed!!'); + } // console.log(tagName,tagNamePattern,tagNamePattern.test(tagName)) + + + return p; + + /*xml space '\x20' | #x9 | #xD | #xA; */ + + case "\x80": + c = ' '; + + default: + if (c <= ' ') { + //space + switch (s) { + case S_TAG: + el.setTagName(source.slice(start, p)); //tagName + + s = S_TAG_SPACE; + break; + + case S_ATTR: + attrName = source.slice(start, p); + s = S_ATTR_SPACE; + break; + + case S_ATTR_NOQUOT_VALUE: + var value = source.slice(start, p).replace(/&#?\w+;/g, entityReplacer); + errorHandler.warning('attribute "' + value + '" missed quot(")!!'); + el.add(attrName, value, start); + + case S_ATTR_END: + s = S_TAG_SPACE; + break; + //case S_TAG_SPACE: + //case S_EQ: + //case S_ATTR_SPACE: + // void();break; + //case S_TAG_CLOSE: + //ignore warning + } + } else { + //not space + //S_TAG, S_ATTR, S_EQ, S_ATTR_NOQUOT_VALUE + //S_ATTR_SPACE, S_ATTR_END, S_TAG_SPACE, S_TAG_CLOSE + switch (s) { + //case S_TAG:void();break; + //case S_ATTR:void();break; + //case S_ATTR_NOQUOT_VALUE:void();break; + case S_ATTR_SPACE: + var tagName = el.tagName; + + if (currentNSMap[''] !== 'http://www.w3.org/1999/xhtml' || !attrName.match(/^(?:disabled|checked|selected)$/i)) { + errorHandler.warning('attribute "' + attrName + '" missed value!! "' + attrName + '" instead2!!'); + } + + el.add(attrName, attrName, start); + start = p; + s = S_ATTR; + break; + + case S_ATTR_END: + errorHandler.warning('attribute space is required"' + attrName + '"!!'); + + case S_TAG_SPACE: + s = S_ATTR; + start = p; + break; + + case S_EQ: + s = S_ATTR_NOQUOT_VALUE; + start = p; + break; + + case S_TAG_CLOSE: + throw new Error("elements closed character '/' and '>' must be connected to"); + } + } + + } //end outer switch + //console.log('p++',p) + + + p++; + } +} +/** + * @return true if has new namespace define + */ + + +function appendElement(el, domBuilder, currentNSMap) { + var tagName = el.tagName; + var localNSMap = null; //var currentNSMap = parseStack[parseStack.length-1].currentNSMap; + + var i = el.length; + + while (i--) { + var a = el[i]; + var qName = a.qName; + var value = a.value; + var nsp = qName.indexOf(':'); + + if (nsp > 0) { + var prefix = a.prefix = qName.slice(0, nsp); + var localName = qName.slice(nsp + 1); + var nsPrefix = prefix === 'xmlns' && localName; + } else { + localName = qName; + prefix = null; + nsPrefix = qName === 'xmlns' && ''; + } //can not set prefix,because prefix !== '' + + + a.localName = localName; //prefix == null for no ns prefix attribute + + if (nsPrefix !== false) { + //hack!! + if (localNSMap == null) { + localNSMap = {}; //console.log(currentNSMap,0) + + _copy(currentNSMap, currentNSMap = {}); //console.log(currentNSMap,1) + + } + + currentNSMap[nsPrefix] = localNSMap[nsPrefix] = value; + a.uri = 'http://www.w3.org/2000/xmlns/'; + domBuilder.startPrefixMapping(nsPrefix, value); + } + } + + var i = el.length; + + while (i--) { + a = el[i]; + var prefix = a.prefix; + + if (prefix) { + //no prefix attribute has no namespace + if (prefix === 'xml') { + a.uri = 'http://www.w3.org/XML/1998/namespace'; + } + + if (prefix !== 'xmlns') { + a.uri = currentNSMap[prefix || '']; //{console.log('###'+a.qName,domBuilder.locator.systemId+'',currentNSMap,a.uri)} + } + } + } + + var nsp = tagName.indexOf(':'); + + if (nsp > 0) { + prefix = el.prefix = tagName.slice(0, nsp); + localName = el.localName = tagName.slice(nsp + 1); + } else { + prefix = null; //important!! + + localName = el.localName = tagName; + } //no prefix element has default namespace + + + var ns = el.uri = currentNSMap[prefix || '']; + domBuilder.startElement(ns, localName, tagName, el); //endPrefixMapping and startPrefixMapping have not any help for dom builder + //localNSMap = null + + if (el.closed) { + domBuilder.endElement(ns, localName, tagName); + + if (localNSMap) { + for (prefix in localNSMap) { + domBuilder.endPrefixMapping(prefix); + } + } + } else { + el.currentNSMap = currentNSMap; + el.localNSMap = localNSMap; //parseStack.push(el); + + return true; + } +} + +function parseHtmlSpecialContent(source, elStartEnd, tagName, entityReplacer, domBuilder) { + if (/^(?:script|textarea)$/i.test(tagName)) { + var elEndStart = source.indexOf('', elStartEnd); + var text = source.substring(elStartEnd + 1, elEndStart); + + if (/[&<]/.test(text)) { + if (/^script$/i.test(tagName)) { + //if(!/\]\]>/.test(text)){ + //lexHandler.startCDATA(); + domBuilder.characters(text, 0, text.length); //lexHandler.endCDATA(); + + return elEndStart; //} + } //}else{//text area + + + text = text.replace(/&#?\w+;/g, entityReplacer); + domBuilder.characters(text, 0, text.length); + return elEndStart; //} + } + } + + return elStartEnd + 1; +} + +function fixSelfClosed(source, elStartEnd, tagName, closeMap) { + //if(tagName in closeMap){ + var pos = closeMap[tagName]; + + if (pos == null) { + //console.log(tagName) + pos = source.lastIndexOf(''); + + if (pos < elStartEnd) { + //忘记闭合 + pos = source.lastIndexOf('', start + 4); //append comment source.substring(4,end)//