2010-08-03 15:24:44 +02:00
|
|
|
#include "light.hpp"
|
|
|
|
|
|
|
|
#include <components/esm/loadligh.hpp>
|
2015-01-19 10:34:49 +01:00
|
|
|
#include <components/esm/objectstate.hpp>
|
2015-09-16 22:41:42 +02:00
|
|
|
#include <components/settings/settings.hpp>
|
2010-08-03 15:24:44 +02:00
|
|
|
|
2012-04-23 15:27:03 +02:00
|
|
|
#include "../mwbase/environment.hpp"
|
2012-08-09 14:33:21 +02:00
|
|
|
#include "../mwbase/soundmanager.hpp"
|
2012-08-12 18:11:09 +02:00
|
|
|
#include "../mwbase/windowmanager.hpp"
|
2012-04-23 15:27:03 +02:00
|
|
|
|
2010-08-03 17:11:41 +02:00
|
|
|
#include "../mwworld/ptr.hpp"
|
2012-06-04 21:48:20 +02:00
|
|
|
#include "../mwworld/actionequip.hpp"
|
2010-08-07 20:25:17 +02:00
|
|
|
#include "../mwworld/nullaction.hpp"
|
2012-11-17 18:17:08 +01:00
|
|
|
#include "../mwworld/failedaction.hpp"
|
2012-03-13 15:35:06 +01:00
|
|
|
#include "../mwworld/inventorystore.hpp"
|
2012-06-29 16:48:50 +02:00
|
|
|
#include "../mwworld/cellstore.hpp"
|
2015-05-10 01:09:00 +02:00
|
|
|
#include "../mwphysics/physicssystem.hpp"
|
2012-04-16 22:58:16 +02:00
|
|
|
|
|
|
|
#include "../mwgui/tooltips.hpp"
|
2010-08-03 17:11:41 +02:00
|
|
|
|
2012-01-27 15:11:02 +01:00
|
|
|
#include "../mwrender/objects.hpp"
|
2012-07-03 13:15:20 +02:00
|
|
|
#include "../mwrender/renderinginterface.hpp"
|
2012-01-27 15:11:02 +01:00
|
|
|
|
2010-08-03 15:24:44 +02:00
|
|
|
namespace MWClass
|
|
|
|
{
|
2014-07-18 09:56:58 +02:00
|
|
|
|
2015-01-12 11:29:56 +01:00
|
|
|
void Light::insertObjectRendering (const MWWorld::Ptr& ptr, const std::string& model, MWRender::RenderingInterface& renderingInterface) const
|
2010-08-14 10:02:54 +02:00
|
|
|
{
|
2014-08-11 20:04:56 +02:00
|
|
|
MWWorld::LiveCellRef<ESM::Light> *ref =
|
|
|
|
ptr.get<ESM::Light>();
|
|
|
|
|
2014-05-29 16:44:50 +02:00
|
|
|
// Insert even if model is empty, so that the light is added
|
2015-04-12 15:34:50 +02:00
|
|
|
renderingInterface.getObjects().insertModel(ptr, model, true, !(ref->mBase->mData.mFlags & ESM::Light::OffDefault));
|
2011-11-11 23:01:12 -05:00
|
|
|
}
|
|
|
|
|
2015-05-10 01:09:00 +02:00
|
|
|
void Light::insertObject(const MWWorld::Ptr& ptr, const std::string& model, MWPhysics::PhysicsSystem& physics) const
|
2011-11-11 23:01:12 -05:00
|
|
|
{
|
2012-06-29 18:54:23 +02:00
|
|
|
MWWorld::LiveCellRef<ESM::Light> *ref =
|
2011-11-11 23:01:12 -05:00
|
|
|
ptr.get<ESM::Light>();
|
2018-10-09 10:21:12 +04:00
|
|
|
assert (ref->mBase != nullptr);
|
2012-07-24 20:22:11 +04:00
|
|
|
|
2015-05-12 03:02:15 +02:00
|
|
|
// TODO: add option somewhere to enable collision for placeable objects
|
2015-05-12 16:50:31 +02:00
|
|
|
if (!model.empty() && (ref->mBase->mData.mFlags & ESM::Light::Carry) == 0)
|
2015-05-12 03:02:15 +02:00
|
|
|
physics.addObject(ptr, model);
|
2012-11-19 21:21:00 +01:00
|
|
|
|
2014-09-08 15:30:43 +02:00
|
|
|
if (!ref->mBase->mSound.empty() && !(ref->mBase->mData.mFlags & ESM::Light::OffDefault))
|
2013-07-18 19:01:13 -07:00
|
|
|
MWBase::Environment::get().getSoundManager()->playSound3D(ptr, ref->mBase->mSound, 1.0, 1.0,
|
2017-09-15 01:03:41 -07:00
|
|
|
MWSound::Type::Sfx,
|
|
|
|
MWSound::PlayMode::Loop);
|
2017-02-20 19:04:02 +01:00
|
|
|
}
|
2014-12-22 18:50:24 +01:00
|
|
|
|
2017-02-20 19:04:02 +01:00
|
|
|
bool Light::useAnim() const
|
|
|
|
{
|
|
|
|
return true;
|
2012-07-24 20:22:11 +04:00
|
|
|
}
|
2010-08-14 11:39:32 +02:00
|
|
|
|
2015-12-18 15:51:05 +01:00
|
|
|
std::string Light::getModel(const MWWorld::ConstPtr &ptr) const
|
2012-07-24 20:22:11 +04:00
|
|
|
{
|
2015-12-18 15:51:05 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Light> *ref = ptr.get<ESM::Light>();
|
2012-07-24 20:22:11 +04:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
const std::string &model = ref->mBase->mModel;
|
2012-07-24 20:22:11 +04:00
|
|
|
if (!model.empty()) {
|
|
|
|
return "meshes\\" + model;
|
2010-08-14 11:39:32 +02:00
|
|
|
}
|
2012-07-24 20:22:11 +04:00
|
|
|
return "";
|
2010-08-14 11:39:32 +02:00
|
|
|
}
|
|
|
|
|
2015-12-18 15:27:06 +01:00
|
|
|
std::string Light::getName (const MWWorld::ConstPtr& ptr) const
|
2010-08-03 17:11:41 +02:00
|
|
|
{
|
2015-12-18 15:27:06 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Light> *ref = ptr.get<ESM::Light>();
|
2010-08-03 17:11:41 +02:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
if (ref->mBase->mModel.empty())
|
2019-09-11 00:06:50 +03:00
|
|
|
return std::string();
|
2010-08-03 17:11:41 +02:00
|
|
|
|
2019-09-11 00:06:50 +03:00
|
|
|
const std::string& name = ref->mBase->mName;
|
|
|
|
return !name.empty() ? name : ref->mBase->mId;
|
2010-08-03 17:11:41 +02:00
|
|
|
}
|
|
|
|
|
2017-05-05 21:21:11 +02:00
|
|
|
std::shared_ptr<MWWorld::Action> Light::activate (const MWWorld::Ptr& ptr,
|
2012-04-23 15:27:03 +02:00
|
|
|
const MWWorld::Ptr& actor) const
|
2010-08-07 20:25:17 +02:00
|
|
|
{
|
2013-08-08 22:34:53 -07:00
|
|
|
if(!MWBase::Environment::get().getWindowManager()->isAllowed(MWGui::GW_Inventory))
|
2017-05-05 21:21:11 +02:00
|
|
|
return std::shared_ptr<MWWorld::Action>(new MWWorld::NullAction());
|
2013-02-17 15:56:22 +01:00
|
|
|
|
2013-08-08 22:34:53 -07:00
|
|
|
MWWorld::LiveCellRef<ESM::Light> *ref = ptr.get<ESM::Light>();
|
|
|
|
if(!(ref->mBase->mData.mFlags&ESM::Light::Carry))
|
2017-05-05 21:21:11 +02:00
|
|
|
return std::shared_ptr<MWWorld::Action>(new MWWorld::FailedAction());
|
2012-08-19 20:11:50 -03:00
|
|
|
|
2013-08-08 22:34:53 -07:00
|
|
|
return defaultItemActivate(ptr, actor);
|
2010-08-07 20:25:17 +02:00
|
|
|
}
|
|
|
|
|
2015-12-18 00:12:03 +01:00
|
|
|
std::string Light::getScript (const MWWorld::ConstPtr& ptr) const
|
2010-08-05 15:40:03 +02:00
|
|
|
{
|
2015-12-18 00:12:03 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Light> *ref = ptr.get<ESM::Light>();
|
2010-08-05 15:40:03 +02:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
return ref->mBase->mScript;
|
2010-08-05 15:40:03 +02:00
|
|
|
}
|
|
|
|
|
2015-12-18 16:06:31 +01:00
|
|
|
std::pair<std::vector<int>, bool> Light::getEquipmentSlots (const MWWorld::ConstPtr& ptr) const
|
2012-03-13 15:35:06 +01:00
|
|
|
{
|
2015-12-18 16:06:31 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Light> *ref = ptr.get<ESM::Light>();
|
2012-03-13 15:35:06 +01:00
|
|
|
|
2013-11-12 23:23:19 +01:00
|
|
|
std::vector<int> slots_;
|
2012-03-13 15:35:06 +01:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
if (ref->mBase->mData.mFlags & ESM::Light::Carry)
|
2013-11-12 23:23:19 +01:00
|
|
|
slots_.push_back (int (MWWorld::InventoryStore::Slot_CarriedLeft));
|
2012-03-13 15:35:06 +01:00
|
|
|
|
2013-11-12 23:23:19 +01:00
|
|
|
return std::make_pair (slots_, false);
|
2012-03-13 15:35:06 +01:00
|
|
|
}
|
|
|
|
|
2015-12-18 15:27:06 +01:00
|
|
|
int Light::getValue (const MWWorld::ConstPtr& ptr) const
|
2012-04-07 19:53:49 +02:00
|
|
|
{
|
2015-12-18 15:27:06 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Light> *ref = ptr.get<ESM::Light>();
|
2012-04-07 19:53:49 +02:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
return ref->mBase->mData.mValue;
|
2012-04-07 19:53:49 +02:00
|
|
|
}
|
|
|
|
|
2010-08-03 15:24:44 +02:00
|
|
|
void Light::registerSelf()
|
|
|
|
{
|
2017-05-05 21:21:11 +02:00
|
|
|
std::shared_ptr<Class> instance (new Light);
|
2010-08-03 15:24:44 +02:00
|
|
|
|
|
|
|
registerClass (typeid (ESM::Light).name(), instance);
|
|
|
|
}
|
2012-03-13 20:01:55 +02:00
|
|
|
|
2015-12-18 16:09:08 +01:00
|
|
|
std::string Light::getUpSoundId (const MWWorld::ConstPtr& ptr) const
|
2012-03-13 20:01:55 +02:00
|
|
|
{
|
|
|
|
return std::string("Item Misc Up");
|
|
|
|
}
|
|
|
|
|
2015-12-18 16:09:08 +01:00
|
|
|
std::string Light::getDownSoundId (const MWWorld::ConstPtr& ptr) const
|
2012-03-13 20:01:55 +02:00
|
|
|
{
|
|
|
|
return std::string("Item Misc Down");
|
|
|
|
}
|
2012-04-15 17:52:39 +02:00
|
|
|
|
2012-05-11 10:40:40 +02:00
|
|
|
|
2015-12-18 15:53:47 +01:00
|
|
|
std::string Light::getInventoryIcon (const MWWorld::ConstPtr& ptr) const
|
2012-04-15 17:52:39 +02:00
|
|
|
{
|
2015-12-18 15:53:47 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Light> *ref = ptr.get<ESM::Light>();
|
2012-04-15 17:52:39 +02:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
return ref->mBase->mIcon;
|
2012-04-15 17:52:39 +02:00
|
|
|
}
|
2012-05-11 10:40:40 +02:00
|
|
|
|
2015-12-19 16:13:00 +01:00
|
|
|
bool Light::hasToolTip (const MWWorld::ConstPtr& ptr) const
|
2012-04-16 22:58:16 +02:00
|
|
|
{
|
2019-09-10 21:56:10 +03:00
|
|
|
return showsInInventory(ptr);
|
2012-04-16 22:58:16 +02:00
|
|
|
}
|
|
|
|
|
2015-12-19 16:29:07 +01:00
|
|
|
MWGui::ToolTipInfo Light::getToolTipInfo (const MWWorld::ConstPtr& ptr, int count) const
|
2012-04-16 22:58:16 +02:00
|
|
|
{
|
2015-12-18 15:27:06 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Light> *ref = ptr.get<ESM::Light>();
|
2012-04-16 22:58:16 +02:00
|
|
|
|
|
|
|
MWGui::ToolTipInfo info;
|
2019-09-10 21:56:10 +03:00
|
|
|
info.caption = MyGUI::TextIterator::toTagsString(getName(ptr)) + MWGui::ToolTips::getCountString(count);
|
2012-11-05 16:07:59 +04:00
|
|
|
info.icon = ref->mBase->mIcon;
|
2012-04-16 22:58:16 +02:00
|
|
|
|
|
|
|
std::string text;
|
|
|
|
|
2019-07-31 15:41:32 +03:00
|
|
|
// Don't show duration for infinite light sources.
|
|
|
|
if (Settings::Manager::getBool("show effect duration","Game") && ptr.getClass().getRemainingUsageTime(ptr) != -1)
|
|
|
|
text += MWGui::ToolTips::getDurationString(ptr.getClass().getRemainingUsageTime(ptr), "\n#{sDuration}");
|
2016-08-14 20:29:20 +09:00
|
|
|
|
|
|
|
text += MWGui::ToolTips::getWeightString(ref->mBase->mData.mWeight, "#{sWeight}");
|
|
|
|
text += MWGui::ToolTips::getValueString(ref->mBase->mData.mValue, "#{sValue}");
|
2012-04-16 22:58:16 +02:00
|
|
|
|
2012-04-24 02:02:03 +02:00
|
|
|
if (MWBase::Environment::get().getWindowManager()->getFullHelp()) {
|
2014-07-22 20:03:35 +02:00
|
|
|
text += MWGui::ToolTips::getCellRefString(ptr.getCellRef());
|
2012-11-05 16:07:59 +04:00
|
|
|
text += MWGui::ToolTips::getMiscString(ref->mBase->mScript, "Script");
|
2012-04-16 22:58:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
info.text = text;
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
2012-06-04 21:48:20 +02:00
|
|
|
|
2016-09-24 18:01:31 +02:00
|
|
|
bool Light::showsInInventory (const MWWorld::ConstPtr& ptr) const
|
|
|
|
{
|
|
|
|
const ESM::Light* light = ptr.get<ESM::Light>()->mBase;
|
|
|
|
|
|
|
|
if (!(light->mData.mFlags & ESM::Light::Carry))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return Class::showsInInventory(ptr);
|
|
|
|
}
|
|
|
|
|
2018-07-09 19:31:40 +04:00
|
|
|
std::shared_ptr<MWWorld::Action> Light::use (const MWWorld::Ptr& ptr, bool force) const
|
2012-06-04 21:48:20 +02:00
|
|
|
{
|
2018-07-09 19:31:40 +04:00
|
|
|
std::shared_ptr<MWWorld::Action> action(new MWWorld::ActionEquip(ptr, force));
|
2012-08-19 20:11:50 -03:00
|
|
|
|
|
|
|
action->setSound(getUpSoundId(ptr));
|
2012-06-04 21:48:20 +02:00
|
|
|
|
2012-08-19 20:11:50 -03:00
|
|
|
return action;
|
2012-06-04 21:48:20 +02:00
|
|
|
}
|
2012-07-25 17:18:17 +04:00
|
|
|
|
2013-10-15 15:23:42 -04:00
|
|
|
void Light::setRemainingUsageTime (const MWWorld::Ptr& ptr, float duration) const
|
|
|
|
{
|
2015-01-23 15:33:39 +01:00
|
|
|
ptr.getCellRef().setChargeFloat(duration);
|
2013-10-15 15:23:42 -04:00
|
|
|
}
|
|
|
|
|
2015-12-18 15:27:06 +01:00
|
|
|
float Light::getRemainingUsageTime (const MWWorld::ConstPtr& ptr) const
|
2013-10-15 15:23:42 -04:00
|
|
|
{
|
2015-12-18 15:27:06 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Light> *ref = ptr.get<ESM::Light>();
|
2015-01-23 15:33:39 +01:00
|
|
|
if (ptr.getCellRef().getCharge() == -1)
|
2015-03-08 13:07:29 +13:00
|
|
|
return static_cast<float>(ref->mBase->mData.mTime);
|
2015-01-23 15:33:39 +01:00
|
|
|
else
|
|
|
|
return ptr.getCellRef().getChargeFloat();
|
2013-10-15 15:23:42 -04:00
|
|
|
}
|
|
|
|
|
2015-12-18 16:24:24 +01:00
|
|
|
MWWorld::Ptr Light::copyToCellImpl(const MWWorld::ConstPtr &ptr, MWWorld::CellStore &cell) const
|
2012-07-25 17:18:17 +04:00
|
|
|
{
|
2015-12-18 16:24:24 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Light> *ref = ptr.get<ESM::Light>();
|
2012-07-25 17:18:17 +04:00
|
|
|
|
2015-11-14 17:12:05 +01:00
|
|
|
return MWWorld::Ptr(cell.insert(ref), &cell);
|
2012-07-25 17:18:17 +04:00
|
|
|
}
|
2013-04-07 21:38:53 +02:00
|
|
|
|
2015-12-18 15:58:23 +01:00
|
|
|
bool Light::canSell (const MWWorld::ConstPtr& item, int npcServices) const
|
2013-04-07 21:38:53 +02:00
|
|
|
{
|
2015-03-06 23:19:57 +13:00
|
|
|
return (npcServices & ESM::NPC::Lights) != 0;
|
2013-04-07 21:38:53 +02:00
|
|
|
}
|
2013-05-11 18:38:27 +02:00
|
|
|
|
2015-12-18 16:00:50 +01:00
|
|
|
float Light::getWeight(const MWWorld::ConstPtr &ptr) const
|
2013-05-11 18:38:27 +02:00
|
|
|
{
|
2015-12-18 16:00:50 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Light> *ref = ptr.get<ESM::Light>();
|
2013-05-11 18:38:27 +02:00
|
|
|
return ref->mBase->mData.mWeight;
|
|
|
|
}
|
2013-07-15 23:21:01 +02:00
|
|
|
|
2015-12-18 16:06:31 +01:00
|
|
|
std::pair<int, std::string> Light::canBeEquipped(const MWWorld::ConstPtr &ptr, const MWWorld::Ptr &npc) const
|
2013-07-15 23:21:01 +02:00
|
|
|
{
|
2015-12-18 16:06:31 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Light> *ref = ptr.get<ESM::Light>();
|
2015-10-05 11:53:12 +02:00
|
|
|
if (!(ref->mBase->mData.mFlags & ESM::Light::Carry))
|
|
|
|
return std::make_pair(0,"");
|
|
|
|
|
2013-07-15 23:21:01 +02:00
|
|
|
return std::make_pair(1,"");
|
|
|
|
}
|
2014-01-30 12:37:33 +01:00
|
|
|
|
2015-12-18 16:11:03 +01:00
|
|
|
std::string Light::getSound(const MWWorld::ConstPtr& ptr) const
|
2014-10-12 11:40:14 +02:00
|
|
|
{
|
|
|
|
return ptr.get<ESM::Light>()->mBase->mSound;
|
|
|
|
}
|
2010-08-03 15:24:44 +02:00
|
|
|
}
|