Oh it's ugly as fudge right now. It uses yq but in very ad-hoc ways. I should really wrap that mess into functions that can deal with errors.
Individually Bootable VHDs for Each Game
Re: Individually Bootable VHDs for Each Game
I haven't had any luck getting Beneath a Steel Sky Floppy version to work.
I've tried with different memory settings.
Either I get an error when launching sky.exe. Error 16 bit code too large or just a frozen screen.
I know the install files are good, as I was able to load the game on my DOS 7.1 and DOS 8.0 VHDs.
My DOS 8 uses QEMM memory manager.
I also noticed a bug using the DOSContainer EMM386 default setting. A special character (a back arrow) is added to the command.
One note: Beneath a Steel Sky CD version loaded fine building from DOSContainer.
Maybe someone else could try getting the floppy version working on DOS 6.22.
-
- Posts: 56
- Joined: Wed May 27, 2020 10:06 pm
- Has thanked: 18 times
- Been thanked: 46 times
Re: Individually Bootable VHDs for Each Game
Found a booter VHD thing on archive.org for Star Trek 25th Anniversary edition. Maybe the author will most more like this.
Search "mister fpga startrek"
I like how this just boots and plays. I couldn't get this particular game working right in the Top 300 game collection. Also don't like having to deal with extra menus and memory manager selections.
Re: Individually Bootable VHDs for Each Game
I really like this project. As of now, I've made a little over 100 DOS VHDs using the DOSContainer script. Now, if I could only get the VHDs to load correctly using a TapTo NFC.
Has anyone had any success loading an ao486 VHD using TapTo NFCs?
-
- Top Contributor
- Posts: 622
- Joined: Fri Jan 22, 2021 4:36 pm
- Has thanked: 80 times
- Been thanked: 324 times
Re: Individually Bootable VHDs for Each Game
Time for an update. I've been silent for a while. That's a combination of my day job plus a rewrite of DOSContainer in Rust. I figured that the shell script is usable for now. It works, which is better than the vaporware DOSContainer was for a long time, but it's a maintenance nightmare. I'm currently writing the whole thing in Rust: no more leaning on external dependencies of any kind, just a single binary that you can drop on your MiSTer itself and things will always Just Work™ and be Bloody Fast™.
For now "things" are still extremely limited. As I mentioned before, DOSContainer must be 100% accurate to contemporary operating systems. That's the entire point of it. You should not be able to spot any difference between a hard drive formatted in a period appropriate PC versus an image created by DOSContainer. Now while Rust is a powerhouse of a language compared to Bash, I'm effectively rewriting large parts of GNU mtools for this. The other dependencies fortunately do have libraries available. Dealing with all the FAT versions and the fallout of Microsoft's shenanigans from MS-DOS 2.00 on up to Win95 is quite a task (there are 34 numbered versions that I know of, ignoring differences between the many OEM's of the time),
As with the Bash version, I will eventually open source the Rust code as well and provide builds for Windows, macOS (Intel/ARM) and the ARM-side of MiSTer itself. Since you'll have the source, I expect self-service for other platforms like Linux PC's or Raspberry Pi's to not be a problem.
Current progress:
- Read+verify and create real, valid VHD format disk images.
- Add a VHD footer to an existing raw disk image, promoting them to valid VHD images (having an out-of-band place to store physical disk geometry if vital!).
- Read/write MBR to/from VHD images, read/write partition tables + entries.
- Read/write FAT12 and FAT16(B) allocation tables.
- Parse the existing YAML format.
Lots of todo's:
- Finish the FAT implementation (FAT32, BPB, bootcode, read/write of files + attributes)
- Downloading of assets
- Read/write ZIP-files
- Validate hashes of ZIP-files
- Copy files from ZIP to the disk image's FAT filesystem.
- Configuration file templating for the DOS system.
- Implement all of the quirks from MS-DOS 2.00 on up to Win95
Stretch goals:
- Support IBM PC-DOS
- Support DR-DOS
- Support FreeDOS
Plans for now: finish the Rust version in favor of the Bash version. If you spot any glaring bugs in the Bash version, let me know. Other than that, I'm stopping development on that in favor of the Rust version. Expected timeline: this is going to take months if not over a year.
-
- Posts: 313
- Joined: Thu Sep 16, 2021 10:54 pm
- Has thanked: 840 times
- Been thanked: 51 times
Re: Individually Bootable VHDs for Each Game
Bas wrote: ↑Wed Feb 21, 2024 1:59 pmTime for an update. I've been silent for a while. That's a combination of my day job plus a rewrite of DOSContainer in Rust. I figured that the shell script is usable for now. It works, which is better than the vaporware DOSContainer was for a long time, but it's a maintenance nightmare. I'm currently writing the whole thing in Rust: no more leaning on external dependencies of any kind, just a single binary that you can drop on your MiSTer itself and things will always Just Work™ and be Bloody Fast™.
For now "things" are still extremely limited. As I mentioned before, DOSContainer must be 100% accurate to contemporary operating systems. That's the entire point of it. You should not be able to spot any difference between a hard drive formatted in a period appropriate PC versus an image created by DOSContainer. Now while Rust is a powerhouse of a language compared to Bash, I'm effectively rewriting large parts of GNU mtools for this. The other dependencies fortunately do have libraries available. Dealing with all the FAT versions and the fallout of Microsoft's shenanigans from MS-DOS 2.00 on up to Win95 is quite a task (there are 34 numbered versions that I know of, ignoring differences between the many OEM's of the time),
As with the Bash version, I will eventually open source the Rust code as well and provide builds for Windows, macOS (Intel/ARM) and the ARM-side of MiSTer itself. Since you'll have the source, I expect self-service for other platforms like Linux PC's or Raspberry Pi's to not be a problem.
Current progress:
- Read+verify and create real, valid VHD format disk images.
- Add a VHD footer to an existing raw disk image, promoting them to valid VHD images (having an out-of-band place to store physical disk geometry if vital!).
- Read/write MBR to/from VHD images, read/write partition tables + entries.
- Read/write FAT12 and FAT16(B) allocation tables.
Lots of todo's:
- Finish the FAT implementation (FAT32, BPB, bootcode, read/write of files + attributes)
- Downloading of assets
- Read/write ZIP-files
- Validate hashes of ZIP-files
- Copy files from ZIP to the disk image's FAT filesystem.
- Parse the existing YAML format.
- Configuration file templating for the DOS system.
- Implement all of the quirks from MS-DOS 2.00 on up to Win95
Stretch goals:
- Support IBM PC-DOS
- Support DR-DOS
- Support FreeDOS
Plans for now: finish the Rust version in favor of the Bash version. If you spot any glaring bugs in the Bash version, let me know. Other than that, I'm stopping development on that in favor of the Rust version. Expected timeline: this is going to take months if not over a year.
Only one word from a DOS games philological preservation lover:
THANKS!
-
- Posts: 56
- Joined: Wed May 27, 2020 10:06 pm
- Has thanked: 18 times
- Been thanked: 46 times
Re: Individually Bootable VHDs for Each Game
How does one go about releasing a dos collection? I assume putting link in here is not valid.
Re: Individually Bootable VHDs for Each Game
Hi @Bas
First thanks for your work, I was looking for something like this for my MiSTer.
I gave a run at your build.sh script, but the resulting .vhd doesn't seems to be bootable (or I'm missing something)
I do get some errors while executing the scipt, something like Error: no matches found (I guess it comes from the yaml parser)
I tried both flashback and lemmings.
Philippe
-
- Top Contributor
- Posts: 622
- Joined: Fri Jan 22, 2021 4:36 pm
- Has thanked: 80 times
- Been thanked: 324 times
Re: Individually Bootable VHDs for Each Game
Errors usually mean that the output won't work. This is a bit shoddy and it's the main reason why I'm rewriting the whole thing in a language that gives me full control over the whole process. What platform are you running the script from? And which version of yq do you have installed? It turns out that yq is quite sensitive. You're welcome to PM the output.
Re: Individually Bootable VHDs for Each Game
Im' on Linux
yq (https://github.com/mikefarah/yq/) version v4.40.5
Re: Individually Bootable VHDs for Each Game
Code: Select all
Linux bob 5.15.0-94-generic #104~20.04.1-Ubuntu SMP Tue Jan 16 13:34:09 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
- HerrBerzerk
- Posts: 273
- Joined: Tue Feb 01, 2022 1:45 pm
- Has thanked: 121 times
- Been thanked: 39 times
Re: Individually Bootable VHDs for Each Game
The Incredible Machine: When I select SoundBlaster as Audio under the Install option, Mouse and Keyboard are not working anymore in the game (still working in the Mister UI). Any idea how to fix this?
- HerrBerzerk
- Posts: 273
- Joined: Tue Feb 01, 2022 1:45 pm
- Has thanked: 121 times
- Been thanked: 39 times
Re: Individually Bootable VHDs for Each Game
I tried to fix "The Incredible Machine" with Soundblaster and Mouse, but I was not able to.
The issue is: When you configure Soundblaster, as soon as you move the mouse, the keyboard stops working (and of course the mouse too).
I tried different Setblaster settings, different autoexec and config.sys and tried a different mouse driver but I don't get it. I assume it has something to do with memory location maybe.
If someone with more experience than me wants to take a look and help out?
It's on https://www.area536.com/posts/doscontainer-releases/
This link:
https://www.area536.com/dosk8s/disks/tim.zip
Thank you!
- RealLarry
- Top Contributor
- Posts: 881
- Joined: Mon May 25, 2020 4:04 am
- Location: San Junipero/DE/Earth
- Has thanked: 120 times
- Been thanked: 385 times
Re: Individually Bootable VHDs for Each Game
I'm sure that the mouse driver is the culprit here. I've tried several other drivers with and w/o emm386 and while most of them are working in pcem, the issue in TIM still exists
-
- Top Contributor
- Posts: 468
- Joined: Sun May 24, 2020 7:17 pm
- Has thanked: 35 times
- Been thanked: 99 times
Re: Individually Bootable VHDs for Each Game
hi
fisrt with boot1.rom from repo (et4000 ) i get black screen
i have change to old trident vga bios and i get image
with mouse driver provided it seem to work
- Attachments
-
- PMOUSE.zip
- (3.32 KiB) Downloaded 38 times
- RealLarry
- Top Contributor
- Posts: 881
- Joined: Mon May 25, 2020 4:04 am
- Location: San Junipero/DE/Earth
- Has thanked: 120 times
- Been thanked: 385 times
Re: Individually Bootable VHDs for Each Game
The hint to use the Trident VGA BIOS is already provided in the yaml
But interesting, I also tried to use pmouse but didn't work on AO486, pcem was ok.
-
- Top Contributor
- Posts: 468
- Joined: Sun May 24, 2020 7:17 pm
- Has thanked: 35 times
- Been thanked: 99 times
Re: Individually Bootable VHDs for Each Game
oups your are right
sound is on mt32 ;-(
sorry
- HerrBerzerk
- Posts: 273
- Joined: Tue Feb 01, 2022 1:45 pm
- Has thanked: 121 times
- Been thanked: 39 times
Re: Individually Bootable VHDs for Each Game
There is a script to switch from trident to normal (tseng?) back and forth: