void Log::ToggleEnabled( int type ) { if ( !IsTypeEnabled( type ) ) EnableType( type ); else DisableType( type ); }
void LoadDisables() { uint32 oldMSTime = getMSTime(); // reload case for (DisableMap::iterator itr = m_DisableMap.begin(); itr != m_DisableMap.end(); ++itr) itr->second.clear(); m_DisableMap.clear(); QueryResult result = WorldDatabase.Query("SELECT sourceType, entry, flags, params_0, params_1 FROM disables"); uint32 total_count = 0; if (!result) { TC_LOG_INFO(LOG_FILTER_SERVER_LOADING, ">> Loaded 0 disables. DB table `disables` is empty!"); return; } Field* fields; do { fields = result->Fetch(); DisableType type = DisableType(fields[0].GetUInt32()); if (type >= MAX_DISABLE_TYPES) { TC_LOG_ERROR(LOG_FILTER_SQL, "Invalid type %u specified in `disables` table, skipped.", type); continue; } uint32 entry = fields[1].GetUInt32(); uint8 flags = fields[2].GetUInt8(); std::string params_0 = fields[3].GetString(); std::string params_1 = fields[4].GetString(); DisableData data; data.flags = flags; switch (type) { case DISABLE_TYPE_SPELL: if (!(sSpellMgr->GetSpellInfo(entry) || flags & SPELL_DISABLE_DEPRECATED_SPELL)) { TC_LOG_ERROR(LOG_FILTER_SQL, "Spell entry %u from `disables` doesn't exist in dbc, skipped.", entry); continue; } if (!flags || flags > MAX_SPELL_DISABLE_TYPE) { TC_LOG_ERROR(LOG_FILTER_SQL, "Disable flags for spell %u are invalid, skipped.", entry); continue; } if (flags & SPELL_DISABLE_MAP) { Tokenizer tokens(params_0, ','); for (uint8 i = 0; i < tokens.size(); ) data.params[0].insert(atoi(tokens[i++])); } if (flags & SPELL_DISABLE_AREA) { Tokenizer tokens(params_1, ','); for (uint8 i = 0; i < tokens.size(); ) data.params[1].insert(atoi(tokens[i++])); } break; // checked later case DISABLE_TYPE_QUEST: break; case DISABLE_TYPE_MAP: { MapEntry const* mapEntry = sMapStore.LookupEntry(entry); if (!mapEntry) { TC_LOG_ERROR(LOG_FILTER_SQL, "Map entry %u from `disables` doesn't exist in dbc, skipped.", entry); continue; } bool isFlagInvalid = false; switch (mapEntry->map_type) { case MAP_COMMON: if (flags) isFlagInvalid = true; break; case MAP_INSTANCE: case MAP_RAID: if (flags & DUNGEON_STATUSFLAG_HEROIC && !GetMapDifficultyData(entry, DUNGEON_DIFFICULTY_HEROIC)) flags -= DUNGEON_STATUSFLAG_HEROIC; if (flags & RAID_STATUSFLAG_10MAN_HEROIC && !GetMapDifficultyData(entry, RAID_DIFFICULTY_10MAN_HEROIC)) flags -= RAID_STATUSFLAG_10MAN_HEROIC; if (flags & RAID_STATUSFLAG_25MAN_HEROIC && !GetMapDifficultyData(entry, RAID_DIFFICULTY_25MAN_HEROIC)) flags -= RAID_STATUSFLAG_25MAN_HEROIC; if (!flags) isFlagInvalid = true; break; case MAP_BATTLEGROUND: case MAP_ARENA: TC_LOG_ERROR(LOG_FILTER_SQL, "Battleground map %u specified to be disabled in map case, skipped.", entry); continue; } if (isFlagInvalid) { TC_LOG_ERROR(LOG_FILTER_SQL, "Disable flags for map %u are invalid, skipped.", entry); continue; } break; } case DISABLE_TYPE_BATTLEGROUND: if (!sBattlemasterListStore.LookupEntry(entry)) { TC_LOG_ERROR(LOG_FILTER_SQL, "Battleground entry %u from `disables` doesn't exist in dbc, skipped.", entry); continue; } if (flags) TC_LOG_ERROR(LOG_FILTER_SQL, "Disable flags specified for battleground %u, useless data.", entry); break; case DISABLE_TYPE_OUTDOORPVP: if (entry > MAX_OUTDOORPVP_TYPES) { TC_LOG_ERROR(LOG_FILTER_SQL, "OutdoorPvPTypes value %u from `disables` is invalid, skipped.", entry); continue; } if (flags) TC_LOG_ERROR(LOG_FILTER_SQL, "Disable flags specified for outdoor PvP %u, useless data.", entry); break; case DISABLE_TYPE_ACHIEVEMENT_CRITERIA: if (!sAchievementMgr->GetAchievementCriteria(entry)) { TC_LOG_ERROR(LOG_FILTER_SQL, "Achievement Criteria entry %u from `disables` doesn't exist in dbc, skipped.", entry); continue; } if (flags) TC_LOG_ERROR(LOG_FILTER_SQL, "Disable flags specified for Achievement Criteria %u, useless data.", entry); break; case DISABLE_TYPE_VMAP: { MapEntry const* mapEntry = sMapStore.LookupEntry(entry); if (!mapEntry) { TC_LOG_ERROR(LOG_FILTER_SQL, "Map entry %u from `disables` doesn't exist in dbc, skipped.", entry); continue; } switch (mapEntry->map_type) { case MAP_COMMON: if (flags & VMAP_DISABLE_AREAFLAG) TC_LOG_INFO(LOG_FILTER_GENERAL, "Areaflag disabled for world map %u.", entry); if (flags & VMAP_DISABLE_LIQUIDSTATUS) TC_LOG_INFO(LOG_FILTER_GENERAL, "Liquid status disabled for world map %u.", entry); break; case MAP_INSTANCE: case MAP_RAID: if (flags & VMAP_DISABLE_HEIGHT) TC_LOG_INFO(LOG_FILTER_GENERAL, "Height disabled for instance map %u.", entry); if (flags & VMAP_DISABLE_LOS) TC_LOG_INFO(LOG_FILTER_GENERAL, "LoS disabled for instance map %u.", entry); break; case MAP_BATTLEGROUND: if (flags & VMAP_DISABLE_HEIGHT) TC_LOG_INFO(LOG_FILTER_GENERAL, "Height disabled for battleground map %u.", entry); if (flags & VMAP_DISABLE_LOS) TC_LOG_INFO(LOG_FILTER_GENERAL, "LoS disabled for battleground map %u.", entry); break; case MAP_ARENA: if (flags & VMAP_DISABLE_HEIGHT) TC_LOG_INFO(LOG_FILTER_GENERAL, "Height disabled for arena map %u.", entry); if (flags & VMAP_DISABLE_LOS) TC_LOG_INFO(LOG_FILTER_GENERAL, "LoS disabled for arena map %u.", entry); break; default: break; } break; } case DISABLE_TYPE_MMAP: { MapEntry const* mapEntry = sMapStore.LookupEntry(entry); if (!mapEntry) { TC_LOG_ERROR(LOG_FILTER_SQL, "Map entry %u from `disables` doesn't exist in dbc, skipped.", entry); continue; } switch (mapEntry->map_type) { case MAP_COMMON: TC_LOG_INFO(LOG_FILTER_GENERAL, "Pathfinding disabled for world map %u.", entry); break; case MAP_INSTANCE: case MAP_RAID: TC_LOG_INFO(LOG_FILTER_GENERAL, "Pathfinding disabled for instance map %u.", entry); break; case MAP_BATTLEGROUND: TC_LOG_INFO(LOG_FILTER_GENERAL, "Pathfinding disabled for battleground map %u.", entry); break; case MAP_ARENA: TC_LOG_INFO(LOG_FILTER_GENERAL, "Pathfinding disabled for arena map %u.", entry); break; default: break; } break; } default: break; } m_DisableMap[type].insert(DisableTypeMap::value_type(entry, data)); ++total_count; } while (result->NextRow()); TC_LOG_INFO(LOG_FILTER_SERVER_LOADING, ">> Loaded %u disables in %u ms", total_count, GetMSTimeDiffToNow(oldMSTime)); }
void DisableMgr::LoadDisables() { // reload case for (DisableMap::iterator itr = m_DisableMap.begin(); itr != m_DisableMap.end(); ++itr) itr->second.clear(); m_DisableMap.clear(); QueryResult_AutoPtr result = WorldDatabase.Query("SELECT sourceType,entry,flags,params_0,params_1 FROM disables"); uint32 total_count = 0; if (!result) { sLog.outString(">> Loaded %u disables", total_count); return; } Field* fields; do { fields = result->Fetch(); DisableType type = DisableType(fields[0].GetUInt32()); if (uint32(type) >= MAX_DISABLE_TYPES) { sLog.outErrorDb("Invalid type %u specified in `disables` table, skipped.", type); continue; } uint32 entry = fields[1].GetUInt32(); uint8 flags = fields[2].GetUInt8(); std::string params_0 = fields[3].GetString(); std::string params_1 = fields[4].GetString(); DisableData data; data.flags = flags; switch (type) { case DISABLE_TYPE_SPELL: { if (!(sSpellStore.LookupEntry(entry) || flags & SPELL_DISABLE_DEPRECATED_SPELL)) { sLog.outErrorDb("Spell entry %u from `disables` doesn't exist in dbc, skipped.", entry); continue; } if (!flags || flags > MAX_SPELL_DISABLE_TYPE) { sLog.outErrorDb("Disable flags for spell %u are invalid, skipped.", entry); continue; } if (flags & SPELL_DISABLE_MAP) { Tokens tokens = StrSplit(params_0, ","); for (uint8 i = 0; i < tokens.size(); ) data.params[0].insert(atoi(tokens[i++].c_str())); } if (flags & SPELL_DISABLE_AREA) { Tokens tokens = StrSplit(params_1, ","); for (uint8 i = 0; i < tokens.size(); ) data.params[1].insert(atoi(tokens[i++].c_str())); } } break; // checked later case DISABLE_TYPE_QUEST: break; case DISABLE_TYPE_MAP: { MapEntry const* mapEntry = sMapStore.LookupEntry(entry); if (!mapEntry) { sLog.outErrorDb("Map entry %u from `disables` doesn't exist in dbc, skipped.", entry); continue; } bool isFlagInvalid = false; switch (mapEntry->map_type) { case MAP_COMMON: if (flags) isFlagInvalid = true; break; case MAP_INSTANCE: case MAP_RAID: if (flags & DUNGEON_STATUSFLAG_NORMAL && !mapEntry->IsDungeon()) isFlagInvalid = true; if (flags & DUNGEON_STATUSFLAG_HEROIC && !mapEntry->SupportsHeroicMode()) isFlagInvalid = true; else if (flags & RAID_STATUSFLAG_10MAN && !mapEntry->IsRaid()) isFlagInvalid = true; else if (flags & RAID_STATUSFLAG_25MAN && !mapEntry->IsRaid()) isFlagInvalid = true; break; case MAP_BATTLEGROUND: case MAP_ARENA: sLog.outErrorDb("Battleground map %u specified to be disabled in map case, skipped.", entry); continue; } if (isFlagInvalid) { sLog.outErrorDb("Disable flags for map %u are invalid, skipped.", entry); continue; } break; } case DISABLE_TYPE_BATTLEGROUND: if (!sBattlemasterListStore.LookupEntry(entry)) { sLog.outErrorDb("Battleground entry %u from `disables` doesn't exist in dbc, skipped.", entry); continue; } if (flags) sLog.outErrorDb("Disable flags specified for battleground %u, useless data.", entry); break; } m_DisableMap[type].insert(DisableTypeMap::value_type(entry, data)); ++total_count; } while (result->NextRow()); sLog.outString(">> Loaded %u disables.", total_count); }
void DisableMgr::LoadDisables() { // reload case for (DisableMap::iterator itr = m_DisableMap.begin(); itr != m_DisableMap.end(); ++itr) itr->second.clear(); m_DisableMap.clear(); QueryResult_AutoPtr result = WorldDatabase.Query("SELECT sourceType,entry,flags FROM disables"); uint32 total_count = 0; if (!result) { barGoLink bar(1); bar.step(); sLog.outString(); sLog.outString(">> Loaded %u disables", total_count); return; } barGoLink bar(result->GetRowCount()); Field* fields; do { bar.step(); fields = result->Fetch(); DisableType type = DisableType(fields[0].GetUInt32()); if (type >= MAX_DISABLE_TYPES) { sLog.outErrorDb("Invalid type %u specified in `disables` table, skipped.", type); continue; } uint32 entry = fields[1].GetUInt32(); uint8 flags = fields[2].GetUInt8(); switch (type) { case DISABLE_TYPE_SPELL: if (!(sSpellStore.LookupEntry(entry) || flags & SPELL_DISABLE_DEPRECATED_SPELL)) { sLog.outErrorDb("Spell entry %u from `disables` doesn't exist in dbc, skipped.", entry); continue; } if (!flags || flags > 15) { sLog.outErrorDb("Disable flags for spell %u are invalid, skipped.", entry); continue; } break; // checked later case DISABLE_TYPE_QUEST: break; case DISABLE_TYPE_MAP: { MapEntry const* mapEntry = sMapStore.LookupEntry(entry); if (!mapEntry) { sLog.outErrorDb("Map entry %u from `disables` doesn't exist in dbc, skipped.", entry); continue; } bool isFlagInvalid = false; switch (mapEntry->map_type) { case MAP_COMMON: if (flags) isFlagInvalid = true; break; case MAP_INSTANCE: case MAP_RAID: if (flags & DUNGEON_STATUSFLAG_HEROIC && !GetMapDifficultyData(entry, DUNGEON_DIFFICULTY_HEROIC)) isFlagInvalid = true; else if (flags & RAID_STATUSFLAG_10MAN_HEROIC && !GetMapDifficultyData(entry, RAID_DIFFICULTY_10MAN_HEROIC)) isFlagInvalid = true; else if (flags & RAID_STATUSFLAG_25MAN_HEROIC && !GetMapDifficultyData(entry, RAID_DIFFICULTY_25MAN_HEROIC)) isFlagInvalid = true; break; case MAP_BATTLEGROUND: case MAP_ARENA: sLog.outErrorDb("Battleground map specified to be disabled in map case, skipped.", entry); continue; } if (isFlagInvalid) { sLog.outErrorDb("Disable flags for map %u are invalid, skipped.", entry); continue; } break; } case DISABLE_TYPE_BATTLEGROUND: if (!sBattlemasterListStore.LookupEntry(entry)) { sLog.outErrorDb("Battleground entry %u from `disables` doesn't exist in dbc, skipped.", entry); continue; } if (flags) sLog.outErrorDb("Disable flags specified for battleground %u, useless data.", entry); break; case DISABLE_TYPE_OUTDOORPVP: if (entry > MAX_OUTDOORPVP_TYPES) { sLog.outErrorDb("OutdoorPvPTypes value %u from `disables` is invalid, skipped.", entry); continue; } if (flags) sLog.outErrorDb("Disable flags specified for outdoor PvP %u, useless data.", entry); break; case DISABLE_TYPE_ACHIEVEMENT_CRITERIA: if (!sAchievementCriteriaStore.LookupEntry(entry)) { sLog.outErrorDb("Achievement Criteria entry %u from `disables` doesn't exist in dbc, skipped.", entry); continue; } if (flags) sLog.outErrorDb("Disable flags specified for Achievement Criteria %u, useless data.", entry); break; } m_DisableMap[type].insert(DisableTypeMap::value_type(entry, flags)); ++total_count; } while (result->NextRow()); sLog.outString(); sLog.outString(">> Loaded %u disables.", total_count); }