|
@@ -1,5 +1,7 @@
|
|
|
#include "utils.h"
|
|
|
+#include <algorithm> // transform
|
|
|
#include <fstream>
|
|
|
+#include <sstream>
|
|
|
#include <stdio.h>
|
|
|
#include <stdlib.h>
|
|
|
#include <string.h>
|
|
@@ -283,6 +285,54 @@ std::string &find_new_text(std::ifstream &infile,
|
|
|
return line;
|
|
|
}
|
|
|
|
|
|
+void string_toupper(std::string &str) {
|
|
|
+ std::transform(str.begin(), str.end(), str.begin(), ::toupper);
|
|
|
+}
|
|
|
+
|
|
|
+void string_trim(std::string &value) {
|
|
|
+ while (*value.begin() == ' ')
|
|
|
+ value.erase(value.begin());
|
|
|
+ while (*(value.end() - 1) == ' ')
|
|
|
+ value.erase(value.end() - 1);
|
|
|
+}
|
|
|
+
|
|
|
+std::map<std::string, std::string> read_configfile(std::string filename) {
|
|
|
+ std::ifstream file(filename);
|
|
|
+ std::string line;
|
|
|
+ std::map<std::string, std::string> config;
|
|
|
+ if (!file.is_open())
|
|
|
+ return config;
|
|
|
+
|
|
|
+ while (std::getline(file, line)) {
|
|
|
+ if ((line[0] == '#') || (line[0] == ';'))
|
|
|
+ continue;
|
|
|
+ if (line.empty())
|
|
|
+ continue;
|
|
|
+
|
|
|
+ // I'm not so sure this part is very good.
|
|
|
+
|
|
|
+ std::istringstream is_line(line);
|
|
|
+ std::string key;
|
|
|
+ if (std::getline(is_line, key, '=')) {
|
|
|
+ string_trim(key);
|
|
|
+ string_toupper(key);
|
|
|
+
|
|
|
+ std::string value;
|
|
|
+ if (std::getline(is_line, value)) {
|
|
|
+ string_trim(value);
|
|
|
+
|
|
|
+ config[key] = value;
|
|
|
+ /*
|
|
|
+ std::cout << "Key: [" << key << "] Value: [" << value << "]"
|
|
|
+ << std::endl;
|
|
|
+ */
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return config;
|
|
|
+}
|
|
|
+
|
|
|
IConv::IConv(const char *to, const char *from) : ic(iconv_open(to, from)) {}
|
|
|
IConv::~IConv() { iconv_close(ic); }
|
|
|
|
|
@@ -300,6 +350,8 @@ static IConv converter("UTF-8", "CP437");
|
|
|
|
|
|
static time_t last_time = 0;
|
|
|
|
|
|
+std::map<std::string, std::string> CONFIG = read_configfile("hharry.cfg");
|
|
|
+
|
|
|
/*
|
|
|
* harry_level:
|
|
|
*
|
|
@@ -312,21 +364,30 @@ static time_t last_time = 0;
|
|
|
int harry_level(void) {
|
|
|
struct tm *tmp;
|
|
|
time_t now = time(NULL);
|
|
|
+ static int last = 0;
|
|
|
+
|
|
|
+ auto search = CONFIG.find("LEVEL");
|
|
|
+ if (search != CONFIG.end()) {
|
|
|
+ last = stoi(search->second);
|
|
|
+ return last;
|
|
|
+ }
|
|
|
+
|
|
|
if (last_time < now + 10) {
|
|
|
last_time = now;
|
|
|
// Do our every 10 second checks here
|
|
|
|
|
|
tmp = gmtime(&now);
|
|
|
if (tmp->tm_mon != 9)
|
|
|
- return 0;
|
|
|
+ return (last = 0);
|
|
|
if (tmp->tm_mday < 8)
|
|
|
- return 1;
|
|
|
+ return (last = 1);
|
|
|
if (tmp->tm_mday < 15)
|
|
|
- return 2;
|
|
|
+ return (last = 2);
|
|
|
if (tmp->tm_mday < 22)
|
|
|
- return 3;
|
|
|
- return 4;
|
|
|
+ return (last = 3);
|
|
|
+ return (last = 4);
|
|
|
}
|
|
|
+ return last;
|
|
|
}
|
|
|
|
|
|
/*
|