English Amiga Board


Go Back   English Amiga Board > Other Projects > project.SPS (was CAPS)

 
 
Thread Tools
Old 15 June 2014, 08:22   #21
Keir
Registered User
 
Join Date: May 2011
Location: Cambridge
Posts: 682
Quote:
Originally Posted by Retroplay View Post
This has probably been asked before elsewhere but are there any plans for CT RAW image support in the future for disk-analyse ?
Yes, if a CT RAW format specification is published, or if someone publishes sources for a CT RAW codec.
Keir is offline  
Old 15 June 2014, 09:29   #22
Retroplay
Lemon Curry ?
 
Retroplay's Avatar
 
Join Date: Sep 2004
Location: Denmark
Age: 49
Posts: 4,079
Thanks for the reply, I'll keep my fingers crossed then.
Retroplay is offline  
Old 18 July 2014, 00:25   #23
ldkraemer
 
Posts: n/a
kaffer,
I'm trying to compile the source code on Debian 7.x (64 Bit) from your posting:
Quote:
If you want to try it out, you can grab all my code from Github: http://github.com/keirf/Disk-Utilities
using:
Code:
git clone http://github.com/keirf/Disk-Utilities
cd Disk-Utilities
make
My command is:
Code:
LD_LIBRARY_PATH=libdisk disk-analyse/disk-analyse --format=ibm_pc_dd KP2/KP2 kp2.ipf
I have all my kp200.0.raw, kp200.1.raw, ....kp239.0.raw, kp239.1.raw files in subdirectory /home/larry/Downloads/kryoflux/kryoflux_2.20_linux/dtc/Disk-Utilities/KP2

The error I am getting is:
Quote:
disk-analyse: could not open config file "formats"
Do you have any suggestions?

Thanks.

Larry
 
Old 18 July 2014, 04:54   #24
dlfrsilver
CaptainM68K-SPS France
 
dlfrsilver's Avatar
 
Join Date: Dec 2004
Location: Melun nearby Paris/France
Age: 46
Posts: 10,412
Send a message via MSN to dlfrsilver
what is the disk format you try to process, an amiga game ?
dlfrsilver is offline  
Old 18 July 2014, 12:23   #25
ldkraemer
 
Posts: n/a
Oh, I forgot to include that information along with what I am wanting to do.

I've purchased a KryoFlux Board to read several hundred SS/DD or DS/DD, 40 Track,
10 Sectors of 512 Bytes per Track, CP/M, 5.25" (non protected) Boot Floppy's
from Kaypro II, Ampro (Z80) Little Board, and Radio Shack Model 4 (Montezuma Micro
Ver 2.2x) CP/M floppy's. Some Floppy's are Data Files ONLY.

I've set the default format to "ibm_pc_dd" before I compiled the software, since
that is the closest type in the software.

The KryoFlux reads the floppy's Tracks into a Stream format (.RAW) for each track,
and those are saved in my ~/KP2 subdirectory for the complete Floppy.

But, the KryoFlux only writes four types of files to floppy, one of which is IPF (others
are Amiga ADF, CBM G64 Images, and Auto-Detect). And this software creates the
IPF format files from the KryoFlux Stream files (type 0), preservation files.

I've searched for days with Google, and this is the only software I've found so for that
will allow me to create a IPF format file, that the KryoFlux writes back to DS/DD Floppy's.

Any support is appreciated.

Thanks.

Larry

Last edited by ldkraemer; 18 July 2014 at 12:28. Reason: typo
 
Old 18 July 2014, 14:06   #26
Abaddon
Registered User
 
Abaddon's Avatar
 
Join Date: Apr 2010
Location: Chicago/USA
Age: 54
Posts: 651
The formats file is in the disk - analyze folder so try making that the current directory and execute it from there and supply the full path to the raw stream.
Abaddon is offline  
Old 19 July 2014, 02:03   #27
ldkraemer
 
Posts: n/a
UPDATE for Linux (64 Bit - Debian 7.x) test install without using "sudo make install":
Quote:
disk-analyse: could not open config file "formats"
The file named formats located in: /path/to/file/Disk-Utilities/disk-analyse/ and
it doesn't get copied to: /usr/local/share/disk-analyse/
Just use the copy command to copy it to the proper Linux location.
Code:
sudo mkdir /usr/local/share/disk-analyse
sudo cp /path/to/Disk-Utilities/disk-analyse/formats /usr/local/share/disk-analyse
Then, as a test to see if the software is functional do:
Code:
cd Downloads/kryoflux/kryoflux_2.20_linux/dtc/x86_64/Disk-Utilities/
LD_LIBRARY_PATH=libdisk disk-analyse/disk-analyse
and you should see the following on the Terminal (Console):
Quote:
Usage: disk-analyse [options] in_file out_file
Options:
-h, --help Display this information
-q, --quiet Quiesce normal informational output
-v, --verbose Print extra diagnostic info
-i, --index-align Align all track starts near index mark
-p, --pll=MODE MODE={fixed,variable,authentic}
-f, --format=FORMAT Name of format descriptor in config file
-c, --config=FILE Config file to parse for format info
Supported file formats (suffix => type):
.adf => ADF
.eadf => Extended-ADF
.img => IBM-MFM Sector Dump
.ipf => SPS/IPF
.dsk => Libdisk
.scp => Supercard Pro
Read-only support:
.dat => Diskread
.dfi => DiscFerret DFE2
.raw => Kryoflux STREAM
OR, use the following to do a complete install:
Code:
sudo make install
Then proceed with testing the software.

Thanks.

Larry
 
Old 04 August 2014, 19:57   #28
Keir
Registered User
 
Join Date: May 2011
Location: Cambridge
Posts: 682
I thought I would add a note about a few features I added to disk-analyse in the last week.

1. For unrecognised track formats, raw bitcells can be dumbly passed through to the output image using the 'raw' format specifiers: e.g., disk-analyse --format=raw_dd input_stream output.ipf

2. Arbitrary well-formed IBM-MFM tracks can now be decoded by the ibm_mfm format handler. This is especially useful for a range of classic computers which use the IBM-MFM track format. e.g., disk-analyse --format=ibm_mfm_dd input_stream output.ipf

3. Extended (aka custom) ADF images are now better supported. Both EXT1 and EXT2 ADF images can now be used as input images to disk-analyse.
Keir is offline  
Old 04 August 2014, 20:05   #29
Keir
Registered User
 
Join Date: May 2011
Location: Cambridge
Posts: 682
Also rather more mundanely, disk-analyse has new command-line options for specifying single-sided operation and start/end cylinders. This speeds up operation and (in the case of single-sided operation) neatens up the analyser output.
Keir is offline  
Old 13 August 2014, 03:05   #30
Supamax
Da Digger :)
 
Supamax's Avatar
 
Join Date: Nov 2008
Location: Monza, Italy
Posts: 2,822
Quote:
Originally Posted by kaffer View Post
3. Extended (aka custom) ADF images are now better supported. Both EXT1 and EXT2 ADF images can now be used as input images to disk-analyse.
I don't remember: which was the difference between EXT1 and EXT2 adf formats?
How can they be recognized/identified one from the other?
Supamax is offline  
Old 13 August 2014, 07:57   #31
Keir
Registered User
 
Join Date: May 2011
Location: Cambridge
Posts: 682
Quote:
Originally Posted by Supamax View Post
I don't remember: which was the difference between EXT1 and EXT2 adf formats?
How can they be recognized/identified one from the other?
The first 8 bytes of the file have a signature. EXT1 has signature UAE--ADF, EXT2 has signature UAE-1ADF. I think EXT2 is a lot more common these days, and is also the better format.
Keir is offline  
Old 13 August 2014, 08:06   #32
Keir
Registered User
 
Join Date: May 2011
Location: Cambridge
Posts: 682
Regarding CT Raw support, SPS have kindly released source for v5 of their IPF support library which includes a CT Raw codec. I will be adding CT Raw support to Disk-Utilities as soon as I have time to reverse engineer a specification and re-implement from that.
Keir is offline  
Old 13 August 2014, 09:45   #33
Retroplay
Lemon Curry ?
 
Retroplay's Avatar
 
Join Date: Sep 2004
Location: Denmark
Age: 49
Posts: 4,079
Now THAT is sweet music to my ears.
Retroplay is offline  
Old 13 August 2014, 14:16   #34
Keir
Registered User
 
Join Date: May 2011
Location: Cambridge
Posts: 682
Quote:
Originally Posted by kaffer View Post
Regarding CT Raw support, SPS have kindly released source for v5 of their IPF support library which includes a CT Raw codec. I will be adding CT Raw support to Disk-Utilities as soon as I have time to reverse engineer a specification and re-implement from that.
Scrub that, I have done the trivial plumbing to get the latest SPS support library to do it for me. So disk-analyse now supports reading CT Raw files if you have v5 of the SPS/IPF library installed.

I don't plan to implement write support for CT Raw images. I think the existing set of supported target formats covers everyone's reasonable use cases.
Keir is offline  
Old 14 August 2014, 12:33   #35
BarryB
Amigaholic
 
Join Date: Dec 2009
Location: UK
Posts: 4,676
Still will won't do a working DungeonMaster.CT > DungeonMaster.IPF though

Also, where do you get v5 of the Linux IPF library from?
BarryB is offline  
Old 14 August 2014, 12:36   #36
IFW
Moderator
 
IFW's Avatar
 
Join Date: Jan 2003
Location: ...
Age: 52
Posts: 1,838
My guess would be compiling from the published sources or the Hatari download.
IFW is offline  
Old 14 August 2014, 13:58   #37
Retroplay
Lemon Curry ?
 
Retroplay's Avatar
 
Join Date: Sep 2004
Location: Denmark
Age: 49
Posts: 4,079
Quote:
Originally Posted by BarryB View Post
Still will won't do a working DungeonMaster.CT > DungeonMaster.IPF though

Also, where do you get v5 of the Linux IPF library from?
v5.1 x64 version compiled by Foul
http://eab.abime.net/showpost.php?p=960689&postcount=4

v5.1 x86 version compiled by yours truly
http://eab.abime.net/showpost.php?p=961347&postcount=12
(ignore the "refuses to boot" part, I got that sorted)

I tested this x86 library with FS-UAE and it works and loads raw files, however disk-analyse doesn't seem to "pick it up".
If I try to convert a CT RAW image I just get "failed to probe input".
There's no warnings that disk-analyse can't find the library though.
I've tried both /usr/lib and /usr/local/lib

Last edited by Retroplay; 14 August 2014 at 14:00. Reason: typo
Retroplay is offline  
Old 14 August 2014, 15:57   #38
Keir
Registered User
 
Join Date: May 2011
Location: Cambridge
Posts: 682
Quote:
Originally Posted by Retroplay View Post
I tested this x86 library with FS-UAE and it works and loads raw files, however disk-analyse doesn't seem to "pick it up".
If I try to convert a CT RAW image I just get "failed to probe input".
There's no warnings that disk-analyse can't find the library though.
I've tried both /usr/lib and /usr/local/lib
Ah, I'm guessing your image's filename suffix is .CT. I was only recognising .CTR and .RAW. I have now added .CT as well, so you should be able to get it working with disk-analyse by either renaming your image or building the latest version of Disk-Utilities.

And yes, I built my own libcapsimage.so.5. It's very easy.
Keir is offline  
Old 14 August 2014, 16:07   #39
BarryB
Amigaholic
 
Join Date: Dec 2009
Location: UK
Posts: 4,676
I love phrases like 'very easy', especially when used in conjunction with Linux, I'll still be figuring out how to compile it this time next week

In the meantime I'll cheat and try the ready made solution linked by Retroplay
BarryB is offline  
Old 14 August 2014, 16:11   #40
Keir
Registered User
 
Join Date: May 2011
Location: Cambridge
Posts: 682
Quote:
Originally Posted by BarryB View Post
Still will won't do a working DungeonMaster.CT > DungeonMaster.IPF though
There are other emulation and write-to-floppy options for that disk which do not involve IPF.
Keir is offline  
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
IPFs of games I own antonvaltaz project.SPS (was CAPS) 22 28 May 2009 12:28
Mounting IPFs killergorilla project.SPS (was CAPS) 16 06 August 2005 00:32
Downloadable IPFs killergorilla project.SPS (was CAPS) 15 27 August 2003 15:59
How exactly do IPFs get out in the first place? MethodGit project.SPS (was CAPS) 2 15 July 2003 22:02

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


All times are GMT +2. The time now is 22:49.

Top

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Page generated in 0.10609 seconds with 14 queries