|
@@ -29,6 +29,10 @@ void harry_idle_event(int fd) {
|
|
|
// Make something happen
|
|
|
std::ostringstream buffer;
|
|
|
int r;
|
|
|
+ int level = harry_level();
|
|
|
+ if (!level)
|
|
|
+ return;
|
|
|
+
|
|
|
// This is no where near finished, BUT!
|
|
|
// Do not put any ^ codes in these -- the strlen() would be wrong.
|
|
|
const char *phrases[] = {"Hahaha", "Snicker, snicker", "Boo!",
|
|
@@ -75,6 +79,10 @@ int mangle_clrscr(std::string &buffer, std::string &work, size_t pos) {
|
|
|
ZF_LOGI("seen: ANSI_CLS");
|
|
|
ANSI_CLS_count++;
|
|
|
|
|
|
+ int level = harry_level();
|
|
|
+ if (!level)
|
|
|
+ return 0;
|
|
|
+
|
|
|
if (ANSI_CLS_count > 1) {
|
|
|
// get the restore color value
|
|
|
struct console_details temp_console;
|
|
@@ -235,8 +243,11 @@ int mangle_clrscr(std::string &buffer, std::string &work, size_t pos) {
|
|
|
|
|
|
int mangle(int fd, std::string &buffer) {
|
|
|
// a simple default for now.
|
|
|
+ ZF_LOGV("mangle [%s]", logrepr(buffer.c_str()));
|
|
|
+ /*
|
|
|
ZF_LOGV_MEM(buffer.data(), buffer.size(), "mangle(%d): %lu bytes", fd,
|
|
|
buffer.size());
|
|
|
+ */
|
|
|
|
|
|
int need_render = 0;
|
|
|
int mangled = 0;
|
|
@@ -304,9 +315,12 @@ int mangle(int fd, std::string &buffer) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- ZF_LOGV_MEM(buffer.data(), buffer.size(), "Buffer:");
|
|
|
- ZF_LOGV_MEM(work.data(), work.size(), "Work:");
|
|
|
- ZF_LOGV_MEM(text.data(), text.size(), "Text Buffer:");
|
|
|
+ ZF_LOGV("Buffer: %s", logrepr(buffer.c_str()));
|
|
|
+ // ZF_LOGV_MEM(buffer.data(), buffer.size(), "Buffer:");
|
|
|
+ // ZF_LOGV_MEM(work.data(), work.size(), "Work:");
|
|
|
+ ZF_LOGV("Work: %s", logrepr(work.c_str()));
|
|
|
+ // ZF_LOGV_MEM(text.data(), text.size(), "Text Buffer:");
|
|
|
+ ZF_LOGV("Text: %s", logrepr(text.c_str()));
|
|
|
|
|
|
// Output vector contents
|
|
|
std::ostringstream oss;
|
|
@@ -334,7 +348,8 @@ int mangle(int fd, std::string &buffer) {
|
|
|
oss.clear();
|
|
|
|
|
|
// Begin the mangle process 2.0
|
|
|
- {
|
|
|
+ int level = harry_level();
|
|
|
+ if (level) {
|
|
|
ZF_LOGD("CharMan");
|
|
|
CharMan cm(buffer, work, text, text_offsets);
|
|
|
ZF_LOGD("CharMan %d, %d chars", cm.mangle_count, cm.mangle_chars);
|