-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
AI_M.lua
81 lines (66 loc) · 2.39 KB
/
AI_M.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
-- Create a RAIL object (to be populated later)
if not RAIL then
RAIL = {}
end
-- Now auto-detect where RAIL is located
do
function FileExists(filename)
-- Try to open the file
local file = io.open(filename)
if file then
file:close()
return true
end
return false
end
local function CheckVersion(path,prev_ver,prev_path,prev_env)
-- Check for MainRAIL.lua, to ensure Version.lua doesn't come from another script
if not FileExists(path .. "MainRAIL.lua") then
-- Can't read RAIL from here
return -1
end
-- Load version file
local success,f = pcall(loadfile,path .. "Version.lua")
-- Check that it loaded okay
if not success or not f then return -1 end
-- Set environment
local env = { ["string"] = string, ["tonumber"] = tonumber }
setfenv(f,env)
-- Call the function
success = pcall(f)
-- Check if the protected call succeeded
if not success then return -1 end
-- Check for the RAIL object's Version property
if not env.RAIL or not env.RAIL.Version then return -1 end
-- Check against previous version
if env.RAIL.Version > prev_ver then
return env.RAIL.Version, path, env
else
return prev_ver, prev_path, prev_env
end
end
-- Find the highest version of RAIL
local ScriptVersion,ScriptLocation,penv = CheckVersion("./",-1)
ScriptVersion,ScriptLocation,penv = CheckVersion("./AI/",ScriptVersion,ScriptLocation,penv)
ScriptVersion,ScriptLocation,penv = CheckVersion("./AI/USER_AI/",ScriptVersion,ScriptLocation,penv)
-- If all else failed, make sure the RO client doesn't crash
if ScriptVersion < 0 then
(TraceAI or print)("RAIL failed to locate script directory.")
RAIL.CantRun = true
AI = function() end
else
-- Copy version information from the protected environment (created in CheckVersion)
RAIL.Version = penv.RAIL.Version
RAIL.FullVersion = penv.RAIL.FullVersion
-- Don't load Version.lua again
_LOADED.Version = true
-- Set LUA_PATH to include the autodetected location
LUA_PATH = ScriptLocation .. "?;" .. ScriptLocation .. "?.lua;?;?.lua"
end
end
-- Only continue if autodetection worked
if not RAIL.CantRun then
-- The only difference between AI_M.lua and AI.lua is this following line
RAIL.Mercenary = true
require "MainRAIL"
end