我想知道一次在游戏循环中创建类对象的正确方法是什么?例如,我拥有Box,Sphere,Cyllinder类,并且希望在程序运行时在不同的时间创建多个对象,并在将来与它们一起使用。如何保存此对象的正确方法?将所有类作为向量合并到一个类中?

vector<glm::vec3> initVerts = {/*verts position*/};

class Box
{
    vector<glm::vec3> verts;
    Box(): verts(initVerts)
    void moveBox(glm::vec3 newPos){ /*translate verts*/ }
};

while ( !windowShouldClose())
{
     Box box;
     box.moveBox(1.0,0.0,0.0); // on the second pass it was another box with initial position
}

最佳答案

最简单的方法是为每个类类型创建一个向量。开始:

std::vector<Box> boxes;
boxes.reserve(100); // however many you expect to need
Box& box1 = boxes.emplace_back();

while ( !windowShouldClose())
{
    box1.moveBox(1.0,0.0,0.0);
}


或者,如果您不需要迭代所有对象的方法,则可以将它们分别存储在循环外:

Box box1;

while ( !windowShouldClose())
{
    box1.moveBox(1.0,0.0,0.0);
}

10-06 08:21