mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
123 lines
3.6 KiB
C++
123 lines
3.6 KiB
C++
/*
|
|
Copyright (C) 2014 Erik Ogenvik
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "DomainProperty.h"
|
|
#include "PhysicalDomain.h"
|
|
#include "VoidDomain.h"
|
|
#include "LocatedEntity.h"
|
|
|
|
#include "common/Tick.h"
|
|
|
|
#include <Atlas/Objects/Anonymous.h>
|
|
|
|
PropertyInstanceState<Domain> DomainProperty::sInstanceState;
|
|
|
|
DomainProperty::DomainProperty()
|
|
{
|
|
}
|
|
|
|
DomainProperty::DomainProperty(const DomainProperty& rhs) :
|
|
Property(rhs)
|
|
{
|
|
}
|
|
|
|
void DomainProperty::install(LocatedEntity *entity, const std::string &name)
|
|
{
|
|
sInstanceState.addState(entity, nullptr);
|
|
|
|
entity->installDelegate(Atlas::Objects::Operation::TICK_NO, name);
|
|
}
|
|
|
|
void DomainProperty::remove(LocatedEntity * entity, const std::string &name)
|
|
{
|
|
sInstanceState.removeState(entity);
|
|
entity->setFlags(~entity_domain);
|
|
entity->removeDelegate(Atlas::Objects::Operation::TICK_NO, name);
|
|
}
|
|
|
|
void DomainProperty::apply(LocatedEntity * entity)
|
|
{
|
|
if (m_data != "") {
|
|
Domain* domain = sInstanceState.getState(entity);
|
|
if (!domain) {
|
|
if (m_data == "physical") {
|
|
domain = new PhysicalDomain(*entity);
|
|
sInstanceState.replaceState(entity, domain);
|
|
entity->setFlags(entity_domain);
|
|
float timeUntilNextTick = domain->tick(0);
|
|
if (timeUntilNextTick > 0) {
|
|
scheduleTick(*entity, timeUntilNextTick);
|
|
}
|
|
} else if (m_data == "void") {
|
|
domain = new VoidDomain(*entity);
|
|
sInstanceState.replaceState(entity, domain);
|
|
entity->setFlags(entity_domain);
|
|
}
|
|
}
|
|
} else {
|
|
sInstanceState.replaceState(entity, nullptr);
|
|
entity->setFlags(~entity_domain);
|
|
}
|
|
}
|
|
|
|
DomainProperty * DomainProperty::copy() const
|
|
{
|
|
return new DomainProperty(*this);
|
|
}
|
|
|
|
Domain* DomainProperty::getDomain(const LocatedEntity *entity) const
|
|
{
|
|
return sInstanceState.getState(entity);
|
|
}
|
|
|
|
void DomainProperty::scheduleTick(LocatedEntity& entity, float secondsFromNow)
|
|
{
|
|
Atlas::Objects::Entity::Anonymous tick_arg;
|
|
tick_arg->setName("domain");
|
|
Atlas::Objects::Operation::Tick tickOp;
|
|
tickOp->setTo(entity.getId());
|
|
tickOp->setFutureSeconds(secondsFromNow);
|
|
tickOp->setArgs1(tick_arg);
|
|
|
|
entity.sendWorld(tickOp);
|
|
}
|
|
|
|
HandlerResult DomainProperty::operation(LocatedEntity * e, const Operation & op, OpVector & res)
|
|
{
|
|
return tick_handler(e, op, res);
|
|
}
|
|
|
|
HandlerResult DomainProperty::tick_handler(LocatedEntity * entity, const Operation & op, OpVector & res)
|
|
{
|
|
if (!op->getArgs().empty() && op->getArgs().front()->getName() == "domain") {
|
|
Domain* domain = sInstanceState.getState(entity);
|
|
if (domain) {
|
|
float timeUntilNextTick = domain->tick(op->getFutureSeconds());
|
|
if (timeUntilNextTick > 0) {
|
|
scheduleTick(*entity, timeUntilNextTick);
|
|
}
|
|
}
|
|
return OPERATION_BLOCKED;
|
|
}
|
|
return OPERATION_IGNORED;
|
|
}
|
|
|