2010-10-07 15:35:36 +02:00
/*
* Copyright (C) 2008-2010 TrinityCore <http://www.trinitycore.org/>
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
*
* 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, see <http://www.gnu.org/licenses/>.
2008-10-02 16:23:55 -05:00
*/
2009-10-17 15:51:44 -07:00
2010-06-07 16:21:52 -06:00
#include "ScriptPCH.h"
2010-01-19 11:36:05 +01:00
#include "ScriptSystem.h"
2009-08-16 19:38:18 +02:00
#include "ObjectMgr.h"
2010-06-08 17:01:03 -06:00
#include "DatabaseEnv.h"
2009-10-17 15:51:44 -07:00
2009-08-16 19:38:18 +02:00
void SystemMgr :: LoadVersion ()
{
//Get Version information
2010-09-11 21:10:54 +02:00
QueryResult Result = WorldDatabase . Query ( "SELECT script_version FROM version LIMIT 1" );
2009-10-17 15:51:44 -07:00
2010-01-23 14:45:58 +01:00
if ( Result )
2009-08-16 19:38:18 +02:00
{
2010-01-23 14:45:58 +01:00
Field * pFields = Result -> Fetch ();
2009-10-17 15:51:44 -07:00
2010-09-25 01:02:40 +02:00
sLog . outString ( "TSCR: Database version is: %s" , pFields [ 0 ]. GetCString ());
2010-08-30 15:25:15 +02:00
sLog . outString ();
2009-08-16 19:38:18 +02:00
}
else
{
2010-06-22 02:53:04 +02:00
sLog . outError ( "TSCR: Missing `version`.`script_version` information." );
2010-08-30 15:25:15 +02:00
sLog . outString ();
2009-08-16 19:38:18 +02:00
}
}
2009-10-17 15:51:44 -07:00
2009-08-16 19:38:18 +02:00
void SystemMgr :: LoadScriptTexts ()
{
2010-06-22 02:53:04 +02:00
sLog . outString ( "TSCR: Loading Script Texts..." );
2010-09-02 17:47:50 +02:00
LoadTrinityStrings ( "script_texts" , TEXT_SOURCE_RANGE , 1 + ( TEXT_SOURCE_RANGE * 2 ));
2010-12-19 17:06:33 +01:00
2010-06-22 02:53:04 +02:00
sLog . outString ( "TSCR: Loading Script Texts additional data..." );
2010-12-19 17:06:33 +01:00
uint32 oldMSTime = getMSTime ();
2009-10-17 15:51:44 -07:00
2010-12-19 17:06:33 +01:00
QueryResult result = WorldDatabase . Query ( "SELECT entry, sound, type, language, emote FROM script_texts" );
2009-10-17 15:51:44 -07:00
2010-12-19 17:06:33 +01:00
if ( ! result )
2009-08-16 19:38:18 +02:00
{
2010-06-22 02:53:04 +02:00
sLog . outString ( ">> Loaded 0 additional Script Texts data. DB table `script_texts` is empty." );
2010-12-19 17:06:33 +01:00
sLog . outString ();
return ;
2009-08-16 19:38:18 +02:00
}
2010-12-19 17:06:33 +01:00
uint32 uiCount = 0 ;
do
{
Field * pFields = result -> Fetch ();
StringTextData pTemp ;
int32 iId = pFields [ 0 ]. GetInt32 ();
pTemp . uiSoundId = pFields [ 1 ]. GetUInt32 ();
pTemp . uiType = pFields [ 2 ]. GetUInt32 ();
pTemp . uiLanguage = pFields [ 3 ]. GetUInt32 ();
pTemp . uiEmote = pFields [ 4 ]. GetUInt32 ();
if ( iId >= 0 )
{
sLog . outErrorDb ( "TSCR: Entry %i in table `script_texts` is not a negative value." , iId );
continue ;
}
if ( iId > TEXT_SOURCE_RANGE || iId <= TEXT_SOURCE_RANGE * 2 )
{
sLog . outErrorDb ( "TSCR: Entry %i in table `script_texts` is out of accepted entry range for table." , iId );
continue ;
}
if ( pTemp . uiSoundId )
{
if ( ! GetSoundEntriesStore () -> LookupEntry ( pTemp . uiSoundId ))
sLog . outErrorDb ( "TSCR: Entry %i in table `script_texts` has soundId %u but sound does not exist." , iId , pTemp . uiSoundId );
}
if ( ! GetLanguageDescByID ( pTemp . uiLanguage ))
sLog . outErrorDb ( "TSCR: Entry %i in table `script_texts` using Language %u but Language does not exist." , iId , pTemp . uiLanguage );
if ( pTemp . uiType > CHAT_TYPE_ZONE_YELL )
sLog . outErrorDb ( "TSCR: Entry %i in table `script_texts` has Type %u but this Chat Type does not exist." , iId , pTemp . uiType );
m_mTextDataMap [ iId ] = pTemp ;
++ uiCount ;
} while ( result -> NextRow ());
sLog . outString ( ">> Loaded %u additional Script Texts data in %u ms" , uiCount , GetMSTimeDiffToNow ( oldMSTime ));
sLog . outString ();
2009-08-16 19:38:18 +02:00
}
2009-10-17 15:51:44 -07:00
2009-08-16 19:38:18 +02:00
void SystemMgr :: LoadScriptTextsCustom ()
{
2010-06-22 02:53:04 +02:00
sLog . outString ( "TSCR: Loading Custom Texts..." );
2010-09-02 17:47:50 +02:00
LoadTrinityStrings ( "custom_texts" , TEXT_SOURCE_RANGE * 2 , 1 + ( TEXT_SOURCE_RANGE * 3 ));
2009-10-17 15:51:44 -07:00
2010-06-22 02:53:04 +02:00
sLog . outString ( "TSCR: Loading Custom Texts additional data..." );
2009-10-17 15:51:44 -07:00
2010-12-19 17:06:33 +01:00
QueryResult result = WorldDatabase . Query ( "SELECT entry, sound, type, language, emote FROM custom_texts" );
2009-10-17 15:51:44 -07:00
2010-12-19 17:06:33 +01:00
if ( ! result )
2009-08-16 19:38:18 +02:00
{
2010-06-22 02:53:04 +02:00
sLog . outString ( ">> Loaded 0 additional Custom Texts data. DB table `custom_texts` is empty." );
2010-12-19 17:06:33 +01:00
sLog . outString ();
return ;
2009-08-16 19:38:18 +02:00
}
2010-12-19 17:06:33 +01:00
uint32 uiCount = 0 ;
do
{
Field * pFields = result -> Fetch ();
StringTextData pTemp ;
int32 iId = pFields [ 0 ]. GetInt32 ();
pTemp . uiSoundId = pFields [ 1 ]. GetUInt32 ();
pTemp . uiType = pFields [ 2 ]. GetUInt32 ();
pTemp . uiLanguage = pFields [ 3 ]. GetUInt32 ();
pTemp . uiEmote = pFields [ 4 ]. GetUInt32 ();
if ( iId >= 0 )
{
sLog . outErrorDb ( "TSCR: Entry %i in table `custom_texts` is not a negative value." , iId );
continue ;
}
if ( iId > TEXT_SOURCE_RANGE * 2 || iId <= TEXT_SOURCE_RANGE * 3 )
{
sLog . outErrorDb ( "TSCR: Entry %i in table `custom_texts` is out of accepted entry range for table." , iId );
continue ;
}
if ( pTemp . uiSoundId )
{
if ( ! GetSoundEntriesStore () -> LookupEntry ( pTemp . uiSoundId ))
sLog . outErrorDb ( "TSCR: Entry %i in table `custom_texts` has soundId %u but sound does not exist." , iId , pTemp . uiSoundId );
}
if ( ! GetLanguageDescByID ( pTemp . uiLanguage ))
sLog . outErrorDb ( "TSCR: Entry %i in table `custom_texts` using Language %u but Language does not exist." , iId , pTemp . uiLanguage );
if ( pTemp . uiType > CHAT_TYPE_ZONE_YELL )
sLog . outErrorDb ( "TSCR: Entry %i in table `custom_texts` has Type %u but this Chat Type does not exist." , iId , pTemp . uiType );
m_mTextDataMap [ iId ] = pTemp ;
++ uiCount ;
} while ( result -> NextRow ());
sLog . outString ( ">> Loaded %u additional Custom Texts data." , uiCount );
sLog . outString ();
2009-08-16 19:38:18 +02:00
}
2009-10-17 15:51:44 -07:00
2009-08-16 19:38:18 +02:00
void SystemMgr :: LoadScriptWaypoints ()
{
2010-12-19 17:06:33 +01:00
uint32 oldMSTime = getMSTime ();
2009-08-16 19:38:18 +02:00
// Drop Existing Waypoint list
m_mPointMoveMap . clear ();
2009-10-17 15:51:44 -07:00
2009-08-16 19:38:18 +02:00
uint64 uiCreatureCount = 0 ;
2009-10-17 15:51:44 -07:00
2009-08-16 19:38:18 +02:00
// Load Waypoints
2010-12-19 17:06:33 +01:00
QueryResult result = WorldDatabase . Query ( "SELECT COUNT(entry) FROM script_waypoint GROUP BY entry" );
if ( result )
uiCreatureCount = result -> GetRowCount ();
2009-10-17 15:51:44 -07:00
2010-08-30 15:25:15 +02:00
sLog . outString ( "TSCR: Loading Script Waypoints for " UI64FMTD " creature(s)..." , uiCreatureCount );
2009-10-17 15:51:44 -07:00
2010-12-19 17:06:33 +01:00
result = WorldDatabase . Query ( "SELECT entry, pointid, location_x, location_y, location_z, waittime FROM script_waypoint ORDER BY pointid" );
2009-10-17 15:51:44 -07:00
2010-12-19 17:06:33 +01:00
if ( ! result )
2009-08-16 19:38:18 +02:00
{
2010-12-19 17:06:33 +01:00
sLog . outString ( ">> Loaded 0 Script Waypoints. DB table `script_waypoint` is empty." );
sLog . outString ();
return ;
}
2009-10-17 15:51:44 -07:00
2010-12-19 17:06:33 +01:00
uint32 count = 0 ;
2009-10-17 15:51:44 -07:00
2010-12-19 17:06:33 +01:00
do
{
Field * pFields = result -> Fetch ();
ScriptPointMove pTemp ;
2009-10-17 15:51:44 -07:00
2010-12-19 17:06:33 +01:00
pTemp . uiCreatureEntry = pFields [ 0 ]. GetUInt32 ();
uint32 uiEntry = pTemp . uiCreatureEntry ;
pTemp . uiPointId = pFields [ 1 ]. GetUInt32 ();
pTemp . fX = pFields [ 2 ]. GetFloat ();
pTemp . fY = pFields [ 3 ]. GetFloat ();
pTemp . fZ = pFields [ 4 ]. GetFloat ();
pTemp . uiWaitTime = pFields [ 5 ]. GetUInt32 ();
2009-10-17 15:51:44 -07:00
2010-12-19 17:06:33 +01:00
CreatureInfo const * pCInfo = GetCreatureTemplateStore ( pTemp . uiCreatureEntry );
2009-10-17 15:51:44 -07:00
2010-12-19 17:06:33 +01:00
if ( ! pCInfo )
{
sLog . outErrorDb ( "TSCR: DB table script_waypoint has waypoint for non-existant creature entry %u" , pTemp . uiCreatureEntry );
continue ;
}
2009-10-17 15:51:44 -07:00
2010-12-19 17:06:33 +01:00
if ( ! pCInfo -> ScriptID )
sLog . outErrorDb ( "TSCR: DB table script_waypoint has waypoint for creature entry %u, but creature does not have ScriptName defined and then useless." , pTemp . uiCreatureEntry );
2009-10-17 15:51:44 -07:00
2010-12-19 17:06:33 +01:00
m_mPointMoveMap [ uiEntry ]. push_back ( pTemp );
++ count ;
} while ( result -> NextRow ());
sLog . outString ( ">> Loaded %u Script Waypoint nodes in %u ms" , count , GetMSTimeDiffToNow ( oldMSTime ));
sLog . outString ();
2009-08-16 19:38:18 +02:00
}