cyphesis/rulesets/Py_Task.cpp
Al Riddoch 1857b859a6 2006-04-27 Al Riddoch <alriddoch@zepler.org>
* 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 serial numbers to
	  tick ups.

	* rulesets/mason/world/tasks/Combat.py: Fix the attacker initiative
	  and detect if combat is obsolete if a character has been defeated.

	* rulesets/Task.h: Add an accessor to return an incremented serial
	  number for a new tick op.

	* rulesets/Py_Task.cpp: Add python wrapper for new tick accessor.

	* rulesets/Character.cpp: Add debug output to code enforcing
	  old task ticks.
2006-04-27 17:04:09 +00:00

164 lines
4.9 KiB
C++

// Cyphesis Online RPG Server and AI Engine
// Copyright (C) 2000 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
#include "Py_Task.h"
#include "Py_Thing.h"
#include "Task.h"
#include "Character.h"
static PyObject * Task_irrelevant(PyTask * self)
{
#ifndef NDEBUG
if (self->m_task == NULL) {
PyErr_SetString(PyExc_AssertionError, "NULL task in Task.irrelevant");
return NULL;
}
#endif // NDEBUG
self->m_task->irrelevant();
Py_INCREF(Py_None);
return Py_None;
}
static PyObject * Task_obsolete(PyTask * self)
{
#ifndef NDEBUG
if (self->m_task == NULL) {
PyErr_SetString(PyExc_AssertionError, "NULL task in Task.irrelevant");
return NULL;
}
#endif // NDEBUG
PyObject * ret = self->m_task->obsolete() ? Py_True : Py_False;
Py_INCREF(ret);
return ret;
}
static PyObject * Task_count(PyTask * self)
{
#ifndef NDEBUG
if (self->m_task == NULL) {
PyErr_SetString(PyExc_AssertionError, "NULL task in Task.irrelevant");
return NULL;
}
#endif // NDEBUG
return PyInt_FromLong(self->m_task->count());
}
static PyObject * Task_newtick(PyTask * self)
{
#ifndef NDEBUG
if (self->m_task == NULL) {
PyErr_SetString(PyExc_AssertionError, "NULL task in Task.irrelevant");
return NULL;
}
#endif // NDEBUG
return PyInt_FromLong(self->m_task->newTick());
}
static PyMethodDef Task_methods[] = {
{"irrelevant", (PyCFunction)Task_irrelevant, METH_NOARGS},
{"obsolete", (PyCFunction)Task_obsolete, METH_NOARGS},
{"count", (PyCFunction)Task_count, METH_NOARGS},
{"new_tick", (PyCFunction)Task_newtick, METH_NOARGS},
{NULL, NULL} /* sentinel */
};
static void Task_dealloc(PyTask *self)
{
Py_XDECREF(self->Task_attr);
PyMem_DEL(self);
}
static PyObject * Task_getattr(PyTask *self, char *name)
{
// Fairly major re-write of this to use operator[] of Task base class
#ifndef NDEBUG
if (self->m_task == NULL) {
PyErr_SetString(PyExc_AssertionError, "NULL task Task.getattr");
return NULL;
}
#endif // NDEBUG
if (strcmp(name, "character") == 0) {
return wrapEntity(&self->m_task->character());
}
if (self->Task_attr != NULL) {
PyObject *v = PyDict_GetItemString(self->Task_attr, name);
if (v != NULL) {
Py_INCREF(v);
return v;
}
}
return Py_FindMethod(Task_methods, (PyObject *)self, name);
}
static int Task_setattr(PyTask *self, char *name, PyObject *v)
{
#ifndef NDEBUG
if (self->m_task == NULL) {
PyErr_SetString(PyExc_AssertionError, "NULL task Task.setattr");
return -1;
}
#endif // NDEBUG
// FIXME Something may be required here long term, for task attributes.
if (self->Task_attr == NULL) {
self->Task_attr = PyDict_New();
if (self->Task_attr == NULL) {
return -1;
}
}
return PyDict_SetItemString(self->Task_attr, name, v);
}
static int Task_compare(PyTask *self, PyTask *other)
{
if ((self->m_task == NULL) || (other->m_task == NULL)) {
PyErr_SetString(PyExc_AssertionError, "NULL Task in Task.compare");
return -1;
}
return (self->m_task == other->m_task) ? 0 : 1;
}
PyTypeObject PyTask_Type = {
PyObject_HEAD_INIT(&PyType_Type)
0, /*ob_size*/
"Task", /*tp_name*/
sizeof(PyTask), /*tp_basicsize*/
0, /*tp_itemsize*/
/* methods */
(destructor)Task_dealloc, /*tp_dealloc*/
0, /*tp_print*/
(getattrfunc)Task_getattr, /*tp_getattr*/
(setattrfunc)Task_setattr, /*tp_setattr*/
(cmpfunc)Task_compare, /*tp_compare*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash*/
};
PyTask * newPyTask()
{
PyTask * self;
self = PyObject_NEW(PyTask, &PyTask_Type);
if (self == NULL) {
return NULL;
}
self->Task_attr = NULL;
return self;
}