diff --git a/game/profile-thread/Client.lua b/game/profile-thread/Client.lua new file mode 100644 index 0000000000000000000000000000000000000000..5455fd96fe6e16697cc949362d58777687f6c2bd --- /dev/null +++ b/game/profile-thread/Client.lua @@ -0,0 +1,131 @@ +-- TE4 - T-Engine 4 +-- Copyright (C) 2009, 2010 Nicolas Casalini +-- +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation, either version 3 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program. If not, see <http://www.gnu.org/licenses/>. +-- +-- Nicolas Casalini "DarkGod" +-- darkgod@te4.org + +require "engine.class" +local socket = require "socket" + +module(..., package.seeall, class.make) + +function _M:init() +end + +function _M:connected() + if self.sock then return true end + self.sock = socket.connect("te4.org", 2257) + if not self.sock then return false end + self.sock:settimeout(10) + print("[PROFILE] Thread connected to te4.org") + self:login() + return true +end + +function _M:write(str, ...) + self.sock:send(str:format(...)) +end + +function _M:read(ncode) + local l = self.sock:receive("*l") + if not l then return end + if ncode and l:sub(1, 3) ~= ncode then + return nil, "bad code" + end + self.last_line = l:sub(5) + return l +end + +function _M:login() + if self.sock and not self.auth and self.user_login and self.user_pass then + self:command("AUTH", self.user_login) + self:read("200") + self:command("PASS", self.user_pass) + if self:read("200") then + print("[PROFILE] logged in!", self.user_login) + self.auth = self.last_line:unserialize() + cprofile.pushEvent(string.format("e='Auth' ok=%q", self.last_line)) + return true + else + print("[PROFILE] could not log in") + self.user_login = nil + self.user_pass = nil + cprofile.pushEvent("e='Auth' ok=false") + return false + end + end +end + +function _M:command(c, ...) + self.sock:send(("%s %s\n"):format(c, table.concat({...}, " "))) +end + +function _M:step() + if self:connected() then + local rready = socket.select({self.sock}, nil, 0) + if rready[self.sock] then + local l = self:read() + if l then print("GOT: ", l) end + end + return true + end + return false +end + +function _M:run() + while true do + local order = cprofile.popOrder() + while order do self:handleOrder(order) order = cprofile.popOrder() end + + self:step() + core.game.sleep(50) + end +end + +-------------------------------------------------------------------- +-- Orders comming from the main thread +-------------------------------------------------------------------- + +function _M:orderLogin(o) + -- Already logged? + if self.auth and self.auth.login == o.login then + print("[PROFILE] reusing login") + cprofile.pushEvent(string.format("e='Auth' ok=%q", table.serialize(self.auth))) + else + self.user_login = o.l + self.user_pass = o.p + self:login() + end +end + +function _M:orderGetNews(o) + self:command("NEWS") + if self:read("200") then + local _, _, size, title = self.last_line:find("^([0-9]+) (.*)") + size = tonumber(size) + if not size or size < 1 or not title then cprofile.pushEvent("e='News' news=false") return end + + local body = self.sock:receive(size) + cprofile.pushEvent(string.format("e='GetNews' news=%q", table.serialize{title=title, body=body})) + else + cprofile.pushEvent("e='GetNews' news=false") + end +end + +function _M:handleOrder(o) + o = o:unserialize() + if self["order"..o.o] then self["order"..o.o](self, o) end +end