| if getOperatingSystem()~=0 then return end
|
|
|
| if getTranslationFolder()~='' then
|
| loadPOFile(getTranslationFolder()..'CeShare.po')
|
| end
|
|
|
| ceshare={}
|
|
|
| function ceshare.getInternet()
|
| if ceshare.internet==nil then
|
| ceshare.internet=getInternet('ceshare')
|
| end
|
| return ceshare.internet
|
| end
|
|
|
| local pathsep
|
| if getOperatingSystem()==0 then
|
| pathsep=[[\]]
|
| else
|
| pathsep=[[/]]
|
| end
|
|
|
| ceshare.version=-1
|
| ceshare.path=getAutoRunPath()..'ceshare'..pathsep
|
| ceshare.formpath=ceshare.path..pathsep..'forms'..pathsep
|
| ceshare.imagepath=ceshare.path..pathsep..'images'..pathsep
|
|
|
| if package.loaded.xmlSimple==nil then
|
| package.path=package.path..';'..getAutoRunPath()..'xml'..pathsep..'?.lua'
|
| else
|
| package.loaded.xmlSimple=nil
|
| end
|
| ceshare.xmlParser = require("xmlSimple").newParser()
|
|
|
|
|
| package.path=package.path..';'..ceshare.path..[[?.lua]]
|
|
|
| function loadCEShare()
|
| ceshare.settings=getSettings('ceshare')
|
| ceshare.secondaryIdentifierCode=getSettings('ceshare\\secondaryIdentifierCode')
|
|
|
| require("ceshare_account")
|
| require("ceshare_publish")
|
| require("ceshare_querycheats")
|
| require("ceshare_processlistextention")
|
| require("ceshare_permissions")
|
| require("ceshare_comments")
|
| require("ceshare_requests")
|
| require("ceshare_fulltablelist")
|
|
|
|
|
| local miCESHARETopMenuItem=MainForm.miCESHARETopMenuItem
|
|
|
| if miCESHARETopMenuItem==nil then
|
| miCESHARETopMenuItem=createMenuItem(MainForm)
|
| miCESHARETopMenuItem.Name='miCESHARETopMenuItem'
|
| miCESHARETopMenuItem.Caption=translate('CE Share')
|
| MainForm.Menu.Items.insert(2,miCESHARETopMenuItem)
|
| end
|
|
|
| local miCheckForCheats=createMenuItem(MainForm)
|
| miCheckForCheats.Caption=translate('Check for mods/cheats for current process')
|
| miCheckForCheats.OnClick=ceshare.CheckForCheatsClick
|
| miCheckForCheats.Default=true
|
| miCheckForCheats.Name='miCheckForCheats'
|
| miCESHARETopMenuItem.add(miCheckForCheats)
|
|
|
| local miRequestCheats=createMenuItem(MainForm)
|
| miRequestCheats.Caption=translate('Request and check other requests for mods/cheats for current process')
|
| miRequestCheats.OnClick=ceshare.RequestForCheatsClick
|
| miRequestCheats.Name='miRequestCheats'
|
| miCESHARETopMenuItem.add(miRequestCheats)
|
|
|
| local miPublishCheat=createMenuItem(MainForm)
|
| miPublishCheat.Caption=translate('Publish/Update table')
|
| miPublishCheat.OnClick=ceshare.PublishCheatClick
|
| miPublishCheat.Name='miPublishCheat';
|
| miPublishCheat.Visible=false
|
| miCESHARETopMenuItem.add(miPublishCheat)
|
|
|
| local miDivider=createMenuItem(MainForm)
|
| miDivider.Caption='-'
|
| miDivider.Visible=true
|
| miCESHARETopMenuItem.add(miDivider)
|
|
|
| local miViewAllTables=createMenuItem(MainForm)
|
| miViewAllTables.Caption=translate('View all available tables')
|
| miViewAllTables.OnClick=ceshare.ViewAllTablesClick
|
| miViewAllTables.Name='miViewAllTables';
|
| miViewAllTables.Visible=true
|
| miCESHARETopMenuItem.add(miViewAllTables)
|
|
|
|
|
|
|
|
|
|
|
| miCESHARETopMenuItem.OnClick=function(s)
|
| local loggedin=ceshare.LoggedIn or false
|
| miPublishCheat.Visible=true
|
|
|
| local canUpdate=false
|
| if loggedin and ceshare.LoadedTable then
|
|
|
| if (ceshare.LoadedTable.Permissions==nil) or isKeyPressed(VK_CONTROL) then
|
| ceshare.getPermissions(ceshare.LoadedTable, true)
|
| end
|
|
|
| if ceshare.LoadedTable.Permissions then
|
| canUpdate=ceshare.LoadedTable.Permissions.canUpdate
|
| end
|
| end
|
|
|
| end
|
|
|
| local originalLoadTable=loadTable
|
| loadTable=function(streamorfilename,merge,ignoreluascriptdialog)
|
|
|
| if ceshare.settings.Value['logoutWhenLoadingTables']~='0' then
|
| ceshare.ClearCredentials()
|
| end
|
|
|
|
|
|
|
| return originalLoadTable(streamorfilename,merge,ignoreluascriptdialog)
|
| end
|
|
|
|
|
| end
|
|
|
| function loadCEShareServerListInCombobox(cb)
|
| |
| |
|
|
|
|
| if ceshare.ceshareserverlist==nil then
|
| local list=ceshare.getInternet().getURL('https://cheatengine.org/cesharelist.txt')
|
| local sl=createStringList()
|
| sl.Text=list
|
|
|
|
|
|
|
| ceshare.ceshareserverlist={}
|
|
|
| local i
|
| for i=0,sl.Count-1 do
|
| if sl[i]:sub(1,1)~='#' then
|
| local server=sl[i]
|
| local sep,sep2=server:find(' #%-# ')
|
| if sep then
|
| local e={}
|
| e.full=server
|
| e.base=server:sub(1,sep-1)
|
| e.description=server:sub(sep2+1)
|
| table.insert(ceshare.ceshareserverlist,e)
|
| end
|
| end
|
| end
|
| sl.destroy()
|
| end
|
|
|
| cb.Items.clear()
|
| for i=1,#ceshare.ceshareserverlist do
|
| cb.Items.add(ceshare.ceshareserverlist[i].description)
|
| end
|
| end
|
|
|
| local f=io.open(ceshare.path..[[server.txt]],'rb')
|
| if f then
|
| ceshare.base=f:read("*all")
|
| f:close()
|
| end
|
|
|
| ceshare.ceversion=getCEVersion()
|
|
|
|
|
|
|
| local sf=getSettingsForm()
|
| ceshare.settingsTab=sf.SettingsPageControl.addTab()
|
|
|
|
|
| ceshare.settingsCBBase=createComboBox(ceshare.settingsTab)
|
| ceshare.settingsCBBase.Text=ceshare.base
|
| ceshare.settingsCBBase.Align='alTop'
|
|
|
| local lblCEShareLabel=createLabel(ceshare.settingsTab)
|
| lblCEShareLabel.Caption=translate('CEShare community URL')
|
| lblCEShareLabel.Align='alTop'
|
|
|
|
|
|
|
| ceshare.settingsTab.OnShow=function()
|
|
|
| if ceshare.settingsCBBase.Items.Count==0 then
|
| loadCEShareServerListInCombobox(ceshare.settingsCBBase)
|
| end
|
| end
|
|
|
| local insertNode=sf.SettingsTreeView.Items[3]
|
| local node=sf.SettingsTreeView.Items.insert(insertNode, translate("CEShare"))
|
| node.data=userDataToInteger(ceshare.settingsTab)
|
|
|
| local originalSettingsCloseEvent=sf.OnClose
|
| sf.OnClose=function(s, closeAction)
|
|
|
| local r=closeAction
|
| if originalSettingsCloseEvent then
|
| r=originalSettingsCloseEvent(s, closeAction)
|
| end
|
|
|
| if s.ModalResult==mrOK then
|
|
|
| local newbase=''
|
| if ceshare.settingsCBBase.ItemIndex==-1 then
|
| newbase=ceshare.settingsCBBase.Text
|
| else
|
| newbase=ceshare.ceshareserverlist[ceshare.settingsCBBase.ItemIndex+1].base
|
| end
|
|
|
| if newbase~=ceshare.base then
|
| f=io.open(ceshare.path..[[server.txt]],'wb')
|
| f:write(newbase)
|
| f:close()
|
|
|
| local needsload=(ceshare.base==nil) or (ceshare.base=='')
|
| ceshare.base=newbase
|
|
|
| if needsload then
|
| loadCEShare()
|
| end
|
| end
|
| end
|
|
|
|
|
| return r
|
| end
|
|
|
|
|
|
|
|
|
|
|
|
|
| function ceshare.showError(msg)
|
| messageDialog(msg,mtError, mbOK)
|
| end
|
|
|
| function ceshare.url_encode(str)
|
| if type(str)=='boolean' then
|
| if str then
|
| return '1'
|
| else
|
| return '0'
|
| end
|
| end
|
|
|
|
|
| if (str) then
|
|
|
|
|
|
|
| str = string.gsub (str, "([^%w %-%_%.%~])",
|
| function (c) return string.format ("%%%02X", string.byte(c)) end)
|
| str = string.gsub (str, " ", "+")
|
| end
|
| return str
|
| end
|
|
|
| function ceshare.parseResult(r, skipErrorDialog)
|
|
|
|
|
| local xml
|
|
|
|
|
| if r then
|
| if (r:sub(1,2)=='<?') then
|
| xml=ceshare.xmlParser:ParseXmlText(r)
|
| if xml then
|
| if xml.invalidsession then
|
| if ceshare.spawnLoginDialog() then
|
| return nil,true
|
| else
|
| return nil,false
|
| end
|
| end
|
|
|
| if xml.extraparamneeded then
|
| local valid, functionresult
|
|
|
| local f=loadstring(xml.extraparamneeded:value())
|
|
|
| if f then
|
|
|
| local d=createForm(false)
|
| d.Caption=translate('Secondary identifier code')
|
| d.BorderStyle='bsSizeable'
|
|
|
| local pnlBtns=createPanel(d)
|
| btnAllow=createButton(pnlBtns)
|
| btnCancel=createButton(pnlBtns)
|
|
|
| btnAllow.AutoSize=true
|
| btnCancel.AutoSide=true
|
|
|
| btnAllow.Caption=translate('Allow')
|
| btnAllow.Default=true
|
| btnAllow.ModalResult=mrOK
|
|
|
| btnCancel.Caption=translate('Cancel')
|
| btnCancel.Cancel=true
|
| btnCancel.ModalResult=mrCancel
|
|
|
| pnlBtns.ChildSizing.ControlsPerLine=2
|
| pnlBtns.ChildSizing.HorizontalSpacing=4
|
| pnlBtns.ChildSizing.EnlargeHorizontal='crsHomogenousChildResize'
|
| pnlBtns.ChildSizing.Layout='cclLeftToRightThenTopToBottom'
|
| pnlBtns.AutoSize=true
|
| pnlBtns.Align='alBottom'
|
|
|
| pnlHeaderAndEditor=createPanel(d)
|
| pnlHeaderAndEditor.align='alClient'
|
|
|
|
|
| local header=createLabel(pnlHeaderAndEditor)
|
| header.caption=translate('This process needs a special identifier to set it apart from others with the same name. To generate this identifier the below code is needed. Do you agree with the execution of this code to generate the identifier?')
|
| header.align='alTop'
|
| header.WordWrap=true
|
|
|
| local scriptviewer
|
| if createSynEdit then
|
| scriptviewer=createSynEdit(pnlHeaderAndEditor,0)
|
| scriptviewer.Gutter.Parts.SynGutterMarks1.Visible=false
|
| scriptviewer.Gutter.Parts.SynGutterChanges1.Visible=false
|
| scriptviewer.Gutter.Parts.SynGutterSeparator1.Visible=true
|
| scriptviewer.Gutter.Parts.SynGutterCodeFolding1.Visible=false
|
| scriptviewer.Font.Size=10
|
| else
|
| scriptviewer=createMemo(pnlHeaderAndEditor)
|
| scriptviewer.ScrollBars='ssAutoBoth'
|
| end
|
| scriptviewer.ReadOnly=true
|
| scriptviewer.Lines.Text=xml.extraparamneeded:value()
|
| scriptviewer.align='alClient'
|
|
|
| d.Width=d.Canvas.getTextWidth(header.Caption)/3
|
| d.Height=d.Canvas.getTextHeight('Qwertyuiopjkl')*18
|
| d.position='poScreenCenter'
|
|
|
| if d.showModal()~=mrOK then return nil,false end
|
| end
|
|
|
|
|
| valid, functionresult=f()
|
|
|
| if valid then
|
| ceshare.secondaryIdentifierCode.Value[process:lower()]=xml.extraparamneeded:value()
|
| end
|
|
|
| return nil, valid, functionresult
|
|
|
| end
|
| |
| |
| |
| |
| |
|
|
|
|
|
|
| if xml.error then
|
| if (skipErrorDialog==nil) or (skipErrorDialog==false) then
|
| ceshare.showError(xml.error:value())
|
| end
|
|
|
| return nil,false
|
| else
|
| return xml
|
| end
|
|
|
| else
|
| if (skipErrorDialog==nil) or (skipErrorDialog==false) then
|
| ceshare.showError(translate('Error:')..r)
|
| end
|
| return nil,false
|
| end
|
| else
|
| if (skipErrorDialog==nil) or (skipErrorDialog==false) then
|
| ceshare.showError(translate("Invalid reply from server:")..r)
|
| end
|
| return nil,false
|
| end
|
| else
|
| if (skipErrorDialog==nil) or (skipErrorDialog==false) then
|
| ceshare.showError(translate("Server did not respond"))
|
| end
|
| return nil,false
|
| end
|
| end
|
|
|
| function ceshare.QueryXURL(filename,parameters, skipErrorDialog)
|
| local tryagain=true
|
| local xml
|
| local extraparam
|
| while tryagain==true do
|
| local rawdata=ceshare.getInternet().postURL(ceshare.base..filename,parameters)
|
| xml,tryagain,extraparam=ceshare.parseResult(rawdata, skipErrorDialog)
|
| if xml then
|
| return xml
|
| end
|
|
|
| if tryagain and extraparam then
|
| local newparam='secondaryidentifier='..ceshare.url_encode(extraparam)
|
| if parameters and parameters~='' then
|
| parameters=parameters..'&'..newparam
|
| else
|
| parameters=extraparam
|
| end
|
| end
|
| end
|
|
|
| return nil
|
| end
|
|
|
| if (ceshare.base) and (ceshare.base~='') then
|
| loadCEShare()
|
| end
|
|
|