Newer
Older
-- TE4 - T-Engine 4
-- Copyright (C) 2009, 2010, 2011, 2012 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 SubDialog = require "engine.ui.SubDialog"
local List = require "engine.ui.List"
local Button = require "engine.ui.Button"
local Textzone = require "engine.ui.Textzone"
local Textbox = require "engine.ui.Textbox"
module(..., package.seeall, class.inherit(SubDialog))
function _M:init()
self:selectUI()
self:generate()
end
function _M:selectUI()
if profile.auth then
self:uiStats()
else
self:uiLogin()
end
end
local bt = Button.new{text="Login", width=50, fct=function() self:login() end}
self.c_login = Textbox.new{title="Username: ", text="", chars=30, max_len=20, fct=function(text) self:login() end}
self.c_pass = Textbox.new{title="Password: ", size_title=self.c_login.title, text="", chars=30, max_len=20, hide=true, fct=function(text) self:login() end}
uis[#uis+1] = {left=0, bottom=0, ui=self.c_login}
uis[#uis+1] = {left=0, top=self.c_login.h, ui=self.c_pass}
uis[#uis+1] = {hcenter=0, top=self.c_pass.h+self.c_login.h, ui=bt}
local logoff = Textzone.new{text="#LIGHT_BLUE##{italic}#Logout", auto_height=true, width=50, fct=function() self:logout() end}
end
function _M:login()
if self.c_login.text:len() < 2 then
Dialog:simplePopup("Username", "Your username is too short")
return
end
if self.c_pass.text:len() < 4 then
Dialog:simplePopup("Password", "Your password is too short")
return
end
game:createProfile({create=false, login=self.c_login.text, pass=self.c_pass.text})
end
function _M:logout()
profile:logOut()