965e8589c9
I implemented a QuestHelper_GetTime function for the next time Blizzard decides to fiddle with the time functions. It returns debugprofilestop() / 1000, to exactly match the precision of GetTime(). I also re-removed references to Cartographer from the rollback.
37 lignes
1,1 Kio
Lua
37 lignes
1,1 Kio
Lua
|
|
local GetTime = QuestHelper_GetTime
|
|
|
|
QuestHelper_File["routing_loc.lua"] = "4.0.1.$svnversion$"
|
|
QuestHelper_Loadtime["routing_loc.lua"] = GetTime()
|
|
|
|
-- Okay, this is going to be revamped seriously later, but for now:
|
|
-- .c is continent, either 0, 3, or -77
|
|
-- .x is x-coordinate
|
|
-- .y is y-coordinate
|
|
-- .p is original-questhelper plane
|
|
-- that's it.
|
|
|
|
-- Also, we're gonna pull something similar as with Collect to wrap everything up and not pollute the global space. But for now we don't.
|
|
|
|
-- LOCATIONS ARE IMMUTABLE, THEY NEVER CHANGE, THIS IS INCREDIBLY IMPORTANT
|
|
|
|
function NewLoc(c, x, y, rc, rz)
|
|
QuestHelper: Assert(c)
|
|
QuestHelper: Assert(x)
|
|
QuestHelper: Assert(y)
|
|
local tab = QuestHelper:CreateTable("location")
|
|
tab.c = c
|
|
tab.x = x
|
|
tab.y = y
|
|
if not QuestHelper_IndexLookup[rc] or not QuestHelper_IndexLookup[rc][rz] then
|
|
QuestHelper:TextOut(string.format("lolwut %s %s", tostring(rc), tostring(rz)))
|
|
end
|
|
QuestHelper: Assert(QuestHelper_IndexLookup[rc])
|
|
QuestHelper: Assert(QuestHelper_IndexLookup[rc][rz])
|
|
tab.p = QuestHelper_IndexLookup[rc][rz]
|
|
return tab
|
|
end
|
|
|
|
function IsLoc(c)
|
|
return c and c.c and c.x and c.y and c.p
|
|
end
|