2019-07-17 21:14:34 +02:00
|
|
|
do
|
2020-07-04 06:27:30 +02:00
|
|
|
local ourpath = lua.startupfile:match('(.*[/\\])[^/\\]*%.lua$')
|
2020-05-26 19:29:58 +02:00
|
|
|
kpse = assert(package.loadlib(ourpath .. 'kpse.so', 'luaopen_kpse'))()
|
2019-07-17 21:14:34 +02:00
|
|
|
end
|
2020-07-04 06:27:30 +02:00
|
|
|
local interaction
|
2019-07-18 20:02:58 +02:00
|
|
|
do
|
2020-05-26 19:29:58 +02:00
|
|
|
local arg0, progname
|
|
|
|
for _, a in ipairs(arg) do
|
|
|
|
if a:sub(1,11) == "--progname=" then
|
|
|
|
progname = a:sub(12)
|
|
|
|
elseif a:sub(1,7) == "--arg0=" then
|
|
|
|
arg0 = a:sub(8)
|
2020-07-04 06:27:30 +02:00
|
|
|
elseif a:match'^%-%-?interaction=' then
|
|
|
|
local interaction_name = a:sub(a:find'='+1)
|
|
|
|
interaction = ({
|
|
|
|
batchmode=0,
|
|
|
|
nonstopmode=1,
|
|
|
|
scrollmode=2,
|
|
|
|
errorstopmode=3,
|
|
|
|
})[interaction_name]
|
|
|
|
if not interaction then
|
|
|
|
texio.write('term', string.format('Unknown interaction mode %q ignored.\n', interaction_name))
|
|
|
|
end
|
2020-05-26 19:29:58 +02:00
|
|
|
end
|
|
|
|
end
|
2020-07-07 04:54:27 +02:00
|
|
|
os.arg0 = arg0
|
2020-05-26 19:29:58 +02:00
|
|
|
kpse.set_program_name(arg0, progname)
|
2019-07-18 20:02:58 +02:00
|
|
|
end
|
2019-07-17 21:14:34 +02:00
|
|
|
package.searchers[2] = function(modname)
|
2020-05-26 19:29:58 +02:00
|
|
|
local filename = kpse.find_file(modname, "lua", true)
|
2019-07-17 21:14:34 +02:00
|
|
|
if not filename then
|
|
|
|
return string.format("\n\tno file located through kpse for %s", modname)
|
|
|
|
end
|
|
|
|
local mod, msg = loadfile(filename)
|
|
|
|
if msg then
|
|
|
|
error(string.format("error loading module '%s' from file '%s':\n\t%s", modname, filename, msg))
|
|
|
|
end
|
|
|
|
return mod, filename
|
|
|
|
end
|
2020-07-05 15:42:27 +02:00
|
|
|
kpse.set_maketex("fmt", true, "compile")
|
2020-07-05 20:40:09 +02:00
|
|
|
kpse.set_maketex("pk", true, "compile")
|
2019-07-20 16:39:34 +02:00
|
|
|
require'luametalatex-init-config'
|
2020-06-11 01:16:42 +02:00
|
|
|
local callback_register = callback.register
|
2020-07-04 06:27:30 +02:00
|
|
|
local build_bytecode
|
|
|
|
if status.ini_version then
|
|
|
|
local build_bytecode_mod = require'luametalatex-build-bytecode'
|
|
|
|
local preloaded_modules = {}
|
|
|
|
local old_searcher = package.searchers[2]
|
|
|
|
package.searchers[2] = function(name)
|
|
|
|
local mod, file = old_searcher(name)
|
|
|
|
if not file then return mod end -- Only works because we always return file when successful
|
|
|
|
preloaded_modules[#preloaded_modules+1] = {name, file}
|
|
|
|
return mod, file
|
2020-06-11 01:16:42 +02:00
|
|
|
end
|
2020-07-04 06:27:30 +02:00
|
|
|
function build_bytecode(str)
|
|
|
|
return load(build_bytecode_mod(preloaded_modules) .. "\nrequire'luametalatex-lateinit'(function()" .. str .. '\nend)', 'preloaded', 't')
|
2020-06-11 01:16:42 +02:00
|
|
|
end
|
|
|
|
end
|
2020-07-04 06:27:30 +02:00
|
|
|
|
2020-06-11 01:16:42 +02:00
|
|
|
callback_register('find_format_file', function(name) return kpse.find_file(name, 'fmt', true) end)
|
2020-05-26 19:29:58 +02:00
|
|
|
function texconfig.init()
|
2020-07-04 06:27:30 +02:00
|
|
|
if interaction then
|
|
|
|
tex.setinteraction(interaction)
|
|
|
|
end
|
|
|
|
if build_bytecode then -- Effectivly if status.ini_version
|
|
|
|
require'luametalatex-lateinit'(build_bytecode)
|
|
|
|
else
|
|
|
|
local register = tex.count[262]+1
|
|
|
|
lua.bytecode[register]()
|
|
|
|
lua.bytecode[register] = nil
|
2020-05-26 19:29:58 +02:00
|
|
|
end
|
2019-07-17 21:14:34 +02:00
|
|
|
end
|