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
|
// Cyphesis Online RPG Server and AI Engine
// Copyright (C) 2000,2001 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: Lobby.cpp,v 1.40 2008-01-28 23:48:33 alriddoch Exp $
#include "Lobby.h"
#include "Connection_methods.h"
#include "ServerRouting.h"
#include "common/debug.h"
#include "common/serialno.h"
#include <Atlas/Objects/Operation.h>
#include <Atlas/Objects/Anonymous.h>
#include <cassert>
using Atlas::Message::MapType;
using Atlas::Message::ListType;
using Atlas::Objects::Operation::Appearance;
using Atlas::Objects::Operation::Disappearance;
using Atlas::Objects::Entity::Anonymous;
static const bool debug_flag = false;
Lobby::Lobby(ServerRouting & s, const std::string & id, long intId) :
Identified(id, intId), m_server(s)
{
}
Lobby::~Lobby()
{
}
void Lobby::addAccount(Account * ac)
{
debug(std::cout << "Lobby::addAccount(" << ac->getId() << ")"
<< std::endl << std::flush;);
Appearance a;
Anonymous us;
us->setId(ac->getId());
us->setLoc(getId());
a->setArgs1(us);
a->setFrom(ac->getId());
a->setTo(getId());
OpVector res;
operation(a, res);
assert(res.empty());
m_accounts[ac->getId()] = ac;
}
void Lobby::delAccount(Account * ac)
{
debug(std::cout << "Lobby::delAccount(" << ac->getId() << ")"
<< std::endl << std::flush;);
Disappearance d;
Anonymous us;
us->setId(ac->getId());
us->setLoc(getId());
d->setArgs1(us);
d->setFrom(ac->getId());
d->setTo(getId());
OpVector res;
operation(d, res);
assert(res.empty());
m_accounts.erase(ac->getId());
}
void Lobby::operation(const Operation & op, OpVector & res)
{
debug(std::cout << "Lobby::operation(" << op->getParents().front()
<< std::endl << std::flush; );
const std::string & to = op->getTo();
if (to.empty() || to == getId()) {
Operation newop(op.copy());
AccountDict::const_iterator I = m_accounts.begin();
AccountDict::const_iterator Iend = m_accounts.end();
for (; I != Iend; ++I) {
Connection * c = I->second->m_connection;
if (c != 0) {
newop->setTo(I->first);
debug(std::cout << "Lobby sending " << newop->getParents().front() << " operation to " << I->first << std::endl << std::flush; );
c->send(newop);
}
}
} else {
AccountDict::const_iterator I = m_accounts.find(to);
if (I == m_accounts.end()) {
error(op, "Target account not logged in", res);
} else {
Connection * c = I->second->m_connection;
if (c == 0) {
error(op, "Target account not logged in", res);
} else {
c->send(op);
}
}
}
}
void Lobby::addToMessage(MapType & omap) const
{
omap["name"] = "lobby";
ListType plist(1, "room");
omap["parents"] = plist;
ListType player_list;
AccountDict::const_iterator Iend = m_accounts.end();
for (AccountDict::const_iterator I = m_accounts.begin(); I != Iend; ++I) {
player_list.push_back(I->first);
}
omap["people"] = player_list;
omap["rooms"] = ListType();
omap["objtype"] = "obj";
omap["id"] = getId();
}
void Lobby::addToEntity(const Atlas::Objects::Entity::RootEntity & ent) const
{
ent->setName("lobby");
ListType plist(1, "room");
ent->setParents(std::list<std::string>(1,"room"));
ListType player_list;
AccountDict::const_iterator Iend = m_accounts.end();
for (AccountDict::const_iterator I = m_accounts.begin(); I != Iend; ++I) {
player_list.push_back(I->first);
}
ent->setAttr("people", player_list);
ent->setAttr("rooms", ListType());
ent->setObjtype("obj");
ent->setId(getId());
}
|