本文整理汇总了C++中CDBAgent::UpdateWarehouseData方法的典型用法代码示例。如果您正苦于以下问题:C++ CDBAgent::UpdateWarehouseData方法的具体用法?C++ CDBAgent::UpdateWarehouseData怎么用?C++ CDBAgent::UpdateWarehouseData使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CDBAgent
的用法示例。
在下文中一共展示了CDBAgent::UpdateWarehouseData方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: ReqSaveCharacter
void CUser::ReqSaveCharacter()
{
if (m_bLevel == 0)
TRACE("### ReqSaveCharacter - Level is Zero : bRoom=%d, bNation=%d, bZone=%d ####\n", GetEventRoom(), GetNation(), GetZoneID());
g_DBAgent.UpdateUser(GetName(), UPDATE_PACKET_SAVE, this);
g_DBAgent.UpdateWarehouseData(GetAccountName(), UPDATE_PACKET_SAVE, this);
g_DBAgent.UpdateSavedMagic(this);
}
示例2: ReqUserLogOut
void CUser::ReqUserLogOut()
{
string strCharID = GetName();
g_DBAgent.UpdateUser(strCharID, UPDATE_LOGOUT, this);
g_DBAgent.UpdateWarehouseData(m_strAccountID, UPDATE_LOGOUT, this);
if (m_bLogout != 2) // zone change logout
g_DBAgent.AccountLogout(m_strAccountID);
// this session can be used again.
m_deleted = false;
}
示例3: ReqUserLogOut
void CUser::ReqUserLogOut()
{
g_DBAgent.UpdateUser(GetName(), UPDATE_LOGOUT, this);
g_DBAgent.UpdateWarehouseData(GetAccountName(), UPDATE_LOGOUT, this);
g_DBAgent.UpdateSavedMagic(this);
PlayerRanking(GetZoneID(), true);
if (m_bLogout != 2) // zone change logout
g_DBAgent.AccountLogout(GetAccountName());
// this session can be used again.
m_deleted = false;
}
示例4: ReqUserLogOut
void CUser::ReqUserLogOut()
{
PlayerRankingProcess(GetZoneID(), true);
if (isInTempleEventZone())
RemoveEventUser(GetSocketID());
if (m_bLevel == 0)
TRACE("### ReqUserLogOut - Level is Zero : bRoom=%d, bNation=%d, bZone=%d ####\n", GetEventRoom(), GetNation(), GetZoneID());
g_DBAgent.UpdateUser(GetName(), UPDATE_LOGOUT, this);
g_DBAgent.UpdateWarehouseData(GetAccountName(), UPDATE_LOGOUT, this);
g_DBAgent.UpdateSavedMagic(this);
if (m_bLogout != 2) // zone change logout
g_DBAgent.AccountLogout(GetAccountName());
// this session can be used again.
m_deleted = false;
}
示例5: ReqSaveCharacter
void CUser::ReqSaveCharacter()
{
g_DBAgent.UpdateUser(GetName(), UPDATE_PACKET_SAVE, this);
g_DBAgent.UpdateWarehouseData(GetAccountName(), UPDATE_PACKET_SAVE, this);
g_DBAgent.UpdateSavedMagic(this);
}
示例6: ReqSaveCharacter
void CUser::ReqSaveCharacter()
{
std::string strUserID = GetName();
g_DBAgent.UpdateUser(strUserID, UPDATE_PACKET_SAVE, this);
g_DBAgent.UpdateWarehouseData(m_strAccountID, UPDATE_PACKET_SAVE, this);
}