2012-01-12 00:37:43 +00:00
|
|
|
// Cyphesis Online RPG Server and AI Engine
|
|
|
|
|
// Copyright (C) 2011 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
|
|
|
|
|
|
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
|
#ifdef NDEBUG
|
|
|
|
|
#undef NDEBUG
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef DEBUG
|
|
|
|
|
#define DEBUG
|
|
|
|
|
#endif
|
|
|
|
|
|
2012-12-04 21:04:33 +00:00
|
|
|
#include "TestBase.h"
|
2012-01-12 13:06:48 +00:00
|
|
|
#include "TestWorld.h"
|
2012-08-01 19:42:36 +01:00
|
|
|
#include "null_stream.h"
|
2012-01-12 13:06:48 +00:00
|
|
|
|
2012-01-12 18:25:39 +00:00
|
|
|
#include "server/CommClient.h"
|
|
|
|
|
#include "server/CommServer.h"
|
|
|
|
|
#include "server/Connection.h"
|
2012-01-12 19:59:00 +00:00
|
|
|
#include "server/Lobby.h"
|
2012-01-12 00:37:43 +00:00
|
|
|
#include "server/Player.h"
|
|
|
|
|
#include "server/ServerAccount.h"
|
2012-01-12 13:06:48 +00:00
|
|
|
#include "server/ServerRouting.h"
|
2012-01-12 00:37:43 +00:00
|
|
|
#include "server/SystemAccount.h"
|
|
|
|
|
|
2012-01-16 17:15:55 +00:00
|
|
|
#include "rulesets/Character.h"
|
|
|
|
|
|
|
|
|
|
#include "common/id.h"
|
|
|
|
|
#include "common/TypeNode.h"
|
|
|
|
|
|
2012-01-12 19:59:00 +00:00
|
|
|
#include <Atlas/Objects/Anonymous.h>
|
|
|
|
|
#include <Atlas/Objects/Operation.h>
|
2012-01-12 18:25:39 +00:00
|
|
|
|
2012-01-12 00:37:43 +00:00
|
|
|
#include <cassert>
|
|
|
|
|
|
2012-01-12 18:55:59 +00:00
|
|
|
using Atlas::Message::Element;
|
|
|
|
|
using Atlas::Message::ListType;
|
|
|
|
|
using Atlas::Message::MapType;
|
|
|
|
|
using Atlas::Objects::Root;
|
|
|
|
|
using Atlas::Objects::Entity::RootEntity;
|
|
|
|
|
using Atlas::Objects::Entity::Anonymous;
|
|
|
|
|
using Atlas::Objects::Operation::Create;
|
|
|
|
|
using Atlas::Objects::Operation::Get;
|
|
|
|
|
using Atlas::Objects::Operation::Imaginary;
|
|
|
|
|
using Atlas::Objects::Operation::Logout;
|
|
|
|
|
using Atlas::Objects::Operation::Look;
|
|
|
|
|
using Atlas::Objects::Operation::Set;
|
|
|
|
|
using Atlas::Objects::Operation::Talk;
|
|
|
|
|
using Atlas::Objects::Operation::Move;
|
2012-01-12 19:59:00 +00:00
|
|
|
using Atlas::Objects::smart_dynamic_cast;
|
2012-01-12 00:37:43 +00:00
|
|
|
|
2012-01-16 17:15:55 +00:00
|
|
|
static const char * test_valid_character_type = "37702ce7a151";
|
|
|
|
|
|
|
|
|
|
class SpawningTestWorld : public TestWorld {
|
|
|
|
|
public:
|
|
|
|
|
SpawningTestWorld(Entity & gw) : TestWorld(gw) { }
|
|
|
|
|
|
|
|
|
|
virtual Entity * addEntity(Entity * ent) {
|
|
|
|
|
ent->m_location.m_loc = &m_gameWorld;
|
|
|
|
|
ent->m_location.m_pos = WFMath::Point<3>(0,0,0);
|
|
|
|
|
m_eobjects[ent->getIntId()] = ent;
|
|
|
|
|
return ent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual Entity * addNewEntity(const std::string & t,
|
|
|
|
|
const Atlas::Objects::Entity::RootEntity &) {
|
|
|
|
|
std::string id;
|
|
|
|
|
long intId = newId(id);
|
|
|
|
|
|
|
|
|
|
Entity * e = new Character(id, intId);
|
|
|
|
|
|
|
|
|
|
e->setType(new TypeNode(t));
|
|
|
|
|
return addEntity(e);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2012-08-01 19:42:36 +01:00
|
|
|
class TestCommClient : public CommClient<null_stream> {
|
2012-01-12 00:37:43 +00:00
|
|
|
public:
|
2012-08-01 19:42:36 +01:00
|
|
|
TestCommClient(CommServer & cs) : CommClient<null_stream>(cs, "") { }
|
2012-01-12 00:37:43 +00:00
|
|
|
};
|
2012-01-12 18:25:39 +00:00
|
|
|
|
2012-12-04 21:04:33 +00:00
|
|
|
class AccountConnectionintegration : public Cyphesis::TestBase {
|
2012-01-12 18:25:39 +00:00
|
|
|
protected:
|
|
|
|
|
Entity * m_tlve;
|
|
|
|
|
BaseWorld * m_world;
|
|
|
|
|
ServerRouting * m_server;
|
|
|
|
|
CommServer * m_cs;
|
|
|
|
|
Connection * m_connection;
|
|
|
|
|
public:
|
2012-12-04 21:04:33 +00:00
|
|
|
AccountConnectionintegration();
|
2012-01-12 18:25:39 +00:00
|
|
|
|
2012-12-04 21:04:33 +00:00
|
|
|
void setup();
|
|
|
|
|
void teardown();
|
2012-01-12 18:25:39 +00:00
|
|
|
|
2012-12-04 21:04:33 +00:00
|
|
|
void test_account_creation();
|
2012-01-12 18:25:39 +00:00
|
|
|
|
2012-01-12 19:59:00 +00:00
|
|
|
Connection * connection() const { return m_connection; }
|
|
|
|
|
ServerRouting * server() const { return m_server; }
|
2012-01-12 18:25:39 +00:00
|
|
|
};
|
2012-01-12 00:37:43 +00:00
|
|
|
|
2012-12-04 21:04:33 +00:00
|
|
|
AccountConnectionintegration::AccountConnectionintegration()
|
|
|
|
|
{
|
|
|
|
|
ADD_TEST(AccountConnectionintegration::test_account_creation);
|
|
|
|
|
}
|
2012-11-15 19:46:44 +00:00
|
|
|
|
2012-12-04 21:04:33 +00:00
|
|
|
void AccountConnectionintegration::setup()
|
2012-01-12 00:37:43 +00:00
|
|
|
{
|
2012-12-04 21:04:33 +00:00
|
|
|
m_tlve = new Entity("0", 0);
|
|
|
|
|
m_world = new SpawningTestWorld(*m_tlve);
|
|
|
|
|
m_server = new ServerRouting(*m_world,
|
|
|
|
|
"testrules",
|
|
|
|
|
"testname",
|
|
|
|
|
"1", 1, "2", 2);
|
|
|
|
|
m_cs = new CommServer;
|
|
|
|
|
m_connection = new Connection(*new TestCommClient(*m_cs),
|
|
|
|
|
*m_server,
|
|
|
|
|
"test_addr",
|
|
|
|
|
"3", 3);
|
|
|
|
|
}
|
2012-01-12 19:59:00 +00:00
|
|
|
|
2012-12-04 21:04:33 +00:00
|
|
|
void AccountConnectionintegration::teardown()
|
|
|
|
|
{
|
|
|
|
|
delete m_connection;
|
|
|
|
|
delete m_cs;
|
|
|
|
|
delete m_server;
|
|
|
|
|
delete m_world;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static OpVector test_sent_ops;
|
|
|
|
|
|
|
|
|
|
void AccountConnectionintegration::test_account_creation()
|
|
|
|
|
{
|
2012-01-12 19:59:00 +00:00
|
|
|
// Basic player account creation
|
|
|
|
|
{
|
|
|
|
|
|
2012-12-04 21:04:33 +00:00
|
|
|
ASSERT_NOT_NULL(m_connection);
|
|
|
|
|
ASSERT_TRUE(m_connection->objects().empty());
|
2012-01-12 19:59:00 +00:00
|
|
|
|
|
|
|
|
Create op;
|
|
|
|
|
Anonymous create_arg;
|
|
|
|
|
create_arg->setParents(std::list<std::string>(1, "player"));
|
|
|
|
|
create_arg->setAttr("username", "39d409ec");
|
|
|
|
|
create_arg->setAttr("password", "6a6e71bab281");
|
|
|
|
|
op->setArgs1(create_arg);
|
|
|
|
|
|
2012-12-04 21:04:33 +00:00
|
|
|
ASSERT_TRUE(test_sent_ops.empty());
|
2012-01-12 19:59:00 +00:00
|
|
|
|
|
|
|
|
// Send the operation to create the account
|
2012-12-04 21:04:33 +00:00
|
|
|
m_connection->externalOperation(op, *m_connection);
|
2012-01-12 19:59:00 +00:00
|
|
|
|
|
|
|
|
// There should be a response op
|
2012-12-04 21:04:33 +00:00
|
|
|
ASSERT_TRUE(!test_sent_ops.empty());
|
|
|
|
|
ASSERT_EQUAL(test_sent_ops.size(), 1u);
|
2012-01-12 19:59:00 +00:00
|
|
|
// and the account creation should have created an object bound
|
|
|
|
|
// to this connection.
|
2012-12-04 21:04:33 +00:00
|
|
|
ASSERT_TRUE(!m_connection->objects().empty());
|
2012-01-12 19:59:00 +00:00
|
|
|
|
|
|
|
|
// Check the response is an info indicating successful account
|
|
|
|
|
// creation.
|
2012-11-15 19:46:44 +00:00
|
|
|
const Operation & reply = test_sent_ops.front();
|
2012-12-04 21:04:33 +00:00
|
|
|
ASSERT_EQUAL(reply->getClassNo(), Atlas::Objects::Operation::INFO_NO);
|
2012-01-12 19:59:00 +00:00
|
|
|
// The Info response should have an argument describing the created
|
|
|
|
|
// account
|
|
|
|
|
const std::vector<Root> & reply_args = reply->getArgs();
|
2012-12-04 21:04:33 +00:00
|
|
|
ASSERT_TRUE(!reply_args.empty());
|
2012-01-12 19:59:00 +00:00
|
|
|
RootEntity account = smart_dynamic_cast<RootEntity>(reply_args.front());
|
2012-12-04 21:04:33 +00:00
|
|
|
ASSERT_TRUE(account.isValid());
|
2012-01-12 19:59:00 +00:00
|
|
|
|
|
|
|
|
// The account ID should be provided
|
2012-12-04 21:04:33 +00:00
|
|
|
ASSERT_TRUE(!account->isDefaultId());
|
2012-01-16 17:15:55 +00:00
|
|
|
const std::string account_id = account->getId();
|
2012-12-04 21:04:33 +00:00
|
|
|
ASSERT_TRUE(!account_id.empty());
|
2012-01-12 19:59:00 +00:00
|
|
|
|
|
|
|
|
// Check the account has been registered in the server object
|
2012-12-04 21:04:33 +00:00
|
|
|
Router * account_router_ptr = m_server->getObject(account_id);
|
|
|
|
|
ASSERT_NOT_NULL(account_router_ptr);
|
2012-01-12 19:59:00 +00:00
|
|
|
|
|
|
|
|
// Check the account has been logged into the lobby
|
2012-12-04 21:04:33 +00:00
|
|
|
const AccountDict & lobby_dict = m_server->m_lobby.getAccounts();
|
2012-01-16 17:15:55 +00:00
|
|
|
AccountDict::const_iterator I = lobby_dict.find(account_id);
|
2012-12-04 21:04:33 +00:00
|
|
|
ASSERT_TRUE(I != lobby_dict.end());
|
2012-01-12 19:59:00 +00:00
|
|
|
Account * account_ptr = I->second;
|
2012-12-04 21:04:33 +00:00
|
|
|
ASSERT_EQUAL(account_router_ptr, account_ptr);
|
2012-01-12 19:59:00 +00:00
|
|
|
|
2012-01-12 20:45:31 +00:00
|
|
|
// Basic login as now been established by account creation
|
|
|
|
|
|
|
|
|
|
// Set up some other account details
|
|
|
|
|
create_arg->setAttr("username", "89cae312");
|
|
|
|
|
create_arg->setAttr("password", "d730b8bd2d6c");
|
|
|
|
|
|
|
|
|
|
// and try an additional account creation, which should fail.
|
|
|
|
|
// Multiple logins are ok, but there is no reason to allow multiple
|
|
|
|
|
// account creations.
|
2012-11-15 19:46:44 +00:00
|
|
|
test_sent_ops.clear();
|
2012-12-04 21:04:33 +00:00
|
|
|
m_connection->externalOperation(op, *m_connection);
|
|
|
|
|
ASSERT_TRUE(!test_sent_ops.empty());
|
|
|
|
|
ASSERT_EQUAL(test_sent_ops.size(), 1u);
|
2012-01-16 11:37:59 +00:00
|
|
|
|
2012-11-15 19:46:44 +00:00
|
|
|
const Operation & error_reply = test_sent_ops.front();
|
2012-12-04 21:04:33 +00:00
|
|
|
ASSERT_EQUAL(error_reply->getClassNo(),
|
|
|
|
|
Atlas::Objects::Operation::ERROR_NO);
|
2012-01-16 17:15:55 +00:00
|
|
|
|
|
|
|
|
Player::playableTypes.insert(test_valid_character_type);
|
|
|
|
|
|
|
|
|
|
Anonymous character_arg;
|
|
|
|
|
character_arg->setParents(std::list<std::string>(1, test_valid_character_type));
|
|
|
|
|
character_arg->setName("938862f2-4db2-4e8e-b944-7b0935e569db");
|
|
|
|
|
|
|
|
|
|
Create character_op;
|
|
|
|
|
character_op->setArgs1(character_arg);
|
|
|
|
|
character_op->setFrom(account_id);
|
|
|
|
|
|
2012-11-15 19:46:44 +00:00
|
|
|
test_sent_ops.clear();
|
2012-12-04 21:04:33 +00:00
|
|
|
m_connection->externalOperation(character_op, *m_connection);
|
2012-11-15 19:30:23 +00:00
|
|
|
// FIXME the above went through Account::externalOperation, so there
|
|
|
|
|
// is no reply in res. The reply has gone directly to the Link::send
|
|
|
|
|
// method. Add a way of checking, once there are better stubs.
|
2012-12-04 21:04:33 +00:00
|
|
|
ASSERT_TRUE(!test_sent_ops.empty());
|
|
|
|
|
ASSERT_EQUAL(test_sent_ops.size(), 2u);
|
2012-11-15 19:30:23 +00:00
|
|
|
|
2012-11-15 19:46:44 +00:00
|
|
|
const Operation & create_reply = test_sent_ops.front();
|
2012-12-04 21:04:33 +00:00
|
|
|
ASSERT_EQUAL(create_reply->getClassNo(),
|
|
|
|
|
Atlas::Objects::Operation::INFO_NO);
|
2012-01-16 17:15:55 +00:00
|
|
|
|
2012-01-12 20:45:31 +00:00
|
|
|
|
2012-01-12 19:59:00 +00:00
|
|
|
// TODO Character creation etc?
|
|
|
|
|
// TODO Lobby interaction?
|
|
|
|
|
// TODO Logout ?
|
|
|
|
|
}
|
2012-01-12 00:37:43 +00:00
|
|
|
}
|
|
|
|
|
|
2012-12-04 21:04:33 +00:00
|
|
|
int main()
|
|
|
|
|
{
|
|
|
|
|
AccountConnectionintegration t;
|
|
|
|
|
|
|
|
|
|
return t.run();
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 00:37:43 +00:00
|
|
|
// stubs
|
|
|
|
|
|
2013-01-17 10:17:07 +00:00
|
|
|
void TestWorld::message(const Operation & op, LocatedEntity & ent)
|
2012-09-11 22:53:15 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-17 10:17:07 +00:00
|
|
|
LocatedEntity * TestWorld::addNewEntity(const std::string &,
|
2012-09-06 13:48:40 +01:00
|
|
|
const Atlas::Objects::Entity::RootEntity &)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 00:37:43 +00:00
|
|
|
#include "server/CommClient.h"
|
2012-11-23 16:11:21 +00:00
|
|
|
#include "rulesets/ExternalMind.h"
|
2012-11-23 23:58:56 +00:00
|
|
|
#include "rulesets/ExternalProperty.h"
|
2012-01-12 00:37:43 +00:00
|
|
|
#include "server/Juncture.h"
|
|
|
|
|
#include "server/Persistence.h"
|
|
|
|
|
#include "server/Ruleset.h"
|
|
|
|
|
#include "server/TeleportAuthenticator.h"
|
|
|
|
|
|
|
|
|
|
#include "rulesets/Creator.h"
|
|
|
|
|
|
2012-01-12 13:06:48 +00:00
|
|
|
#include "common/const.h"
|
2012-01-12 00:37:43 +00:00
|
|
|
#include "common/globals.h"
|
|
|
|
|
#include "common/log.h"
|
2012-01-12 13:06:48 +00:00
|
|
|
#include "common/Monitors.h"
|
2012-01-12 00:37:43 +00:00
|
|
|
#include "common/PropertyManager.h"
|
2012-01-12 13:06:48 +00:00
|
|
|
#include "common/Variable.h"
|
2012-01-12 00:37:43 +00:00
|
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
|
|
|
|
|
|
bool database_flag = false;
|
|
|
|
|
|
2012-01-12 13:06:48 +00:00
|
|
|
namespace consts {
|
|
|
|
|
|
|
|
|
|
const char * buildTime = __TIME__;
|
|
|
|
|
const char * buildDate = __DATE__;
|
|
|
|
|
const int buildId = -1;
|
|
|
|
|
const char * version = "test_build";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// globals - why do we have these again?
|
|
|
|
|
|
|
|
|
|
const char * CYPHESIS = "cyphesisAccountConnectionintegration";
|
|
|
|
|
int timeoffset = 0;
|
|
|
|
|
std::string instance(CYPHESIS);
|
|
|
|
|
|
2012-01-12 18:25:39 +00:00
|
|
|
CommServer::CommServer() : m_congested(false)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CommServer::~CommServer()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Idle::Idle(CommServer & svr) : m_idleManager(svr)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Idle::~Idle()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CommSocket::CommSocket(CommServer & svr) : m_commServer(svr) { }
|
|
|
|
|
|
|
|
|
|
CommSocket::~CommSocket()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-01 19:42:36 +01:00
|
|
|
int CommSocket::flush()
|
2012-01-12 18:25:39 +00:00
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-18 19:21:46 +00:00
|
|
|
ExternalMind::ExternalMind(LocatedEntity & e) : Router(e.getId(), e.getIntId()),
|
2012-08-13 22:08:22 +01:00
|
|
|
m_external(0), m_entity(e)
|
2012-01-12 00:37:43 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 13:06:48 +00:00
|
|
|
ExternalMind::~ExternalMind()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-04 20:39:35 +00:00
|
|
|
void ExternalMind::externalOperation(const Operation & op, Link &)
|
2012-11-13 23:33:23 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 13:06:48 +00:00
|
|
|
void ExternalMind::operation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const std::string & ExternalMind::connectionId()
|
|
|
|
|
{
|
2012-08-13 22:08:22 +01:00
|
|
|
assert(m_external != 0);
|
|
|
|
|
return m_external->getId();
|
2012-01-12 13:06:48 +00:00
|
|
|
}
|
|
|
|
|
|
2012-08-13 22:08:22 +01:00
|
|
|
void ExternalMind::linkUp(Link * c)
|
2012-01-12 13:06:48 +00:00
|
|
|
{
|
2012-08-13 22:08:22 +01:00
|
|
|
m_external = c;
|
2012-01-12 13:06:48 +00:00
|
|
|
}
|
|
|
|
|
|
2012-11-24 16:51:49 +00:00
|
|
|
ExternalProperty::ExternalProperty(ExternalMind * & data) : m_data(data)
|
2012-01-12 13:06:48 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int ExternalProperty::get(Atlas::Message::Element & val) const
|
2012-01-12 00:37:43 +00:00
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 13:06:48 +00:00
|
|
|
void ExternalProperty::set(const Atlas::Message::Element & val)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ExternalProperty::add(const std::string & s,
|
|
|
|
|
Atlas::Message::MapType & map) const
|
2012-01-12 00:37:43 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 13:06:48 +00:00
|
|
|
void ExternalProperty::add(const std::string & s,
|
|
|
|
|
const Atlas::Objects::Entity::RootEntity & ent) const
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-07 23:03:25 +00:00
|
|
|
ExternalProperty * ExternalProperty::copy() const
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 13:06:48 +00:00
|
|
|
Juncture::Juncture(Connection * c,
|
|
|
|
|
const std::string & id, long iid) :
|
2012-11-13 00:09:05 +00:00
|
|
|
ConnectableRouter(id, iid, c),
|
2012-01-12 13:06:48 +00:00
|
|
|
m_socket(0),
|
|
|
|
|
m_peer(0)
|
2012-01-12 00:37:43 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 13:06:48 +00:00
|
|
|
Juncture::~Juncture()
|
2012-01-12 00:37:43 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-04 20:39:35 +00:00
|
|
|
void Juncture::externalOperation(const Operation & op, Link &)
|
2012-11-13 23:33:23 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 13:06:48 +00:00
|
|
|
void Juncture::operation(const Operation & op, OpVector & res)
|
2012-01-12 00:37:43 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-08 14:14:42 -07:00
|
|
|
void Juncture::addToMessage(MapType & omap) const
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Juncture::addToEntity(const RootEntity & ent) const
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-15 19:46:44 +00:00
|
|
|
Link::Link(CommSocket & socket, const std::string & id, long iid) :
|
|
|
|
|
Router(id, iid), m_encoder(0), m_commSocket(socket)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Link::~Link()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Link::send(const Operation & op) const
|
|
|
|
|
{
|
|
|
|
|
test_sent_ops.push_back(op);
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-21 21:43:38 +00:00
|
|
|
void Link::sendError(const Operation & op,
|
|
|
|
|
const std::string &,
|
|
|
|
|
const std::string &) const
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-15 19:46:44 +00:00
|
|
|
void Link::disconnect()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 13:06:48 +00:00
|
|
|
Ruleset * Ruleset::m_instance = NULL;
|
|
|
|
|
|
|
|
|
|
int Ruleset::installRule(const std::string & class_name,
|
2012-01-19 19:34:20 +00:00
|
|
|
const std::string & section,
|
2012-01-12 13:06:48 +00:00
|
|
|
const Root & class_desc)
|
2012-01-12 00:37:43 +00:00
|
|
|
{
|
2012-01-12 13:06:48 +00:00
|
|
|
return 0;
|
2012-01-12 00:37:43 +00:00
|
|
|
}
|
|
|
|
|
|
2012-01-12 13:06:48 +00:00
|
|
|
int Ruleset::modifyRule(const std::string & class_name,
|
|
|
|
|
const Root & class_desc)
|
2012-01-12 00:37:43 +00:00
|
|
|
{
|
2012-01-12 13:06:48 +00:00
|
|
|
return 0;
|
2012-01-12 00:37:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TeleportAuthenticator * TeleportAuthenticator::m_instance = NULL;
|
|
|
|
|
|
|
|
|
|
int TeleportAuthenticator::addTeleport(const std::string &entity_id,
|
|
|
|
|
const std::string &possess_key)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int TeleportAuthenticator::removeTeleport(const std::string &entity_id)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-17 10:17:07 +00:00
|
|
|
LocatedEntity *TeleportAuthenticator::authenticateTeleport(const std::string &entity_id,
|
2012-01-12 00:37:43 +00:00
|
|
|
const std::string &possess_key)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Persistence * Persistence::m_instance = NULL;
|
|
|
|
|
|
2012-08-13 20:01:27 +01:00
|
|
|
Persistence::Persistence() : m_db(*(Database*)0)
|
2012-01-12 00:37:43 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Persistence * Persistence::instance()
|
|
|
|
|
{
|
|
|
|
|
if (m_instance == NULL) {
|
|
|
|
|
m_instance = new Persistence();
|
|
|
|
|
}
|
|
|
|
|
return m_instance;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 13:06:48 +00:00
|
|
|
void Persistence::registerCharacters(Account & ac,
|
|
|
|
|
const EntityDict & worldObjects)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Account * Persistence::getAccount(const std::string & name)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 00:37:43 +00:00
|
|
|
void Persistence::putAccount(const Account & ac)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void log(LogLevel lvl, const std::string & msg)
|
|
|
|
|
{
|
2012-01-12 19:59:00 +00:00
|
|
|
std::cout << msg << std::endl;
|
2012-01-12 00:37:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void logEvent(LogEvent lev, const std::string & msg)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Creator::Creator(const std::string & id, long intId) :
|
2012-12-04 23:40:54 +00:00
|
|
|
Character(id, intId)
|
2012-01-12 00:37:43 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-06 18:32:01 +01:00
|
|
|
Creator::~Creator()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 00:37:43 +00:00
|
|
|
void Creator::operation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-04 20:39:35 +00:00
|
|
|
void Creator::externalOperation(const Operation & op, Link &)
|
2012-01-12 00:37:43 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Creator::mindLookOperation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Character::Character(const std::string & id, long intId) :
|
2012-12-04 23:39:22 +00:00
|
|
|
Thing(id, intId),
|
2012-01-12 00:37:43 +00:00
|
|
|
m_movement(*(Movement*)0),
|
|
|
|
|
m_mind(0), m_externalMind(0)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Character::~Character()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-05 09:45:16 +00:00
|
|
|
int Character::linkExternal(Link * link)
|
2012-11-26 00:30:07 +00:00
|
|
|
{
|
2012-11-27 10:15:45 +00:00
|
|
|
return 0;
|
2012-11-26 00:30:07 +00:00
|
|
|
}
|
|
|
|
|
|
2012-12-05 09:45:16 +00:00
|
|
|
int Character::unlinkExternal(Link * link)
|
2012-11-26 21:27:25 +00:00
|
|
|
{
|
2012-11-27 10:15:45 +00:00
|
|
|
return 0;
|
2012-11-26 21:27:25 +00:00
|
|
|
}
|
|
|
|
|
|
2012-01-12 00:37:43 +00:00
|
|
|
void Character::operation(const Operation & op, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-04 20:39:35 +00:00
|
|
|
void Character::externalOperation(const Operation & op, Link &)
|
2012-01-12 00:37:43 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Character::ImaginaryOperation(const Operation & op, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-02 20:05:18 -07:00
|
|
|
void Character::InfoOperation(const Operation & op, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 00:37:43 +00:00
|
|
|
void Character::TickOperation(const Operation & op, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::TalkOperation(const Operation & op, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::NourishOperation(const Operation & op, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::UseOperation(const Operation & op, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::WieldOperation(const Operation & op, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::AttackOperation(const Operation & op, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::ActuateOperation(const Operation & op, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindActuateOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindAttackOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindCombineOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindCreateOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindDeleteOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindDivideOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindEatOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindGoalInfoOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindImaginaryOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindLookOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindMoveOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindSetOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindSetupOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindTalkOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindThoughtOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindTickOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindTouchOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindUpdateOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindUseOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindWieldOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Character::mindOtherOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Thing::Thing(const std::string & id, long intId) :
|
2012-12-04 23:48:40 +00:00
|
|
|
Entity(id, intId)
|
2012-01-12 00:37:43 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Thing::~Thing()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Thing::DeleteOperation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Thing::MoveOperation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Thing::SetOperation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Thing::LookOperation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Thing::CreateOperation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Thing::UpdateOperation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Entity::Entity(const std::string & id, long intId) :
|
2013-01-14 09:59:54 +00:00
|
|
|
LocatedEntity(id, intId), m_motion(0)
|
2012-01-12 00:37:43 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Entity::~Entity()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::destroy()
|
|
|
|
|
{
|
|
|
|
|
destroyed.emit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::ActuateOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::AppearanceOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::AttackOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::CombineOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::CreateOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::DeleteOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::DisappearanceOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::DivideOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::EatOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-30 01:06:14 -07:00
|
|
|
void Entity::GetOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::InfoOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 00:37:43 +00:00
|
|
|
void Entity::ImaginaryOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::LookOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::MoveOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::NourishOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::SetOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::SightOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::SoundOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::TalkOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::TickOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::TouchOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::UpdateOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::UseOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::WieldOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-04 20:39:35 +00:00
|
|
|
void Entity::externalOperation(const Operation & op, Link &)
|
2012-01-12 00:37:43 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::operation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::addToMessage(Atlas::Message::MapType & omap) const
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::addToEntity(const Atlas::Objects::Entity::RootEntity & ent) const
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PropertyBase * Entity::setAttr(const std::string & name,
|
|
|
|
|
const Atlas::Message::Element & attr)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const PropertyBase * Entity::getProperty(const std::string & name) const
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PropertyBase * Entity::setProperty(const std::string & name,
|
|
|
|
|
PropertyBase * prop)
|
|
|
|
|
{
|
|
|
|
|
return m_properties[name] = prop;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-17 10:17:07 +00:00
|
|
|
PropertyBase * Entity::modProperty(const std::string & name)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::installDelegate(int class_no, const std::string & delegate)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Domain * Entity::getMovementDomain()
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::sendWorld(const Operation & op)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 00:37:43 +00:00
|
|
|
void Entity::onContainered()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::onUpdated()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LocatedEntity::LocatedEntity(const std::string & id, long intId) :
|
|
|
|
|
Router(id, intId),
|
|
|
|
|
m_refCount(0), m_seq(0),
|
2013-01-14 09:59:54 +00:00
|
|
|
m_script(0), m_type(0), m_flags(0), m_contains(0)
|
2012-01-12 00:37:43 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LocatedEntity::~LocatedEntity()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool LocatedEntity::hasAttr(const std::string & name) const
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int LocatedEntity::getAttr(const std::string & name,
|
|
|
|
|
Atlas::Message::Element & attr) const
|
|
|
|
|
{
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int LocatedEntity::getAttrType(const std::string & name,
|
|
|
|
|
Atlas::Message::Element & attr,
|
|
|
|
|
int type) const
|
|
|
|
|
{
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PropertyBase * LocatedEntity::setAttr(const std::string & name,
|
|
|
|
|
const Atlas::Message::Element & attr)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const PropertyBase * LocatedEntity::getProperty(const std::string & name) const
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-17 10:17:07 +00:00
|
|
|
PropertyBase * LocatedEntity::modProperty(const std::string & name)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PropertyBase * LocatedEntity::setProperty(const std::string & name,
|
|
|
|
|
PropertyBase * prop)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void LocatedEntity::installDelegate(int, const std::string &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void LocatedEntity::destroy()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Domain * LocatedEntity::getMovementDomain()
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void LocatedEntity::sendWorld(const Operation & op)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 00:37:43 +00:00
|
|
|
void LocatedEntity::onContainered()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void LocatedEntity::onUpdated()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PropertyManager * PropertyManager::m_instance = 0;
|
|
|
|
|
|
2012-01-12 13:06:48 +00:00
|
|
|
VariableBase::~VariableBase()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
Variable<T>::Variable(const T & variable) : m_variable(variable)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
Variable<T>::~Variable()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
void Variable<T>::send(std::ostream & o)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template class Variable<int>;
|
|
|
|
|
template class Variable<std::string>;
|
|
|
|
|
template class Variable<const char *>;
|
|
|
|
|
|
|
|
|
|
Monitors * Monitors::m_instance = NULL;
|
|
|
|
|
|
|
|
|
|
Monitors::Monitors()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Monitors::~Monitors()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Monitors * Monitors::instance()
|
|
|
|
|
{
|
|
|
|
|
if (m_instance == NULL) {
|
|
|
|
|
m_instance = new Monitors();
|
|
|
|
|
}
|
|
|
|
|
return m_instance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Monitors::insert(const std::string & key, const Element & val)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Monitors::watch(const::std::string & name, VariableBase * monitor)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 00:37:43 +00:00
|
|
|
Location::Location() : m_loc(0)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
long integerId(const std::string & id)
|
|
|
|
|
{
|
|
|
|
|
long intId = strtol(id.c_str(), 0, 10);
|
|
|
|
|
if (intId == 0 && id != "0") {
|
|
|
|
|
intId = -1L;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return intId;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 19:59:00 +00:00
|
|
|
static long idGenerator = 500;
|
2012-01-12 00:37:43 +00:00
|
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
|
|
|
|
|
|
long newId(std::string & id)
|
|
|
|
|
{
|
|
|
|
|
static char buf[32];
|
|
|
|
|
long new_id = ++idGenerator;
|
|
|
|
|
sprintf(buf, "%ld", new_id);
|
|
|
|
|
id = buf;
|
|
|
|
|
assert(!id.empty());
|
|
|
|
|
return new_id;
|
|
|
|
|
}
|
2012-01-12 13:06:48 +00:00
|
|
|
|
|
|
|
|
void encrypt_password(const std::string & pwd, std::string & hash)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int check_password(const std::string & pwd, const std::string & hash)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool_config_register::bool_config_register(bool & var,
|
|
|
|
|
const char * section,
|
|
|
|
|
const char * setting,
|
|
|
|
|
const char * help)
|
|
|
|
|
{
|
|
|
|
|
}
|
2012-10-25 10:37:45 -04:00
|
|
|
void hash_password(const std::string & pwd, const std::string & salt,
|
|
|
|
|
std::string & hash)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#include <common/Shaker.h>
|
|
|
|
|
|
|
|
|
|
Shaker::Shaker()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string Shaker::generateSalt(size_t length)
|
|
|
|
|
{
|
|
|
|
|
return "";
|
|
|
|
|
}
|