キーバッファのクリア
C#のコンソールでタイピング練習アプリを作成しています。
完成はしているのですが、タイプミスした後の挙動を変更したくて投稿しました。
例:english → eng'm'ist と入力すると、'm'の時点でミスとなり、ループを抜ける。
次の単語のループに入るが、ミスの時の'ist'がキーバッファとして残っているため
次の単語が america だとすると、1文字目がミスとなり、ループを抜ける。
同様に次の単語のループに入るが、'st'が残っているため、以下同様。
ミスでループを抜ける際に、残っているキーバッファをクリアしたいのですが、
いい方法がないでしょうか・・・
該当のソースコード
C#
1while (true) 2{ 3 if (line >= 22) 4 { 5 Console.SetCursorPosition(lx, line); 6 Console.Write(word[wnum]); 7 8 System.Threading.Thread.Sleep(500); 9 10 Console.SetCursorPosition(45, 0); 11 Console.WriteLine((++miss).ToString().PadLeft(3)); 12 13 return 0; 14 } 15 16 if (Console.KeyAvailable) 17 { 18 ConsoleKey rkey = Console.ReadKey(true).Key; 19 20 for (int i = 0; i < word[wnum].Length; i++) 21 { 22 if (word[wnum].Substring(i, 1) != "*") 23 { 24 if (rkey.ToString() == word[wnum].Substring(i, 1).ToUpper()) 25 { 26 word[wnum] = 27 word[wnum].Substring(0, i) + "*" + word[wnum].Substring(i + 1, word[wnum].Length - (i + 1)); 28 29 break; 30 } 31 else if (rkey == ConsoleKey.Escape) 32 { 33 Console.Clear(); 34 35 Console.Write(" Game Stopped !!"); 36 37 timer.Stop(); 38 39 return 1; 40 } 41 else 42 { 43 Console.SetCursorPosition(lx, line); 44 Console.Write(word[wnum]); 45 46 System.Threading.Thread.Sleep(500); 47 48 Console.SetCursorPosition(45, 0); 49 Console.WriteLine((++miss).ToString().PadLeft(3)); 50 51 timer.Stop(); 52 53 return 0; 54 } 55 } 56 } 57 } 58 else 59 { 60 (単語のラインを1行下げる処理) 61 (タンピング成功時の処理) 62 } 63}
回答1件
あなたの回答
tips
プレビュー