File size: 9,695 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 | if getOperatingSystem()~=0 then return end --todo: compile lfs for linux and mac
if getTranslationFolder()~='' then
loadPOFile(getTranslationFolder()..'SaveSessions.po')
end
if cheatEngineIs64Bit() then
if string.find(package.cpath, 'clibs64')==nil then
package.cpath=package.cpath..[[;.\clibs64\?.dll]]
end
else
if string.find(package.cpath, 'clibs32')==nil then
package.cpath=package.cpath..[[;.\clibs32\?.dll]]
end
end
require("lfs")
function loadMemoryScan_internal(filename)
--print("loadMemoryScan")
--the thread is used to bypasses a bug in 6.3
local ms=getCurrentMemscan()
local mf=getMainForm()
local input,err=createFileStream(filename,fmOpenRead or fmShareDenyNone)
if input==nil then
MessageDialog(err, mtError,mbOK)
return
end
local scanvalue=input.readAnsiString()
local originalFromAddress=input.readAnsiString()
local originalToAddress=input.readAnsiString()
local scantype=input.readByte()
local vartype=input.readByte()
local formhex=input.readByte()==1
local memscanhex=input.readByte()==1
local savedscancount=input.readByte()
local savedscans={}
for i=1,savedscancount do
savedscans[i]=input.readAnsiString()
end
--initial data has been read, now setup the scan state to be compatible with the saved state
--easiest is just do a small scan
--ms.newscan()
--since ms.newScan was never implemented in ce 6.3 click on new scan if needed
if ms.LastScanType~="stNewScan" then
mf.btnNewScan.doClick() --new scan
end
mf.scanvalue.Text='123' --nice number
mf.vartype.itemindex=vartype --while I could have used ms.firstScan this is easier since I don't need to convert itemindex to vartype
mf.scantype.itemindex=0 --exact value
mf.cbWritable.setState(cbGrayed)
mf.cbExecutable.setState(cbGrayed)
mf.cbCopyOnWrite.setState(cbGrayed)
mf.FromAddress.Text=string.format("%x", getAddress("kernel32.dll"))
mf.ToAddress.Text=string.format("%x", getAddress("kernel32.dll")+1)
--first scan
local oldOnScanDone=ms.OnScanDone
local oldOnInitialScanDone=ms.OnInitialScanDone
ms.OnScanDone=function(m)
ms.OnScanDone=oldOnScanDone
ms.OnInitialScanDone=oldOnInitialScanDone
--tell the memscan that there are saved scans
for i=1, savedscancount do
ms.saveCurrentResults(savedscans[i])
end
local fl=ms.FoundList;
if ms.OnScanStart then
ms.OnScanStart()
end
fl.deinitialize() --release the file handles
--overwrite the files with the ones in this archive
local filecount=input.readByte() --nr of files
--print("filecount="..filecount)
for i=1, filecount do --for each file
--get the filename
local name=input.readAnsiString()
--print("loading "..name)
--get the filesize
local filesize=input.readQword()
--print("loading "..name.." with size "..filesize)
local trycount=0
local output,err
while trycount<20 do
output,err=createFileStream(getCurrentMemscan().ScanresultFolder..name, fmCreate)
if not output then
trycount=trycount+1
sleep(100)
else
break
end
end
if not output then
MessageDialog(err, mtError,mbOK)
input.destroy()
return
end
if filesize>0 then
output.CopyFrom(input, filesize)
end
output.destroy()
end
input.destroy()
if oldOnInitialScanDone then
oldOnInitialScanDone(m)
end
if oldOnScanDone then
oldOnScanDone(m)
end
ms.Hexadecimal=memscanhex
fl.initialize() --reopen the files
mf.scanvalue.Text=scanvalue --nice number
mf.vartype.itemindex=vartype --while I could have used ms.firstScan this is easier since I don't need to convert itemindex to vartype
mf.scantype.itemindex=scantype --exact value
mf.FromAddress.Text=originalFromAddress
mf.ToAddress.Text=originalToAddress
mf.foundcountlabel.Caption=fl.Count
mf.cbHexadecimal.Checked=formhex
end
ms.OnInitialScanDone=nil
mf.btnNewScan.doClick() --new scan
ms.waitTillDone()
end
function loadMemoryScan()
if getOpenedProcessID()==0 then
messageDialog(translate("Open a process first"), mtError, mbOK)
return
end
local dialog=createOpenDialog()
dialog.DefaultExt=".CS"
dialog.Filter=translate("Cheat Engine Scan files").." (*.CS)|*.CS"
dialog.FilterIndex=1
dialog.Options="[ofEnableSizing]"
if dialog.execute()==false then return end
loadMemoryScan_internal(dialog.Filename)
dialog.destroy()
end
function saveMemoryScan_internal(filename)
local i,j
--6.3 doesn't have a folder picker, so create one file that holds all data
local output,err=createFileStream(filename,fmCreate)
if output==nil then
MessageDialog(err, mtError,mbOK)
return
end
--save some settings
local mf=getMainForm()
--current scanvalue
output.writeAnsiString(mf.scanvalue.Text)
output.writeAnsiString(mf.fromAddress.Text)
output.writeAnsiString(mf.toAddress.Text)
output.writeByte(mf.scantype.ItemIndex)
output.writeByte(mf.VarType.ItemIndex)
output.writeByte(mf.cbHexadecimal.Checked and 1 or 0)
output.writeByte(getCurrentMemscan().Hexadecimal and 1 or 0)
--get the filelist
local files={}
local olddir=lfs.currentdir()
lfs.chdir(getCurrentMemscan().ScanresultFolder) --undocumented features are fun....
for file in lfs.dir('.') do
if string.sub(file,1,1)~='.' then
local f={}
f.name=file
f.size=lfs.attributes(file).size
if extractFileExt(file)~='.lock' then
table.insert(files, f)
end
end
end
--check the extensions for other things than first, undo or tmp
local savedscans={}
for i=1,#files do
local ext=files[i].name:match("%.([^%.]+)$")
if (string.upper(ext)~='FIRST') and
(string.upper(ext)~='TMP') and
(string.upper(ext)~='UNDO') then
--check if it's already in the list
local found=false
for j=1,#savedscans do
if savedscans[j]==ext then
found=true
break
end
end
if found==false then
table.insert(savedscans, found)
end
end
end
output.writeByte(#savedscans)
for i=1,#savedscans do
output.writeAnsiString(savedscans[i])
end
--now save the files
output.writeByte(#files) --number of files
for i=1, #files do
--write the filename
output.writeAnsiString(files[i].name)
--print("saving "..files[i].name)
local input,err=createFileStream(getCurrentMemscan().ScanresultFolder..files[i].name,fmOpenRead | fmShareDenyNone)
if input==nil then
MessageDialog(err, mtError,mbOK)
output.destroy()
return
else
--write the filesize (qword)
output.writeQword(input.Size)
output.CopyFrom(input,input.Size)
input.destroy()
end
end
lfs.chdir(olddir)
output.destroy()
--print("done")
end
function saveMemoryScan()
if getOpenedProcessID()==0 then
messageDialog(translate("Open a process first"), mtError, mbOK)
return
end
local dialog=createSaveDialog()
dialog.DefaultExt=".CS"
dialog.Filter=translate("Cheat Engine Scan files").." (*.CS)|*.CS"
dialog.FilterIndex=1
dialog.Options="[ofEnableSizing,ofOVerwritePrompt]"
if dialog.execute()==false then return nil end
saveMemoryScan_internal(dialog.Filename)
dialog.destroy()
end
local mf=getMainForm()
SaveScanSession={}
SaveScanSession.miSaveScanSession=createMenuItem(mf.Menu)
SaveScanSession.miSaveScanSession.caption=translate('Save scan session')
--SaveScanSession.miSaveScanSession.ImageIndex=39
SaveScanSession.miSaveScanSession.Shortcut='Ctrl+Alt+Shift+S'
SaveScanSession.miSaveScanSession.OnClick=saveMemoryScan
SaveScanSession.miSaveScanSession.Enabled=false
local s=createPicture()
s.LoadFromFile(getCheatEngineDir()..[[autorun\images\export128x128.png]])
local ii=MainForm.mfImageList.add(s.Bitmap)
SaveScanSession.miSaveScanSession.ImageIndex=ii
s.destroy()
mf.Menu.Items[0].insert(9, SaveScanSession.miSaveScanSession)
SaveScanSession.miLoadScanSession=createMenuItem(mf.Menu)
SaveScanSession.miLoadScanSession.caption=translate('Load scan session')
--SaveScanSession.miLoadScanSession.ImageIndex=38
SaveScanSession.miLoadScanSession.Shortcut='Ctrl+Alt+Shift+O'
SaveScanSession.miLoadScanSession.OnClick=loadMemoryScan
SaveScanSession.miLoadScanSession.Enabled=false
local s=createPicture()
s.LoadFromFile(getCheatEngineDir()..[[autorun\images\import128x128.png]])
local ii=MainForm.mfImageList.add(s.Bitmap)
SaveScanSession.miLoadScanSession.ImageIndex=ii
s.destroy()
mf.Menu.Items[0].insert(10, SaveScanSession.miLoadScanSession)
local mi=createMenuItem(mf.Menu) --seperator
mi.caption='-'
mf.Menu.Items[0].insert(11, mi)
mi.Visible=MainForm.miSignTable.Visible
local oldFileMenuClick=mf.Menu.Items[0].OnClick
mf.Menu.Items[0].OnClick=function(sender)
if (oldFileMenuClick) then
oldFileMenuClick(sender)
end
--check that it isn't a first scan
local enable=getCurrentMemscan().lastScanWasRegionScan==false
SaveScanSession.miSaveScanSession.Enabled=enable
SaveScanSession.miLoadScanSession.Enabled=true
end
|