File size: 12,967 Bytes
8739cbb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 | 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")
--add "CE Share menu items"
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) --in front of table
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)
--check requestsc
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) --don't show errors
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)
--[[
fills in ceshare.ceshareserverlist if needed and puts the list into the combobox
--]]
if ceshare.ceshareserverlist==nil then
local list=ceshare.getInternet().getURL('https://cheatengine.org/cesharelist.txt') --AKA: Eggbaskets
local sl=createStringList()
sl.Text=list
--parse the list and build a table
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()
--add a ceshare config option to settings
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()
--fill the list
if ceshare.settingsCBBase.Items.Count==0 then
loadCEShareServerListInCombobox(ceshare.settingsCBBase)
end
end
local insertNode=sf.SettingsTreeView.Items[3] --insert it near the unrandomizer since it'd be used as often as that setting
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
--apply change
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, "\n", "\r\n")
--str=str:gsub("%W", "%%%0")
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)
--parses the xml string and returns the xml object, or nil with a true/false.
--true means, try again, false means give up
local xml
if r then
if (r:sub(1,2)=='<?') then
xml=ceshare.xmlParser:ParseXmlText(r)
if xml then
if xml.invalidsession then --This requires a valid session. Spawn a login screen
if ceshare.spawnLoginDialog() then --try again after logging in
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
--check registry if it's ok to run this script, or ask if it should be loaded
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) --7.1+ ,0 means lua syntax
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
--still here so ok
valid, functionresult=f()
if valid then
ceshare.secondaryIdentifierCode.Value[process:lower()]=xml.extraparamneeded:value()
end
return nil, valid, functionresult --try again with this extra parameter
end
--[[ perhaps someday if there is a really trusted server
if xml.executeLua then
loadstring(xml.executeLua:value())()
return xml
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")) --..ceshare.debug)
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
|