1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553
|
// Cyphesis Online RPG Server and AI Engine
// Copyright (C) 2000-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
// $Id: Account.cpp,v 1.159 2008-01-28 23:48:32 alriddoch Exp $
#include "Account.h"
#include "Connection_methods.h"
#include "ServerRouting.h"
#include "Lobby.h"
#include "ExternalMind.h"
#include "Persistance.h"
#include "rulesets/Character.h"
#include "common/id.h"
#include "common/log.h"
#include "common/const.h"
#include "common/debug.h"
#include "common/serialno.h"
#include "common/inheritance.h"
#include "common/compose.hpp"
#include <wfmath/atlasconv.h>
#include <Atlas/Objects/Operation.h>
#include <Atlas/Objects/Anonymous.h>
#include <sigc++/adaptors/bind.h>
#include <sigc++/functors/mem_fun.h>
using Atlas::Message::Element;
using Atlas::Message::MapType;
using Atlas::Message::ListType;
using Atlas::Objects::Root;
using Atlas::Objects::Operation::Set;
using Atlas::Objects::Operation::Info;
using Atlas::Objects::Operation::Sight;
using Atlas::Objects::Operation::Sound;
using Atlas::Objects::Operation::Create;
using Atlas::Objects::Entity::Anonymous;
using Atlas::Objects::Entity::RootEntity;
using Atlas::Objects::smart_dynamic_cast;
static const bool debug_flag = false;
/// \brief Account constructor
///
/// @param conn Network Connection creating this Account
/// @param uname Username for this account
/// @param passwd Password for this account
/// @param id String identifier for this account
/// @param intId Integer identifier for this account
Account::Account(Connection * conn,
const std::string & uname,
const std::string & passwd,
const std::string & id,
long intId) :
Identified(id, intId),
m_connection(conn), m_username(uname),
m_password(passwd)
{
}
Account::~Account()
{
}
/// \brief Called when the Character has been removed from the world.
///
/// @param id Integer identifier of the Character destroyed.
void Account::characterDestroyed(long id)
{
m_charactersDict.erase(id);
if (consts::enable_persistence) {
Persistance::instance()->delCharacter(String::compose("%1", id));
}
}
/// \brief Add a Character to those that belong to this Account
///
/// @param chr Character object to be added
void Account::addCharacter(Entity * chr)
{
Character * pchar = dynamic_cast<Character *>(chr);
if (pchar == 0) {
return;
}
m_charactersDict[chr->getIntId()] = chr;
chr->destroyed.connect(sigc::bind(sigc::mem_fun(this, &Account::characterDestroyed), chr->getIntId()));
}
/// \brief Create a new Character and add it to this Account
///
/// @param typestr The type name of the Character to be created
/// @param ent Atlas description of the Character to be created
Entity * Account::addNewCharacter(const std::string & typestr,
const RootEntity & ent)
{
assert(m_connection != 0);
BaseWorld & world = m_connection->m_server.m_world;
debug(std::cout << "Account::Add_character" << std::endl << std::flush;);
Entity * chr = world.addNewEntity(typestr, ent);
if (chr == 0) {
return 0;
}
debug(std::cout << "Added" << std::endl << std::flush;);
assert(chr->m_location.isValid());
debug(std::cout << "Location set to: " << chr->m_location << std::endl << std::flush;);
Character * character = dynamic_cast<Character *>(chr);
if (character != 0) {
m_connection->connectAvatar(character);
// Only genuinely playable characters should go in here. Otherwise
// if a normal entity gets into the account, and connection, it
// starts getting hard to tell whether or not they exist.
m_charactersDict[chr->getIntId()] = chr;
chr->destroyed.connect(sigc::bind(sigc::mem_fun(this, &Account::characterDestroyed), chr->getIntId()));
m_connection->addEntity(chr);
if (consts::enable_persistence) {
Persistance::instance()->addCharacter(*this, *chr);
}
// Hack in default objects
// This needs to be done in a generic way
Anonymous create_arg;
create_arg->setParents(std::list<std::string>(1,"coin"));
::addToEntity(Point3D(0,0,0), create_arg->modifyPos());
create_arg->setLoc(chr->getId());
create_arg->setName("coin");
// FIXME We can probably send the same op 10 times, rather than create 10
// FIXME alternatively we can set 10 args on one op
for(int i = 0; i < 10; i++) {
Create c;
c->setTo(chr->getId());
c->setArgs1(create_arg);
world.message(c, *chr);
}
create_arg = create_arg.copy();
create_arg->setParents(std::list<std::string>(1, "shirt"));
create_arg->setName("shirt");
Create c;
c->setTo(chr->getId());
c->setArgs1(create_arg);
world.message(c, *chr);
create_arg = create_arg.copy();
create_arg->setParents(std::list<std::string>(1, "trousers"));
create_arg->setName("trousers");
c = Create();
c->setTo(chr->getId());
c->setArgs1(create_arg);
world.message(c, *chr);
create_arg = create_arg.copy();
create_arg->setParents(std::list<std::string>(1, "cloak"));
create_arg->setName("cloak");
c = Create();
c->setTo(chr->getId());
c->setArgs1(create_arg);
world.message(c, *chr);
create_arg = create_arg.copy();
create_arg->setParents(std::list<std::string>(1, "boots"));
create_arg->setName("boots");
c = Create();
c->setTo(chr->getId());
c->setArgs1(create_arg);
world.message(c, *chr);
create_arg = create_arg.copy();
create_arg->setParents(std::list<std::string>(1, "hat"));
create_arg->setName("hat");
c = Create();
c->setTo(chr->getId());
c->setArgs1(create_arg);
world.message(c, *chr);
}
logEvent(TAKE_CHAR, String::compose("%1 %2 %3 Created character (%4) "
"by account %5",
m_connection->getId(),
getId(),
chr->getId(),
chr->getType(),
m_username));
return chr;
}
void Account::LogoutOperation(const Operation & op, OpVector & res)
{
if (m_connection == 0) {
log(ERROR, "Account::LogoutOperation on account that doesn't seem to "
"be connected.");
return;
}
Info info;
info->setArgs1(op);
if (!op->isDefaultSerialno()) {
info->setRefno(op->getSerialno());
}
info->setFrom(getId());
info->setTo(getId());
m_connection->send(info);
m_connection->disconnect();
}
const char * Account::getType() const
{
return "account";
}
void Account::addToMessage(MapType & omap) const
{
omap["username"] = m_username;
omap["name"] = m_username;
if (!m_password.empty()) {
omap["password"] = m_password;
}
omap["parents"] = ListType(1,getType());
ListType charlist;
EntityDict::const_iterator I = m_charactersDict.begin();
EntityDict::const_iterator Iend = m_charactersDict.end();
for (; I != Iend; ++I) {
charlist.push_back(I->first);
}
omap["characters"] = charlist;
omap["objtype"] = "obj";
omap["id"] = getId();
}
void Account::addToEntity(const Atlas::Objects::Entity::RootEntity & ent) const
{
ent->setAttr("username", m_username);
ent->setName(m_username);
if (!m_password.empty()) {
ent->setAttr("password", m_password);
}
ent->setParents(std::list<std::string>(1,getType()));
ListType charlist;
EntityDict::const_iterator I = m_charactersDict.begin();
EntityDict::const_iterator Iend = m_charactersDict.end();
for (; I != Iend; ++I) {
charlist.push_back(I->second->getId());
}
ent->setAttr("characters", charlist);
ent->setObjtype("obj");
ent->setId(getId());
}
void Account::operation(const Operation & op, OpVector & res)
{
const OpNo op_no = op->getClassNo();
switch (op_no) {
case Atlas::Objects::Operation::CREATE_NO:
CreateOperation(op, res);
break;
case Atlas::Objects::Operation::GET_NO:
GetOperation(op, res);
break;
case Atlas::Objects::Operation::IMAGINARY_NO:
ImaginaryOperation(op, res);
break;
case Atlas::Objects::Operation::LOGOUT_NO:
LogoutOperation(op, res);
break;
case Atlas::Objects::Operation::LOOK_NO:
LookOperation(op, res);
break;
case Atlas::Objects::Operation::SET_NO:
SetOperation(op, res);
break;
case Atlas::Objects::Operation::TALK_NO:
TalkOperation(op, res);
break;
case OP_INVALID:
break;
default:
OtherOperation(op, res);
break;
}
}
void Account::CreateOperation(const Operation & op, OpVector & res)
{
debug(std::cout << "Account::Operation(create)" << std::endl << std::flush;);
const std::vector<Root> & args = op->getArgs();
if (args.empty()) {
return;
}
RootEntity arg = smart_dynamic_cast<RootEntity>(args.front());
if (!arg.isValid()) {
error(op, "Character creation arg is malformed", res, getId());
return;
}
if (!arg->hasAttrFlag(Atlas::Objects::PARENTS_FLAG)) {
error(op, "Entity has no type", res, getId());
return;
}
const std::list<std::string> & parents = arg->getParents();
if (parents.empty()) {
error(op, "Entity has empty type list.", res, getId());
return;
}
const std::string & typestr = parents.front();
if (characterError(op, arg, res)) {
return;
}
debug( std::cout << "Account creating a " << typestr << " object"
<< std::endl << std::flush; );
Anonymous new_character;
new_character->setParents(std::list<std::string>(1, typestr));
new_character->setAttr("status", 0.024);
if (!arg->isDefaultName()) {
new_character->setName(arg->getName());
}
Entity * entity = addNewCharacter(typestr, new_character);
if (entity == 0) {
error(op, "Character creation failed", res, getId());
return;
}
Character * character = dynamic_cast<Character *>(entity);
if (character != 0) {
// Inform the client that it has successfully subscribed
Info info;
Anonymous info_arg;
entity->addToEntity(info_arg);
info->setArgs1(info_arg);
res.push_back(info);
}
// Inform the client of the newly created character
Sight sight;
sight->setTo(getId());
Anonymous sight_arg;
addToEntity(sight_arg);
sight->setArgs1(sight_arg);
res.push_back(sight);
}
void Account::SetOperation(const Operation & op, OpVector & res)
{
debug(std::cout << "Account::Operation(set)" << std::endl << std::flush;);
const std::vector<Root> & args = op->getArgs();
if (args.empty()) {
return;
}
const Root & arg = args.front();
if (!arg->hasAttrFlag(Atlas::Objects::ID_FLAG)) {
error(op, "Set character has no ID", res, getId());
return;
}
const std::string & id = arg->getId();
long intId = integerId(id);
EntityDict::const_iterator J = m_charactersDict.find(intId);
if (J == m_charactersDict.end()) {
// Client has sent a Set op for an object that is not
// one of our characters.
return error(op, "Permission denied.", res, getId());
}
Entity * e = J->second;
Anonymous new_arg;
bool argument_valid = false;
Element guise;
if (arg->copyAttr("guise", guise) == 0) {
debug(std::cout << "Got attempt to change characters guise"
<< std::endl << std::flush;);
// Apply change to character in-game
new_arg->setAttr("guise", guise);
argument_valid = true;
}
Element height;
if (arg->copyAttr("height", height) == 0 && (height.isNum())) {
debug(std::cout << "Got attempt to change characters height"
<< std::endl << std::flush;);
const BBox & bbox = e->m_location.bBox();
if (bbox.isValid()) {
float old_height = bbox.highCorner().z() - bbox.lowCorner().z();
float scale = height.asNum() / old_height;
BBox newBox(WFMath::Point<3>(bbox.lowCorner().x() * scale,
bbox.lowCorner().y() * scale,
bbox.lowCorner().z() * scale),
WFMath::Point<3>(bbox.highCorner().x() * scale,
bbox.highCorner().y() * scale,
bbox.highCorner().z() * scale));
new_arg->setAttr("bbox", newBox.toAtlas());
argument_valid = true;
}
}
if (argument_valid) {
debug(std::cout << "Passing character mods in-game"
<< std::endl << std::flush;);
Set s;
s->setTo(id);
new_arg->setId(id);
s->setArgs1(new_arg);
assert(m_connection != 0);
m_connection->m_server.m_world.message(s, *e);
}
}
void Account::ImaginaryOperation(const Operation & op, OpVector & res)
{
const std::vector<Root> & args = op->getArgs();
if (args.empty()) {
return;
}
Sight s;
s->setArgs1(op);
s->setFrom(getId());
// FIXME Remove this - broadcasting
if (!op->isDefaultSerialno()) {
s->setRefno(op->getSerialno());
}
RootEntity arg = smart_dynamic_cast<RootEntity>(args.front());
if (!arg.isValid()) {
error(op, "Imaginary arg is malformed", res, getId());
return;
}
if (arg->hasAttrFlag(Atlas::Objects::Entity::LOC_FLAG)) {
s->setTo(arg->getLoc());
} else {
s->setTo(op->getTo());
}
assert(m_connection != 0);
m_connection->m_server.m_lobby.operation(s, res);
}
void Account::TalkOperation(const Operation & op, OpVector & res)
{
const std::vector<Root> & args = op->getArgs();
if (args.empty()) {
error(op, "Talk has no args", res, getId());
return;
}
RootEntity arg = smart_dynamic_cast<RootEntity>(args.front());
if (!arg.isValid()) {
error(op, "Talk arg is malformed", res, getId());
return;
}
Sound s;
s->setArgs1(op);
s->setFrom(getId());
// FIXME Remove this - broadcasting
if (!op->isDefaultSerialno()) {
s->setRefno(op->getSerialno());
}
if (arg->hasAttrFlag(Atlas::Objects::Entity::LOC_FLAG)) {
s->setTo(arg->getLoc());
} else {
s->setTo(op->getTo());
}
assert(m_connection != 0);
m_connection->m_server.m_lobby.operation(s, res);
}
void Account::LookOperation(const Operation & op, OpVector & res)
{
assert(m_connection != 0);
const std::vector<Root> & args = op->getArgs();
if (args.empty()) {
Sight s;
s->setTo(getId());
Anonymous sight_arg;
m_connection->m_server.m_lobby.addToEntity(sight_arg);
s->setArgs1(sight_arg);
res.push_back(s);
return;
}
const Root & arg = args.front();
if (!arg->hasAttrFlag(Atlas::Objects::ID_FLAG)) {
error(op, "No target for look", res, getId());
return;
}
const std::string & to = arg->getId();
long intId = integerId(to);
EntityDict::const_iterator J = m_charactersDict.find(intId);
if (J != m_charactersDict.end()) {
Sight s;
s->setTo(getId());
Anonymous sight_arg;
J->second->addToEntity(sight_arg);
s->setArgs1(sight_arg);
res.push_back(s);
return;
}
const AccountDict & accounts = m_connection->m_server.m_lobby.getAccounts();
AccountDict::const_iterator K = accounts.find(to);
if (K != accounts.end()) {
Sight s;
s->setTo(getId());
Anonymous sight_arg;
K->second->addToEntity(sight_arg);
s->setArgs1(sight_arg);
res.push_back(s);
return;
}
error(op, "Unknown look target", res, getId());
}
void Account::GetOperation(const Operation & op, OpVector & res)
{
}
void Account::OtherOperation(const Operation & op, OpVector & res)
{
error(op, "Unknown operation", res);
}
|