Post subject: Heroes of Might and Magic 1 Pre-release Demo Posted: Mon Feb 27, 2012 2:20 pm
Amateur Beta Collector
Joined Sun Jul 31, 2011 9:29 pm
Posts 163
Favourite OS DOS
Recently Litude has made a post at RGB Classic Games Forum about an early non-interactive demo of Heroes of Might and Magic: A Strategic Quest he had found on a cover disk from an issue of a French gaming magazine called Joystick:
Litude wrote:
Found an interesting self-playing demo of Heroes I, download it from here (162 MB). It's quite early, being from January 1995 so a few differences are noticeable like the intro being quite different and music pieces are used in different places in the preview. Sadly it isn't playable. Judging by the file names and the time frame, this preview might have been also used at CES 1995.
EDIT: Actually, seems like you can play it simply by deleting the file DEMOFILE.BIN from the game directory. It is quite unstable though (visiting artifacts or locations like mills will crash the game), but a nice early look at the game nonetheless.
Except said crashes when you try to pick up artifacts and enter special locations, the demo is quite playable. There is no movement limit, or building limit per turn (ending the turn will also crash the demo), and there is also no AI action at all (two enemy heroes are present on the demo map, and can be fought though). Picking up resource piles (but not the "enemy campfire" event) do not lead to crashes, and you can also capture mines, enter castles and cities, build structures in castles and hire troops as normal. Spells also work most of the time.
There are quite a few interesting things in the demo, for example, the hero list shows generic hero class icons instead of individual portraits:
Another interesting difference is that on battle screens, the hero is visible, much like in Heroes of Might and Magic II ad subsequent games in the series, while only the hero's tent is visible in the final version of the game: Also notice there's a button to fire the catapult, which is done manually during castle sieges, and there's a corresponding "siege skill" in the hero's characteristics.
If you give it a try, note that you can actually save the game and then replace your save with the original one (for some reason or other newly saved games end up in the demo's root directory, not in the GAMES folder). This way you can experiment with the demo and be able to return to your saved position in case of crashes, rather than start everything from the beginning each time.
Post subject: Re: Heroes of Might and Magic 1 Pre-release Demo Posted: Mon Feb 27, 2012 4:01 pm
Amateur Beta Collector
Joined Sat Feb 05, 2011 7:41 pm
Posts 280
Favourite OS Wyn 2079
From what I can see when I pipe the stdout into a file, it throws a "point to file failure", when I try to get a mill. I also noticed that the EXE uses wrong paths. It tries to find files in the sound folder that are actually in the pickups folder.
I checked the exe and the agg file. There are strings for Mines, but for mills, etc.
I should probably write an extractor for the agg file (if there isn't already one).
Extractor is finished. The file formats look very easy, but there seems to be no masterlist of filenames. So I can only let my program guess the extensions now. -The extractor can now guess "img" extension (=image file with 6 byte header consisting of 2 byte rubbish(=palette index?) 2 byte width and 2 byte height) -Can now guess pal extension (=300h (768) bytes large palette file) -Can now guess frm extension (=File with multiple image)
I think I see the problem about the next turn button. It would normally work, but the CES demo save has no starting postion for the other 3 players, so they start in the water and the game is buggy.
Also it seems like exactly the items that we see in the demo, appear in the inventory of a hero on one of the screenshots. So if we play around with the demo, we might be able to reactivate some features (not the mills, though).
Not sure if this would be helpful, I've only used the one for HOMM2 once to get the XMI MIDIs (Oh wait, maybe it was some other, multipurpose tool that supports AGG archives.)
Post subject: Re: Heroes of Might and Magic 1 Pre-release Demo Posted: Tue Feb 28, 2012 4:38 pm
Amateur Beta Collector
Joined Sat Feb 05, 2011 7:41 pm
Posts 280
Favourite OS Wyn 2079
I checked the website and the tools.
The extractor doesn't work correctly with the prerelease demo files, it freezes after file 12.
The other file formats aren't very interesting for us. From what I saw, the prerelease demo agg only contains images with headers (which are easy to decode), files with multiple images (also easy), index files of some sort, 3 palette files, some map files or so, some files that are similar to ".82M" files.
EDIT: I'll quickly throw a program together that can convert the image files. Expect it in 30 minutes. Update: The multi-image files are compressed somehow.
EDIT4: Some additional images: Heroes ad in August 1994: Heroes ad in November 1994: Chips'n'Bits April 1995: Prerelease screenshots: July 1994 or earlier: Early 1995 (by source, not by content):
Post subject: Re: Heroes of Might and Magic 1 Pre-release Demo Posted: Wed Mar 07, 2012 6:46 pm
Amateur Beta Collector
Joined Sun Jul 31, 2011 9:29 pm
Posts 163
Favourite OS DOS
Some of the sprites you've extracted have some colour (I suppose it's black) replaced by the transparent colour. It's very noticeable with the Dwarf and Elf sprites.
BTW, does your utility actually support editing the AGG files?
Post subject: Re: Heroes of Might and Magic 1 Pre-release Demo Posted: Wed Mar 07, 2012 7:58 pm
Amateur Beta Collector
Joined Sat Feb 05, 2011 7:41 pm
Posts 280
Favourite OS Wyn 2079
MrFlibble wrote:
Some of the sprites you've extracted have some colour (I suppose it's black) replaced by the transparent colour. It's very noticeable with the Dwarf and Elf sprites.
I saw that, too, but I think that's a bug of the game, my program should work correctly (hopefully).
MrFlibble wrote:
BTW, does your utility actually support editing the AGG files?
I guess you want to edit sprites and insert them, right? I can try to create such a utility this evening, but there are some bytes in the files that I do not understand, yet (x/y offsets?) Maybe tomorrow. I really need sleep.
Post subject: Re: Heroes of Might and Magic 1 Pre-release Demo Posted: Wed Mar 07, 2012 9:53 pm
Amateur Beta Collector
Joined Sat Feb 05, 2011 7:41 pm
Posts 280
Favourite OS Wyn 2079
MrFlibble wrote:
Hallfiry wrote:
I guess you want to edit sprites and insert them, right?
I can try to create such a utility this evening, but there are some bytes in the files that I do not understand, yet (x/y offsets?)
Well, it's more of pure theoretical curiosity at this point, but modding options are always welcome
ofc it's moddable! but I'm still wondering why the game crashes when you try to capture a mill. it trys to find a sound file. when it finds it (or not, if you remove it) the game has an overflow and closes all filestreams and crashes.
Post subject: Re: Heroes of Might and Magic 1 Pre-release Demo Posted: Wed Mar 07, 2012 10:07 pm
Amateur Beta Collector
Joined Sun Jul 31, 2011 9:29 pm
Posts 163
Favourite OS DOS
Hallfiry wrote:
ofc it's moddable! but I'm still wondering why the game crashes when you try to capture a mill. it trys to find a sound file. when it finds it (or not, if you remove it) the game has an overflow and closes all filestreams and crashes.
Hmm, when I played it my guess about the reason for crashes was that perhaps some relevant text messages are missing. But that's just some random guesswork not based on any empirical evidence at all
Post subject: Re: Heroes of Might and Magic 1 Pre-release Demo Posted: Thu Mar 08, 2012 4:52 pm
Amateur Beta Collector
Joined Sun Jul 31, 2011 9:29 pm
Posts 163
Favourite OS DOS
BTW, apparently, the music in the demo is of the high-quality variety, while music tracks from later re-releases of the game (I've got the Windows version from the Platinum Edition) are of lower quality for some reason.
Post subject: Re: Heroes of Might and Magic 1 Pre-release Demo Posted: Wed Mar 14, 2012 2:12 pm
Amateur Beta Collector
Joined Sat Feb 05, 2011 7:41 pm
Posts 280
Favourite OS Wyn 2079
z180 wrote:
Any progress at fixing the crashes?
Not really. Does anybody know a program that can log the RAM of a process? That would be nice for finding the source of the overflow. Or maybe a good debugging tool for Windows? If it was a 32bit executable, I could simply look into it with PE Explorer and then fix the bugs in my hexeditor, but since it's 16 bit, I have to use IDA and the code IDA produces is crappy.
Post subject: Re: Heroes of Might and Magic 1 Pre-release Demo Posted: Tue Jul 17, 2012 10:22 pm
Amateur Beta Collector
Joined Sat Feb 05, 2011 7:41 pm
Posts 280
Favourite OS Wyn 2079
While I've seen previews from Fall ECTS 1994, showing HOMM1, I've now found a picture from Winter CES 1994 (January '94!!!): It looks like a shot from a trailer (obviously shown on a CRT).
Post subject: Re: Heroes of Might and Magic 1 Pre-release Demo Posted: Fri Aug 03, 2012 7:31 pm
Newbie Beta Collector
Joined Fri Aug 03, 2012 7:00 pm
Posts 2
Thanks a lot for your CD collection, Hallfiry! (and MrFlibble too for PR ) I'm looking for any information about HOMM1, especially the history of development of this game. Please tell me where I can find descriptions, screenshots, previews from Shows (CES 94-95, ECTS etc.)?
Post subject: Re: Heroes of Might and Magic 1 Pre-release Demo Posted: Tue Aug 07, 2012 3:08 pm
Amateur Beta Collector
Joined Sat Feb 05, 2011 7:41 pm
Posts 280
Favourite OS Wyn 2079
Vovik wrote:
Thanks a lot for your CD collection, Hallfiry! (and MrFlibble too for PR ) I'm looking for any information about HOMM1, especially the history of development of this game. Please tell me where I can find descriptions, screenshots, previews from Shows (CES 94-95, ECTS etc.)?
Thanks for cuttings! (Ich verstehe etwas Deutsch) So, according to abandonware-france.org and Coming Soon Magazine the game was demonstrated (at least) at four exhibitions: CES - Winter 1994 (Las Vegas) CES - Summer 1994 (Chicago) ECTS - Fall 1994 (London) CES - Winter 1995 (Las Vegas)
Post subject: Re: Heroes of Might and Magic 1 Pre-release Demo Posted: Tue Aug 14, 2012 11:41 pm
Amateur Beta Collector
Joined Sun Jul 31, 2011 9:29 pm
Posts 163
Favourite OS DOS
Hallfiry wrote:
About the Heroes prerelease demo: It can be found on various magazine CDs. I think I already have 5 of these on my website
All have the same version, I presume?
What about the playable CGW demo? Was it featured on any other CDs?
BTW, a little bit off-topic: what was the policy of US developers regarding the European market? Did they supply the latest in terms of demo versions, comparable to what was release on the domestic side, or did they release some different stuff? E.g. I remember that there's a demo of UFO: Enemy Unknown that is rather different from the X-COM: UFO Defense demo that was available from MicroProse's FTP.
Post subject: Re: Heroes of Might and Magic 1 Pre-release Demo Posted: Wed Aug 15, 2012 12:20 am
Amateur Beta Collector
Joined Sat Feb 05, 2011 7:41 pm
Posts 280
Favourite OS Wyn 2079
MrFlibble wrote:
Hallfiry wrote:
About the Heroes prerelease demo: It can be found on various magazine CDs. I think I already have 5 of these on my website
All have the same version, I presume?
All the same version.
MrFlibble wrote:
What about the playable CGW demo? Was it featured on any other CDs?
I haven't seen it anywhere...
MrFlibble wrote:
BTW, a little bit off-topic: what was the policy of US developers regarding the European market? Did they supply the latest in terms of demo versions, comparable to what was release on the domestic side, or did they release some different stuff? E.g. I remember that there's a demo of UFO: Enemy Unknown that is rather different from the X-COM: UFO Defense demo that was available from MicroProse's FTP.
Well, since demos were normally released through BBS's or on Demo CDs (or floppies) at Expos, most demos in Europe are the same as the US versions. Some exceptions that I've noticed during my Blizzard research, are a European Warcraft I demo (Interplay as order info) and a Euopean Blackthorne (=> Blackhawk) demo. Another example is the PC Games exclusive MDK demo (Even though Power Play did the developer diary). I've seen two german demos of KKND 1 (Australian developer) and also a German demo of UFO. (There are some more examples, like the older Diablo prerelease demo that went to France in mid August 1996).
I hope that helps a little bit (but I actually think you already know all this...).
Post subject: Re: Heroes of Might and Magic 1 Pre-release Demo Posted: Wed Aug 15, 2012 3:44 pm
Amateur Beta Collector
Joined Sat Feb 05, 2011 7:41 pm
Posts 280
Favourite OS Wyn 2079
A little update for those who are interested: I've started working on decoding the Map format with more detail than before. This is my first result:
Currently, my program simply reads the ground tile info and the flipping info (some tiles need to be mirrored) for each tile and builds a map out of it.
UPDATE: More layers!
UPDATE 2: Even more stuff on the map! UPDATE 3: There are still some issues with the "nautic" stuff, like whirlpools. I'll fix them next week, becauseI'm away for a few days.
UPDATE 4: I managed to fix the waterstuff, the map should be complete now:
UPDATE 5: mep >.< the ship is now broken. Fix coming next week.
Post subject: Re: Heroes of Might and Magic 1 Pre-release Demo Posted: Wed Aug 15, 2012 9:59 pm
Amateur Beta Collector
Joined Sun Jul 31, 2011 9:29 pm
Posts 163
Favourite OS DOS
Awesome! Is the map format much different from the final version of the game? (I never really modded HoMM games or made any maps for 'em, so I have no idea; there Windows release comes with the official map editor for all I know, but perhaps some fan-made editor was made in the DOS era?)
Post subject: Re: Heroes of Might and Magic 1 Pre-release Demo Posted: Sat Aug 18, 2012 5:17 pm
Amateur Beta Collector
Joined Sat Feb 05, 2011 7:41 pm
Posts 280
Favourite OS Wyn 2079
MrFlibble wrote:
Awesome! Is the map format much different from the final version of the game? (I never really modded HoMM games or made any maps for 'em, so I have no idea; there Windows release comes with the official map editor for all I know, but perhaps some fan-made editor was made in the DOS era?)
I have no idea actually. I think I have never played HoMM 1 at all...
I don't own HoMM 1 afaik, so I can't check it now. (*cough*)
---
About the map stuff: expect a full, bugfree map in a few hours (EDITED) .
I will start working on an editor this evening and try to find ways to make the game playable for 2-4 players.
Users browsing this forum: No registered users and 4 guests
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum
All views expressed in these forums are those of the author and do not necessarily represent the views of the BetaArchive site owner.