Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Dalai Felinto
virtual_reality_viewport
Commits
5d229ed9
Commit
5d229ed9
authored
Oct 15, 2015
by
Dalai Felinto
Browse files
Play/Pause
parent
15e37dda
Changes
2
Hide whitespace changes
Inline
Side-by-side
space_view3d_virtual_reality/operator.py
View file @
5d229ed9
...
...
@@ -21,18 +21,23 @@ TODO = False
class
Commands
:
recenter
=
'RECENTER'
fullscreen
=
'FULLSCREEN'
play
=
'PLAY'
pause
=
'PAUSE'
test
=
'TEST'
class
SlaveStatus
:
non_setup
=
0
# initial
dupli
=
1
# view3d duplicated
uiless
=
2
# view3d without UI
waituser
=
3
# waiting for user to move window to HMD
usermoved
=
4
# user moved window
fullscreen
=
5
# wait a bit to prevent a crash on OSX
ready
=
6
# all went well
error
=
7
# something didn't work
non_setup
=
0
# initial
dupli
=
1
# view3d duplicated
uiless
=
2
# view3d without UI
waituser
=
3
# waiting for user to move window to HMD
usermoved
=
4
# user moved window
fullscreen
=
5
# wait a bit to prevent a crash on OSX
ready
=
6
# all went well
play
=
8
# play
pause
=
9
# pause
paused
=
10
# paused
error
=
11
# something didn't work
# ############################################################
...
...
@@ -60,6 +65,8 @@ class VirtualRealityDisplayOperator(bpy.types.Operator):
(
"TOGGLE"
,
"Toggle"
,
"Toggle"
),
(
"RECENTER"
,
"Re-Center"
,
"Re-Center tracking data"
),
(
"FULLSCREEN"
,
"Fullscreen"
,
"Make slave fullscreen"
),
(
"PLAY"
,
"Play"
,
""
),
(
"PAUSE"
,
"Pause"
,
""
),
),
default
=
"TOGGLE"
,
options
=
{
'SKIP_SAVE'
},
...
...
@@ -127,6 +134,14 @@ class VirtualRealityDisplayOperator(bpy.types.Operator):
vr
.
command_push
(
Commands
.
fullscreen
)
return
{
'FINISHED'
}
elif
self
.
action
==
'PLAY'
:
vr
.
command_push
(
Commands
.
play
)
return
{
'FINISHED'
}
elif
self
.
action
==
'PAUSE'
:
vr
.
command_push
(
Commands
.
pause
)
return
{
'FINISHED'
}
else
:
assert
False
,
"action
\"
{0}
\"
not implemented"
.
format
(
self
.
action
)
...
...
@@ -234,8 +249,13 @@ class VirtualRealityDisplayOperator(bpy.types.Operator):
elif
self
.
_slave_status
==
SlaveStatus
.
fullscreen
:
context
.
window_manager
.
virtual_reality
.
is_slave_setup
=
False
ok
=
self
.
_init
(
context
)
elif
self
.
_slave_status
==
SlaveStatus
.
play
:
self
.
_slave_status
=
SlaveStatus
.
ready
elif
self
.
_slave_status
==
SlaveStatus
.
pause
:
self
.
_slave_status
=
SlaveStatus
.
paused
else
:
assert
False
,
"_slaveSetup: Slave status
\"
{0}
\"
not defined"
.
format
(
self
.
_slave_status
)
...
...
@@ -301,6 +321,14 @@ class VirtualRealityDisplayOperator(bpy.types.Operator):
self
.
_slave_status
=
SlaveStatus
.
usermoved
self
.
_slaveSetup
(
context
)
elif
command
==
Commands
.
play
:
self
.
_slave_status
=
SlaveStatus
.
play
self
.
_slaveSetup
(
context
)
elif
command
==
Commands
.
pause
:
self
.
_slave_status
=
SlaveStatus
.
pause
self
.
_slaveSetup
(
context
)
elif
command
==
Commands
.
test
:
print
(
"Testing !!!"
)
...
...
@@ -345,6 +373,9 @@ class VirtualRealityDisplayOperator(bpy.types.Operator):
if
self
.
_slave_status
==
SlaveStatus
.
ready
:
self
.
_loop
(
context
)
elif
self
.
_slave_status
==
SlaveStatus
.
paused
:
return
elif
self
.
_slave_status
==
SlaveStatus
.
waituser
:
self
.
_drawDisplayMessage
(
context
)
...
...
@@ -435,6 +466,8 @@ class VirtualRealityCommandInfo(bpy.types.PropertyGroup):
items
=
((
"NONE"
,
"None"
,
""
),
(
Commands
.
recenter
,
"Re-Center"
,
""
),
(
Commands
.
fullscreen
,
"Fullscreen"
,
""
),
(
Commands
.
play
,
"Play"
,
""
),
(
Commands
.
pause
,
"Pause"
,
""
),
(
Commands
.
test
,
"Test"
,
""
),
),
default
=
"NONE"
,
...
...
space_view3d_virtual_reality/ui.py
View file @
5d229ed9
...
...
@@ -20,7 +20,7 @@ class VirtualRealityPanel(bpy.types.Panel):
col
=
layout
.
column
()
if
not
vr
.
is_enabled
:
col
.
operator
(
"view3d.virtual_reality_display"
,
text
=
"Virtual Reality"
,
icon
=
"PLAY"
).
action
=
'ENABLE'
col
.
operator
(
"view3d.virtual_reality_display"
,
text
=
"Virtual Reality"
).
action
=
'ENABLE'
else
:
col
.
operator
(
"view3d.virtual_reality_display"
,
text
=
"Virtual Reality"
,
icon
=
"X"
).
action
=
'DISABLE'
col
.
separator
()
...
...
@@ -29,6 +29,10 @@ class VirtualRealityPanel(bpy.types.Panel):
col
.
operator
(
"view3d.virtual_reality_display"
,
text
=
"Start"
,
icon
=
"CAMERA_STEREO"
).
action
=
'FULLSCREEN'
else
:
row
=
col
.
row
(
align
=
True
)
row
.
operator
(
"view3d.virtual_reality_display"
,
text
=
"Play"
,
icon
=
"PLAY"
).
action
=
'PLAY'
row
.
operator
(
"view3d.virtual_reality_display"
,
text
=
"Pause"
,
icon
=
"PAUSE"
).
action
=
'PAUSE'
row
=
col
.
row
()
row
.
prop
(
vr
,
"use_preview"
)
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment