snake6502/util/rlevel.cpp

57 lines
1.2 KiB
C++
Raw Normal View History

2020-04-01 23:13:10 +00:00
#include <iostream>
using namespace std;
const int MAXLEN = 64;
void flush(char last, int count) {
char tile, color;
2020-04-01 23:13:10 +00:00
switch(last) {
case 'x':
tile = (char)0xe3; break;
case 'f':
tile = (char)0xe2; break;
2020-04-01 23:13:10 +00:00
default:
tile = (char)0xe0; break;
2020-04-01 23:13:10 +00:00
}
cout << tile << (char)count;
2020-04-01 23:13:10 +00:00
}
int main(int argc, char** argv) {
char line[MAXLEN];
char c;
while (true) {
cin.getline(line, MAXLEN);
if (line[0] == 'Z') break;
2020-04-08 07:15:25 +00:00
cout << line << '\0'; /* the title */
2020-04-01 23:13:10 +00:00
int count = 0;
char last = '\0';
char current = '\0';
while(true) {
2020-04-01 23:13:10 +00:00
cin.getline(line, MAXLEN);
if (line[0] == 'z') {
flush(current, count);
cout << '\0' << '\0';
2020-04-01 23:13:10 +00:00
break;
}
for (int j = 0; j < 40; ++j) {
current = line[j];
if (last == 0) last = current;
if (current != last || count == 255) {
flush(last, count);
last = current;
count = 1;
} else {
++count;
}
}
}
}
cout << '\0';
2020-04-01 23:13:10 +00:00
}