0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Xamarin iOSでVRリモコンを試す

Posted at

ELECOMのスマホVR用コントローラJC-VRR01をiOSで使うときのための、チートシートを作ってみた。

リモコンをゲームパッドモードで動作させるには、「Select」ボタンを押しながら電源スイッチを「iOS」側にスライドさせる。詳しくは取り扱い説明書を参照。

ELECOM JC-VRR01.png

ボタンごとにアルファベットをふたつ記載しているのは、down / upに対応。ボタンを押し込んだときと離したとき、それぞれでキーコードが送られてくる仕様で、キーリピートのようなものではないので、「押している間」のような処理が書きやすそう。

Xamarin.iOSで利用するためのコードは下記のとおり。

ViewController.cs
    public partial class ViewController : UIViewController
    {
        public override void ViewDidLoad()
        {
            base.ViewDidLoad();

            // add key-commands
            var action = new Selector("KeyTouched:");
            foreach (var alp in Enumerable.Range('a', 26))
            {
                AddKeyCommand(UIKeyCommand.Create(new NSString(((char)alp).ToString()), 0, action));
            }
        }

        [Export("KeyTouched:")]
        private void KeyTouched(UIKeyCommand command) 
        {
            Console.WriteLine(command.Input);
        }
    }
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?