Alone in the Dark (1995) (Krisalis Software)

Download games the project has approval to release
JonAbbott
Posts: 2938
Joined: Thu Apr 11, 2013 12:13 pm
Location: Essex
Contact:

Alone in the Dark (1995) (Krisalis Software)

Post by JonAbbott »

Image Alone In the Dark (1995) (Krisalis Software)

ID: 10015
Version: 1.00
Developer: INFOGRAMES; James Callin (conversion); James Fletcher (conversion)
Genre: Adventure; Fantasy; Horror
RAM: 2048

CPU compatibility: ARM2 ARM250 ARM3 ARM610 ARM700 ARM710 ARM7500 StrongARM ARMv5+
OS compatibility: 3.11 3.5x 3.6x 3.7x 4.x 5.x

Legal info: Distribution rights held by JASPP


Download full archive: Image (15.5mb)

Download individual floppies: ImageImageImageImageImageImageImageImage


Game info
To run the game install to harddisc and run via the icon.

NOTE: You will need the manual from the full archive to get past the protection.

To install on StrongARM or RISC OS 5, do not use !Installer on disc 1, use the following procedure instead:
  1. Copy the !Alone folder from disc 1 to your HD
  2. Open the newly copied !Alone folder via SHIFT-DOUBLE CLICK
  3. Replace !Run with the contents of !ADFFS.obey.F1001501
  4. Copy the contents of discs 2 thru 8 into the !Alone folder

Synopsis
A somewhat tricky situation...

Suspended by a rope, the painter Jeremy Hartwood breathed for the last time. Was he overworked? A nervous breakdown perhaps? Or was suicide his escape from the evil presence that resided in his manor house, Derceto?

Unwelcoming and overbearing, Derceto is now an empty manor house avoided by the sane. However, something compels you to explore its depths and discover its secrets...

Did Jeremy Hartwood really commit suicide or was he just insane? Is there an evil presence residing in Derceto?

Enter at your peril ! Derceto is not a country cottage and this is no holiday. Entering is just the easy part, leaving could be hell !

Screenshots
Image Image

Gameplay
GadgetUK164
Posts: 7
Joined: Fri Apr 12, 2019 5:42 pm

Re: Alone in the Dark (1995) (Krisalis Software)

Post by GadgetUK164 »

When replacing the !Run file on this game with the file from the Obey archive in ADFFS I get this error:-

Internal error : address exception at &0182CEE8

I am using uniboot2 now btw and that solved the issue when doing the same type of "protection bypass" on BattleChess. So I think my boot stuff is sorted. Just not sure why this game doesn't seem to work =/
JonAbbott
Posts: 2938
Joined: Thu Apr 11, 2013 12:13 pm
Location: Essex
Contact:

Re: Alone in the Dark (1995) (Krisalis Software)

Post by JonAbbott »

GadgetUK164 wrote: Sun Apr 14, 2019 1:06 pm Internal error : address exception at &0182CEE8
Type *MODULES and figure out which Module is generating the exception, then work out the offset within it, if it's one of the ADFFS Modules.
GadgetUK164
Posts: 7
Joined: Fri Apr 12, 2019 5:42 pm

Re: Alone in the Dark (1995) (Krisalis Software)

Post by GadgetUK164 »

JonAbbott wrote: Sun Apr 14, 2019 3:21 pm
GadgetUK164 wrote: Sun Apr 14, 2019 1:06 pm Internal error : address exception at &0182CEE8
Type *MODULES and figure out which Module is generating the exception, then work out the offset within it, if it's one of the ADFFS Modules.
Thanks, I am guessing its ZIDEFS (an IDE podule I just purchased) causing the issue. Here's a photo of the modules - I cannot see what each column represents but guessing start and end addreses are shown there?

https://www.dropbox.com/s/fawcqeb4m8x02 ... 4.JPG?dl=0

EDIT: The game works without trying to bypass protection, so guessing that maybe the writes are going to the wrong address due to the ZIDEFS hogging some RAM that isn't normally used?
JonAbbott
Posts: 2938
Joined: Thu Apr 11, 2013 12:13 pm
Location: Essex
Contact:

Re: Alone in the Dark (1995) (Krisalis Software)

Post by JonAbbott »

It's not ZIDEFS, but a Module that's softloaded.

Drop out of the Desktop (CTRL-SHIFT-F12 twice) and manually run !Alone, you should then hopefully be able to do a *MODULES after the crash, to find exactly where the exception is occurring.
GadgetUK164
Posts: 7
Joined: Fri Apr 12, 2019 5:42 pm

Re: Alone in the Dark (1995) (Krisalis Software)

Post by GadgetUK164 »

JonAbbott wrote: Sun Apr 14, 2019 9:13 pm It's not ZIDEFS, but a Module that's softloaded.

Drop out of the Desktop (CTRL-SHIFT-F12 twice) and manually run !Alone, you should then hopefully be able to do a *MODULES after the crash, to find exactly where the exception is occurring.
Thanks, this is what I am getting:- Not sure if there's a way to get it to pause the display a page at a time when returning results from *Modules
https://www.dropbox.com/s/o1q6k6x6asr8t ... 2.JPG?dl=0
https://www.dropbox.com/s/gy1zpquso1kxr ... 3.JPG?dl=0
JonAbbott
Posts: 2938
Joined: Thu Apr 11, 2013 12:13 pm
Location: Essex
Contact:

Re: Alone in the Dark (1995) (Krisalis Software)

Post by JonAbbott »

You can slow it down by holding CTRL, pause by holding SHIFT-CTRL or output to a file:

Code: Select all

*MODULES { > adfs::4.$.filename }
Try commenting out the MEMORYA lines in !Run, to see if they're causing the issue. Comment the lines with a |
GadgetUK164
Posts: 7
Joined: Fri Apr 12, 2019 5:42 pm

Re: Alone in the Dark (1995) (Krisalis Software)

Post by GadgetUK164 »

JonAbbott wrote: Mon Apr 15, 2019 5:18 pm You can slow it down by holding CTRL, pause by holding SHIFT-CTRL or output to a file:

Code: Select all

*MODULES { > adfs::4.$.filename }
Try commenting out the MEMORYA lines in !Run, to see if they're causing the issue. Comment the lines with a |
I commented out the MEMORYA stuff and it was still doing it! I will experiment more trying to comment out different things.

Thanks btw! If we cannot work this out I can just print off the protection codes. Not the end of the world but it would be nice to understand the cause.
JonAbbott
Posts: 2938
Joined: Thu Apr 11, 2013 12:13 pm
Location: Essex
Contact:

Re: Alone in the Dark (1995) (Krisalis Software)

Post by JonAbbott »

The other thing it could be (from memory, I might be wrong) is VoxLib, try changing it to load the version that comes with the game, instead of the 26/32bit neutral version from ADFFS:trackers
GadgetUK164
Posts: 7
Joined: Fri Apr 12, 2019 5:42 pm

Re: Alone in the Dark (1995) (Krisalis Software)

Post by GadgetUK164 »

JonAbbott wrote: Mon Apr 15, 2019 8:57 pm The other thing it could be (from memory, I might be wrong) is VoxLib, try changing it to load the version that comes with the game, instead of the 26/32bit neutral version from ADFFS:trackers
That fixed it! <Obey$Dir>.VoxLib

Many thanks!
Post Reply