-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVirtualCastJsonEditor.cs
6333 lines (4782 loc) · 287 KB
/
VirtualCastJsonEditor.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* ==== 試験中モード ==== */
#undef DEBUG2
//#define DEBUG2
/* ==== 仕様の削除 ==== */
#undef DeleteSpecification
/* ==== END_試験中モード ==== */
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
/*フォームを読み込み*/
using VirtualCastJsonEditor;
using System.Runtime.Serialization;
using Newtonsoft.Json;
using Microsoft.Win32;
using System.Diagnostics;
using System.Collections;
using System.Threading;
using Microsoft.Toolkit.Win32.UI.Controls.Interop.WinRT;
using System.Net.Http;
using System.Net.Http.Headers;
//using Windows.Data.Pdf;
/* ==== VirtualCastEditorフォーム ==== */
namespace VirtualCastJsonEditor
{
/* ==== VirtualCastEditor ==== */
public partial class VirtualCastJsonEditor : Form
{
/* ==== 仕様の削除警告 ==== */
#if DeleteSpecification
#error DeleteSpecification is defined
#endif
/* ==== END_仕様の削除警告 ==== */
public static VirtualCastJsonEditor MainWindow;
/*===========================================================================*/
/* オブジェクト作成 */
/*===========================================================================*/
/* ==== ヘルプフォーム作成 ==== */
VCJE_Help VCEHelp = new VCJE_Help();
/* ==== ダイアログ作成 ==== */
DataGrigDialogs DataGrig_Dialogs = new DataGrigDialogs();
/* ==== 設定フォーム作成 ==== */
VCJE_Config VCJEConfg = new VCJE_Config();
XmlSave XmlSave = new XmlSave();
JsonSave JsonSave = new JsonSave();
DataGridSelect GetSelect = new DataGridSelect();
VCJE_NgHelpe VCJE_NgHelpe = new VCJE_NgHelpe();
NowUpload NewWebView = new NowUpload();
DataSet DataSet = new DataSet();
/*=== アップデートチェック ===*/
UpdateChecker.CheckProgram UpdateSequence = new UpdateChecker.CheckProgram();
/*=== アップデートチェック ===*/
ConnectedSlide4VR.CheckProgram ConnectedSlide4VR = new ConnectedSlide4VR.CheckProgram();
/*===========================================================================*/
/* 関数宣言 */
/*===========================================================================*/
/*=== メインexeのディレクトリー取得用 ===*/
public static string VCJE_ExePass = "";
/* ==== Slide4Vrスライド参照用 ==== */
public string[,] Slide4VrList = { };
#if DEBUG
public bool Debug_Slide4Vr = true; //デバックモードで接続(Slide4Vrのサーバーに詳細ログが出力されます。)
#else
public bool Debug_Slide4Vr = false; //Slide4Vrのサーバーに最低限のログが出力されます。
#endif
/* ====データセル参照用 ==== */
public DataGridViewCell clickedCell;
public object wbTemp;
public string address;
public System.Windows.Forms.DataGridView[] TabData;
public DataTable[] DataTable;
public int TabIndex = 0;
public string ini_Json = "";
/* ==== キーコントロール参照用 ==== */
public const int KyeItem = 135;
public string[,] KyeControl = new string[2, KyeItem];
public const int ini_ForwardBox = 11; //UpArrow
public const int ini_BackwardBox = 12; //Backwardタブ
public const int ini_LeftBox = 14; //Leftタブ
public const int ini_RightBox = 13; //Rightタブ
public const int ini_UpBox = 35; //Upタブ
public const int ini_DownBox = 23; //Downタブ
public const int ini_Key1Box = 2; //Key1タブ
public const int ini_Key2Box = 3; //Key2タブ
public const int ini_Key3Box = 4; //Key3タブ
public const int ini_Key4Box = 5; //Key4タブ
/* === キーコントロールインデックス用 === */
int KeyForward_Inbex = 0; //UpArrow
int KeyBackward_Inbex = 0; //Backwardタブ
int KeyLeft_Inbex = 0; //Leftタブ
int KeyRight_Inbex = 0; //Rightタブ
int KeyUp_Inbex = 0; //Upタブ
int KeyDown_Inbex = 0; //Downタブ
int KeyKey1_Inbex = 0; //Key1タブ
int KeyKey2_Inbex = 0; //Key2タブ
int KeyKey3_Inbex = 0; //Key3タブ
int KeyKey4_Inbex = 0; //Key4タブ
/* === キーコントロールタブ === */
public ComboBox[] KeySelectorData;
/* ==== ComboBox参照用 ==== */
public DataGridViewComboBoxColumn[] ComboBoxIndex;
/* ==== コンボセレクトインデックス用 ==== */
int ImageFormat_Index = 0; //キャプチャ撮影、ホワイトボードの保存形式用
int ChromaCollar_Inbex = 0; //背景クロマキー
int capture_resolution_Index = 0; //カメラ解像度
int ControllerComboBox_Index = 0; //コントローラ種別
/* ==== リンク用関数 ==== */
public ArrayList BackDataLink { get; set; } //視聴者用両面画像
public ArrayList BackMyDataLink { get; set; } //自分用両面画像
/* ====リザルト結果 ==== */
public int DvdCount; //初期動画DVD
public int AdminCommentCount; //運営コメント
public int ViewerCount; //視聴者用固定画像
public int MyDataCount; //自分用固定画像
public int ReversCount; //視聴者用両面画像
public int MyReversCount; //自分用両面画像
public int BackCount; //背景画像
public int BoardCount; //ホワイトボード画像
public int CampeCount; //カンペ画像
static bool loadingFlg = true;
public string HomePage = "com.nicovideo.jp/community/co1666563"; //更新確認ページ
/*===========================================================================*/
/* DataGridセレクター関数定義 */
/*===========================================================================*/
class DataSelectionClass
{/* ==== DataGridセレクター ==== */
public const int GridIndex = 11; //DataGrid全体数
public const int AdminComment = 0; //運営コメント
public const int Dvd = 1; //初期動画DVD
public const int Viewer = 2; //視聴者用固定画像
public const int MyData = 3; //自分用固定画像
public const int Revers = 4; //視聴者用おもて面画像
public const int BackRevers = 5; //視聴者用うら面画像
public const int MyRevers = 6; //自分用おもて面画像
public const int BackMyRevers = 7; //自分用うら面画像
public const int Back = 8; //背景画像
public const int Board = 9; //ホワイトボード画像
public const int Campe = 10; //カンペ画像
}/* ==== END_DataGridセレクター ==== */
/*===========================================================================*/
/* Tabセレクター関数定義 */
/*===========================================================================*/
class TabSelectionClass
{/* ==== Tabセレクター ==== */
public const int TabIndex = 9; //DataGrid全体数
public const int AdminComment = 0; //運営コメント
public const int Dvd = 1; //初期動画DVD
public const int Viewer = 2; //視聴者用固定画像
public const int MyData = 3; //自分用固定画像
public const int Revers = 4; //視聴者用両面画像
public const int MyRevers = 5; //自分用両面画像
public const int Back = 6; //背景画像
public const int Board = 7; //ホワイトボード画像
public const int Campe = 8; //カンペ画像
}/* ==== END_Tabセレクター ==== */
/*===========================================================================*/
/* コンボボックスセレクター関数定義 */
/*===========================================================================*/
class ComboBoxSelectionClass
{/* ==== コンボボックスセレクター ==== */
public const int ComboBoxIndex = 2; //コンボボックス全体数
}/* ==== END_コンボボックスセレクター ==== */
/*===========================================================================*/
/* キーコントロールタブ関数定義 */
/*===========================================================================*/
class KeyControlSelectionClass
{/* ==== キーコントロールタブセレクター ==== */
public const int KeyIndex = 10; //KeySelector全体数
public const int ForwardIndex = 0; //Forwardタブ
public const int BackwardIndex = 1; //Backwardタブ
public const int LeftIndex = 2; //Leftタブ
public const int RightIndex = 3; //Rightタブ
public const int UpIndex = 4; //Upタブ
public const int DownIndex = 5; //Downタブ
public const int Key1Index = 6; //Key1タブ
public const int Key2Index = 7; //Key2タブ
public const int Key3Index = 8; //Key3タブ
public const int Key4Index = 9; //Key4タブ
}/* ==== END_キーコントロールタブセレクター ==== */
/*===========================================================================*/
/* Jsonオブジェクトクラス */
/*===========================================================================*/
/* ==== ver2_0_4c新Jsonデータ ==== */
public class Rootobject
{
public Niconico niconico { get; set; } //ニコニコ
public Import import { get; set; } //インポート
public Comment comment { get; set; } //ニコニコ生放送184コメント
public Humanoid humanoid { get; set; } //移動の設定
public Studio studio { get; set; } //ダイレクトビューモードでの入室許可
public Item item { get; set; } //アイテム登録
public Persistent_Object persistent_object { get; set; } //画像や動画等の登録
public Background background { get; set; } //背景にパノラマ画像を登録
public Keyboard keyboard { get; set; } //キーコントロール
public Embedded_Script embedded_script { get; set; } //VCIアイテムのデバッグ設定
public string mode { get; set; } //起動モードの変更
public bool use_tcp { get; set; } //TCP接続を使用するかどうか (デフォルトはUDP)
public string vr_input_controller_type { get; set; } //使用中のVRコントローラの種別
public bool enable_looking_glass { get; set; } //The Looking Glassに対応
public bool enable_vivesranipal_eye { get; set; } //VIVE Pro Eyeの眼球の動きを検出するかどうか
public float vivesranipal_eye_adjust_x { get; set; } //左右の眼球の移動量
public float vivesranipal_eye_adjust_y { get; set; } //上下の眼球の移動量
public bool enable_vivesranipal_blink { get; set; } //VIVE Pro Eyeのまばたきの動きを検出するかどうか
public bool enable_vivesranipal_lip { get; set; } //VR リップシンク
public bool enable_vivesranipal_eye_with_emotion { get; set; } //表情変更中でも眼球操作を使用する
public float vibration_power { get; set; } //振動の強弱を調整できる。0にすると無振動になってしまう。
}
public class Niconico
{
public string[] broadcaster_comments { get; set; } //運営コメントの登録
public int ng_score_threshold { get; set; } //ニコ生コメント NGスコアしきい値
}
public class Import
{
public string[] video_content_uris { get; set; } //動画のURL
}
public class Comment
{
public bool display_anonymous_card { get; set; } //184コメントからのコメント窓の生成を許可する
public bool display_anonymous_flying { get; set; } //184コメントからの落ちてくるコメント生成を許可する
}
public class Humanoid
{
public bool use_fast_spring_bone { get; set; } //SpringBone最適化
}
public class Studio
{
public int max_performers { get; set; } //スタジオに存在出来る演者の最大人数
public int max_direct_viewers { get; set; } //スタジオに存在出来るダイレクトビューモード使用者の最大人数
}
public class Item
{
public Whiteboard whiteboard { get; set; } //ホワイトボードの画像登録
public Cue_Card cue_card { get; set; } //カンペの画像登録
public bool enable_displaycapture_chromakey { get; set; } //ディスプレイアイテムのクロマキー合成
public bool enable_nicovideo_chromakey { get; set; } //ニコニコ動画プレイヤーのクロマキー合成
public bool enable_videoboard_chromakey { get; set; } //画面キャプチャークロマキー
public Projectable_Item projectable_item { get; set; } //画像のキャッシュを有効にする
public bool hide_camera_from_viewers { get; set; } //視聴者にカメラの表示設定
public bool movie_audio_recording_enabled { get; set; } //ムービー撮影時の録音を有効にする
public string capture_resolution { get; set; } //カメラ解像度
public string capture_format { get; set; } //キャプチャ撮影、ホワイトボードの保存形式
public bool steam_screenshot { get; set; } //Steamスクリーンショット
public bool disable_highlighting_item { get; set; } //触れたアイテムをハイライトを無効
}
public class Whiteboard
{
public string[] source_urls { get; set; } //画像URLリスト
}
public class Cue_Card
{
public string[] source_urls { get; set; } //画像URLリスト
}
public class Projectable_Item
{
public bool enable_cache_all { get; set; } //画像のキャッシュを有効にする
}
public class Persistent_Object
{
public string[] image_urls { get; set; } //永続化画像の登録
public string[] hidden_image_urls { get; set; } //永続化画像(放送非表示)の登録
public string[][] double_sided_image_urls { get; set; } //両面画像の登録
public string[][] hidden_double_sided_image_urls { get; set; } //両面画像(放送非表示)の登録
/* === ニコニコ動画インポート用 ===*/
public string[] nicovideo_ids { get; set; } //ニコニコ動画の再生DVDの登録
}
public class Background
{
public Panorama panorama { get; set; } //背景にパノラマ画像を登録
public string chroma_key_background_color { get; set; } //背景クロマキー
}
public class Keyboard
{
public string switch_rendering_to_desktop { get; set; } //デスクトップへの描画内容を切り替えるキー
public string keycode_vci_forward { get; set; } //VCI操作キー:Forward
public string keycode_vci_backward { get; set; } //VCI操作キー:Backward
public string keycode_vci_left { get; set; } //VCI操作キー:Left
public string keycode_vci_right { get; set; } //VCI操作キー:Right
public string keycode_vci_up { get; set; } //VCI操作キー:Up
public string keycode_vci_down { get; set; } //VCI操作キー:Down
public string keycode_vci_1 { get; set; } //VCI操作キー:Key1
public string keycode_vci_2 { get; set; } //VCI操作キー:Key2
public string keycode_vci_3 { get; set; } //VCI操作キー:Key3
public string keycode_vci_4 { get; set; } //VCI操作キー:Key4
}
public class Panorama
{
public string[] source_urls { get; set; } //画像URLリスト
}
public class Embedded_Script
{
public int websocket_console_port { get; set; } //WebSocket Loggerポート番号
public int moonsharp_debugger_port { get; set; } //MoonSharpDebug のプラグイン
}
/*===========================================================================*/
/* イニシャライズ */
/*===========================================================================*/
public VirtualCastJsonEditor()
{/* ==== FormLodeの初期化 ==== */
InitializeComponent();
/* ==== LocalPassの初期化 ==== */
if (Properties.Settings.Default.LocalPass != null)
{
if (Properties.Settings.Default.LocalPass == "")
{
Properties.Settings.Default.LocalPass = System.Environment.GetFolderPath(Environment.SpecialFolder.Personal) + @"\My Games\VirtualCast";
Properties.Settings.Default.Save();
}
}/* ==== LocalPassの初期化 ==== */
/* ==== 更新確認用form ==== */
//webBrowser1.ScriptErrorsSuppressed = true;
/* ==== 別スレット ==== */
var task1 = Task.Run(() =>
{
if (HomePage.Equals("about:blank")) return;
if (!HomePage.StartsWith("http://") &&
!HomePage.StartsWith("https://"))
{
HomePage = "http://" + HomePage;
}
try
{
webView1.Navigate(new Uri(HomePage));
}
catch (System.UriFormatException)
{
return;
}
//Slide4Vrサーバーアイドル開始
var AppAccess = ConnectedSlide4VR.GetSlide4VrSlide(Properties.Settings.Default.Slide4vrAPIToken, VCJE_ExePass, "AppAccess", 0, Debug_Slide4Vr);
});/* ==== END_別スレット ==== */
/* ==== 本スレット ==== */
/*=== メインexeのディレクトリー取得 ===*/
VCJE_ExePass = Environment.CurrentDirectory;
/*=== アップデート確認 ===*/
UploadCheck(VCJE_ExePass);
/* ==== dllチェック ==== */
string DllFile = System.IO.Path.Combine(@".\Newtonsoft.Json.dll");
/* ==== 保存フォルダーの存在を確認 ==== */
if (File.Exists(DllFile) == false)
{/* ==== ファイルが既に存在する ==== */
MessageBox.Show("「Newtonsoft.Json.dll」はフォルダー内に存在しませんでした"
+ System.Environment.NewLine + "アプリケーションを終了します。",
"Error",
MessageBoxButtons.OK, MessageBoxIcon.Error);
/*自分自身のフォームをCloseメソッドで閉じると、アプリケーションが終了する*/
Close();
}
System.Reflection.Assembly mainAssembly = System.Reflection.Assembly.GetEntryAssembly();
System.Reflection.AssemblyName mainAssemName = mainAssembly.GetName();
// バージョン名(AssemblyVersion属性)を取得
Version appVersion = mainAssemName.Version;
this.Text = mainAssemName.Name + ":ver." + appVersion;
#if DEBUG
this.Text += " (Now DebugMode)";
#endif
/* ==== 読み込み設定ファイルの初期化 ==== */
SettingsRadioButton_ini();
/* ==== タブ配列の初期化 ==== */
TabData_init();
DataTab_init();
/* === キーコントロール配列の初期化 === */
KeyControlBox_ini();
KeyControl_ini();
KeyControBox_Reset();
/* ==== コンボボックス配列の初期化 ==== */
ComboBox_ini();
/* ==== アイトラ設定の初期化 ==== */
EyeSettings_ini();
/* ==== 設定タブの初期化 ==== */
SettingsTab_ini();
/* ==== 多重起動チェックフラグ初期化 ==== */
Properties.Settings.Default.NgLevelCheck = false;
Properties.Settings.Default.Save();
/* ==== 新起動シーケンスメモ ==== */
// === 初回起動時 ===
//1.イニシャライズ
//2.初起動フラグチェック
//3.HTMLファイルが存在するか確認(HTMLがある場合はインポート)
//4.Jsonが存在するか確認(Jsonがある場合はインポート)
//5.新規画面
//※基本はHTMLで保存をデフォルトとする
/* ==== END_新起動シーケンスメモ ==== */
/* ==== オープンチェックを開く ==== */
string LodeFolder = Properties.Settings.Default.LocalPass;
/* === 初回起動時 === */
if (Properties.Settings.Default.FastVCJE == true)
{
/* === XML確認 === */
string LodeFile = System.IO.Path.Combine(@".\"+ Properties.Settings.Default.VCJEDataSet + ".xml");
string LodeFile2 = System.IO.Path.Combine(@".\" + Properties.Settings.Default.VCJEConfig + ".xml");
/* ==== 画像保存フォルダーの存在を確認 ==== */
if (Directory.Exists(LodeFolder))
{/* ==== 保存フォルダは存在する ==== */
if (File.Exists(LodeFolder + LodeFile) && File.Exists(LodeFolder + LodeFile2))
{/* ==== ファイルが既に存在する ==== */
/* ==== XMLオープン ==== */
LoadXmlConfig(LodeFolder + LodeFile2);
VirtualDataSet.Clear(); // ReadXMLは追記なので一旦消す
VirtualDataSet.ReadXml(LodeFolder + LodeFile);
}
else
{/* ==== Jsonを確認と開く ==== */
string Old_LodeFile = System.IO.Path.Combine(@".\config.json");
LodeFile = System.IO.Path.Combine(@".\default_config.json");
/* ==== 保存フォルダーの存在を確認 ==== */
if (Directory.Exists(LodeFolder))
{/* ==== 保存フォルダは存在する ==== */
if (File.Exists(LodeFolder + LodeFile))
{/* ==== ファイルが既に存在する ==== */
/* ==== Jsonオープン ==== */
JsonDeSerialize(LodeFile);
}
else if (File.Exists(LodeFolder + Old_LodeFile))
{
/* ==== Jsonオープン ==== */
JsonDeSerialize(Old_LodeFile);
}
}/* ==== END_保存フォルダは存在する ==== */
}
}/* ==== END_保存フォルダは存在する ==== */
Properties.Settings.Default.FastVCJE = false;
Properties.Settings.Default.Save();
}
else
{
if (Properties.Settings.Default.OpenJson == true)
{/* ==== Jsonを開く ==== */
string Old_LodeFile = System.IO.Path.Combine(@".\config.json");
string LodeFile = System.IO.Path.Combine(@".\default_config.json");
/* ==== 保存フォルダーの存在を確認 ==== */
if (Directory.Exists(LodeFolder))
{/* ==== 保存フォルダは存在する ==== */
if (File.Exists(LodeFolder + LodeFile))
{/* ==== ファイルが既に存在する ==== */
/* ==== Jsonオープン ==== */
JsonDeSerialize(LodeFile);
}
else if (File.Exists(LodeFolder + Old_LodeFile))
{
/* ==== Jsonオープン ==== */
JsonDeSerialize(Old_LodeFile);
}
else
{/* ==== ファイルがが無い ==== */
MessageBox.Show("「config.json」はフォルダー内に存在しませんでした", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}/* ==== END_保存フォルダは存在する ==== */
else
{/* ==== 保存フォルダはない ==== */
MessageBox.Show("設定されたフォルダーが存在しませんでした.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}/* ==== END_画像保存フォルダーの存在を確認 ==== */
}/* ==== END_Jsonを開く ==== */
else if (Properties.Settings.Default.OpenXML == true)
{/* ==== XMLを開く ==== */
string LodeFile = System.IO.Path.Combine(@".\" + Properties.Settings.Default.VCJEDataSet + ".xml");
string LodeFile2 = System.IO.Path.Combine(@".\" + Properties.Settings.Default.VCJEConfig + ".xml");
/* ==== 画像保存フォルダーの存在を確認 ==== */
if (Directory.Exists(LodeFolder))
{/* ==== 保存フォルダは存在する ==== */
if (File.Exists(LodeFolder + LodeFile) && File.Exists(LodeFolder + LodeFile2))
{/* ==== ファイルが既に存在する ==== */
/* ==== XMLオープン ==== */
LoadXmlConfig(LodeFolder + LodeFile2);
VirtualDataSet.Clear(); // ReadXMLは追記なので一旦消す
VirtualDataSet.ReadXml(LodeFolder + LodeFile);
}
else
{/* ==== ファイルがが無い ==== */
MessageBox.Show("「" + Properties.Settings.Default.VCJEDataSet + ".xml」と「" + Properties.Settings.Default.VCJEConfig + ".xml」はフォルダー内に存在しませんでした", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}/* ==== END_保存フォルダは存在する ==== */
else
{/* ==== 保存フォルダはない ==== */
MessageBox.Show("設定されたフォルダーが存在しませんでした.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}/* ==== END_画像保存フォルダーの存在を確認 ==== */
}/* ==== END_Jsonを開く ==== */
}/* === END_初回起動時 === */
/* ==== DirectCheck表示の初期化 ==== */
LookingGlassView_ini();
/*=== タスクトレイに常駐設定 ===*/
setComponents();
}/* ==== END_FormLodeの初期化 ==== */
/* === キーコントロール配列の初期化 === */
public void KeyControl_ini()
{
/* === 表示用 === */
KyeControl[0, 0] = "None";
KyeControl[0, 1] = "0";
KyeControl[0, 2] = "1";
KyeControl[0, 3] = "2";
KyeControl[0, 4] = "3";
KyeControl[0, 5] = "4";
KyeControl[0, 6] = "5";
KyeControl[0, 7] = "6";
KyeControl[0, 8] = "7";
KyeControl[0, 9] = "8";
KyeControl[0, 10] = "9";
KyeControl[0, 11] = "UpArrow";
KyeControl[0, 12] = "DownArrow";
KyeControl[0, 13] = "RightArrow";
KyeControl[0, 14] = "LeftArrow";
KyeControl[0, 15] = "A";
KyeControl[0, 16] = "B";
KyeControl[0, 17] = "C";
KyeControl[0, 18] = "D";
KyeControl[0, 19] = "E";
KyeControl[0, 20] = "F";
KyeControl[0, 21] = "G";
KyeControl[0, 22] = "H";
KyeControl[0, 23] = "I";
KyeControl[0, 24] = "J";
KyeControl[0, 25] = "K";
KyeControl[0, 26] = "L";
KyeControl[0, 27] = "M";
KyeControl[0, 28] = "N";
KyeControl[0, 29] = "O";
KyeControl[0, 30] = "P";
KyeControl[0, 31] = "Q";
KyeControl[0, 32] = "R";
KyeControl[0, 33] = "S";
KyeControl[0, 34] = "T";
KyeControl[0, 35] = "U";
KyeControl[0, 36] = "V";
KyeControl[0, 37] = "W";
KyeControl[0, 38] = "X";
KyeControl[0, 39] = "Y";
KyeControl[0, 40] = "Z";
KyeControl[0, 41] = "Tab";
KyeControl[0, 42] = "Exclaim(!)";
KyeControl[0, 43] = "DoubleQuote(\")";
KyeControl[0, 44] = "Hash(#)";
KyeControl[0, 45] = "Dollar($)";
KyeControl[0, 46] = "Percent(%)";
KyeControl[0, 47] = "Ampersand(&)";
KyeControl[0, 48] = "Quote(')";
KyeControl[0, 49] = "Asterisk(*)";
KyeControl[0, 50] = "Plus(+)";
KyeControl[0, 51] = "Comma(,)";
KyeControl[0, 52] = "Minus(-)";
KyeControl[0, 53] = "Period(.)";
KyeControl[0, 54] = "Slash(/)";
KyeControl[0, 55] = "Tilde(~)";
KyeControl[0, 56] = "Colon(:)";
KyeControl[0, 57] = "Semicolon(;)";
KyeControl[0, 58] = "Less(<)";
KyeControl[0, 59] = "Equale(=)";
KyeControl[0, 60] = "Greater(>)";
KyeControl[0, 61] = "Question(?)";
KyeControl[0, 62] = "At(@)";
KyeControl[0, 63] = "Backslash(\")";
KyeControl[0, 64] = "Caret(^)";
KyeControl[0, 65] = "Underscore(_)";
KyeControl[0, 66] = "BackQuote(`)";
KyeControl[0, 67] = "LeftParen(()";
KyeControl[0, 68] = "RightParen())";
KyeControl[0, 69] = "LeftCurlyBracket({)";
KyeControl[0, 70] = "RightCurlyBracket(})";
KyeControl[0, 71] = "LeftBracket([)";
KyeControl[0, 72] = "RightBracket(])";
KyeControl[0, 73] = "Home";
KyeControl[0, 74] = "PageUP";
KyeControl[0, 75] = "PageDown";
KyeControl[0, 76] = "RightShift";
KyeControl[0, 77] = "LeftShift";
KyeControl[0, 78] = "RightControl";
KyeControl[0, 79] = "LeftControl";
KyeControl[0, 80] = "RightAlt";
KyeControl[0, 81] = "LeftAlt";
KyeControl[0, 82] = "F1";
KyeControl[0, 83] = "F2";
KyeControl[0, 84] = "F3";
KyeControl[0, 85] = "F4";
KyeControl[0, 86] = "F5";
KyeControl[0, 87] = "F6";
KyeControl[0, 88] = "F7";
KyeControl[0, 89] = "F8";
KyeControl[0, 90] = "F9";
KyeControl[0, 91] = "F10";
KyeControl[0, 92] = "F11";
KyeControl[0, 93] = "F12";
KyeControl[0, 94] = "F13";
KyeControl[0, 95] = "F14";
KyeControl[0, 96] = "F15";
KyeControl[0, 97] = "Keypad0";
KyeControl[0, 98] = "Keypad1";
KyeControl[0, 99] = "Keypad2";
KyeControl[0, 100] = "Keypad3";
KyeControl[0, 101] = "Keypad4";
KyeControl[0, 102] = "Keypad5";
KyeControl[0, 103] = "Keypad6";
KyeControl[0, 104] = "Keypad7";
KyeControl[0, 105] = "Keypad8";
KyeControl[0, 106] = "Keypad9";
KyeControl[0, 107] = "KeypadPeriod";
KyeControl[0, 108] = "KeypadDivide";
KyeControl[0, 109] = "KeypadMultiply";
KyeControl[0, 110] = "KeypadMinus";
KyeControl[0, 111] = "KeypadPlus";
KyeControl[0, 112] = "KeypadEnter";
KyeControl[0, 113] = "KeypadEquals";
KyeControl[0, 114] = "Clear";
KyeControl[0, 115] = "JoystickButton0";
KyeControl[0, 116] = "JoystickButton1";
KyeControl[0, 117] = "JoystickButton2";
KyeControl[0, 118] = "JoystickButton3";
KyeControl[0, 119] = "JoystickButton4";
KyeControl[0, 120] = "JoystickButton5";
KyeControl[0, 121] = "JoystickButton6";
KyeControl[0, 122] = "JoystickButton7";
KyeControl[0, 123] = "JoystickButton8";
KyeControl[0, 124] = "JoystickButton9";
KyeControl[0, 125] = "JoystickButton10";
KyeControl[0, 126] = "JoystickButton11";
KyeControl[0, 127] = "JoystickButton12";
KyeControl[0, 128] = "JoystickButton13";
KyeControl[0, 129] = "JoystickButton14";
KyeControl[0, 130] = "JoystickButton15";
KyeControl[0, 131] = "JoystickButton16";
KyeControl[0, 132] = "JoystickButton17";
KyeControl[0, 133] = "JoystickButton18";
KyeControl[0, 134] = "JoystickButton19";
/* === Json出力用 === */
KyeControl[1, 0] = "None";
KyeControl[1, 1] = "Alpha0";
KyeControl[1, 2] = "Alpha1";
KyeControl[1, 3] = "Alpha2";
KyeControl[1, 4] = "Alpha3";
KyeControl[1, 5] = "Alpha4";
KyeControl[1, 6] = "Alpha5";
KyeControl[1, 7] = "Alpha6";
KyeControl[1, 8] = "Alpha7";
KyeControl[1, 9] = "Alpha8";
KyeControl[1, 10] = "Alpha9";
KyeControl[1, 11] = "UpArrow";
KyeControl[1, 12] = "DownArrow";
KyeControl[1, 13] = "RightArrow";
KyeControl[1, 14] = "LeftArrow";
KyeControl[1, 15] = "A";
KyeControl[1, 16] = "B";
KyeControl[1, 17] = "C";
KyeControl[1, 18] = "D";
KyeControl[1, 19] = "E";
KyeControl[1, 20] = "F";
KyeControl[1, 21] = "G";
KyeControl[1, 22] = "H";
KyeControl[1, 23] = "I";
KyeControl[1, 24] = "J";
KyeControl[1, 25] = "K";
KyeControl[1, 26] = "L";
KyeControl[1, 27] = "M";
KyeControl[1, 28] = "N";
KyeControl[1, 29] = "O";
KyeControl[1, 30] = "P";
KyeControl[1, 31] = "Q";
KyeControl[1, 32] = "R";
KyeControl[1, 33] = "S";
KyeControl[1, 34] = "T";
KyeControl[1, 35] = "U";
KyeControl[1, 36] = "V";
KyeControl[1, 37] = "W";
KyeControl[1, 38] = "X";
KyeControl[1, 39] = "Y";
KyeControl[1, 40] = "Z";
KyeControl[1, 41] = "Tab";
KyeControl[1, 42] = "Exclaim";
KyeControl[1, 43] = "DoubleQuote";
KyeControl[1, 44] = "Hash";
KyeControl[1, 45] = "Dollar";
KyeControl[1, 46] = "Percent";
KyeControl[1, 47] = "Ampersand";
KyeControl[1, 48] = "Quote";
KyeControl[1, 49] = "Asterisk";
KyeControl[1, 50] = "Plus";
KyeControl[1, 51] = "Comma";
KyeControl[1, 52] = "Minus";
KyeControl[1, 53] = "Period";
KyeControl[1, 54] = "Slash";
KyeControl[1, 55] = "Tilde";
KyeControl[1, 56] = "Colon";
KyeControl[1, 57] = "Semicolon";
KyeControl[1, 58] = "Less";
KyeControl[1, 59] = "Equale";
KyeControl[1, 60] = "Greater";
KyeControl[1, 61] = "Question";
KyeControl[1, 62] = "At";
KyeControl[1, 63] = "Backslash";
KyeControl[1, 64] = "Caret";
KyeControl[1, 65] = "Underscore";
KyeControl[1, 66] = "BackQuote";
KyeControl[1, 67] = "LeftParen";
KyeControl[1, 68] = "RightParen";
KyeControl[1, 69] = "LeftCurlyBracket";
KyeControl[1, 70] = "RightCurlyBracket";
KyeControl[1, 71] = "LeftBracket";
KyeControl[1, 72] = "RightBracket";
KyeControl[1, 73] = "Home";
KyeControl[1, 74] = "PageUP";
KyeControl[1, 75] = "PageDown";
KyeControl[1, 76] = "RightShift";
KyeControl[1, 77] = "LeftShift";
KyeControl[1, 78] = "RightControl";
KyeControl[1, 79] = "LeftControl";
KyeControl[1, 80] = "RightAlt";
KyeControl[1, 81] = "LeftAlt";
KyeControl[1, 82] = "F1";
KyeControl[1, 83] = "F2";
KyeControl[1, 84] = "F3";
KyeControl[1, 85] = "F4";
KyeControl[1, 86] = "F5";
KyeControl[1, 87] = "F6";
KyeControl[1, 88] = "F7";
KyeControl[1, 89] = "F8";
KyeControl[1, 90] = "F9";
KyeControl[1, 91] = "F10";
KyeControl[1, 92] = "F11";
KyeControl[1, 93] = "F12";
KyeControl[1, 94] = "F13";
KyeControl[1, 95] = "F14";
KyeControl[1, 96] = "F15";
KyeControl[1, 97] = "Keypad0";
KyeControl[1, 98] = "Keypad1";
KyeControl[1, 99] = "Keypad2";
KyeControl[1, 100] = "Keypad3";
KyeControl[1, 101] = "Keypad4";
KyeControl[1, 102] = "Keypad5";
KyeControl[1, 103] = "Keypad6";
KyeControl[1, 104] = "Keypad7";
KyeControl[1, 105] = "Keypad8";
KyeControl[1, 106] = "Keypad9";
KyeControl[1, 107] = "KeypadPeriod";
KyeControl[1, 108] = "KeypadDivide";
KyeControl[1, 109] = "KeypadMultiply";
KyeControl[1, 110] = "KeypadMinus";
KyeControl[1, 111] = "KeypadPlus";
KyeControl[1, 112] = "KeypadEnter";
KyeControl[1, 113] = "KeypadEquals";
KyeControl[1, 114] = "Clear";
KyeControl[1, 115] = "JoystickButton0";
KyeControl[1, 116] = "JoystickButton1";
KyeControl[1, 117] = "JoystickButton2";
KyeControl[1, 118] = "JoystickButton3";
KyeControl[1, 119] = "JoystickButton4";
KyeControl[1, 120] = "JoystickButton5";
KyeControl[1, 121] = "JoystickButton6";
KyeControl[1, 122] = "JoystickButton7";
KyeControl[1, 123] = "JoystickButton8";
KyeControl[1, 124] = "JoystickButton9";
KyeControl[1, 125] = "JoystickButton10";
KyeControl[1, 126] = "JoystickButton11";
KyeControl[1, 127] = "JoystickButton12";
KyeControl[1, 128] = "JoystickButton13";
KyeControl[1, 129] = "JoystickButton14";
KyeControl[1, 130] = "JoystickButton15";
KyeControl[1, 131] = "JoystickButton16";
KyeControl[1, 132] = "JoystickButton17";
KyeControl[1, 133] = "JoystickButton18";
KyeControl[1, 134] = "JoystickButton19";
/* === キーコントロールカウンター === */
for (int KeyBoxCounter = 0; KeyBoxCounter <= KeyControlSelectionClass.KeyIndex -1; ++KeyBoxCounter)
{
/* === ComBoxクリア === */
KeySelectorData[KeyBoxCounter].Items.Clear();
for (int KeyI = 0; KeyI <= KyeItem - 1; ++KeyI)
{/* === 配列をセット === */
KeySelectorData[KeyBoxCounter].Items.Add(KyeControl[0, KeyI]);
}/* === END_配列をセット === */
}/* === END_キーコントロールカウンター === */
}/* === END_キーコントロール配列の初期化 === */
/* === キーコントロールボックスの初期化 === */
public void KeyControlBox_ini()
{
KeySelectorData = new ComboBox[KeyControlSelectionClass.KeyIndex]; //KeySelector全体数
KeySelectorData[KeyControlSelectionClass.ForwardIndex] = KeyForwardBox; //Forwardタブ
KeySelectorData[KeyControlSelectionClass.BackwardIndex] = KeyBackwardBox; //Backwardタブ
KeySelectorData[KeyControlSelectionClass.LeftIndex] = KeyLeftBox; //Leftタブ
KeySelectorData[KeyControlSelectionClass.RightIndex] = KeyRightBox; //Rightタブ
KeySelectorData[KeyControlSelectionClass.UpIndex] = KeyUpBox; //Upタブ
KeySelectorData[KeyControlSelectionClass.DownIndex] = KeyDownBox; //Downタブ
KeySelectorData[KeyControlSelectionClass.Key1Index] = KeyKey1Box; //Key1タブ
KeySelectorData[KeyControlSelectionClass.Key2Index] = KeyKey2Box; //Key2タブ
KeySelectorData[KeyControlSelectionClass.Key3Index] = KeyKey3Box; //Key3タブ
KeySelectorData[KeyControlSelectionClass.Key4Index] = KeyKey4Box; //Key4タブ
}/* === END_キーコントロールボックスの初期化 === */
/* === キーコントロールボックスに配列をセット === */
public void KeyControBox_Reset()
{
KeyForwardBox.SelectedIndex = ini_ForwardBox; //UpArrow
KeyBackwardBox.SelectedIndex = ini_BackwardBox; //Backwardタブ
KeyLeftBox.SelectedIndex = ini_LeftBox; //Leftタブ
KeyRightBox.SelectedIndex = ini_RightBox; //Rightタブ
KeyUpBox.SelectedIndex = ini_UpBox; //Upタブ
KeyDownBox.SelectedIndex = ini_DownBox; //Downタブ
KeyKey1Box.SelectedIndex = ini_Key1Box; //Key1タブ
KeyKey2Box.SelectedIndex = ini_Key2Box; //Key2タブ
KeyKey3Box.SelectedIndex = ini_Key3Box; //Key3タブ
KeyKey4Box.SelectedIndex = ini_Key4Box; //Key4タブ
}/* === END_キーコントロールボックスに配列をセット === */
/* ==== FormLode ==== */
private void VirtualCastJsonEditor_Load(object sender, EventArgs e)
{
/* ==== DBの初期DVDコンバート ==== */
ConverterFor(DataSelectionClass.Dvd);
/* ==== タブの表示バグ対策 ==== */
/* ==== アイトラ設定タブの反転 ==== */
if (EyeTrackingCheckBox.Checked == false)
{
/* === アイトラ設定の非表示 ==== */
SettingTabControl.TabPages.Remove(EyeTrackingTab);
Properties.Settings.Default.EyeFlag = false;
}
else
{
/* ==== アイトラ設定タブの表示 ==== */
SettingTabControl.TabPages.Insert(SettingTabControl.TabCount, EyeTrackingTab);
Properties.Settings.Default.EyeFlag = true;