Linux MS DOS discussions
 help / color / mirror / Atom feed
* Re: XMS problem with Aladdin demo
@ 2005-03-03 19:58 Stas Sergeev
  2005-03-05  4:49 ` Ryan Underwood
  0 siblings, 1 reply; 9+ messages in thread
From: Stas Sergeev @ 2005-03-03 19:58 UTC (permalink / raw)
  To: linux-msdos

Hello.

Julius Schwartzenberg wrote:
> very long delays in the sound. Changing $_oss_max_frags = (0x20) to 
> (0x5) seems to fix this. I have this on both my workstation and my 
> laptop. Is this because of a crappy driver/audiochip?
No, thats the crappy sound code of
dosemu this time.

> Is there any 
> reason the default isn't set lower?
I don't know, I think it was to avoid
the underruns, but 0x20 is probably
too much.
Anyway, the sound code needs a complete
rewrite. And this time one really have
to *think* before rewriting it. Currently
there is no manpower to do that.


^ permalink raw reply	[flat|nested] 9+ messages in thread
* Re: XMS problem with Aladdin demo
@ 2005-03-07 13:44 Stas Sergeev
  2005-03-07 23:23 ` Ryan Underwood
  0 siblings, 1 reply; 9+ messages in thread
From: Stas Sergeev @ 2005-03-07 13:44 UTC (permalink / raw)
  To: linux-msdos

Hello.

Ryan Underwood wrote:
> What are the requirements of a new
> sound system, from your experience
> with the current one?
The main requirement is that it must
not access the OS sound driver (OSS
or ALSA) directly, like it does now.
There must be mid-layers in-between,
like at least resampling and mixing.
This may be done by the use of some
sound server, but most "low-end" sound
servers do not support the variable
sampling rate, i.e. you can't change
the rate without re-connecting to the
server. Other servers have the
unacceptable latencies.
There are now appearing those modern
sound servers like JACK, which probably
can satisfy our needs, but I haven't
looked into that.
Now that SDL is usually linked in to
dosemu, we can do the mixing/resampling
ourselves as well, and send the output
to SDL too. But SDL doesn't even
provide the ability to query the output
buffer status (the last time I looked),
which is not very good. Though using
SDL for sound looks attractive.
Another thing that have to be changed,
is that the SB emulator have to control
the rate itself, not like it does now -
write to the device until the buffer
is full. Some DOS progs controls the
DMA registers during the sound output,
and that's why we have to guarantee the
smooth transfer and the accurate timing
ourself. For that matter it will probably
be necessary to put the SB and DMA into
a separate thread. But then we also need
a mechanism to make sure our timing is
not out of sync with the underlying device,
and so we have to query the state of the
output buffer and adjust our speed according
to its state. It is probably not easy
to provide an accurate info about the
state of the buffers for the output
software that does the stream mixing,
like SDL, so AFAIK SDL doesn't provide
that info at all.
This all will also require a major
changes in the SB and DMA emulators, as
now they are too OSS-oriented. For example,
to change the speed, currently the sound
code waits for the OSS buffer to became
empty, resets the sound card, sets the
new parameters, and resumes the transfer.
It is obvious to see how difficult and
ineffective it is, and it is really a
big surprise that it works out right most
of the time. Well, thats because I added
a tons of heuristic about choosing an
optimal buffer sizes, tuned it separately
to a hundreds of games, etc. What a
silly timewasting it was, but at the time
of doing this, dosemu was not compatible
with pthreads, and the "good enough"
sound servers were not even on a horizon
(or at least I wasn't able to find them).
And I also followed the old code that
was there since 1995, instead of just
rewrite everything.
Now it may be wise to finally rewrite
everything from scratch, rather than
hacking with the current code. The fact
that it actually happens to work, must
not confuse anyone.
It may not be difficult to implement,
but only if the architecture is properly
designed. Otherwise it will be just
another time-wasting. That's why
noone even dare to start the work:)


^ permalink raw reply	[flat|nested] 9+ messages in thread
* Re: XMS problem with Aladdin demo
@ 2005-03-03  4:54 Stas Sergeev
  2005-03-03 18:09 ` Julius Schwartzenberg
  0 siblings, 1 reply; 9+ messages in thread
From: Stas Sergeev @ 2005-03-03  4:54 UTC (permalink / raw)
  To: linux-msdos

Hello.

Julius Schwartzenberg wrote:
> The (working) version on my laptop seems to be from 26-12-2004.
Oh, that's strange.

> Is there anything special I need to do to disable Dosemu's XMS support 
> (using the default configuration)?
How one is supposed to disable/enable
something without changing the config? :)
You'll have to alter it by setting
$_xms=(off). Don't forget to also update
your ems.sys and see what diagnostic it
prints on startup. Then update your
config.sys to load himem.sys before ems.sys.


^ permalink raw reply	[flat|nested] 9+ messages in thread
* Re: XMS problem with Aladdin demo
@ 2005-03-01 17:08 Stas Sergeev
  2005-03-02 21:22 ` Julius Schwartzenberg
  0 siblings, 1 reply; 9+ messages in thread
From: Stas Sergeev @ 2005-03-01 17:08 UTC (permalink / raw)
  To: linux-msdos

Hello.

Julius Schwartzenberg wrote:
> I've already got it working on my laptop in an older CVS version, but 
> on my main workstation it quits everytime with an XMS error.
When exactly it stopped to work?
I think it doesn't work also on 1.2.2,
so it is not something recent.

> Has much been changed to these sections in Dosemu lately?
Yes. But when and why that game stopped
working noone knows (noone cares either
I think, well, it you can say when it
started to fail, this may still be
somewhat interesting).

> What kind things I should try to get this game to work properly?
Disable dosemu's XMS support, use the
native himem.sys...


^ permalink raw reply	[flat|nested] 9+ messages in thread
* XMS problem with Aladdin demo
@ 2005-03-01 15:46 Julius Schwartzenberg
  0 siblings, 0 replies; 9+ messages in thread
From: Julius Schwartzenberg @ 2005-03-01 15:46 UTC (permalink / raw)
  To: linux-msdos

Hi,
I'm trying to get the following game to work on my main computer with a 
pretty recent CVS version:
http://www.dosgamesarchive.com/download/game/79
I've already got it working on my laptop in an older CVS version, but on 
my main workstation it quits everytime with an XMS error.
Has much been changed to these sections in Dosemu lately?
I know the game is quite picky about this, so I was very happy to see it 
running on my laptop.
What kind things I should try to get this game to work properly?
Thanks in advance,
Julius

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2005-03-07 23:23 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-03 19:58 XMS problem with Aladdin demo Stas Sergeev
2005-03-05  4:49 ` Ryan Underwood
  -- strict thread matches above, loose matches on Subject: below --
2005-03-07 13:44 Stas Sergeev
2005-03-07 23:23 ` Ryan Underwood
2005-03-03  4:54 Stas Sergeev
2005-03-03 18:09 ` Julius Schwartzenberg
2005-03-01 17:08 Stas Sergeev
2005-03-02 21:22 ` Julius Schwartzenberg
2005-03-01 15:46 Julius Schwartzenberg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox