mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
* rulesets/Py_World.cpp: Experiment to try METH_O with calls which take an argument of string type.
119 lines
3.7 KiB
C++
119 lines
3.7 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_World.h"
|
|
#include "Py_WorldTime.h"
|
|
#include "Py_Thing.h"
|
|
|
|
#include "Entity.h"
|
|
|
|
#include "modules/WorldTime.h"
|
|
|
|
static PyObject * World_get_time(PyWorld *self)
|
|
{
|
|
#ifndef NDEBUG
|
|
if (self->world == NULL) {
|
|
PyErr_SetString(PyExc_AssertionError,"invalid world object");
|
|
return NULL;
|
|
}
|
|
#endif // NDEBUG
|
|
PyWorldTime * wtime = newPyWorldTime();
|
|
if (wtime == NULL) {
|
|
return NULL;
|
|
}
|
|
wtime->time = new WorldTime((int)self->world->getTime());
|
|
wtime->own = true;
|
|
return (PyObject *)wtime;
|
|
}
|
|
|
|
static PyObject * World_get_object(PyWorld *self, PyObject * id)
|
|
{
|
|
#ifndef NDEBUG
|
|
if (self->world == NULL) {
|
|
PyErr_SetString(PyExc_AssertionError,"invalid world object");
|
|
return NULL;
|
|
}
|
|
#endif // NDEBUG
|
|
if (!PyString_CheckExact(id)) {
|
|
PyErr_SetString(PyExc_TypeError, "World.get_object must be string");
|
|
return NULL;
|
|
}
|
|
Entity * ent = self->world->getEntity(PyString_AsString(id));
|
|
if (ent == NULL) {
|
|
Py_INCREF(Py_None);
|
|
return Py_None;
|
|
}
|
|
PyObject * wrapper = wrapEntity(ent);
|
|
return wrapper;
|
|
}
|
|
|
|
static PyMethodDef World_methods[] = {
|
|
{"get_time", (PyCFunction)World_get_time, METH_NOARGS},
|
|
{"get_object", (PyCFunction)World_get_object, METH_O},
|
|
{NULL, NULL} // sentinel
|
|
};
|
|
|
|
static void World_dealloc(PyWorld *self)
|
|
{
|
|
PyMem_DEL(self);
|
|
}
|
|
|
|
static PyObject * World_getattr(PyWorld *self, char *name)
|
|
{
|
|
return Py_FindMethod(World_methods, (PyObject *)self, name);
|
|
}
|
|
|
|
static int World_compare(PyWorld * self, PyObject * other)
|
|
{
|
|
if (PyWorld_Check(other)) {
|
|
PyWorld * other_world = (PyWorld *)other;
|
|
return (self->world == other_world->world) ? 0 : 1;
|
|
} else if (PyEntity_Check(other)) {
|
|
PyEntity * other_entity = (PyEntity *)other;
|
|
return (&self->world->m_gameWorld == other_entity->m_entity) ? 0 : 1;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
PyTypeObject PyWorld_Type = {
|
|
PyObject_HEAD_INIT(&PyType_Type)
|
|
0, // ob_size
|
|
"World", // tp_name
|
|
sizeof(PyWorld), // tp_basicsize
|
|
0, // tp_itemsize
|
|
// methods
|
|
(destructor)World_dealloc, // tp_dealloc
|
|
0, // tp_print
|
|
(getattrfunc)World_getattr, // tp_getattr
|
|
0, // tp_setattr
|
|
(cmpfunc)World_compare, // tp_compare
|
|
0, // tp_repr
|
|
0, // tp_as_number
|
|
0, // tp_as_sequence
|
|
0, // tp_as_mapping
|
|
0, // tp_hash
|
|
};
|
|
|
|
PyWorld * newPyWorld()
|
|
{
|
|
PyWorld * self;
|
|
self = PyObject_NEW(PyWorld, &PyWorld_Type);
|
|
if (self == NULL) {
|
|
return NULL;
|
|
}
|
|
return self;
|
|
}
|