mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
93 lines
3.5 KiB
C++
93 lines
3.5 KiB
C++
// Cyphesis Online RPG Server and AI Engine
|
|
// Copyright (C) 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 TESTS_TEST_WORLD_H
|
|
#define TESTS_TEST_WORLD_H
|
|
|
|
#include "rules/simulation/BaseWorld.h"
|
|
|
|
#include "rules/LocatedEntity.h"
|
|
#include "rules/simulation/Task.h"
|
|
#include <Atlas/Objects/ObjectsFwd.h>
|
|
#include <Atlas/Objects/RootEntity.h>
|
|
#include <Atlas/Objects/RootOperation.h>
|
|
#include <functional>
|
|
|
|
struct TestWorldExtension {
|
|
std::function<void(const Operation & op, LocatedEntity & ent)> messageFn;
|
|
std::function<Ref<LocatedEntity>(const std::string &, const Atlas::Objects::Entity::RootEntity &)> addNewEntityFn;
|
|
};
|
|
|
|
struct TestWorld : public BaseWorld {
|
|
|
|
static TestWorldExtension extension;
|
|
|
|
Ref<LocatedEntity> m_gw;
|
|
explicit TestWorld() : BaseWorld(), m_gw(nullptr) {
|
|
}
|
|
explicit TestWorld(Ref<LocatedEntity> gw) : BaseWorld(), m_gw(gw) {
|
|
m_eobjects[gw->getIntId()] = gw;
|
|
}
|
|
|
|
~TestWorld() override{}
|
|
|
|
bool idle() override { return false; }
|
|
Ref<LocatedEntity> addEntity(const Ref<LocatedEntity>& ent) override {
|
|
m_eobjects[ent->getIntId()] = ent;
|
|
return ent;
|
|
}
|
|
Ref<LocatedEntity> addNewEntity(const std::string & id,
|
|
const Atlas::Objects::Entity::RootEntity & op) override
|
|
{
|
|
if (extension.addNewEntityFn) {
|
|
return extension.addNewEntityFn(id, op);
|
|
}
|
|
return nullptr;
|
|
}
|
|
void delEntity(LocatedEntity * obj) override {}
|
|
int createSpawnPoint(const Atlas::Message::MapType & data,
|
|
LocatedEntity *) override { return 0; }
|
|
int removeSpawnPoint(LocatedEntity *) override {return 0; }
|
|
int getSpawnList(Atlas::Message::ListType & data) override { return 0; }
|
|
Ref<LocatedEntity> spawnNewEntity(const std::string & name,
|
|
const std::string & type,
|
|
const Atlas::Objects::Entity::RootEntity & desc) override
|
|
{
|
|
return addNewEntity(type, desc);
|
|
}
|
|
int moveToSpawn(const std::string & name,
|
|
Location& location) override{return 0;}
|
|
ArithmeticScript * newArithmetic(const std::string &,
|
|
LocatedEntity *) override {
|
|
return nullptr;
|
|
}
|
|
void message(const Operation & op, LocatedEntity & ent) override {
|
|
if (extension.messageFn) {
|
|
extension.messageFn(op, ent);
|
|
}
|
|
}
|
|
void messageToClients(const Atlas::Objects::Operation::RootOperation &) override{}
|
|
Ref<LocatedEntity> findByName(const std::string & name) override { return nullptr; }
|
|
Ref<LocatedEntity> findByType(const std::string & type) override { return nullptr; }
|
|
|
|
LocatedEntity& getDefaultLocation() const override {return *m_gw;};
|
|
|
|
};
|
|
|
|
|
|
#endif // TESTS_TEST_WORLD_H
|