在C ++中的未知结构内部调用方法

问题描述

假设用户创建了自己的包含一些代码的结构:

struct NormalShader
{
    vec3 normal;
    vec3 color;

    void main()
    {
        color = normal * 127.5f + 127.f;
    }
};

然后运行主要代码,并尝试模拟此结构:

void ShaderRun()
{
    void* structData = alloca(structSize);
    LoadAttributes(structData);

    Invokemain(structData); //<- Pseudocode here that executes main() with the structs data at the 'structData' pointer
}

所以我的问题是:是否可以手动初始化一个未知的结构,然后以某种方式破解其成员函数,使其在不直接访问该结构的情况下就可以处理自己的数据。

编辑: 需要说明的是:hack是指迫使main内的NormalShader函数认为其struct元素是structData并在这些元素上执行代码。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)