2014-02-18, 15:46
Hello brazen1,
As of externally change Stereoscopic mode. You have been referring to bat files, so I assume your HTPC is on Windows, thus here are the commands for Windows batch. Your XBMC should be accepting remote controls
The first line is setting Stereoscopic Mode of XBMC where mode is one of the following strings:
"toggle", "tomono", "next", "previous", "select", "off", "split_vertical", "split_horizontal", "row_interleaved", "hardware_based", "anaglyph_cyan_red", "anaglyph_green_magenta", "monoscopic"
Source: methods.json
The second line sends noop message to reset idle counter (wake up XBMC), so that 3D enabler checks for stereoscopic mode change, detects it and send the command sequence to the TV.
Regarding "Checkerboard" mode - currently XBMC is not supporting this mode and as this addon is extending XBMC functionality - it will not be added before XBMC adds support for it. However, I am working on adding support of "row_interleaved" instead - you could use this mode for Checkerboard sequence (I don't see XBMC is drawing GUI anything different than in regular mode)
Cheers
As of externally change Stereoscopic mode. You have been referring to bat files, so I assume your HTPC is on Windows, thus here are the commands for Windows batch. Your XBMC should be accepting remote controls
Code:
curl.exe -s -i -X POST -d "{\"jsonrpc\": \"2.0\", \"method\": \"GUI.SetStereoscopicMode\", \"params\": {\"mode\": \"split_vertical\"}, \"id\": \"1\"}" -H "content-type:application/json" http://localhost:8080/jsonrpc
curl.exe -s -i -X POST -d "{\"jsonrpc\": \"2.0\", \"method\": \"Input.ExecuteAction\", \"params\": {\"action\": \"noop\"}, \"id\": \"1\"}" -H "content-type:application/json" http://localhost:8080/jsonrpc
The first line is setting Stereoscopic Mode of XBMC where mode is one of the following strings:
"toggle", "tomono", "next", "previous", "select", "off", "split_vertical", "split_horizontal", "row_interleaved", "hardware_based", "anaglyph_cyan_red", "anaglyph_green_magenta", "monoscopic"
Source: methods.json
The second line sends noop message to reset idle counter (wake up XBMC), so that 3D enabler checks for stereoscopic mode change, detects it and send the command sequence to the TV.
Regarding "Checkerboard" mode - currently XBMC is not supporting this mode and as this addon is extending XBMC functionality - it will not be added before XBMC adds support for it. However, I am working on adding support of "row_interleaved" instead - you could use this mode for Checkerboard sequence (I don't see XBMC is drawing GUI anything different than in regular mode)
Cheers