1
0
Bifurcation 0

Made it 'work'. Does NOT do any path calculation and load message freezes at 13%, but it DOES collect data.

Cette révision appartient à :
Nathanial.C.Jones 2010-11-27 22:47:32 +00:00
Parent 3ee4052b4c
révision 1e99b13835
5 fichiers modifiés avec 22 ajouts et 4 suppressions

Voir le fichier

@ -1865,7 +1865,20 @@ VirtualContinentIndexes = { -- Don't change values here, since programs might wa
["Ulduar4"] = -116,
["TheForgeofSouls"] = -117,
["PitofSaron"] = -118,
["PitofSaron"] = -118
--[[
["AbyssalMaw"] = -120,
["ThroneOfTheTides"] = -130,
["BlackrockCaverns"] = -140,
["HallsOfOrigination"] = -150,
["LostCityOfTol'vir"] = -160,
["VortexPinnacle"] = -170,
["UnknownDeepholme"] = -180,
["UnknownGrimBatol"] = -190,
["BlackwingDescent"] = -200,
["BastionOfTwilight"] = -210,
["ThroneOfTheFourWinds"] = -220
--]]
}
DongleStub:Register(Astrolabe, activate)

Voir le fichier

@ -426,6 +426,8 @@ QH_Event("ADDON_LOADED", function (addonid)
local stt = 0
-- This is where the slow stuff goes
--[[ Commenting the path finding shit out until it is fixed. We need collection to work.
-- 4.0.3a Breakage related
QuestHelper_BuildZoneLookup()
QH_Graph_Init()
load_graph_links()
@ -462,6 +464,7 @@ QH_Event("ADDON_LOADED", function (addonid)
QuestHelper_FlightRoutes_Local = QuestHelper_FlightRoutes[signature]
QuestHelper_SeenRealms[GetRealmName()] = true -- some attempt at tracking private servers
--]]
QuestHelper.loading_init3:SetPercentage(0.1)
QH_Collector_Init()

Voir le fichier

@ -268,7 +268,7 @@ end
function load_graph_links()
local function convert_coordinate(coord)
QuestHelper: Assert(coord[1] and coord[2] and coord[3])
QuestHelper: Assert(QuestHelper_ZoneLookup[coord[1]])
QuestHelper: Assert(QuestHelper_ZoneLookup[coord[1]], string.format("Coord[1] = %d", coord[1]))
local c, x, y = QuestHelper.Astrolabe:GetAbsoluteContinentPosition(QuestHelper_ZoneLookup[coord[1]][1], QuestHelper_ZoneLookup[coord[1]][2], coord[2], coord[3])
QuestHelper: Assert(c)
return {x = x, y = y, p = coord[1], c = c}

Voir le fichier

@ -533,4 +533,5 @@ local function process()
end
end
QH_Timeslice_Add(process, "new_routing")
-- 4.0.3a Breakage related
--QH_Timeslice_Add(process, "new_routing")

Voir le fichier

@ -315,9 +315,10 @@ QuestHelper_IndexLookup =
["RuinsofGilneasCity"] = {170, 2, 21}, ["VashjirRuins"] = {171, 2, 23},
["TolBarad"] = {175, 2, 32}, ["TolBaradDailyArea"] = {176, 2, 33},
["TwilightHighlands_terrain1"] = {177, 2, 34}, ["Vashjir"] = {178, 2, 36},
["TwilightHighlands"] = {184, 2, 34},
["Deepholm"] = {179, 5, 1}, ["Kezan"] = {180, 5, 2},
["TheLostIsles"] = {181, 5, 3}, ["TheMaelstrom"] = {182, 5, 4},
["TheMaelstromContinent"] = {183, 5, 0}
["TheMaelstromContinent"] = {183, 5, 0}, ["Hyjal_terrain1"] = {185, 1, 14}
-- yes virginia 183 is currently the end
}