2008-09-09 18:06:28 +00:00
|
|
|
// Cyphesis Online RPG Server and AI Engine
|
|
|
|
|
// Copyright (C) 2008 Alistair Riddoch
|
|
|
|
|
//
|
|
|
|
|
// 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef RULESETS_TRANSIENT_PROPERTY_H
|
|
|
|
|
#define RULESETS_TRANSIENT_PROPERTY_H
|
|
|
|
|
|
2008-09-27 16:00:21 +00:00
|
|
|
#include "common/Property.h"
|
2008-09-09 18:06:28 +00:00
|
|
|
|
|
|
|
|
/// \brief Class to handle Entity which are ephemeral and get auto deleted
|
|
|
|
|
/// \ingroup PropertyClasses
|
2008-09-27 16:00:21 +00:00
|
|
|
class TransientProperty : public Property<double> {
|
2008-09-09 18:06:28 +00:00
|
|
|
public:
|
2018-04-27 20:55:02 +02:00
|
|
|
static constexpr const char* property_name = "transient";
|
2013-01-08 00:19:23 +00:00
|
|
|
|
2018-04-27 20:55:02 +02:00
|
|
|
TransientProperty() = default;
|
2008-09-09 18:06:28 +00:00
|
|
|
|
2018-04-27 20:55:02 +02:00
|
|
|
~TransientProperty() override = default;
|
2008-09-10 11:08:30 +00:00
|
|
|
|
2018-04-27 20:55:02 +02:00
|
|
|
TransientProperty * copy() const override;
|
|
|
|
|
|
|
|
|
|
void install(LocatedEntity *, const std::string &) override;
|
|
|
|
|
|
|
|
|
|
void apply(LocatedEntity *) override;
|
2008-09-09 18:06:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // RULESETS_TRANSIENT_PROPERTY_H
|