You will not be able to post if you are still using Microsoft email addresses such as Hotmail etc
See here for more information viewtopic.php?f=20&t=7296
BOOKMARK THIS PAGE !
https://www.exxosforum.co.uk:8085/IP_CHECK/
You can unban yourself if needed. It also sends me reports to investigate the ban.
DO NOT USE MOBILE / CGNAT DEVICES WHERE THE IP CHANGES CONSTANTLY!
At this time, it is unfortunately not possible to whitelist users when your IP changes constantly.
You may inadvertently get banned because a previous attack may have used the IP you are now on.
So I suggest people only use fixed IP address devices until I can think of a solution for this problem!

WIP Atari ST ScummVM-lite

Our top picks of ST games!
User avatar
JezC
Posts: 2772
Joined: 28 Aug 2017 23:44

Re: WIP Atari ST ScummVM-lite

Post by JezC »

I've got a stock Falcon (bar the 14Meg Ram upgrade) - internal IDE drive has died but external SCSI working well still...

Can't find my Falcon to ST monitor adaptor but do have a VGA one handy.
User avatar
stephen_usher
Site sponsor
Site sponsor
Posts: 7355
Joined: 13 Nov 2017 19:19
Location: Oxford, UK.

Re: WIP Atari ST ScummVM-lite

Post by stephen_usher »

agranlund wrote: 20 Apr 2020 22:16 Does anyone here have a TT or stock Falcon?
I'd be interested in knowing if it runs on these machines... appears to work in Hatari but I'm not sure how accurate that emulator is.

(Sending you a PM Atarian Computing, but I'd be willing to bet it's not going to display on that Mach64.
It sets ST-Low resolution and grabs the screen pointer from TOS, and I assume that's a bad idea for machines with gfx card? I don't have any experience with gfx-card equipped Ataris)
I've a stock (well, extra memory and USB ports) TT.
Intro retro computers since before they were retro...
ZX81->Spectrum->Memotech MTX->Sinclair QL->520STM->BBC Micro->TT030->PCs & Sun Workstations.
Added code to the MiNT kernel (still there the last time I checked) + put together MiNTOS.
Collection now with added Macs, Amigas, Suns and Acorns.
Atarian Computing
Posts: 580
Joined: 22 Aug 2017 04:27

Re: WIP Atari ST ScummVM-lite

Post by Atarian Computing »

agranlund wrote: 20 Apr 2020 22:16 Does anyone here have a TT or stock Falcon?
I'd be interested in knowing if it runs on these machines... appears to work in Hatari but I'm not sure how accurate that emulator is.

(Sending you a PM Atarian Computing, but I'd be willing to bet it's not going to display on that Mach64.
It sets ST-Low resolution and grabs the screen pointer from TOS, and I assume that's a bad idea for machines with gfx card? I don't have any experience with gfx-card equipped Ataris)
Thanks! Glad to report it seems to run smooth on the TT! Holy crap man, well friggin done!

I tried Atlantis and Tentacle and everything was super responsive. I didn't try the VME gfx as it most likely wouldn't work. I was lazy and ran from USB-drive and used a USB mouse. No issues. I didn't get a chance to try too long but I did move around, looked at stuff, picked stuff. Sounds worked. I'll test more later.

Now to get DMA sound and TT-colours :D

Thanks again for this.
User avatar
JezC
Posts: 2772
Joined: 28 Aug 2017 23:44

Re: WIP Atari ST ScummVM-lite

Post by JezC »

I've downloaded the alpha ready to try on my Falcon this evening - will post an update later today (hopefully) :)

The anticipation is making this working from home even more tedious than normal... :(
User avatar
stephen_usher
Site sponsor
Site sponsor
Posts: 7355
Joined: 13 Nov 2017 19:19
Location: Oxford, UK.

Re: WIP Atari ST ScummVM-lite

Post by stephen_usher »

I've just downloaded "Day of the Tentacle" and your files.

Works wonderfully, just a bit of audio distortion and maybe delays due to audio decoding.

I notice that the executable doesn't have the header information to allow it to be tagged to go into TTRAM.
Intro retro computers since before they were retro...
ZX81->Spectrum->Memotech MTX->Sinclair QL->520STM->BBC Micro->TT030->PCs & Sun Workstations.
Added code to the MiNT kernel (still there the last time I checked) + put together MiNTOS.
Collection now with added Macs, Amigas, Suns and Acorns.
User avatar
agranlund
Site sponsor
Site sponsor
Posts: 1726
Joined: 18 Aug 2019 22:43
Location: Sweden

Re: WIP Atari ST ScummVM-lite

Post by agranlund »

stephen_usher wrote: 21 Apr 2020 08:32 I've just downloaded "Day of the Tentacle" and your files.
Works wonderfully, just a bit of audio distortion and maybe delays due to audio decoding.

I notice that the executable doesn't have the header information to allow it to be tagged to go into TTRAM.
This is really interesting! All three flags are set here (fast-load, run-from & allocate-from) and I can tell from the debugger that it is indeed executing in TTRAM -- this is on my ST though so I wonder if there is some additional difference between my system and a real TT making this happen.

Can you set/check flags natively in TOS for the TT or do you also use 3'rd party apps for this like me on the ST?
I just double checked here using the SETFLAGS.APP by Uwe Seimet, as well as the CHNGFLAG.CPX control panel extension and they both report fload,lalt,malt flags being set.

I will try to investigate this, maybe I need to specify something at build time.. I want the app to go into fastram on all systems by default of course.
For now you could just tag it manually I suppose because it's going to be more happy with fast-ram compared to st-ram:)

Thank you so much for testing it, I'm really happy that it starts and runs on real TT hardware!
User avatar
thorsten.otto
Posts: 148
Joined: 04 Nov 2019 02:20

Re: WIP Atari ST ScummVM-lite

Post by thorsten.otto »

agranlund wrote: 21 Apr 2020 10:15 All three flags are set here (fast-load, run-from & allocate-from)
That should be the default both for Pure-C and gcc. What compiler are you using?
User avatar
agranlund
Site sponsor
Site sponsor
Posts: 1726
Joined: 18 Aug 2019 22:43
Location: Sweden

Re: WIP Atari ST ScummVM-lite

Post by agranlund »

thorsten.otto wrote: 21 Apr 2020 10:54
agranlund wrote: 21 Apr 2020 10:15 All three flags are set here (fast-load, run-from & allocate-from)
That should be the default both for Pure-C and gcc. What compiler are you using?
I'm using gcc 4.6.4
User avatar
stephen_usher
Site sponsor
Site sponsor
Posts: 7355
Joined: 13 Nov 2017 19:19
Location: Oxford, UK.

Re: WIP Atari ST ScummVM-lite

Post by stephen_usher »

agranlund wrote: 21 Apr 2020 10:15 This is really interesting! All three flags are set here (fast-load, run-from & allocate-from) and I can tell from the debugger that it is indeed executing in TTRAM -- this is on my ST though so I wonder if there is some additional difference between my system and a real TT making this happen.

Can you set/check flags natively in TOS for the TT or do you also use 3'rd party apps for this like me on the ST?
I just double checked here using the SETFLAGS.APP by Uwe Seimet, as well as the CHNGFLAG.CPX control panel extension and they both report fload,lalt,malt flags being set.

I will try to investigate this, maybe I need to specify something at build time.. I want the app to go into fastram on all systems by default of course.
For now you could just tag it manually I suppose because it's going to be more happy with fast-ram compared to st-ram:)

Thank you so much for testing it, I'm really happy that it starts and runs on real TT hardware!
OK, weird... When I try to look at the flags using the CPX I usually use all the flag options are greyed out.
IMG_1858.jpg
You do not have the required permissions to view the files attached to this post.
Intro retro computers since before they were retro...
ZX81->Spectrum->Memotech MTX->Sinclair QL->520STM->BBC Micro->TT030->PCs & Sun Workstations.
Added code to the MiNT kernel (still there the last time I checked) + put together MiNTOS.
Collection now with added Macs, Amigas, Suns and Acorns.
terriblefire
Admin sponsor
Admin sponsor
Posts: 5684
Joined: 28 Aug 2017 22:56
Location: Glasgow, UK

Re: WIP Atari ST ScummVM-lite

Post by terriblefire »

agranlund wrote: 20 Apr 2020 11:34 But yeah, I wouldn't hold my breath. :)
Guybrush can hold his breath for 10 minutes :)
———
"It is not necessarily a supply voltage at no load, but the amount of current it can provide when touched that
indicates how much hurting you shall receive."

Return to “GAME ZONE”

Who is online

Users browsing this forum: CCBot and 38 guests