コード例 #1
0
ファイル: light.cpp プロジェクト: PLkolek/openmw
    void Light::insertObjectRendering (const MWWorld::Ptr& ptr, MWRender::RenderingInterface& renderingInterface) const
    {
        const std::string model = getModel(ptr);

        // Insert even if model is empty, so that the light is added
        renderingInterface.getObjects().insertModel(ptr, model);
    }
コード例 #2
0
ファイル: apparatus.cpp プロジェクト: 0xmono/openmw
 void Apparatus::insertObjectRendering (const MWWorld::Ptr& ptr, MWRender::RenderingInterface& renderingInterface) const
 {
     const std::string model = getModel(ptr);
     if (!model.empty()) {
         renderingInterface.getObjects().insertModel(ptr, model);
     }
 }
コード例 #3
0
ファイル: light.cpp プロジェクト: ChairGraveyard/TES3MP
    void Light::insertObjectRendering (const MWWorld::Ptr& ptr, const std::string& model, MWRender::RenderingInterface& renderingInterface) const
    {
        MWWorld::LiveCellRef<ESM::Light> *ref =
            ptr.get<ESM::Light>();

        // Insert even if model is empty, so that the light is added
        renderingInterface.getObjects().insertModel(ptr, model, true, !(ref->mBase->mData.mFlags & ESM::Light::OffDefault));
    }
コード例 #4
0
ファイル: door.cpp プロジェクト: OpenMW/openmw
 void Door::insertObjectRendering (const MWWorld::Ptr& ptr, const std::string& model, MWRender::RenderingInterface& renderingInterface) const
 {
     if (!model.empty())
     {
         renderingInterface.getObjects().insertModel(ptr, model, true);
         ptr.getRefData().getBaseNode()->setNodeMask(MWRender::Mask_Static);
     }
 }
コード例 #5
0
ファイル: activator.cpp プロジェクト: Adrian-Revk/openmw
 void Activator::insertObjectRendering (const MWWorld::Ptr& ptr, MWRender::RenderingInterface& renderingInterface) const
 {
     const std::string model = getModel(ptr);
     if (!model.empty()) {
         MWRender::Actors& actors = renderingInterface.getActors();
         actors.insertActivator(ptr);
     }
 }
コード例 #6
0
ファイル: lockpick.cpp プロジェクト: valistar/openmw
 void Lockpick::insertObjectRendering (const MWWorld::Ptr& ptr, MWRender::RenderingInterface& renderingInterface) const
 {
     const std::string model = getModel(ptr);
     if (!model.empty()) {
         MWRender::Objects& objects = renderingInterface.getObjects();
         objects.insertBegin(ptr, ptr.getRefData().isEnabled(), false);
         objects.insertMesh(ptr, model);
     }
 }
コード例 #7
0
ファイル: light.cpp プロジェクト: mellotanica/openmw
    void Light::insertObjectRendering (const MWWorld::Ptr& ptr, MWRender::RenderingInterface& renderingInterface) const
    {
        MWWorld::LiveCellRef<ESM::Light> *ref =
            ptr.get<ESM::Light>();

        // Insert even if model is empty, so that the light is added
        MWRender::Actors& actors = renderingInterface.getActors();
        actors.insertActivator(ptr, !(ref->mBase->mData.mFlags & ESM::Light::OffDefault));
    }
コード例 #8
0
ファイル: static.cpp プロジェクト: AAlderman/openmw
    void Static::insertObjectRendering (const MWWorld::Ptr& ptr, const std::string& model, MWRender::RenderingInterface& renderingInterface) const
    {
        MWWorld::LiveCellRef<ESM::Static> *ref =
            ptr.get<ESM::Static>();

        if (!model.empty()) {
            renderingInterface.getObjects().insertModel(ptr, model, !ref->mBase->mPersistent);
        }
    }
コード例 #9
0
ファイル: activator.cpp プロジェクト: SlavaHill/openmw
void Activator::insertObjectRendering (const MWWorld::Ptr& ptr, MWRender::RenderingInterface& renderingInterface) const
{
    ESMS::LiveCellRef<ESM::Activator, MWWorld::RefData> *ref =
        ptr.get<ESM::Activator>();

    assert (ref->base != NULL);
    const std::string &model = ref->base->model;

    if (!model.empty())
    {
        MWRender::Objects& objects = renderingInterface.getObjects();
        objects.insertBegin(ptr, ptr.getRefData().isEnabled(), false);
        objects.insertMesh(ptr, "meshes\\" + model);
    }
}
コード例 #10
0
ファイル: light.cpp プロジェクト: 4DA/openmw
    void Light::insertObjectRendering (const MWWorld::Ptr& ptr, MWRender::RenderingInterface& renderingInterface) const
    {
        MWWorld::LiveCellRef<ESM::Light> *ref =
            ptr.get<ESM::Light>();
        assert (ref->mBase != NULL);

        const std::string &model = ref->mBase->mModel;

        MWRender::Objects& objects = renderingInterface.getObjects();
        objects.insertBegin(ptr, ptr.getRefData().isEnabled(), false);

        if (!model.empty())
            objects.insertMesh(ptr, "meshes\\" + model, true);
        else
            objects.insertLight(ptr);
    }
コード例 #11
0
ファイル: repair.cpp プロジェクト: ChairGraveyard/TES3MP
 void Repair::insertObjectRendering (const MWWorld::Ptr& ptr, const std::string& model, MWRender::RenderingInterface& renderingInterface) const
 {
     if (!model.empty()) {
         renderingInterface.getObjects().insertModel(ptr, model);
     }
 }
コード例 #12
0
ファイル: creature.cpp プロジェクト: Horrowind/openmw
 void Creature::insertObjectRendering (const MWWorld::Ptr& ptr, MWRender::RenderingInterface& renderingInterface) const
 {
     MWRender::Actors& actors = renderingInterface.getActors();
     actors.insertCreature(ptr);
 }
コード例 #13
0
ファイル: npc.cpp プロジェクト: emoose/openmw
 void Npc::insertObjectRendering (const MWWorld::Ptr& ptr, MWRender::RenderingInterface& renderingInterface) const
 {
     renderingInterface.getActors().insertNPC(ptr, getInventoryStore(ptr));
 }