You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
3.7 KiB
78 lines
3.7 KiB
/****************************************************************************
|
|
Copyright (c) 2017-2023 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.
|
|
****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "bindings/jswrapper/PrivateObject.h"
|
|
#include "jsb_global_init.h"
|
|
|
|
template <typename T, class... Args>
|
|
T *jsb_override_new(Args &&...args) { // NOLINT(readability-identifier-naming)
|
|
// create object in the default way
|
|
return ccnew T(std::forward<Args>(args)...);
|
|
}
|
|
|
|
template <typename T>
|
|
void jsb_override_delete(T *arg) { // NOLINT(readability-identifier-naming)
|
|
// create object in gfx way
|
|
delete (arg);
|
|
}
|
|
|
|
template <typename T, typename... ARGS>
|
|
se::PrivateObjectBase *jsb_make_private_object(ARGS &&...args) { // NOLINT(readability-identifier-naming)
|
|
if constexpr (std::is_base_of<cc::RefCounted, T>::value) {
|
|
return se::ccintrusive_ptr_private_object(ccnew T(std::forward<ARGS>(args)...));
|
|
} else {
|
|
return se::shared_ptr_private_object(std::make_shared<T>(std::forward<ARGS>(args)...));
|
|
}
|
|
}
|
|
|
|
template <typename T>
|
|
typename std::enable_if<std::is_base_of<cc::RefCounted, T>::value, se::TypedPrivateObject<T> *>::type
|
|
jsb_make_private_object_with_instance(T *instance) { // NOLINT(readability-identifier-naming)
|
|
return se::ccintrusive_ptr_private_object(instance);
|
|
}
|
|
|
|
template <typename T>
|
|
typename std::enable_if<!std::is_base_of<cc::RefCounted, T>::value, se::TypedPrivateObject<T> *>::type
|
|
jsb_make_private_object_with_instance(T *instance) { // NOLINT(readability-identifier-naming)
|
|
return se::shared_ptr_private_object(std::shared_ptr<T>(instance));
|
|
}
|
|
|
|
#define JSB_MAKE_PRIVATE_OBJECT(kls, ...) jsb_make_private_object<kls>(__VA_ARGS__)
|
|
#define JSB_MAKE_PRIVATE_OBJECT_WITH_INSTANCE(instance) jsb_make_private_object_with_instance(instance)
|
|
#define JSB_ALLOC(kls, ...) jsb_override_new<kls>(__VA_ARGS__)
|
|
#define JSB_FREE(kls) jsb_override_delete(kls)
|
|
namespace se {
|
|
class Class;
|
|
class Value;
|
|
} // namespace se
|
|
|
|
bool jsb_register_global_variables(se::Object *global); // NOLINT(readability-identifier-naming)
|
|
|
|
bool jsb_set_extend_property(const char *ns, const char *clsName); // NOLINT(readability-identifier-naming)
|
|
bool jsb_run_script(const ccstd::string &filePath, se::Value *rval = nullptr); // NOLINT(readability-identifier-naming)
|
|
bool jsb_run_script_module(const ccstd::string &filePath, se::Value *rval = nullptr); // NOLINT(readability-identifier-naming)
|
|
|
|
bool jsb_global_load_image(const ccstd::string &path, const se::Value &callbackVal); // NOLINT(readability-identifier-naming)
|
|
|