Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
1b3ce0d5
Commit
1b3ce0d5
authored
Jan 04, 2003
by
Rok Mandeljc
Committed by
Alexandre Julliard
Jan 04, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- 3d buffers produce sounds
- some other small fixes
parent
5b918db6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
7 deletions
+57
-7
sound3d.c
dlls/dsound/sound3d.c
+57
-7
No files found.
dlls/dsound/sound3d.c
View file @
1b3ce0d5
...
...
@@ -63,7 +63,7 @@
#include "dsdriver.h"
#include "dsound_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
dsound
);
WINE_DEFAULT_DEBUG_CHANNEL
(
dsound
3d
);
/*******************************************************************************
* Auxiliary functions
...
...
@@ -136,24 +136,73 @@ static inline LONG AngleBetweenVectorsDeg (LPD3DVECTOR a, LPD3DVECTOR b)
return
angle
;
}
/* calculates vector between two points */
static
inline
D3DVECTOR
VectorBetweenTwoPoints
(
LPD3DVECTOR
a
,
LPD3DVECTOR
b
)
{
D3DVECTOR
c
;
c
.
u1
.
x
=
b
->
u1
.
x
-
a
->
u1
.
x
;
c
.
u2
.
y
=
b
->
u2
.
y
-
a
->
u2
.
y
;
c
.
u3
.
z
=
b
->
u3
.
z
-
a
->
u3
.
z
;
TRACE
(
"A (%f,%f,%f), B (%f,%f,%f), AB = (%f,%f,%f)
\n
"
,
a
->
u1
.
x
,
a
->
u2
.
y
,
a
->
u3
.
z
,
b
->
u1
.
x
,
b
->
u2
.
y
,
\
b
->
u3
.
z
,
c
.
u1
.
x
,
c
.
u2
.
y
,
c
.
u3
.
z
);
return
c
;
}
/*******************************************************************************
* 3D Buffer and Listener mixing
*/
static
void
WINAPI
DSOUND_Mix3DBuffer
(
IDirectSound3DBufferImpl
*
ds3db
)
{
FIXME
(
"Procedure not ready yet
\n
"
);
IDirectSound3DListenerImpl
*
dsl
;
D3DVECTOR
vDistance
;
D3DVALUE
fDistance
;
if
(
ds3db
->
dsb
->
dsound
->
listener
==
NULL
)
return
;
dsl
=
ds3db
->
dsb
->
dsound
->
listener
;
switch
(
ds3db
->
ds3db
.
dwMode
)
{
case
DS3DMODE_NORMAL
:
{
vDistance
=
VectorBetweenTwoPoints
(
&
ds3db
->
ds3db
.
vPosition
,
&
dsl
->
ds3dl
.
vPosition
);
fDistance
=
VectorMagnitude
(
&
vDistance
);
if
(
fDistance
>
ds3db
->
ds3db
.
flMaxDistance
)
{
/* some apps don't want you too hear too distant sounds... */
if
(
ds3db
->
dsb
->
dsbd
.
dwFlags
&
DSBCAPS_MUTE3DATMAXDISTANCE
)
{
ds3db
->
dsb
->
volpan
.
lVolume
=
DSBVOLUME_MIN
;
DSOUND_RecalcVolPan
(
&
ds3db
->
dsb
->
volpan
);
DSOUND_ForceRemix
(
ds3db
->
dsb
);
return
;
}
}
ds3db
->
dsb
->
volpan
.
lVolume
=
DSBVOLUME_MAX
;
}
case
DS3DMODE_HEADRELATIVE
:
case
DS3DMODE_DISABLE
:
DSOUND_RecalcVolPan
(
&
ds3db
->
dsb
->
volpan
);
DSOUND_ForceRemix
(
ds3db
->
dsb
);
}
}
static
void
WINAPI
DSOUND_ChangeListener
(
IDirectSound3DListenerImpl
*
ds3dl
)
{
IDirectSoundImpl
*
dsound
=
ds3dl
->
dsb
->
dsound
;
int
i
;
/* if listener changes, we need to recalculate all 3d buffers */
for
(
i
=
0
;
i
>
dsound
->
nrofbuffers
;
i
++
)
for
(
i
=
0
;
i
<
ds3dl
->
dsb
->
dsound
->
nrofbuffers
;
i
++
)
{
/* some buffers don't have 3d buffer (Ultima IX seems to
crash without the following line) */
if
(
ds3dl
->
dsb
->
dsound
->
buffers
[
i
]
->
ds3db
==
NULL
)
continue
;
if
(
ds3dl
->
dsb
->
dsound
->
buffers
[
i
]
->
ds3db
->
need_recalc
==
TRUE
)
{
DSOUND_Mix3DBuffer
(
dsound
->
buffers
[
i
]
->
ds3db
);
DSOUND_Mix3DBuffer
(
ds3dl
->
dsb
->
dsound
->
buffers
[
i
]
->
ds3db
);
}
}
}
...
...
@@ -830,6 +879,7 @@ HRESULT WINAPI IDirectSound3DListenerImpl_Create(
dsl
->
ds3dl
.
vOrientTop
.
u3
.
z
=
0
.
0
;
dsl
->
ds3dl
.
flDistanceFactor
=
DS3D_DEFAULTDISTANCEFACTOR
;
dsl
->
ds3dl
.
flRolloffFactor
=
DS3D_DEFAULTROLLOFFFACTOR
;
dsl
->
ds3dl
.
flDopplerFactor
=
DS3D_DEFAULTDOPPLERFACTOR
;
InitializeCriticalSection
(
&
dsl
->
lock
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment