web-dev-qa-db-ja.com

コンソールテキストの前の行を変更する方法は?

私はこのようなことを達成したいと思います:

Time consuming operation...OK
Another time consuming operation...
And another one, but it completed, so...OK

3行のテキストを表示しました。各テキストは、遅かれ早かれ終了する可能性のあるスレッドに関連しています。しかし、2つ目が3つ目よりも後に完了すると、次のようになります。

Time consuming operation...OK
Another time consuming operation...
And another one, but it completed, so...OKOK

もちろんこれは受け入れられません。私は現在の行に戻る方法を知っていますが、上がる方法はありますか? Linuxコンソールの可能性もありますが、どこかで見たことがあると思います。

忘れてください。 Far File Managerをご覧ください! Windowsコンソールで動作し、PowerShellでも動作します!このようなものを作るには?そして、最もクールな部分は、終了後にコンソールの状態を復元することです。だから私は尋ねるべきかもしれません-コンソールバッファに直接アクセスする方法は?私はトリックを行うためにいくつかのネイティブコードが必要だと思いますが、おそらく別の方法がありますか?アップデートごとにコンソールをクリアすることを考えましたが、これはやり過ぎのようです。それともそうではありませんか?点滅しますか?

23
Harry

カーソルはどこにでも移動できます: Console.SetCursorPosition または Console.CursorTop を使用します。

Console.SetCursorPosition(0, Console.CursorTop -1);
Console.WriteLine("Over previous line!!!");
55
Alexei Levenkov

改行を使用します。このサンプルは1行を印刷し、以前の内容を上書きします。

  Console.WriteLine();
  for (int i = 0; i <= 100; i++)
  {
    System.Threading.Thread.Sleep(10);
    Console.Write("\x000DProgress: " + i);
  }

これは、すべての文字列が80カラム未満(または端末バッファーに設定されているもの)である限り機能します。

6
agent-j

注:以下の回答は元々OPによって質問に編集されました。


デモ付きの完全なソリューションは次のとおりです。

using System;
using System.Collections.Generic;
using System.Threading;

namespace PowerConsole {

    internal class Containers {

        internal struct Container {
            public int Id;
            public int X;
            public int Y;
            public string Content;
        }

        public static List<Container> Items = new List<Container>();

        private static int Identity = 0;

        public static int Add(string text) {
            var c = new Container();
            c.Id = Identity++;
            c.X = Console.CursorLeft;
            c.Y = Console.CursorTop;
            c.Content = text;
            Console.Write(text);
            Items.Add(c);
            return c.Id;
        }

        public static void Remove(int id) {
            Items.RemoveAt(id);
        }

        public static void Replace(int id, string text) {
            int x = Console.CursorLeft, y = Console.CursorTop;
            Container c = Items[id];
            Console.MoveBufferArea(
                c.X + c.Content.Length, c.Y,
                Console.BufferWidth - c.X - text.Length, 1,
                c.X + text.Length, c.Y
            );
            Console.CursorLeft = c.X;
            Console.CursorTop = c.Y;
            Console.Write(text);
            c.Content = text;
            Console.CursorLeft = x;
            Console.CursorTop = y;
        }

        public static void Clear() {
            Items.Clear();
            Identity = 0;
        }
    }

    internal class Program {
        private static List<Thread> Threads = new List<Thread>();

        private static void Main(string[] args) {
            Console.WriteLine("So we have some threads:\r\n");
            int i, id;
            Random r = new Random();
            for (i = 0; i < 10; i++) {
                Console.Write("Starting thread " + i + "...[");
                id = Containers.Add("?");
                Console.WriteLine("]");
                Thread t = new Thread((object data) => {
                    Thread.Sleep(r.Next(5000) + 100);
                    Console.ForegroundColor = ConsoleColor.Green;
                    Containers.Replace((int)data, "DONE");
                    Console.ResetColor();
                });
                Threads.Add(t);
            }
            Console.WriteLine("\n\"But will it blend?\"...");
            Console.ReadKey(true);
            i = 0;
            Threads.ForEach(t => t.Start(i++));
            Threads.ForEach(t => t.Join());
            Console.WriteLine("\r\nVoila.");
            Console.ReadKey(true);
        }
    }
}
1
user247702