Wataru MIYAGUNI

Results 14 issues of Wataru MIYAGUNI

[![img1486340967537](https://cloud.githubusercontent.com/assets/124713/22631357/ca802df0-ec4e-11e6-87ad-e105c49e96b5.png)](https://github.com/gongo/9t/blob/2abe4bb994e2499a06b432b5a440b99679079d39/.travis.yml#L3) See: https://docs.travis-ci.com/user/languages/go#Specifying-a-Go-version-to-use

From PHP 5.6, SSL/TLS client streams now enable peer verification by default. So, error occurs when communicate with the server that is using a self-signed certificate. See: http://php.net/manual/migration56.openssl.php In order...

Try again :pizza: - https://github.com/travis-ci/apt-source-whitelist/pull/95 - https://github.com/travis-ci/apt-source-whitelist/issues/25

``` $ ./vendor/bin/phpunit PHPUnit 9.6.19 by Sebastian Bergmann and contributors. Warning: No code coverage driver available Warning: Your XML configuration validates against a deprecated schema. Suggestion: Migrate your XML configuration...

see: https://phpunit.de/supported-versions.html

HTML で出力するほどでもないけど、RSpec 標準の text format だと見づれーわって時があるので、 なんかいい感じで step を載せるようなフォーマット ascii table みたいな感じでやるものいいですね。

new feature

#27 で作成した throwRuntimeErrorIf を抹殺する

- Camera も User (UserContext、Factory) も同一の xn::Context を使う - 今後別のノードがでてきても、おそらく xn::Context が中心にするはず - 個別でインスタンス作ってもいいが、 xn::Context を渡して回るのはほぼ確定であり、それをユーザがやるのめんどい(俺がめんどい) - そういうことならいっそまとめてしまおう。 simple-openni みたいな感じで。 before ``` cpp xn::Context context; context.Init(); Camera *camera = new...

最近することないのでドキュメントを充実させておこう - ファイルコメント (@file) - メソッドの要約説明、詳細説明をわける (@brief とか) - @code も書く - その他いろいろ

Feature
Refactoring

現在は録画開始 WorldContext::enableRecord() しかなく、 録画を正常に終了するには xn::Context の StopGeneratingAll() や Shutdown() で行なっている。 Shutdown() を行わずに、プログラム実行中で録画の停止を行えるようにする。 また、別ファイルで録画再開ができるようにする ``` cpp WorldContext ctx; ctx->enableRecord("hoge.oni"); // 処理 ctx->disableRecord(); // hoge.oni の書き出し正常終了 ctx->enable("hoge2.oni"); // 別ファイルで録画再開 ```

Feature