From a3599db44ce5b3ae633ff3e21fa62d1446422ba2 Mon Sep 17 00:00:00 2001 From: DarkGod <darkgod@net-core.org> Date: Wed, 6 Nov 2013 19:47:10 +0100 Subject: [PATCH] moar steam stuff --- game/engines/default/engine/utils.lua | 4 ++++ .../default/modules/boot/dialogs/MainMenu.lua | 15 +++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/game/engines/default/engine/utils.lua b/game/engines/default/engine/utils.lua index 48c236a74d..93c0df1bdd 100644 --- a/game/engines/default/engine/utils.lua +++ b/game/engines/default/engine/utils.lua @@ -497,6 +497,10 @@ function string.parseHex(str) return res end +function string.toHex(str,spacer) + return string.gsub(str, ".", function(c) return string.format("%02X%s",string.byte(c), spacer or "") end) +end + function __get_uid_surface(uid, w, h) uid = tonumber(uid) local e = uid and __uids[uid] diff --git a/game/engines/default/modules/boot/dialogs/MainMenu.lua b/game/engines/default/modules/boot/dialogs/MainMenu.lua index b2f2f4facb..16d7da7a52 100644 --- a/game/engines/default/modules/boot/dialogs/MainMenu.lua +++ b/game/engines/default/modules/boot/dialogs/MainMenu.lua @@ -87,6 +87,8 @@ function _M:updateUI() end function _M:uiLogin(uis) + if core.steam then return self:uiLoginSteam(uis) end + local str = Textzone.new{auto_width=true, auto_height=true, text="#GOLD#Online Profile"} local bt = Button.new{text="Login", width=50, fct=function() self:login() end} self.c_login = Textbox.new{title="Username: ", text="", chars=20, max_len=20, fct=function(text) self:login() end} @@ -99,6 +101,15 @@ function _M:uiLogin(uis) uis[#uis+1] = {hcenter=0, bottom=0, ui=bt} end +function _M:uiLoginSteam(uis) + local str = Textzone.new{auto_width=true, auto_height=true, text="#GOLD#Online Profile"} + local bt = Button.new{text="Login with Steam", fct=function() self:loginSteam() end} + + uis[#uis+1] = {left=10, bottom=bt.h + str.h, ui=Separator.new{dir="vertical", size=self.iw - 20}} + uis[#uis+1] = {hcenter=0, bottom=bt.h, ui=str} + uis[#uis+1] = {hcenter=0, bottom=0, ui=bt} +end + function _M:uiStats(uis) self.logged_url = "http://te4.org/users/"..profile.auth.page local str1 = Textzone.new{auto_width=true, auto_height=true, text="#GOLD#Online Profile#WHITE#"} @@ -124,6 +135,10 @@ function _M:login() game:createProfile({create=false, login=self.c_login.text, pass=self.c_pass.text}) end +function _M:loginSteam() + print("<<<", core.steam.sessionTicket():toHex()) +end + function _M:logout() profile:logOut() self:on_recover_focus() -- GitLab