Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
Hubs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ar-noc
Hubs
Commits
b7b1a38e
Commit
b7b1a38e
authored
6 years ago
by
Robert Long
Browse files
Options
Downloads
Patches
Plain Diff
Don't use events for audio-feedback
parent
20d6d328
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/components/audio-feedback.js
+14
-36
14 additions, 36 deletions
src/components/audio-feedback.js
with
14 additions
and
36 deletions
src/components/audio-feedback.js
+
14
−
36
View file @
b7b1a38e
AFRAME
.
registerComponent
(
"
networked-audio-analyser
"
,
{
AFRAME
.
registerComponent
(
"
networked-audio-analyser
"
,
{
schema
:
{},
async
init
()
{
async
init
()
{
this
.
volume
=
0
;
this
.
el
.
addEventListener
(
"
sound-source-set
"
,
event
=>
{
this
.
el
.
addEventListener
(
"
sound-source-set
"
,
event
=>
{
const
ctx
=
THREE
.
AudioContext
.
getContext
();
const
ctx
=
THREE
.
AudioContext
.
getContext
();
this
.
analyser
=
ctx
.
createAnalyser
();
this
.
analyser
=
ctx
.
createAnalyser
();
...
@@ -20,60 +20,38 @@ AFRAME.registerComponent("networked-audio-analyser", {
...
@@ -20,60 +20,38 @@ AFRAME.registerComponent("networked-audio-analyser", {
sum
+=
this
.
levels
[
i
];
sum
+=
this
.
levels
[
i
];
}
}
this
.
volume
=
sum
/
this
.
levels
.
length
;
this
.
volume
=
sum
/
this
.
levels
.
length
;
this
.
el
.
emit
(
"
audioFrequencyChange
"
,
{
volume
:
this
.
volume
,
levels
:
this
.
levels
});
}
}
});
});
AFRAME
.
registerComponent
(
"
matcolor-audio-feedback
"
,
{
AFRAME
.
registerComponent
(
"
matcolor-audio-feedback
"
,
{
schema
:
{
tick
()
{
analyserSrc
:
{
type
:
"
selector
"
}
if
(
!
this
.
mat
)
return
;
},
init
:
function
()
{
this
.
onAudioFrequencyChange
=
this
.
onAudioFrequencyChange
.
bind
(
this
);
},
play
()
{
const
audioAnalyser
=
this
.
el
.
components
[
"
networked-audio-analyser
"
];
(
this
.
data
.
analyserSrc
||
this
.
el
).
addEventListener
(
"
audioFrequencyChange
"
,
this
.
onAudioFrequencyChange
);
},
pause
()
{
if
(
!
audioAnalyser
)
return
;
(
this
.
data
.
analyserSrc
||
this
.
el
).
removeEventListener
(
"
audioFrequencyChange
"
,
this
.
onAudioFrequencyChange
);
},
onAudioFrequencyChange
(
e
)
{
this
.
object3D
.
mesh
.
color
.
setScalar
(
1
+
audioAnalyser
.
volume
/
255
*
2
);
if
(
!
this
.
mat
)
return
;
this
.
object3D
.
mesh
.
color
.
setScalar
(
1
+
e
.
detail
.
volume
/
255
*
2
);
}
}
});
});
AFRAME
.
registerComponent
(
"
scale-audio-feedback
"
,
{
AFRAME
.
registerComponent
(
"
scale-audio-feedback
"
,
{
schema
:
{
schema
:
{
analyserSrc
:
{
type
:
"
selector
"
},
minScale
:
{
default
:
1
},
minScale
:
{
default
:
1
},
maxScale
:
{
default
:
2
}
maxScale
:
{
default
:
2
}
},
},
init
()
{
tick
()
{
this
.
onAudioFrequencyChange
=
this
.
onAudioFrequencyChange
.
bind
(
this
);
},
play
()
{
(
this
.
data
.
analyserSrc
||
this
.
el
).
addEventListener
(
"
audioFrequencyChange
"
,
this
.
onAudioFrequencyChange
);
},
pause
()
{
(
this
.
data
.
analyserSrc
||
this
.
el
).
removeEventListener
(
"
audioFrequencyChange
"
,
this
.
onAudioFrequencyChange
);
},
onAudioFrequencyChange
(
e
)
{
// TODO: come up with a cleaner way to handle this.
// TODO: come up with a cleaner way to handle this.
// bone's are "hidden" by scaling them with bone-visibility, without this we would overwrite that.
// bone's are "hidden" by scaling them with bone-visibility, without this we would overwrite that.
if
(
!
this
.
el
.
object3D
.
visible
)
return
;
if
(
!
this
.
el
.
object3D
.
visible
)
return
;
const
{
minScale
,
maxScale
}
=
this
.
data
;
const
{
minScale
,
maxScale
}
=
this
.
data
;
this
.
el
.
object3D
.
scale
.
setScalar
(
minScale
+
(
maxScale
-
minScale
)
*
e
.
detail
.
volume
/
255
);
const
audioAnalyser
=
this
.
el
.
components
[
"
networked-audio-analyser
"
];
if
(
!
audioAnalyser
)
return
;
this
.
el
.
object3D
.
scale
.
setScalar
(
minScale
+
(
maxScale
-
minScale
)
*
audioAnalyser
.
volume
/
255
);
}
}
});
});
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment