Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
VAPython
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Security & Compliance
Security & Compliance
Dependency List
Packages
Packages
Container Registry
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Institute of Technical Acoustics (ITA)
VAPython
Commits
c64b1a38
Commit
c64b1a38
authored
Aug 23, 2017
by
Dipl.-Ing. Jonas Stienen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding listener methods
parent
aef86072
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
476 additions
and
43 deletions
+476
-43
src/vasingleton.cpp
src/vasingleton.cpp
+23
-25
src/vasingletonmethods.hpp
src/vasingletonmethods.hpp
+453
-18
No files found.
src/vasingleton.cpp
View file @
c64b1a38
...
@@ -81,34 +81,32 @@ static struct PyMethodDef va_methods[] =
...
@@ -81,34 +81,32 @@ static struct PyMethodDef va_methods[] =
{
"get_sound_source_orientation_q"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"get_sound_source_orientation_q"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"set_sound_source_orientation_q"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"set_sound_source_orientation_q"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_ids"
,
(
PyCFunction
)
va_
not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_ids"
,
(
PyCFunction
)
va_
get_listener_ids
,
METH_FASTCALL
,
va_no_doc
},
{
"create_listener"
,
(
PyCFunction
)
va_create_listener
,
METH_FASTCALL
,
va_no_doc
},
{
"create_listener"
,
(
PyCFunction
)
va_create_listener
,
METH_FASTCALL
,
va_no_doc
},
{
"create_listener_explicit_renderer"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"create_listener_explicit_renderer"
,
(
PyCFunction
)
va_create_listener_explicit_renderer
,
METH_FASTCALL
,
va_no_doc
},
{
"delete_listener"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"delete_listener"
,
(
PyCFunction
)
va_delete_listener
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_enabled"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_enabled"
,
(
PyCFunction
)
va_set_listener_enabled
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_enabled"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_enabled"
,
(
PyCFunction
)
va_get_listener_enabled
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_name"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_name"
,
(
PyCFunction
)
va_get_listener_name
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_enabled"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_enabled"
,
(
PyCFunction
)
va_set_listener_enabled
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_auralization_mode"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_auralization_mode"
,
(
PyCFunction
)
va_get_listener_auralization_mode
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_auralization_mode"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_auralization_mode"
,
(
PyCFunction
)
va_set_listener_auralization_mode
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_parameters"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_parameters"
,
(
PyCFunction
)
va_set_listener_parameters
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_parameters"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_parameters"
,
(
PyCFunction
)
va_get_listener_parameters
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_hrir"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_hrir"
,
(
PyCFunction
)
va_get_listener_hrir
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_hrir"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_hrir"
,
(
PyCFunction
)
va_set_listener_hrir
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_volume"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"get_active_listener"
,
(
PyCFunction
)
va_get_active_listener
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_volume"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"set_active_listener"
,
(
PyCFunction
)
va_set_active_listener
,
METH_FASTCALL
,
va_no_doc
},
{
"is_listener_muted"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_position"
,
(
PyCFunction
)
va_get_listener_position
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_muted"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_position"
,
(
PyCFunction
)
va_set_listener_position
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_position"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_orientation_vu"
,
(
PyCFunction
)
va_get_listener_orientation_vu
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_position"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_orientation_vu"
,
(
PyCFunction
)
va_set_listener_orientation_vu
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_orientation_vu"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_orientation_vu"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_orientation_q"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_orientation_q"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_orientation_q"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_orientation_q"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_real_world_position"
,
(
PyCFunction
)
va_
not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_real_world_position"
,
(
PyCFunction
)
va_
get_listener_real_world_position
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_real_world_position"
,
(
PyCFunction
)
va_
not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_real_world_position"
,
(
PyCFunction
)
va_
set_listener_real_world_position
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_real_world_orientation_vu"
,
(
PyCFunction
)
va_
not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_real_world_orientation_vu"
,
(
PyCFunction
)
va_
get_listener_real_world_orientation_vu
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_real_world_orientation_vu"
,
(
PyCFunction
)
va_
not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_real_world_orientation_vu"
,
(
PyCFunction
)
va_
set_listener_real_world_orientation_vu
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_real_world_orientation_q"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"get_listener_real_world_orientation_q"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_real_world_orientation_q"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
{
"set_listener_real_world_orientation_q"
,
(
PyCFunction
)
va_not_implemented
,
METH_FASTCALL
,
va_no_doc
},
...
...
src/vasingletonmethods.hpp
View file @
c64b1a38
This diff is collapsed.
Click to expand it.
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