parent
f887d39d7e
commit
8808587b35
|
@ -54,7 +54,6 @@ public:
|
||||||
void sendTurnEast();
|
void sendTurnEast();
|
||||||
void sendTurnSouth();
|
void sendTurnSouth();
|
||||||
void sendTurnWest();
|
void sendTurnWest();
|
||||||
void sendTalk(int channelType, const std::string& message, int channelId = 0, const std::string& receiver = "");
|
|
||||||
void sendAddVip(const std::string& name);
|
void sendAddVip(const std::string& name);
|
||||||
void sendRemoveVip(int id);
|
void sendRemoveVip(int id);
|
||||||
|
|
||||||
|
|
|
@ -158,35 +158,6 @@ void ProtocolGame::sendTurnWest()
|
||||||
send(oMsg);
|
send(oMsg);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ProtocolGame::sendTalk(int channelType, const std::string& message, int channelId, const std::string& receiver)
|
|
||||||
{
|
|
||||||
// Game.getProtocolGame():sendTalk(1, "lalala", 0, "ignore")
|
|
||||||
// TODO: MAKE SURE IT WAS AN USER EVENT AND NOT DIRECTLY FROM SCRIPT.
|
|
||||||
|
|
||||||
if(message.length() > 255 && message.length() <= 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
OutputMessage oMsg;
|
|
||||||
oMsg.addU8(Otc::ClientTalk);
|
|
||||||
|
|
||||||
assert(channelType >= 0);
|
|
||||||
oMsg.addU8(channelType);
|
|
||||||
|
|
||||||
switch(channelType) {
|
|
||||||
case Otc::SpeakPrivate:
|
|
||||||
case Otc::SpeakPrivateRed:
|
|
||||||
oMsg.addString(receiver);
|
|
||||||
break;
|
|
||||||
case Otc::SpeakChannelYellow:
|
|
||||||
case Otc::SpeakChannelRed:
|
|
||||||
oMsg.addU16(channelId);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
oMsg.addString(message);
|
|
||||||
send(oMsg);
|
|
||||||
}
|
|
||||||
|
|
||||||
void ProtocolGame::sendAddVip(const std::string& name)
|
void ProtocolGame::sendAddVip(const std::string& name)
|
||||||
{
|
{
|
||||||
OutputMessage oMsg;
|
OutputMessage oMsg;
|
||||||
|
|
|
@ -49,7 +49,6 @@ void OTClient::registerLuaFunctions()
|
||||||
g_lua.bindClassMemberFunction("cancelLogin", &ProtocolLogin::cancelLogin);
|
g_lua.bindClassMemberFunction("cancelLogin", &ProtocolLogin::cancelLogin);
|
||||||
|
|
||||||
g_lua.registerClass<ProtocolGame, Protocol>();
|
g_lua.registerClass<ProtocolGame, Protocol>();
|
||||||
g_lua.bindClassMemberFunction("sendTalk", &ProtocolGame::sendTalk);
|
|
||||||
|
|
||||||
g_lua.registerClass<Thing>();
|
g_lua.registerClass<Thing>();
|
||||||
g_lua.registerClass<Creature>();
|
g_lua.registerClass<Creature>();
|
||||||
|
@ -64,7 +63,6 @@ void OTClient::registerLuaFunctions()
|
||||||
g_lua.bindClassStaticFunction<Game>("logout", std::bind(&Game::logout, &g_game, _1));
|
g_lua.bindClassStaticFunction<Game>("logout", std::bind(&Game::logout, &g_game, _1));
|
||||||
g_lua.bindClassStaticFunction<Game>("cancelLogin", std::bind(&Game::cancelLogin, &g_game));
|
g_lua.bindClassStaticFunction<Game>("cancelLogin", std::bind(&Game::cancelLogin, &g_game));
|
||||||
g_lua.bindClassStaticFunction<Game>("isOnline", std::bind(&Game::isOnline, &g_game));
|
g_lua.bindClassStaticFunction<Game>("isOnline", std::bind(&Game::isOnline, &g_game));
|
||||||
g_lua.bindClassStaticFunction<Game>("getProtocolGame", std::bind(&Game::getProtocolGame, &g_game));
|
|
||||||
|
|
||||||
g_lua.registerClass<UIMap, UIWidget>();
|
g_lua.registerClass<UIMap, UIWidget>();
|
||||||
g_lua.bindClassStaticFunction<UIMap>("create", &UIWidget::create<UIMap>);
|
g_lua.bindClassStaticFunction<UIMap>("create", &UIWidget::create<UIMap>);
|
||||||
|
|
Loading…
Reference in New Issue