大きなファイルをダウンロードするコンソールプログラムをC++で書いています。ファイルサイズがわかっているので、ダウンロードするために作業スレッドを開始します。進行状況インジケーターを表示して、見栄えを良くしたいと思います。
Coutまたはprintfで、異なる位置にある同じ位置に異なる文字列を表示する方法は?
改行(\ n)なしで "キャリッジリターン"(\ r)を使用でき、コンソールが正しく機能することを期待できます。
出力の幅を固定して、次のようなものを使用します。
float progress = 0.0;
while (progress < 1.0) {
int barWidth = 70;
std::cout << "[";
int pos = barWidth * progress;
for (int i = 0; i < barWidth; ++i) {
if (i < pos) std::cout << "=";
else if (i == pos) std::cout << ">";
else std::cout << " ";
}
std::cout << "] " << int(progress * 100.0) << " %\r";
std::cout.flush();
progress += 0.16; // for demonstration only
}
std::cout << std::endl;
[> ] 0 %
[===========> ] 15 %
[======================> ] 31 %
[=================================> ] 47 %
[============================================> ] 63 %
[========================================================> ] 80 %
[===================================================================> ] 96 %
この出力は示されている互いに1行下にありますが、ターミナルエミュレーター(Windowsコマンドラインでも考えられます)では同じ行にと出力されます。
最後に、より多くのものを印刷する前に改行を印刷することを忘れないでください。
末尾のバーを削除する場合は、スペースで上書きする必要があります。たとえば、"Done."
。
また、Cでprintf
を使用しても同じことができます。上記のコードの適応は簡単です。
プログレスバーの幅を調整できるC
ソリューションの場合、次を試すことができます。
#define PBSTR "||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||"
#define PBWIDTH 60
void printProgress (double percentage)
{
int val = (int) (percentage * 100);
int lpad = (int) (percentage * PBWIDTH);
int rpad = PBWIDTH - lpad;
printf ("\r%3d%% [%.*s%*s]", val, lpad, PBSTR, rpad, "");
fflush (stdout);
}
次のようなものが出力されます。
75% [|||||||||||||||||||||||||||||||||||||||||| ]
Boost progress_displayを見てください
http://www.boost.org/doc/libs/1_52_0/libs/timer/doc/original_timer.html#Class%20progress_display
私はそれがあなたが必要とすることをするかもしれないと思うし、それはヘッダーのみのライブラリだと思うので、リンクするものは何もない
復帰文字(\r
)出力「カーソル」を現在の行の先頭に戻します。
より洗練されたアプローチについては、ncurses(コンソールテキストベースのインターフェイス用のAPI)のようなものを見てください。
私はこの質問に答えるのに少し遅れていることを知っていますが、 あなたが望むことを正確に行う単純なクラスです (私はusing namespace std;
この前に。):
class pBar {
public:
void update(double newProgress) {
currentProgress += newProgress;
amountOfFiller = (int)((currentProgress / neededProgress)*(double)pBarLength);
}
void print() {
currUpdateVal %= pBarUpdater.length();
cout << "\r" //Bring cursor to start of line
<< firstPartOfpBar; //Print out first part of pBar
for (int a = 0; a < amountOfFiller; a++) { //Print out current progress
cout << pBarFiller;
}
cout << pBarUpdater[currUpdateVal];
for (int b = 0; b < pBarLength - amountOfFiller; b++) { //Print out spaces
cout << " ";
}
cout << lastPartOfpBar //Print out last part of progress bar
<< " (" << (int)(100*(currentProgress/neededProgress)) << "%)" //This just prints out the percent
<< flush;
currUpdateVal += 1;
}
std::string firstPartOfpBar = "[", //Change these at will (that is why I made them public)
lastPartOfpBar = "]",
pBarFiller = "|",
pBarUpdater = "/-\\|";
private:
int amountOfFiller,
pBarLength = 50, //I would recommend NOT changing this
currUpdateVal = 0; //Do not change
double currentProgress = 0, //Do not change
neededProgress = 100; //I would recommend NOT changing this
};
使用方法の例:
int main() {
//Setup:
pBar bar;
//Main loop:
for (int i = 0; i < 100; i++) { //This can be any loop, but I just made this as an example
//Update pBar:
bar.update(1); //How much new progress was added (only needed when new progress was added)
//Print pBar:
bar.print(); //This should be called more frequently than it is in this demo (you'll have to see what looks best for your program)
sleep(1);
}
cout << endl;
return 0;
}
注:バーの外観を簡単に変更できるように、クラスのすべての文字列を公開しました。
別の方法は、「ドット」または任意の文字を表示することです。以下のコードは、1秒ごとに進行状況インジケーター[並べ替え...]をドットとして印刷します。
PS:私はここで睡眠を使用しています。パフォーマンスが懸念される場合は、よく考えてください。
#include<iostream>
using namespace std;
int main()
{
int count = 0;
cout << "Will load in 10 Sec " << endl << "Loading ";
for(count;count < 10; ++count){
cout << ". " ;
fflush(stdout);
sleep(1);
}
cout << endl << "Done" <<endl;
return 0;
}
これが私が作った簡単なものです:
#include <iostream>
#include <windows.h>
using namespace std;
int barl = 20;
int main() {
system("color 0e");
cout << "[";
for (int i = 0; i < barl; i++) {
Sleep(100);
cout << ":";
}
cout << "]";
}