Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #16  
Old 30-11-2022, 05:42
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Arrow XHashNext + ChecksumXNext - Updates

XHashNext + ChecksumXNext - Updates:

Code:
What's new

* Added some new error codes.
* Updated file search.
* Some improvements.

latest version added to first post.


,
Attached Images
File Type: png 1.png (10.4 KB, 240 views)
File Type: png 2.png (5.3 KB, 240 views)
File Type: png 3.png (8.9 KB, 237 views)
Reply With Quote
The Following 2 Users Say Thank You to BLACKFIRE69 For This Useful Post:
Cesar82 (30-11-2022), Gehrman (30-11-2022)
Sponsored Links
  #17  
Old 22-12-2022, 08:54
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Arrow ChecksumXNext

Update available!

Code:
What's new:

- Minor improvements.
Reply With Quote
The Following User Says Thank You to BLACKFIRE69 For This Useful Post:
ScOOt3r (23-12-2022)
  #18  
Old 14-01-2023, 08:08
Carldric Clement's Avatar
Carldric Clement Carldric Clement is offline
Registered User
 
Join Date: Aug 2014
Location: Toboh, Sabah, Malaysia
Posts: 596
Thanks: 599
Thanked 659 Times in 234 Posts
Carldric Clement is on a distinguished road
Nothing happen to see the Memo and also the Label which is quite on progressing hash generated on Delphi FMX. But the result works fine.

Generate with the directory
Code:
function GenerateHashMultiCallback(FileName: WideString; FileSize: extended;
  FileProgress, TotalProgress, TotalFiles, FileCounted,
  StatusCode: Integer): Boolean;
begin
  Form5.Label9.Text := Format(XH_FILENAME, [ExtractFileName(FileName)]);
  Form5.Label10.Text := Format(XH_FILEPOSITION, [ByteOrTb((FileSize * FileProgress) / 100), ByteOrTb(FileSize)]);
  Form5.Label11.Text := Format(XH_PERCENTAGE, [FileProgress]);

  Form5.Label12.Text := Format(XH_PERCENTAGE, [TotalProgress]);
  Form5.ProgressBar1.Value := TotalProgress;

  case StatusCode of
    H_FILE_HASHING_DONE:
      Form5.Memo1.Lines.Add(FileName + '  ... Done!');

    -1,-4,-5,-6,-7,-8,-9,-10,-12,-13:
      Form5.Memo1.Lines.Add('>>> Error code:  ' + IntToStr(StatusCode));
  end;

  Form5.Label14.Text := Format(XH_GENERATESTATUS, [FileCounted, TotalFiles]);

  ProcessMessages;
  Result := CancelAll;
end;
Attached Images
File Type: jpg Screenshot 2023-01-15 000449.jpg (67.1 KB, 181 views)
File Type: jpg Screenshot 2023-01-15 000719.jpg (73.2 KB, 179 views)
File Type: jpg Screenshot 2023-01-15 000734.jpg (76.6 KB, 178 views)
File Type: jpg Screenshot 2023-01-15 001013.jpg (65.7 KB, 178 views)

Last edited by Carldric Clement; 14-01-2023 at 08:11.
Reply With Quote
  #19  
Old 14-01-2023, 11:08
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by Carldric Clement View Post
Nothing happen to see the Memo and also the Label which is quite on progressing hash generated on Delphi FMX. But the result works fine.

Generate with the directory
...

XHashNext lib for Inno does not work on Delphi.

try this one.

PS: i haven't implemented error levels(StatusCode) in the callback functions for this example. you can add them to your project later.


.
Attached Images
File Type: png 1.png (55.7 KB, 171 views)
File Type: png 2.png (59.1 KB, 171 views)

Last edited by BLACKFIRE69; 03-04-2023 at 14:05.
Reply With Quote
The Following User Says Thank You to BLACKFIRE69 For This Useful Post:
Carldric Clement (14-01-2023)
  #20  
Old 14-01-2023, 23:53
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by BLACKFIRE69 View Post
XHashNext lib for Inno does not work on Delphi.

try this one.
@Carldric Clement

sorry, i forgot to mention that you can also use the Inno library for Delphi if the callback functions are method pointers.

this is the example...

.
Attached Files
File Type: 7z XHashNextFMX2.7z (2.28 MB, 29 views)
Reply With Quote
The Following User Says Thank You to BLACKFIRE69 For This Useful Post:
Carldric Clement (15-01-2023)
  #21  
Old 15-01-2023, 02:55
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Arrow Update - XHashNext + ChecksumXNext

Update available!


Reason: Link


check the first post...
Reply With Quote
The Following User Says Thank You to BLACKFIRE69 For This Useful Post:
ScOOt3r (15-01-2023)
  #22  
Old 27-01-2023, 08:37
Carldric Clement's Avatar
Carldric Clement Carldric Clement is offline
Registered User
 
Join Date: Aug 2014
Location: Toboh, Sabah, Malaysia
Posts: 596
Thanks: 599
Thanked 659 Times in 234 Posts
Carldric Clement is on a distinguished road
Quote:
Originally Posted by BLACKFIRE69 View Post
@Carldric Clement

sorry, i forgot to mention that you can also use the Inno library for Delphi if the callback functions are method pointers.

this is the example...

.
can you update your DLL file? my AV detect was a virus.
and second, though I've tried many times to make it works with Unit 2. But unfortunately, some labels and progress bar doesn't work on unit 2 using Inno Library which case Form 2 or something that are callback functions. So I'll be hanging these DLLs cause works with a few Forms that I've made before.
Reply With Quote
  #23  
Old 30-03-2023, 13:32
Karekas Karekas is offline
Registered User
 
Join Date: Dec 2022
Location: Brasil
Posts: 1
Thanks: 15
Thanked 0 Times in 0 Posts
Karekas is on a distinguished road
code for inno script, for newbie

Quote:
Originally Posted by BLACKFIRE69 View Post
XHash Update 1.1v

  • Added more Algos.

    - md5
    - sha1
    - sha256
    - sha512

  • Fixed some bugs.

_

Hello, this addon is very nice.

I'm a little newbie, and I wanted to know if you could provide the code to display this screen, like the one attached to this post, so I can add it to my installer.

thank you and a big hug from this Brazilian.
Reply With Quote
  #24  
Old 29-07-2023, 08:38
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Arrow XHashEx + ChecksumX - Updates

Update available!


Code:
* Updated file search. (Thanks to Cesar82)
* Minor improvements.

Check out the first post.


,
Attached Images
File Type: png 02.png (8.5 KB, 66 views)
File Type: png 00.png (17.6 KB, 67 views)
File Type: png 01.png (25.6 KB, 64 views)
Reply With Quote
The Following 5 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (29-07-2023), Cesar82 (29-07-2023), Gehrman (29-07-2023), hitman797 (30-07-2023), ScOOt3r (29-07-2023)
  #25  
Old 31-07-2023, 11:32
Lord.Freddy's Avatar
Lord.Freddy Lord.Freddy is offline
Registered User
 
Join Date: Apr 2022
Location: ...
Posts: 54
Thanks: 222
Thanked 41 Times in 25 Posts
Lord.Freddy is on a distinguished road
Hi @BLACKFIRE69, can you update the xxhash algorithm to the last version ?
xxHash v0.8.2
__________________
¤ Life good be a Dream ¤

Last edited by Lord.Freddy; 31-07-2023 at 11:41.
Reply With Quote
The Following User Says Thank You to Lord.Freddy For This Useful Post:
BLACKFIRE69 (02-08-2023)
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Best Compression For Archiving brispuss PC Games 12 03-01-2020 13:34
Creating a compressed.bat and uncompressed.bat for game files red01 PC Games 14 10-03-2019 06:01
Frontlines: Fuel of War DCore PC Games - CD/DVD Conversions 6 31-05-2008 18:14
WHat is the point??!!! Quertas of Atlantis General Gaming 6 27-05-2006 22:35



All times are GMT -7. The time now is 19:57.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com