Giter VIP home page Giter VIP logo

Comments (7)

satoren avatar satoren commented on July 19, 2024

Not possible for fast userdata type check.

from kaguya.

aster2013 avatar aster2013 commented on July 19, 2024

for example, In C++:

SharedPtr<Resource> GetResource(const char* resource_type, const char* resource_path)
{
  ...
}

// Push code.
{
    typedef Urho3DSharedPtrWrapper<Resource> wrapper_type;

    void *storage = lua_newuserdata(l, sizeof(wrapper_type));
    new(storage) wrapper_type(p);

    const char* class_name = p->GetTypeName().CString();
    class_userdata::setmetatable(l, class_name);
}

And in Lua I want to call like this:

local font = resourceCache:GetResource('Font', path_to_font);
-- font is a Font object, not a Resource object.

local image  = resourceCache:GetResource('Image', path_to_font);
-- image is a Image object, not a Resource object.

from kaguya.

satoren avatar satoren commented on July 19, 2024

ummm... How about this?

namespace kaguya
{
    // Urho3D::SharedPtr<Urho3D::Resource>
    template<> struct lua_type_traits<Urho3D::SharedPtr<Urho3D::Resource>>
    {
        typedef const Urho3D::SharedPtr<Urho3D::Resource>& push_type;

        template<typename CastType>
        static int downcast_and_push(lua_State* l, push_type p)
        {
            Urho3D::SharedPtr<CastType> s;
            s.StaticCast(p);
            return util::push_args(l, s);
        }
        static int push(lua_State* l, push_type p)
        {
            const Urho3D::String& typeName = p->GetTypeName();
            //Resource types...
            if (typeName == "JSONFile") { return downcast_and_push<Urho3D::JSONFile>(l, p); }
            if (typeName == "Image") { return downcast_and_push<Urho3D::Image>(l, p); }

            //unknown resource...
            typedef Urho3DSharedPtrWrapper<Urho3D::Resource> wrapper_type;
            void *storage = lua_newuserdata(l, sizeof(wrapper_type));
            new(storage) wrapper_type(p);
            class_userdata::setmetatable<Urho3D::Resource>(l);
            return 1;
        }
    };
}

from kaguya.

aster2013 avatar aster2013 commented on July 19, 2024

I have add a virtual function to object.

virtual const std::type_info& GetStdTypeInfo() const;

template<> struct lua_type_traits<Urho3D::SharedPtr<Urho3D::Resource>>
    {
        typedef const Urho3D::SharedPtr<Urho3D::Resource>& push_type;

        static int push(lua_State* l, push_type p)
        {
            if (!p)
            {
                lua_pushnil(l);
            }
            else
            {
                typedef Urho3DSharedPtrWrapper<Urho3D::Resource> wrapper_type;
                void *storage = lua_newuserdata(l, sizeof(wrapper_type));
                new(storage) wrapper_type(p);

                class_userdata::setmetatable(l, p->GetStdTypeInfo());
            }

            return 1;
        }
    };

from kaguya.

satoren avatar satoren commented on July 19, 2024

Maybe Urho3DSharedPtrWrapper::type() also need to return the same type info.

from kaguya.

satoren avatar satoren commented on July 19, 2024
    template<class T>
    struct Urho3DSharedPtrWrapper : ObjectWrapperBase
    {
~
        virtual const std::type_info& type()
        {
            return object_->GetStdTypeInfo();
        }
~
  };

Or Urho3DSharedPtrWrapper has member std::type_info reference.

from kaguya.

aster2013 avatar aster2013 commented on July 19, 2024
template<class T>
struct Urho3DSharedPtrWrapper : ObjectWrapperBase
{
    // ...
    virtual const std::type_info& type()
    {
        Urho3D::Object* object = dynamic_cast<Urho3D::Object*>(object_);
        if (object)
        {
            return object->GetStdTypeInfo();
        }
        return metatableType<T>();
    }
    // ...
}

// SharedPtr<T> type traits.
template<typename T>
struct lua_type_traits<Urho3D::SharedPtr<T>>
{
    typedef const Urho3D::SharedPtr<T>& push_type;
    static int push(lua_State* l, push_type p)
    {
        if (!p)
        {
            lua_pushnil(l);
        }
        else
        {
            typedef Urho3DSharedPtrWrapper<T> wrapper_type;
            void *storage = lua_newuserdata(l, sizeof(wrapper_type));

            T* o = p;
            new(storage) wrapper_type(o);

            Urho3D::Object* object = dynamic_cast<Urho3D::Object*>(o);
            if (object)
            {
                class_userdata::setmetatable(l, object->GetStdTypeInfo());
            }
            else
            {
                class_userdata::setmetatable<T>(l);
            }
        }
        return 1;
    }
};

from kaguya.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.