2010-08-03 13:24:44 +00:00
|
|
|
|
|
|
|
#include "light.hpp"
|
|
|
|
|
|
|
|
#include <components/esm/loadligh.hpp>
|
|
|
|
|
2012-04-23 13:27:03 +00:00
|
|
|
#include "../mwbase/environment.hpp"
|
2012-07-03 10:30:50 +00:00
|
|
|
#include "../mwbase/world.hpp"
|
2012-08-09 12:33:21 +00:00
|
|
|
#include "../mwbase/soundmanager.hpp"
|
2012-08-12 16:11:09 +00:00
|
|
|
#include "../mwbase/windowmanager.hpp"
|
2012-04-23 13:27:03 +00:00
|
|
|
|
2010-08-03 15:11:41 +00:00
|
|
|
#include "../mwworld/ptr.hpp"
|
2010-08-07 18:25:17 +00:00
|
|
|
#include "../mwworld/actiontake.hpp"
|
2012-06-04 19:48:20 +00:00
|
|
|
#include "../mwworld/actionequip.hpp"
|
2010-08-07 18:25:17 +00:00
|
|
|
#include "../mwworld/nullaction.hpp"
|
2012-11-17 17:17:08 +00:00
|
|
|
#include "../mwworld/failedaction.hpp"
|
2012-03-13 14:35:06 +00:00
|
|
|
#include "../mwworld/inventorystore.hpp"
|
2012-06-29 14:48:50 +00:00
|
|
|
#include "../mwworld/cellstore.hpp"
|
2012-07-03 11:15:20 +00:00
|
|
|
#include "../mwworld/physicssystem.hpp"
|
2012-04-16 20:58:16 +00:00
|
|
|
|
|
|
|
#include "../mwgui/tooltips.hpp"
|
2010-08-03 15:11:41 +00:00
|
|
|
|
2012-01-27 14:11:02 +00:00
|
|
|
#include "../mwrender/objects.hpp"
|
2012-07-03 11:15:20 +00:00
|
|
|
#include "../mwrender/renderinginterface.hpp"
|
2012-01-27 14:11:02 +00:00
|
|
|
|
2010-08-03 13:24:44 +00:00
|
|
|
namespace MWClass
|
|
|
|
{
|
2011-11-12 04:01:12 +00:00
|
|
|
void Light::insertObjectRendering (const MWWorld::Ptr& ptr, MWRender::RenderingInterface& renderingInterface) const
|
2010-08-14 08:02:54 +00:00
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Light> *ref =
|
2010-08-14 08:02:54 +00:00
|
|
|
ptr.get<ESM::Light>();
|
2012-11-05 12:07:59 +00:00
|
|
|
assert (ref->mBase != NULL);
|
2012-07-24 16:22:11 +00:00
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
const std::string &model = ref->mBase->mModel;
|
2012-01-27 14:11:02 +00:00
|
|
|
|
2012-02-04 09:48:15 +00:00
|
|
|
MWRender::Objects& objects = renderingInterface.getObjects();
|
|
|
|
objects.insertBegin(ptr, ptr.getRefData().isEnabled(), false);
|
|
|
|
|
2010-08-14 08:02:54 +00:00
|
|
|
if (!model.empty())
|
2013-02-23 03:06:05 +00:00
|
|
|
objects.insertMesh(ptr, "meshes\\" + model, true);
|
2013-02-23 08:17:12 +00:00
|
|
|
else
|
2013-02-24 22:43:20 +00:00
|
|
|
objects.insertLight(ptr);
|
2011-11-12 04:01:12 +00:00
|
|
|
}
|
|
|
|
|
2012-04-23 13:27:03 +00:00
|
|
|
void Light::insertObject(const MWWorld::Ptr& ptr, MWWorld::PhysicsSystem& physics) const
|
2011-11-12 04:01:12 +00:00
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Light> *ref =
|
2011-11-12 04:01:12 +00:00
|
|
|
ptr.get<ESM::Light>();
|
2012-11-05 12:07:59 +00:00
|
|
|
assert (ref->mBase != NULL);
|
2012-07-24 16:22:11 +00:00
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
const std::string &model = ref->mBase->mModel;
|
2012-02-04 09:48:15 +00:00
|
|
|
|
2012-11-05 18:40:02 +00:00
|
|
|
if(!model.empty())
|
2013-03-14 02:04:02 +00:00
|
|
|
physics.addObject(ptr,ref->mBase->mData.mFlags & ESM::Light::Carry);
|
2012-11-19 20:21:00 +00:00
|
|
|
|
2012-11-07 18:34:28 +00:00
|
|
|
if (!ref->mBase->mSound.empty())
|
2013-07-19 02:01:13 +00:00
|
|
|
MWBase::Environment::get().getSoundManager()->playSound3D(ptr, ref->mBase->mSound, 1.0, 1.0,
|
|
|
|
MWBase::SoundManager::Play_TypeSfx,
|
|
|
|
MWBase::SoundManager::Play_Loop);
|
2012-07-24 16:22:11 +00:00
|
|
|
}
|
2010-08-14 09:39:32 +00:00
|
|
|
|
2012-07-24 16:22:11 +00:00
|
|
|
std::string Light::getModel(const MWWorld::Ptr &ptr) const
|
|
|
|
{
|
|
|
|
MWWorld::LiveCellRef<ESM::Light> *ref =
|
|
|
|
ptr.get<ESM::Light>();
|
2012-11-05 12:07:59 +00:00
|
|
|
assert (ref->mBase != NULL);
|
2012-07-24 16:22:11 +00:00
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
const std::string &model = ref->mBase->mModel;
|
2012-07-24 16:22:11 +00:00
|
|
|
if (!model.empty()) {
|
|
|
|
return "meshes\\" + model;
|
2010-08-14 09:39:32 +00:00
|
|
|
}
|
2012-07-24 16:22:11 +00:00
|
|
|
return "";
|
2010-08-14 09:39:32 +00:00
|
|
|
}
|
|
|
|
|
2010-08-03 15:11:41 +00:00
|
|
|
std::string Light::getName (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Light> *ref =
|
2010-08-03 15:11:41 +00:00
|
|
|
ptr.get<ESM::Light>();
|
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
if (ref->mBase->mModel.empty())
|
2010-08-03 15:11:41 +00:00
|
|
|
return "";
|
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
return ref->mBase->mName;
|
2010-08-03 15:11:41 +00:00
|
|
|
}
|
|
|
|
|
2010-08-07 18:25:17 +00:00
|
|
|
boost::shared_ptr<MWWorld::Action> Light::activate (const MWWorld::Ptr& ptr,
|
2012-04-23 13:27:03 +00:00
|
|
|
const MWWorld::Ptr& actor) const
|
2010-08-07 18:25:17 +00:00
|
|
|
{
|
2013-02-17 14:56:22 +00:00
|
|
|
if (!MWBase::Environment::get().getWindowManager()->isAllowed(MWGui::GW_Inventory))
|
|
|
|
return boost::shared_ptr<MWWorld::Action> (new MWWorld::NullAction ());
|
|
|
|
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Light> *ref =
|
2010-08-07 18:25:17 +00:00
|
|
|
ptr.get<ESM::Light>();
|
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
if (!(ref->mBase->mData.mFlags & ESM::Light::Carry))
|
2012-11-19 20:04:49 +00:00
|
|
|
return boost::shared_ptr<MWWorld::Action> (new MWWorld::FailedAction);
|
2010-08-07 18:25:17 +00:00
|
|
|
|
2012-08-19 23:11:50 +00:00
|
|
|
boost::shared_ptr<MWWorld::Action> action(new MWWorld::ActionTake (ptr));
|
2012-03-13 18:01:55 +00:00
|
|
|
|
2012-08-19 23:11:50 +00:00
|
|
|
action->setSound(getUpSoundId(ptr));
|
|
|
|
|
|
|
|
return action;
|
2010-08-07 18:25:17 +00:00
|
|
|
}
|
|
|
|
|
2010-08-05 13:40:03 +00:00
|
|
|
std::string Light::getScript (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Light> *ref =
|
2010-08-05 13:40:03 +00:00
|
|
|
ptr.get<ESM::Light>();
|
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
return ref->mBase->mScript;
|
2010-08-05 13:40:03 +00:00
|
|
|
}
|
|
|
|
|
2012-03-13 14:35:06 +00:00
|
|
|
std::pair<std::vector<int>, bool> Light::getEquipmentSlots (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Light> *ref =
|
2012-03-13 14:35:06 +00:00
|
|
|
ptr.get<ESM::Light>();
|
|
|
|
|
|
|
|
std::vector<int> slots;
|
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
if (ref->mBase->mData.mFlags & ESM::Light::Carry)
|
2012-03-13 14:35:06 +00:00
|
|
|
slots.push_back (int (MWWorld::InventoryStore::Slot_CarriedLeft));
|
|
|
|
|
|
|
|
return std::make_pair (slots, false);
|
|
|
|
}
|
|
|
|
|
2012-04-07 17:53:49 +00:00
|
|
|
int Light::getValue (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Light> *ref =
|
2012-04-07 17:53:49 +00:00
|
|
|
ptr.get<ESM::Light>();
|
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
return ref->mBase->mData.mValue;
|
2012-04-07 17:53:49 +00:00
|
|
|
}
|
|
|
|
|
2010-08-03 13:24:44 +00:00
|
|
|
void Light::registerSelf()
|
|
|
|
{
|
|
|
|
boost::shared_ptr<Class> instance (new Light);
|
|
|
|
|
|
|
|
registerClass (typeid (ESM::Light).name(), instance);
|
|
|
|
}
|
2012-03-13 18:01:55 +00:00
|
|
|
|
2012-04-23 13:27:03 +00:00
|
|
|
std::string Light::getUpSoundId (const MWWorld::Ptr& ptr) const
|
2012-03-13 18:01:55 +00:00
|
|
|
{
|
|
|
|
return std::string("Item Misc Up");
|
|
|
|
}
|
|
|
|
|
2012-04-23 13:27:03 +00:00
|
|
|
std::string Light::getDownSoundId (const MWWorld::Ptr& ptr) const
|
2012-03-13 18:01:55 +00:00
|
|
|
{
|
|
|
|
return std::string("Item Misc Down");
|
|
|
|
}
|
2012-04-15 15:52:39 +00:00
|
|
|
|
2012-05-11 08:40:40 +00:00
|
|
|
|
2012-04-15 15:52:39 +00:00
|
|
|
std::string Light::getInventoryIcon (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Light> *ref =
|
2012-04-15 15:52:39 +00:00
|
|
|
ptr.get<ESM::Light>();
|
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
return ref->mBase->mIcon;
|
2012-04-15 15:52:39 +00:00
|
|
|
}
|
2012-05-11 08:40:40 +00:00
|
|
|
|
2012-04-16 20:58:16 +00:00
|
|
|
bool Light::hasToolTip (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Light> *ref =
|
2012-04-16 20:58:16 +00:00
|
|
|
ptr.get<ESM::Light>();
|
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
return (ref->mBase->mName != "");
|
2012-04-16 20:58:16 +00:00
|
|
|
}
|
|
|
|
|
2012-04-24 00:02:03 +00:00
|
|
|
MWGui::ToolTipInfo Light::getToolTipInfo (const MWWorld::Ptr& ptr) const
|
2012-04-16 20:58:16 +00:00
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Light> *ref =
|
2012-04-16 20:58:16 +00:00
|
|
|
ptr.get<ESM::Light>();
|
|
|
|
|
|
|
|
MWGui::ToolTipInfo info;
|
2012-11-05 12:07:59 +00:00
|
|
|
info.caption = ref->mBase->mName + MWGui::ToolTips::getCountString(ptr.getRefData().getCount());
|
|
|
|
info.icon = ref->mBase->mIcon;
|
2012-04-16 20:58:16 +00:00
|
|
|
|
|
|
|
std::string text;
|
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
text += "\n#{sWeight}: " + MWGui::ToolTips::toString(ref->mBase->mData.mWeight);
|
|
|
|
text += MWGui::ToolTips::getValueString(ref->mBase->mData.mValue, "#{sValue}");
|
2012-04-16 20:58:16 +00:00
|
|
|
|
2012-04-24 00:02:03 +00:00
|
|
|
if (MWBase::Environment::get().getWindowManager()->getFullHelp()) {
|
2012-11-05 12:07:59 +00:00
|
|
|
text += MWGui::ToolTips::getMiscString(ref->mRef.mOwner, "Owner");
|
|
|
|
text += MWGui::ToolTips::getMiscString(ref->mBase->mScript, "Script");
|
2012-04-16 20:58:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
info.text = text;
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
2012-06-04 19:48:20 +00:00
|
|
|
|
|
|
|
boost::shared_ptr<MWWorld::Action> Light::use (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-08-19 23:11:50 +00:00
|
|
|
boost::shared_ptr<MWWorld::Action> action(new MWWorld::ActionEquip(ptr));
|
|
|
|
|
|
|
|
action->setSound(getUpSoundId(ptr));
|
2012-06-04 19:48:20 +00:00
|
|
|
|
2012-08-19 23:11:50 +00:00
|
|
|
return action;
|
2012-06-04 19:48:20 +00:00
|
|
|
}
|
2012-07-25 13:18:17 +00:00
|
|
|
|
|
|
|
MWWorld::Ptr
|
2012-07-26 12:14:11 +00:00
|
|
|
Light::copyToCellImpl(const MWWorld::Ptr &ptr, MWWorld::CellStore &cell) const
|
2012-07-25 13:18:17 +00:00
|
|
|
{
|
|
|
|
MWWorld::LiveCellRef<ESM::Light> *ref =
|
|
|
|
ptr.get<ESM::Light>();
|
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
return MWWorld::Ptr(&cell.mLights.insert(*ref), &cell);
|
2012-07-25 13:18:17 +00:00
|
|
|
}
|
2013-04-07 19:38:53 +00:00
|
|
|
|
|
|
|
bool Light::canSell (const MWWorld::Ptr& item, int npcServices) const
|
|
|
|
{
|
|
|
|
return npcServices & ESM::NPC::Lights;
|
|
|
|
}
|
2013-05-11 16:38:27 +00:00
|
|
|
|
|
|
|
float Light::getWeight(const MWWorld::Ptr &ptr) const
|
|
|
|
{
|
|
|
|
MWWorld::LiveCellRef<ESM::Light> *ref =
|
|
|
|
ptr.get<ESM::Light>();
|
|
|
|
return ref->mBase->mData.mWeight;
|
|
|
|
}
|
2013-07-15 21:21:01 +00:00
|
|
|
|
|
|
|
std::pair<int, std::string> Light::canBeEquipped(const MWWorld::Ptr &ptr, const MWWorld::Ptr &npc) const
|
|
|
|
{
|
|
|
|
MWWorld::InventoryStore& invStore = MWWorld::Class::get(npc).getInventoryStore(npc);
|
|
|
|
MWWorld::ContainerStoreIterator weapon = invStore.getSlot(MWWorld::InventoryStore::Slot_CarriedRight);
|
|
|
|
|
|
|
|
if(weapon == invStore.end())
|
|
|
|
return std::make_pair(1,"");
|
|
|
|
|
|
|
|
/// \todo the 2h check is repeated many times; put it in a function
|
|
|
|
if(weapon->getTypeName() == typeid(ESM::Weapon).name() &&
|
|
|
|
(weapon->get<ESM::Weapon>()->mBase->mData.mType == ESM::Weapon::LongBladeTwoHand ||
|
|
|
|
weapon->get<ESM::Weapon>()->mBase->mData.mType == ESM::Weapon::BluntTwoClose ||
|
|
|
|
weapon->get<ESM::Weapon>()->mBase->mData.mType == ESM::Weapon::BluntTwoWide ||
|
|
|
|
weapon->get<ESM::Weapon>()->mBase->mData.mType == ESM::Weapon::SpearTwoWide ||
|
|
|
|
weapon->get<ESM::Weapon>()->mBase->mData.mType == ESM::Weapon::AxeTwoHand ||
|
|
|
|
weapon->get<ESM::Weapon>()->mBase->mData.mType == ESM::Weapon::MarksmanBow ||
|
|
|
|
weapon->get<ESM::Weapon>()->mBase->mData.mType == ESM::Weapon::MarksmanCrossbow))
|
|
|
|
{
|
|
|
|
return std::make_pair(3,"");
|
|
|
|
}
|
|
|
|
return std::make_pair(1,"");
|
|
|
|
}
|
2010-08-03 13:24:44 +00:00
|
|
|
}
|