cyphesis/rulesets/Task.h
Al Riddoch 86f851b832 2006-05-08 Al Riddoch <alriddoch@zepler.org>
* rulesets/Py_BBox.cpp: Add method exposing boxSquareBoundingRadius
	  to python.

	* rulesets/Task.cpp, rulesets/Task.h: Add method to generate the
	  next tick for this task, using a given interval. Fix setting
	  progress and rate, so both can be zero.

	* rulesets/Py_Task.cpp: Expose nextTick() method to python.
	  Allow rate to be set as an integer from python, so it can be zero.

	* rulesets/mason/world/tasks/Combat.py: Use next_tick() for all
	  tick ops.

	* rulesets/mason/world/tasks/Logging.py,
	  rulesets/mason/world/tasks/Raise.py,
	  rulesets/mason/world/tasks/Ram.py,
	  rulesets/mason/world/tasks/Sharpen.py: Add range checks, and use
	  next_tick() to simplify tick op generation.
2006-05-08 13:49:27 +00:00

139 lines
4.2 KiB
C++

// Cyphesis Online RPG Server and AI Engine
// Copyright (C) 2004-2005 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_TASK_H
#define RULESETS_TASK_H
#include "common/types.h"
#include <string>
#include <cassert>
class Character;
/// \brief Interface class for handling tasks which take a short while to
/// complete
class Task {
private:
/// \brief Count of references held by entities involved in this task
int m_refCount;
protected:
/// \brief Serial number of the tick due to arrive next at this task.
int m_serialno;
/// \brief Flag to indicate if this task is obsolete and should be removed
bool m_obsolete;
/// \brief Progress towards task completion
float m_progress;
/// \brief Rate of progress towards task completion
float m_rate;
/// \brief Character performing the task
///
/// This doesn't handle the idea that there might be multiple actors
/// involved.
Character & m_character;
/// \brief Name of task presented to client
std::string m_name;
/// \brief Protected constructor to be called by classes which inherit
explicit Task(Character & chr);
private:
/// \brief Private and un-implemented, to make sure slicing is impossible
Task(const Task & t);
/// \brief Private and un-implemented, to make sure slicing is impossible
const Task & operator=(const Task &);
public:
virtual ~Task();
/// \brief Flag this task as obsolete
virtual void irrelevant();
/// \brief Handle the operation that instigates the task
///
/// @param op The operation to be processed
/// @param res The result of the operation is returned here.
virtual void initTask(const Operation & op, OpVector & res) = 0;
/// \brief Handle a tick operation to perform the task
///
/// A Task gets regular ticks which cause whatever actions this
/// Task involves to be returned.
/// @param op The operation to be processed
/// @param res The result of the operation is returned here.
virtual void TickOperation(const Operation & op, OpVector & res) = 0;
/// \brief Add a representation of this task to an entity
///
/// Adds a TASK attribute to the entity, which is a list containing
/// an atlas representation of this task.
virtual void addToEntity(const Atlas::Objects::Entity::RootEntity &);
/// \brief Create a new tick op for the next iteration of this task
Operation nextTick(double interval);
void incRef() {
++m_refCount;
}
void decRef() {
if (m_refCount <= 1) {
assert(m_refCount == 1);
delete this;
} else {
--m_refCount;
}
}
/// \brief Return the number of entities involved in this task
int count() const {
return m_refCount;
}
/// \brief Return the number of the next to arrive at this task
int serialno() const {
return m_serialno;
}
/// \brief Return a new tick serial number.
int newTick() {
return ++m_serialno;
}
/// \brief Accessor to determine if this Task is obsolete
const bool obsolete() { return m_obsolete; }
/// \brief Accessor for character that owns this Task.
Character & character() const { return m_character; }
/// \brief Accessor for name of this task
std::string & name() { return m_name; }
/// \brief Accessor for progress towards completion
float & progress() { return m_progress; }
/// \brief Accessor for rate of progress towards completion
float & rate() { return m_rate; }
};
#endif // RULESETS_TASK_H