- WPF
WPF勉強の成果物(その2)としてファイル検索ツールを作りました。
RealtimeSearch
https://bitbucket.org/neelabo/realtimesearch/wiki/
設定したフォルダ以下のファイル検索をします。
クリップボードを監視しており、他のソフト(WEBブラウザとか)のテキストをコピーするだけで検索ができるのが特徴です。
// サンプル
using (var process = new System.Diagnostics.Process())
{
process.StartInfo.UseShellExecute = false;
process.StartInfo.CreateNoWindow = true;
process.StartInfo.RedirectStandardOutput = true; // 標準出力リダイレクトON
process.StartInfo.StandardOutputEncoding = Encoding.UTF8; // エンコーディング設定
process.StartInfo.FileName = ... ;
process.StartInfo.Arguments = ... ;
process.Start();
process.WaitForExit();
string text = process.StandardOutput.ReadToEnd(); // 標準出力を得る
:
}
WorldGenerator
https://dl.dropboxusercontent.com/u/13310317/unity/WorldGenerator/WorldGenerator.html
【Lazy Life,Easy Exit】 フィールドマップ自動生成プログラム
http://lazylifeeasyexit.blog67.fc2.com/blog-entry-30.html
【アマゲニュース】地上マップの自動生成@ダンジョン自動生成スレ
http://amagame.blog12.fc2.com/blog-entry-1989.html
【Asset Store】World Builder
https://kharma.unity3d.com/en/#!/content/11333