本文整理汇总了C++中ChannelPtr::getParticipants方法的典型用法代码示例。如果您正苦于以下问题:C++ ChannelPtr::getParticipants方法的具体用法?C++ ChannelPtr::getParticipants怎么用?C++ ChannelPtr::getParticipants使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ChannelPtr
的用法示例。
在下文中一共展示了ChannelPtr::getParticipants方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: destroyChannel
/**
* Destroys a channel. This will send LCH messages to all channel participants if the channel exists.
* @param string channel name
* @returns Nothing.
*/
int LuaChannel::destroyChannel(lua_State* L) {
luaL_checkany(L, 1);
string name = luaL_checkstring(L, 1);
lua_pop(L, 1);
ChannelPtr chan = ServerState::getChannel(name);
if (chan) {
const ChannelType type = chan->getType();
const char* channame = chan->getName().c_str();
const chconlist_t particpants = chan->getParticipants();
for (chconlist_t::const_iterator i = particpants.begin(); i != particpants.end(); ++i) {
json_t* root = json_object();
json_object_set_new_nocheck(root, "channel",
json_string_nocheck(channame)
);
json_object_set_new_nocheck(root, "character",
json_string_nocheck((*i)->characterName.c_str())
);
const char* leavestr = json_dumps(root, JSON_COMPACT);
string msg = "LCH ";
msg += leavestr;
free((void*) leavestr);
json_decref(root);
MessagePtr outMessage(MessageBuffer::fromString(msg));
(*i)->send(outMessage);
chan->part((*i));
}
ServerState::removeChannel(name);
if (type == CT_PUBLIC)
ServerState::rebuildChannelOpList();
}
return 0;
}
示例2: killChannel
int LuaTesting::killChannel(lua_State* L) {
luaL_checkany(L, 1);
string chanName = luaL_checkstring(L, 1);
lua_pop(L, 1);
ChannelPtr chan = ServerState::getChannel(chanName);
if (chan) {
const chconlist_t particpants = chan->getParticipants();
for (chconlist_t::const_iterator i = particpants.begin(); i != particpants.end(); ++i) {
chan->part(*i);
}
ServerState::removeChannel(chanName);
}
return 0;
}