Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials

Reply
 
Thread Tools Display Modes
  #16  
Old 30-11-2022, 06:42
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 673
Thanks: 479
Thanked 2,422 Times in 547 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, 227 views)
File Type: png 2.png (5.3 KB, 227 views)
File Type: png 3.png (8.9 KB, 224 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, 09:54
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 673
Thanks: 479
Thanked 2,422 Times in 547 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, 09:08
Carldric Clement's Avatar
Carldric Clement Carldric Clement is offline
Registered User
 
Join Date: Aug 2014
Location: Toboh, Sabah, Malaysia
Posts: 579
Thanks: 579
Thanked 632 Times in 227 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, 168 views)
File Type: jpg Screenshot 2023-01-15 000719.jpg (73.2 KB, 166 views)
File Type: jpg Screenshot 2023-01-15 000734.jpg (76.6 KB, 165 views)
File Type: jpg Screenshot 2023-01-15 001013.jpg (65.7 KB, 165 views)

Last edited by Carldric Clement; 14-01-2023 at 09:11.
Reply With Quote
  #19  
Old 14-01-2023, 12:08
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 673
Thanks: 479
Thanked 2,422 Times in 547 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, 158 views)
File Type: png 2.png (59.1 KB, 158 views)

Last edited by BLACKFIRE69; 03-04-2023 at 15:05.
Reply With Quote
The Following User Says Thank You to BLACKFIRE69 For This Useful Post:
Carldric Clement (14-01-2023)
  #20  
Old 15-01-2023, 00:53
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 673
Thanks: 479
Thanked 2,422 Times in 547 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, 25 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, 03:55
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 673
Thanks: 479
Thanked 2,422 Times in 547 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, 09:37
Carldric Clement's Avatar
Carldric Clement Carldric Clement is offline
Registered User
 
Join Date: Aug 2014
Location: Toboh, Sabah, Malaysia
Posts: 579
Thanks: 579
Thanked 632 Times in 227 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, 14: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, 09:38
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 673
Thanks: 479
Thanked 2,422 Times in 547 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, 53 views)
File Type: png 00.png (17.6 KB, 54 views)
File Type: png 01.png (25.6 KB, 51 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 (30-07-2023), hitman797 (30-07-2023), ScOOt3r (29-07-2023)
  #25  
Old 31-07-2023, 12:32
Lord.Freddy's Avatar
Lord.Freddy Lord.Freddy is offline
Registered User
 
Join Date: Apr 2022
Location: ...
Posts: 48
Thanks: 202
Thanked 32 Times in 22 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 12:41.
Reply With Quote
The Following User Says Thank You to Lord.Freddy For This Useful Post:
BLACKFIRE69 (02-08-2023)
Reply

Thread Tools
Display Modes

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 13 06-09-2023 06:49
Creating a compressed.bat and uncompressed.bat for game files red01 PC Games 14 10-03-2019 07:01
Frontlines: Fuel of War DCore PC Games - CD/DVD Conversions 6 31-05-2008 19:14
WHat is the point??!!! Quertas of Atlantis General Gaming 6 27-05-2006 23:35



All times are GMT -7. The time now is 12:38.


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