mcbot/mcbot_shell.lua
author Mikael Berthe <mikael@lilotux.net>
Tue, 27 Nov 2012 16:26:04 +0100
changeset 66 d9c00a9fe9d5
parent 1 cca972635e5e
permissions -rwxr-xr-x
Add notices before public release

#! /usr/bin/env lua

-- This is a small wrapper to call the mcabbot engine from a shell
-- (i.e. without mcabber).

require "mcbot_engine"

local function mcbot_mainloop (BotName)
    local data = { ["nickname"] = BotName }
    while true do
        local l = io.stdin:read'*l'
        if l == nil then break end
        local res, errmsg = process(l, data, false)
        if res then
            print(res)
        else
            if errmsg then print(errmsg) end
        end
    end
end

mcbot_mainloop("mcbot")