-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMIKATYPE.cpp
5470 lines (5435 loc) · 186 KB
/
MIKATYPE.cpp
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
/* ************************************************************************** */
/* 美佳のタイプトレーナー C++ 版ソースコード Ver2.06.01 2023/5/7 */
/* Copy right 今村二朗 */
/* */
/* このソースコードは 改変、転載、他ソフトの使用など自由にお使いください */
/* */
/* 注意事項 */
/* */
/* グラフィック表示は640x400ドットの仮想画面に行い実座標に変換して表示してい */
/* ます。 */
/* */
/* C++では横軸がX座標、縦軸がY座標ですがこのソースコードでは横軸がY座標 */
/* 縦軸がX座標です。 */
/* */
/* ************************************************************************** */
// MIKATYPE.cpp : アプリケーションのエントリ ポイントを定義します。
//
#include "framework.h"
#include <string>
#include <time.h>
using namespace std;
#include "MIKATYPE.h"
#define MAX_LOADSTRING 100
// グローバル変数:
HINSTANCE hInst; // 現在のインターフェイス
WCHAR szTitle[MAX_LOADSTRING]; // タイトル バーのテキスト
WCHAR szWindowClass[MAX_LOADSTRING]; // メイン ウィンドウ クラス名
char MIKA_file_name_seiseki[] = "mikatype.sei"; /* 成績ファイル名 読み込み用 */
char MIKA_file_name_seiseki2[] = "mikatype.sei"; /* 成績ファイル名 書き込み用 */
char MIKA_file_name_kiroku[] = "mikatype.log"; /* 練習時間記録ファイル名 追記用 */
char MIKA_file_name_hayasa[] = "mikatype.spd"; /* 最高速度記録ファイル名 追記用 */
int MIKA_file_error_hayasa = 0; /* 最高速度記録ファイル書き込みエラー =0 正常 =1 異常 */
int MIKA_file_error_kiroku = 0; /* 練習時間記録ファイル書き込みエラー =0 正常 =1 異常 */
int MIKA_file_error_seiseki = 0; /* 成績ファイル書き込みエラー =0 正常 =1 異常 */
char MIKA_s_date[9]; /* 練習開始日付 プログラム起動時に取得 練習時間記録ファイルに書き込み時使用 */
char MIKA_s_time[9]; /* 練習開始時刻 プログラム起動時に取得 練習時間記録ファイルに書き込み時使用 */
char MIKA_type_date[9]; /* 最高速度達成日付 */
char MIKA_type_time[9]; /* 最高速度達成時刻 */
time_t MIKA_st_t = 0; /* 練習時間記録ファイル用練習開始時間秒 */
time_t MIKA_lt_t = 0; /* 練習時間記録ファイル用練習終了時間秒 */
time_t MIKA_rt_t = 0; /* 成績記録ファイル用合計練習時間 秒 */
string MIKA_r_date[] = /* ランダム練習 最高速度達成日付 */
{
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
};
string MIKA_w_date[] = /* 英単語練習 最高速度達成日付 */
{
" ",
" ",
" ",
" ",
" ",
" ",
" "
};
string MIKA_a_date[] = /* ローマ字練習 最高速度達成日付 */
{
" ",
" "
};
double MIKA_r_speed[] = /* ランダム練習 最高速度記録 */
{
0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
};
double MIKA_w_speed[] = /* 英単語練習 最高速度記録 */
{
0.0,0.0,0.0,0.0,0.0,0.0,0.0
};
double MIKA_a_speed[] = /* ローマ字練習 最高速度記録 */
{
0.0,0.0
};
long MIKA_p_time=0; /* ポジション練習 累積練習時間 秒*/
long MIKA_r_time[] = /* ランダム練習 累積練習時間 秒 */
{
0,0,0,0,0,0,0,0
};
long MIKA_w_time[] = /* 英単語練習 累積練習時間 秒 */
{
0,0,0,0,0,0,0
};
long MIKA_a_time[] = /* ローマ字練習 累積練習時間 秒 */
{
0,0
};
wstring MIKA_c_pos1 = L"1234567890"; /* キーボード 最上段 刻印文字列 */
wstring MIKA_c_pos2=L"QWERTYUIOP"; /* キーボード 上一段 刻印文字列 */
wstring MIKA_c_pos3=L"ASDFGHJKL;"; /* キーボード ホームポジション 刻印文字列 */
wstring MIKA_c_pos4=L"ZXCVBNM,."; /* キーボード 下一段刻文字列印 */
wstring MIKA_c_post[] = { MIKA_c_pos1,MIKA_c_pos2,MIKA_c_pos3,MIKA_c_pos4 }; /* キーボード刻印文字列テーブル */
wstring MIKA_h_pos1=L"ASDFGHJKL"; /* ホームポジション 練習文字列 */
wstring MIKA_h_pos2=L"QWERTYUIOP"; /* 上一段 練習文字列 */
wstring MIKA_h_pos3=L"ASDFGHJKLQWERTYUIOP"; /* ホームポジション+上一段 練習文字列 */
wstring MIKA_h_pos4=L"ZXCVBNM"; /* 下一段 練習文字列 */
wstring MIKA_h_pos5=L"ASDFGHJKLZXCVBNM"; /* ホームポジション+下一段 練習文字列 */
wstring MIKA_h_pos6=L"ASDFGHJKLQWERTYUIOPZXCVBNM"; /* ホームポジション+上一段+下一段 練習文字列 */
wstring MIKA_h_pos7 = L"1234567890"; /* 数字 練習文字列 */
wstring MIKA_h_pos8=L"ASDFGHJKLQWERTYUIOPZXCVBNM1234567890"; /* 全段 練習文字列 */
wstring MIKA_h_pos[] = { MIKA_h_pos1,MIKA_h_pos2,MIKA_h_pos3,MIKA_h_pos4,MIKA_h_pos5,MIKA_h_pos6,MIKA_h_pos7,MIKA_h_pos8 };; /* ポジション練習 ランダム練習 練習文字列テーブル */
int* MIKA_p_count = NULL; /* 練習回数配列 アドレス */
int MIKA_p_count_position[] = {0,0,0,0,0,0,0,0}; /* ポジション練習 練習回数 */
int MIKA_p_count_random[] = {0,0,0,0,0,0,0,0}; /* ランダム練習 練習回数 */
int MIKA_p_count_word[] = {0,0,0,0,0,0,0}; /* 英単語練習 練習回数 */
int MIKA_p_count_romaji[] = {0,0}; /* ローマ字練習練習回数 */
wstring MIKA_char_table; /* 練習文字列テーブル アドレス */
string *MIKA_word_table; /* 練習単語テーブルアドレス */
string MIKA_type_kind_mes; /* 練習項目名 */
double* MIKA_type_speed_record = NULL; /* 最高速度記録配列アドレス */
string* MIKA_type_date_record = NULL; /* 最高速度達成日配列アドレス */
long* MIKA_type_time_record = NULL; /* 累積練習時間配列 アドレス */
clock_t MIKA_type_start_time = 0; /* ポジション練習 ランダム練習 英単語練習 ローマ字練習 練習開始時間 ミリ秒 */
clock_t MIKA_type_end_time = 0; /* ポジション練習 ランダム練習 英単語練習 ローマ字練習 練習終了時間 ミリ秒 */
double MIKA_type_speed_time = 0.0; /* 前回 練習経過時間 秒 */
double MIKA_ttype_speed_time = 0.0; /* 今回 練習経過時間 秒 */
double MIKA_type_speed = 0.0; /* ランダム練習 英単語練習 ローマ字練習 の文字入力速度 */
double MIKA_type_speed2 = 0.0; /* ローマ字入力時の打鍵速度 */
int MIKA_position_limit = 60; /* ポジション練習 練習文字数 */
double MIKA_random_key_limit = 60.0; /* ランダム練習 英単語練習 ローマ字練習 キー入力の 制限時間 秒 */
double MIKA_random_key_limit2 = 60.0; /* ランダム練習 英単語練習 ローマ字練習 タイマーの 制限時間 秒 */
long MIKA_random_time_interval = 1000; /* ランダム練習 英単語練習 ローマ字練習 一秒タイマー ミリ秒 */
int MIKA_type_syuryou_flag = 0; /* 練習終了時の記録更新フラグ =0 更新せず =1 前回の入力速度が0.0の時の記録更新 =2 前回の記録が0.0より大きい時の記録更新 */
int MIKA_char_position = 0; /* 練習文字番号 ポジション練習 ランダム練習にてランダムに文字を選択する時のポインター */
wchar_t MIKA_key_char = 0; /* 練習文字 */
wchar_t MIKA_guide_char = 0; /* ガイドキー文字 */
wchar_t MIKA_err_char = 0; /* エラー文字 */
int MIKA_sec_count=0; /* 練習秒カウンター タイマーで使用 */
int MIKA_type_count = 0; /* 入力文字数カウンター */
int MIKA_w_count = 0; /* ひらがな入力文字数カウンター */
int MIKA_type_err_count = 0; /* エラー入力文字数カウンター */
int MIKA_c_p1 = 0, MIKA_c_p2 = 0; /* ランダム練習 英単語練習 ローマ字練習の練習文字ポインター */
int MIKA_err_char_flag = 0; /* エラー入力フラグ */
int MIKA_time_start_flag = 0; /* 時間計測開始フラグ =0 開始前 =1 測定中 */
string MIKA_romaji; /* ひらがなのローマ字表記 */
int MIKA_romaji_length = 0; /* ひらがなのローマ字表記の文字数 */
string MIKA_romaji2; /* ひらがなのローマ字の別表記 */
int MIKA_romaji_length2 = 0; /* ひらがなのローマ字の別表記の文字数 */
char MIKA_key_char2 = 0; /* ひらがなローマ字別表記の練習文字 */
int MIKA_r_count = 0; /* ひらがな一文字内のローマ字表記文字カウンター */
double MIKA_random_scale = 1.0; /* ランダム練習 英単語練習 ローマ字練習の文字表示倍率 */
double MIKA_romaji_scale = 2.0; /* ローマ字練習のローマ字表記の文字表示倍率 */ /* 2023/2/25追加 */
int MIKA_max_x_flag = 0;/* 画面表示 縦行数モード =0 25行 =1 20行 */
int MIKA_max_y_flag = 0;/* 画面表示 横文半角カラム数モード =0 80カラム =1 64カラム */
int MIKA_width_x = 16; /* 全角文字 半角文字 縦方向ドット数 */
int MIKA_width_y = 8; /* 半角文字 横方向ドット数 */
int MIKA_practice_end_flag = 0; /* 練習実行中フラグ =0 練習中 =1 終了中 ESCによる終了も含む */
int MIKA_key_guide_flag = 0; /* キーガイドメッセージ表示フラグ =0 表示なし =1 次回はキーガイドを表示を消して練習 =2次回はキーガイドを表示を消して練習 */
int MIKA_menu_kind_flag = 0; /* =1 キーガイド表示あり =3 キーガイド表示無し */
int MIKA_key_guide_on = 1; /* 定数 キーガイド表示あり */
int MIKA_key_guide_off = 3; /* 定数 キーガイド表示無し */
int MIKA_type_end_flag = 0; /* 練習終了フラグ =0 ESCによる終了 =1 60文字入力による終了 */
string MIKA_mes0 = "●●● 美佳のタイプトレーナー ●●●";
string MIKA_mes0a = "●●● 美佳のタイプトレーナー ポジション練習 ●●●";
string MIKA_mes0b = "●●● 美佳のタイプトレーナー ランダム練習 ●●●";
string MIKA_mes0c = "●●● 美佳のタイプトレーナー 英単語練習 ●●●";
string MIKA_mes0d = "●●● 美佳のタイプトレーナー ローマ字練習 ●●●";
string MIKA_mesta = "●●● 美佳のタイプトレーナー %s ●●●";
string MIKA_mestb = "●● 美佳のタイプトレーナー ポジション練習 %s ●●";
string MIKA_mestc = "●● 美佳のタイプトレーナー ランダム練習 %s ●●";
string MIKA_mesi1 = "もう一度練習するときはリターンキーまたは、Enterキーを押してください";
string MIKA_mesi2 = "メニューに戻るときはESCキーを押してください";
string MIKA_mesi3 = "おめでとう、記録を更新しました";
string MIKA_abort_mes = "ESCキーを押すと中断します";
string MIKA_return_mes = "ESCキーを押すとメニューに戻ります";
string MIKA_key_type_mes = "のキーを打ちましょうね..";
string MIKA_keymes1 = "スペースを押すとキーガイドを消去します";
string MIKA_keymes2 = "スペースを押すとキーガイドを表示します";
string MIKA_keymes3 = "この次は、スペースキーを押してキーガイドの表示を消して練習してみましょうね";
string MIKA_keymes4 = "この次は、スペースキーを押してキーガイドを表示して練習してみましょうね";
string MIKA_mest2 = "練習項目 タイプ速度 文字/分 達成日 累積練習時間";
string MIKA_menu_mes_s[] = { /* 初期メニュー メニュー項目 */
"ポジション練習",
"ランダム練習",
"英単語練習",
"ローマ字練習",
"成績",
"終了"
};
int MIKA_menu_cord_s[6][2] = { /* 初期 メニュー項目表示位置 x座標 y座標 */
{3 * 14,20 * 8},
{5 * 14,20 * 8},
{7 * 14,20 * 8},
{9 * 14,20 * 8},
{11 * 14,20 * 8},
{13 * 14,20 * 8}
};
int MIKA_menu_s_sel_flag[] = { /* 初期メニュー メニュー項目選択フラグ */
0,0,0,0,0,0 };
int MIKA_menu_s_function[] = { /* 初期メニュー 機能番号 */
21,22,23,24,29,9999,0 };
string MIKA_menu_mes[] = { /* ポジション練習 ランダム練習 メニュー項目 */
"ホームポジション",
"上一段",
"ホームポジション+上一段",
"下一段",
"ホームポジション+下一段",
"ホームポジション+上一段+下一段",
"数字",
"全段",
"メニューに戻る"
};
int MIKA_menu_cord[9][2] = { /* ポジション練習 ランダム練習 英単語練習 ローマ字練習 メニュー項目表示位置 x座標 y座標 */
{2 * 14,20 * 8},
{4 * 14,20 * 8},
{6 * 14,20 * 8},
{8 * 14,20 * 8},
{10 * 14,20 * 8},
{12 * 14,20 * 8},
{14 * 14,20 * 8},
{16 * 14,20 * 8},
{18 * 14,20 * 8}
};
int MIKA_position_menu_function[] = { /* ポジション練習 機能番号 */
401,402,403,404,405,406,407,408,9001,0 };
int MIKA_position_sel_flag[] = { /* ポジション練習 メニュー項目選択フラグ */
0,0,0,0,0,0,0,0,0 };
int MIKA_random_menu_function[] = { /* ランダム練習 機能番号 */
501,502,503,504,505,506,507,508,9001,0};
int MIKA_random_sel_flag[] = { /* ランダム練習 メニュー項目選択フラグ */
0,0,0,0,0,0,0,0,0};
string MIKA_menu_mes_w[] = { /* 英単語練習 メニュー項目 */
"基本英単語練習",
"MSDOSコマンド練習",
"C言語練習",
"パスカル練習",
"フォートラン練習",
"BASIC練習",
"8086アセンブラ練習",
"メニューに戻る"
};
int MIKA_word_menu_function[] = { /* 英単語練習 機能番号 */
601,602,603,604,605,606,607,9001,0 };
int MIKA_word_sel_flag[] = { /* 英単語練習 メニュー項目選択フラグ */
0,0,0,0,0,0,0,0 };
string MIKA_menu_mes_r[] = { /* ローマ字練習 メニュー項目 */
"ローマ字ランダム練習",
"ローマ字単語練習",
"メニューに戻る"
};
int MIKA_romaji_menu_function[] = { /* ローマ字練習 機能番号 */
701,702,9001,0 };
int MIKA_romaji_sel_flag[] = { /* ローマ字練習 メニュー項目選択フラグ */
0,0,0 };
int MIKA_fngpoint[10][3] = { /* 指表示位置 x 座標 y 座標 表示幅 */
{21 * 16 + 8,10 * 8 + 6,3 * 8 + 2}, /* 左手小指 */
{20 * 16 + 2,15 * 8,4 * 8}, /* 左手薬指 */
{20 * 16 - 3,20 * 8,4 * 8}, /* 左手中指 */
{20 * 16 + 2,25 * 8,4 * 8}, /* 左手人指し指 */
{22 * 16,31 * 8 - 4,5 * 8}, /* 左手親指 */
{22 * 16,39 * 8 + 4,5 * 8}, /* 右手親指 */
{20 * 16 + 2,46 * 8,4 * 8}, /* 右手人指し指 */
{20 * 16 - 3,51 * 8,4 * 8}, /* 右手中指 */
{20 * 16 + 2,56 * 8,4 * 8}, /* 右手薬指 */
{21 * 16 + 8,61 * 8,3 * 8 + 2} /* 右手小指 */
};
int MIKA_t_line = 7; /* ランダム練習 英単語練習 ローマ字練習 練習テキスト表示開始行位置 */
int MIKA_romaji_line=2*16+8; /* ローマ字練習 ローマ字表示位置 x座標 */
int MIKA_romaji_underline=2*16+12; /* ローマ字練習 アンダーライン表示 x座標 */
wchar_t MIKA_chat_t[10][40]; /* 練習テキスト文字 横40文字 縦10行 */
int MIKA_chat_yomi_t[10*40]; /* 練習テキストのひらがなに対応した文字番号 */
int MIKA_cline_x; /* ランダム練習 英単語練習 ローマ字練習 練習テキスト行数 最小=3 最大 =10 */
int MIKA_cline_c; /* ランダム練習 英単語練習 ローマ字練習 練習テキスト 文字数 */
int MIKA_utikiri_flag; /* ランダム練習 英単語練習 ローマ字練習 練習テキスト打ち切りフラグ =1 全練習テキスト打ち切りによる終了 =0 60秒タイマーによる終了 */
int MIKA_utikiri_flag2; /* 前回速度表示時の打ち切りフラグの値 */
int MIKA_exec_func_no = 0; /* メニューの機能番号 */
int MIKA_type_kind_no = 0; /* 練習項目番号 */
int* MIKA_menu_function_table; /* メニューの機能番号テーブルアドレス */
int* MIKA_sel_flag; /* 前回選択メニュー項目選択フラグアドレス */
RECT MIKA_win_size; /* ウィンドーサイズ */
string MIKA_string_null[]={""}; /* ダミー用 空stringテーブル */
wstring MIKA_wstring_null[]={L""}; /* ダミー用 空wstringテーブル */
string MIKA_oubun[]={
"America",
"American",
"April",
"British",
"England",
"English",
"Europe",
"Greek",
"I",
"Japan",
"Japanese",
"a",
"ability",
"able",
"about",
"above",
"abroad",
"absent",
"accept",
"accident",
"account",
"achieve",
"acquire",
"across",
"act",
"action",
"activity",
"add",
"address",
"admire",
"admit",
"advance",
"advantage",
"afraid",
"after",
"again",
"against",
"age",
"ago",
"agree",
"air",
"all",
"allow",
"almost",
"alone",
"along",
"already",
"also",
"although",
"always",
"am",
"among",
"amount",
"an",
"ancient",
"and",
"angry",
"animal",
"another",
"answer",
"any",
"anybody",
"anyone",
"anything",
"anywhere",
"apart",
"appear",
"are",
"area",
"around",
"arrive",
"art",
"artist",
"as",
"ask",
"asleep",
"at",
"attempt",
"attend",
"attention",
"attitude",
"autumn",
"average",
"away",
"back",
"bad",
"bag",
"bake",
"base",
"be",
"beach",
"beautiful",
"beauty",
"became",
"because",
"become",
"bed",
"been",
"before",
"began",
"begin",
"behavior",
"behind",
"belief",
"believe",
"belong",
"below",
"bend",
"best",
"better",
"between",
"beyond",
"big",
"bird",
"bit",
"black",
"blood",
"blow",
"blue",
"body",
"book",
"born",
"both",
"box",
"boy",
"break",
"bring",
"brother",
"brought",
"build",
"burn",
"business",
"but",
"buy",
"by",
"cake",
"call",
"came",
"can",
"cannot",
"car",
"care",
"career",
"carry",
"case",
"catch",
"caught",
"cause",
"century",
"certain",
"certainly",
"chance",
"change",
"character",
"characteristic",
"child",
"children",
"choice",
"choose",
"city",
"civilization",
"class",
"clear",
"clock",
"close",
"cloud",
"cold",
"college",
"color",
"come",
"common",
"communication",
"company",
"complete",
"concern",
"condition",
"consider",
"continue",
"control",
"cool",
"could",
"count",
"country",
"course",
"cover",
"create",
"creature",
"culture",
"cut",
"danger",
"dark",
"date",
"day",
"deal",
"death",
"decide",
"deep",
"degree",
"demand",
"describe",
"desire",
"determine",
"develop",
"development",
"did",
"die",
"difference",
"different",
"difficult",
"difficulty",
"discover",
"discovery",
"discuss",
"distinguish",
"do",
"doctor",
"dog",
"done",
"door",
"doubt",
"down",
"draw",
"dream",
"dress",
"drink",
"driver",
"drop",
"dry",
"during",
"each",
"early",
"earth",
"easily",
"east",
"easy",
"eat",
"economic",
"educate",
"education",
"effect",
"effort",
"either",
"else",
"empty",
"end",
"energy",
"enjoy",
"enough",
"enter",
"environment",
"escape",
"especially",
"even",
"event",
"ever",
"every",
"everyone",
"everything",
"exactly",
"example",
"except",
"excuse",
"exist",
"existence",
"expect",
"experience",
"explain",
"express",
"expression",
"eye",
"face",
"fact",
"fail",
"fall",
"family",
"famous",
"far",
"fashion",
"fast",
"father",
"favorite",
"fear",
"feel",
"feeling",
"feet",
"fellow",
"felt",
"few",
"field",
"fight",
"finally",
"find",
"fine",
"fire",
"first",
"five",
"floor",
"flower",
"fog",
"follow",
"food",
"foot",
"for",
"force",
"foreign",
"form",
"forward",
"found",
"four",
"free",
"freedom",
"fresh",
"friend",
"from",
"front",
"full",
"fun",
"future",
"gain",
"game",
"garden",
"gave",
"general",
"generally",
"generation",
"get",
"gift",
"girl",
"give",
"given",
"glass",
"go",
"gone",
"good",
"got",
"government",
"great",
"green",
"ground",
"group",
"grow",
"habit",
"had",
"half",
"hand",
"happen",
"happy",
"hard",
"hardly",
"has",
"have",
"he",
"head",
"hear",
"heard",
"heart",
"help",
"her",
"here",
"hide",
"high",
"him",
"himself",
"his",
"history",
"hold",
"hole",
"home",
"hope",
"hour",
"house",
"how",
"however",
"human",
"hundred",
"idea",
"ideal",
"idle",
"if",
"ill",
"imagine",
"importance",
"important",
"impossible",
"in",
"include",
"increase",
"indeed",
"individual",
"industry",
"influence",
"information",
"injure",
"inside",
"instance",
"instead",
"intellectual",
"interest",
"interested",
"interesting",
"into",
"introduce",
"invent",
"invite",
"is",
"it",
"its",
"itself",
"job",
"join",
"joy",
"judge",
"jump",
"just",
"keep",
"kept",
"key",
"kill",
"kind",
"knew",
"know",
"knowledge",
"known",
"labor",
"lack",
"lady",
"land",
"language",
"large",
"last",
"late",
"later",
"laugh",
"law",
"lay",
"lead",
"learn",
"least",
"leave",
"left",
"less",
"lesson",
"let",
"letter",
"library",
"lie",
"life",
"light",
"like",
"likely",
"limit",
"line",
"listen",
"literature",
"little",
"live",
"local",
"lonely",
"long",
"look",
"lose",
"lost",
"lot",
"loud",
"love",
"lovely",
"low",
"machine",
"made",
"mail",
"main",
"major",
"make",
"man",
"manner",
"many",
"mark",
"mass",
"material",
"matter",
"may",
"me",
"mean",
"meaning",
"meant",
"measure",
"meet",
"member",
"men",
"mental",
"merely",
"method",
"might",
"mile",
"million",
"mind",
"minute",
"modern",
"moment",
"money",
"month",
"moon",
"more",
"morning",
"most",
"mother",
"move",
"movement",
"much",
"music",
"must",
"my",
"myself",
"name",
"nation",
"natural",
"nature",
"near",
"nearly",
"necessary",
"need",
"neighbor",
"never",
"new",
"newspaper",
"next",
"nice",
"night",
"no",
"noise",
"none",
"nor",
"normal",
"not",
"nothing",
"notice",
"novel",
"now",
"number",
"object",
"occur",
"of",
"off",
"offer",
"often",
"old",
"on",
"once",
"one",
"only",
"open",
"opinion",
"opportunity",
"or",
"order",
"ordinary",
"original",
"other",
"ought",
"our",
"ourselves",
"out",
"outside",
"over",
"own",
"paper",
"parent",
"part",
"particular",
"particularly",
"pass",
"past",
"path",
"pay",
"peace",
"people",
"perhaps",
"period",
"person",
"personal",
"philosophy",
"phone",
"photo",
"physical",
"pick",
"picture",
"piece",
"pity",
"place",
"plan",
"play",
"please",
"pleasure",
"poetry",
"point",
"political",
"poor",
"popular",
"population",
"position",
"possible",
"post",
"power",
"practical",
"practice",
"prefer",
"present",
"prevent",
"private",
"probably",
"problem",
"process",
"produce",
"progress",
"prove",
"provide",
"public",
"purpose",
"put",
"quality",
"question",
"quick",
"quiet",
"quite",
"radio",
"rain",
"rate",
"rather",
"reach",
"read",
"reader",
"reading",
"real",
"realize",
"really",
"reason",
"receive",
"recognize",
"record",
"regard",
"relation",
"remain",
"remember",
"require",
"respect",
"rest",
"result",
"return",
"rich",
"right",
"river",
"road",
"room",
"rule",
"run",
"sad",
"safe",
"said",
"same",
"satisfy",
"save",
"saw",
"say",
"school",
"science",
"scientific",
"scientist",
"sea",
"season",
"second",
"see",
"seem",
"seen",
"sense",
"separate",
"serious",
"service",
"set",
"several",
"shall",
"share",
"she",
"short",
"should",
"show",
"sick",
"side",
"sight",
"simple",
"simply",
"since",
"sincerely",
"single",
"sit",
"situation",
"six",
"sleep",
"small",
"so",
"social",
"society",
"soft",
"some",
"someone",
"something",
"sometimes",
"son",
"soon",
"sort",
"sound",
"southern",
"space",
"speak",
"special",
"speech",
"spend",
"spirit",
"stage",