12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547 |
- #include "director.h"
- #include <boost/format.hpp>
- #include <cctype>
- #include "ansicolor.h"
- #include "boxes.h"
- #include "galaxy.h"
- #include "logging.h"
- #include "scripts.h"
- #include "utils.h"
- Director::Director() {
- BUGZ_LOG(warning) << "Director::Director()";
-
- game = 0;
- galaxy.reset();
-
-
- active = false;
-
- talk_direct = true;
- show_client = true;
- count = 0;
-
- SF_cimline = [this](const std::string &s) { this->SL_cimline(s); };
- SF_sectorline = [this](const std::string &s) { this->SL_sectorline(s); };
- SF_portline = [this](const std::string &s) { this->SL_portline(s); };
- SF_warpline = [this](const std::string &s) { this->SL_warpline(s); };
- SF_infoline = [this](const std::string &s) { this->SL_infoline(s); };
- SF_densityline = [this](const std::string &s) { this->SL_densityline(s); };
- SF_computer_portline = [this](const std::string &s) {
- this->SL_computer_portline(s);
- };
- SF_planetline = [this](const std::string &s) { this->SL_planetline(s); };
- build_menu();
- }
- Director::~Director() { BUGZ_LOG(warning) << "Director::~Director()"; }
- void Director::client_input(const std::string &input) {
- std::string output = repr(input);
- if (chain) {
- BUGZ_LOG(trace) << chain->name << " CI: [" << output << "]";
- chain->client_input(input);
- return;
- } else {
- BUGZ_LOG(trace) << "CI: [" << output << "]";
- }
-
- if (active) {
- if (input == "Q" || input == "q") proxy_deactivate();
- return;
- } else if (input == "\x1b" || input == "~") {
- std::string &prompt = current_prompt;
- BUGZ_LOG(trace) << "ACTIVATE prompt shows: [" << prompt << "]";
- if (prompt == "Selection (? for menu): ") {
- to_client(
- "\n\rThere's not much we can do here. Activate in-game at a "
- "Command prompt.\n\r");
- to_client(current_raw_prompt);
- return;
- }
-
- if (prompt == "Enter your choice: ") {
-
-
- ANSIColor c1("BOLD CYAN");
- ANSIColor c2("BOLD WHITE");
- to_client(std::string("\n\r") + c1() + "I'd choose " + c2() + "`T`" +
- c1() + ", but that's how I was coded.\n\r");
- to_client(current_raw_prompt);
- return;
- }
-
- if (prompt == "[Pause]") {
- ANSIColor c1("BOLD CYAN");
- to_client(std::string(" ") + c1() + "PAWS" + reset() + "\n\r");
- to_client(current_raw_prompt);
- return;
- }
- if (at_planet_prompt(prompt)) {
-
-
- to_client("\n\r\x1b[0mFUTURE: Activate the planet upgrade script.\n\r");
- to_client(current_raw_prompt);
- return;
- }
- if (at_command_prompt(prompt)) {
- proxy_activate();
- return;
- }
- } else if (input == "\x01" || input == "\x02" || input == "\x03") {
-
- std::string macro;
- macro.assign(1, input[0] + 'A' - 1);
- std::string to_send;
- if (galaxy.meta.contains("macros") &&
- galaxy.meta["macros"].contains(macro)) {
- to_send = galaxy.meta["macros"][macro].get<std::string>();
- BUGZ_LOG(fatal) << "Sending Macro " << macro << ": [" << to_send << "]";
- replace(to_send, "^", "\r");
- to_server(to_send, "MACRO");
- return;
- }
- }
-
- if (talk_direct) to_server(input, "Director::client_input");
- }
- void Director::server_line(const std::string &line,
- const std::string &raw_line) {
-
- if (!chain) BUGZ_LOG(info) << "SL: [" << line << "]";
- if (line.find("TradeWars Game Server ") != std::string::npos) {
-
- to_client("\rTradeWars Proxy v2++ READY (~ or ESC to activate)\n\r");
-
-
- }
- if (line.find("Selection (? for menu): ") != std::string::npos) {
- char ch = line[line.length() - 1];
- if (ch >= 'A' && ch < 'Q') {
- if ((game) && (game != ch)) {
- galaxy.save();
- }
- game = ch;
- BUGZ_LOG(warning) << "GAME " << game << " activated!";
-
- galaxy.game = game;
- galaxy.username = username;
- galaxy.load();
-
- if (!galaxy.config.contains("display_lines")) {
- galaxy.config["display_lines"] = 20;
- }
- galaxy.meta["help"]["display_lines"] =
- "Number of report lines to display";
- if (!galaxy.config.contains("burnt_percent")) {
- galaxy.config["burnt_percent"] = 40;
- }
- galaxy.meta["help"]["burnt_percent"] =
- "Don't display ports in report below this percent";
- }
-
- if (ch == 'Q') {
- if (game) {
-
- galaxy.save();
- }
- game = 0;
- galaxy.reset();
- }
- }
- if (game) {
-
-
- if (line == "<Port>") {
- SL_parser = SF_portline;
- }
- if (line ==
- " Corporate Planet Scan "
- " " ||
- line ==
- " Personal Planet Scan "
- " ") {
- SL_parser = SF_planetline;
- }
-
- if (endswith(line, "Relative Density Scan")) {
- galaxy.dscan.reset(current_sector);
- SL_parser = SF_densityline;
- }
- if (startswith(line, "Sector : ")) SL_parser = SF_sectorline;
- if (line == ": ") SL_parser = SF_cimline;
- if (line == "<Info>") SL_parser = SF_infoline;
- if (startswith(line, "What sector is the port in? [")) {
-
-
- size_t pos = line.rfind(' ');
- computer_port_sector = stoi(line.substr(pos));
- SL_parser = SF_computer_portline;
- }
- }
- if (SL_parser) {
- SL_parser(line);
- }
- if (chain) {
- BUGZ_LOG(info) << chain->name << " SL: [" << line << "]";
- chain->server_line(line, raw_line);
- }
- }
- void Director::server_prompt(const std::string &prompt,
- const std::string &raw_prompt) {
- current_prompt = prompt;
- current_raw_prompt = raw_prompt;
- if (!chain) {
- std::string temp = repr(prompt);
- BUGZ_LOG(trace) << "SP: [" << temp << "]";
- }
- if (game) {
- if (prompt == "Selection (? for menu): ") {
- galaxy.save();
- game = 0;
- galaxy.reset();
- }
-
-
-
- if (at_command_prompt(prompt)) {
- std::string sector_text;
- size_t before, after;
- before = prompt.find("]:[") + 3;
- after = prompt.find("] (?=Help)");
- sector_text = prompt.substr(before, after - before);
- current_sector = stoi(sector_text);
- BUGZ_LOG(info) << "current_sector = " << current_sector;
- }
- }
-
- if (chain) {
- std::string output = repr(prompt);
- BUGZ_LOG(info) << chain->name << " SP: [" << output << "]";
- chain->server_prompt(prompt);
- }
- }
- void Director::build_menu(void) {
- main_menu = std::make_shared<MenuDispatch>(*this, "MenuMain");
- MenuDispatch *md = static_cast<MenuDispatch *>(&(*main_menu));
- ANSIColor bcolor(COLOR::YELLOW, COLOR::BLUE, ATTR::BOLD);
- ANSIColor tcolor(COLOR::WHITE, COLOR::BLUE, ATTR::BOLD);
- ANSIColor mocolor(COLOR::CYAN, ATTR::BOLD);
- md->menu_box_color = bcolor();
- md->menu_text_color = tcolor();
- md->menu_title = "Proxy Menu";
- md->menu_options_color = mocolor();
- ANSIColor by{1, 33};
- ANSIColor cyan{36};
- ANSIColor bg{1, 32};
- std::string prompt = by() + "M" + cyan() + "ain " + by() + "P" + cyan() +
- "roxy " + bg() + "=>" + reset() + " ";
- md->menu_prompt = prompt;
-
-
- md->lazy = true;
- md->menu = {{"C", "Configure"}, {"D", "Display Report"},
- {"E", "Export Data/Save"}, {"I", "Information"},
- {"P", "Port CIM"}, {"W", "Warp CIM"},
- {"M", "Macros"}, {"T", "Trading Report (same as D)"},
- {"S", "Scripts"}, {"X", "eXit"}};
- md->setNotify([this]() { this->menu_choice(); });
- cim = std::make_shared<CIMDispatch>(*this, "CIMDirector");
- cim->setNotify([this]() { this->cim_done(); });
- }
- void Director::proxy_activate(void) {
- active = true;
- to_server(" ", "Director::proxy_active()");
-
- talk_direct = false;
- show_client = false;
-
- old_prompt = current_prompt;
- old_raw_prompt = current_raw_prompt;
- to_client("\x1b[0m\n\r");
-
- Boxes box(30, 1, true);
- box.boxcolor = "\x1b[1;33;44m";
- box.textcolor = "\x1b[1;33;44m";
- to_client(box.top());
- std::string output = " TradeWars Proxy \x1b[5mActive\x1b[0;1;33;44m ";
- to_client(box.row(output));
- to_client(box.bottom());
- if (galaxy.meta.contains("port_CIM")) {
- time_t last_port_cim_report = galaxy.meta["port_CIM"].get<int>();
- int seconds_ago = time_t_now() - last_port_cim_report;
- int minutes_ago = seconds_ago / 60;
- BUGZ_LOG(warning) << "port_CIM was " << minutes_ago << " minutes ago.";
- if (minutes_ago >= 120) {
- float hours_ago = minutes_ago / 60.0;
- std::string message =
- str(boost::format(
- "Warning: Last Port CIM Refresh was %1$0.2f hours ago.\n\r") %
- hours_ago);
- to_client(message);
- }
- } else {
- to_client("Warning: No CIM data.\n\r");
- BUGZ_LOG(warning) << "no meta port_CIM value seen.";
- }
- chain = main_menu;
- main_menu->activate();
-
- }
- void Director::menu_choice(void) {
- MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
- if (md) {
- if (md->input.empty()) {
- to_client("Menu aborted.\n\r");
- proxy_deactivate();
- return;
- } else {
- switch (md->input[0]) {
- case 'C':
- config_edit();
- return;
- break;
- case 'D':
- case 'T':
- {
- auto pptv = galaxy.find_best_trades();
- std::string output;
- galaxy.sort_port_pair_type(pptv);
- int max_display = 20;
- if (galaxy.config.contains("display_lines"))
- max_display = galaxy.config["display_lines"].get<int>();
- else
- galaxy.config["display_lines"] = max_display;
- if ((max_display <= 0) || (max_display > 255)) {
- max_display = 255;
- galaxy.config["display_lines"] = 255;
- }
- const int per_line = 5;
- int count = 0;
- int line = 0;
- std::string display_line;
- ANSIColor by{1, 33};
- ANSIColor cyan{36};
- ANSIColor bg{1, 32};
- ANSIColor bb{1, 34};
- for (auto const &ppt : pptv) {
- output =
- str(boost::format("%1%%2$5d%3%:%4%%5$-5d%3%(%6%%7$d%3%) ") %
- by() % ppt.s1 % cyan() % bg() % ppt.s2 % bb() % ppt.type);
- display_line.append(output);
- ++count;
- if (count == per_line) {
- count = 0;
- display_line.append("\n\r");
- to_client(display_line);
- display_line.clear();
- ++line;
- }
- if (line == max_display) break;
- }
- if (count != 0) {
- display_line.append("\n\r");
- to_client(display_line);
- display_line.clear();
- }
-
- if ((line < 5) && (max_display > 5)) {
-
- to_client(
- "HINT: For more lines, try reducing the burnt_percent?\n\r");
- }
- } break;
- case 'E':
- to_client("Saving...");
- galaxy.save();
- to_client("\rSaved....\n\r");
- break;
- case 'I':
- information();
- break;
- case 'P':
-
-
- galaxy.meta["port_CIM"] = (int)time_t_now();
- chain = cim;
- to_server("^RQ", "Director::Port CIM");
- {
- std::string text = str(boost::format("Port CIM Report (%1%)\n\r") %
- galaxy.ports.size());
-
- to_client(text);
- }
- chain->activate();
- return;
- break;
- case 'M':
- macro_edit();
- return;
- break;
- case 'W':
- chain = cim;
- to_server("^IQ", "Director::Warp CIM");
- {
- std::string text = str(boost::format("Warp CIM Report (%1%)\n\r") %
- galaxy.warps.size());
-
- to_client(text);
- }
- chain->activate();
- return;
- break;
-
-
- case 'S':
- {
- init_scripts_menu();
- chain = scripts_menu;
- chain->activate();
- return;
- } break;
- case 'X':
- proxy_deactivate();
- return;
- }
-
- md->activate();
- }
- }
- }
- MenuDispatch *Director::init_scripts_menu(void) {
- MenuDispatch *md;
- if (scripts_menu) {
- md = dynamic_cast<MenuDispatch *>(&(*scripts_menu));
- return md;
- } else {
- scripts_menu = std::make_shared<MenuDispatch>(*this, "MenuScripts");
- md = static_cast<MenuDispatch *>(&(*scripts_menu));
- md->menu_box_color = "\x1b[0;32;40m";
- md->menu_text_color = "\x1b[1;32;40m";
- md->menu_title = "Scripts Menu";
- md->menu_options_color = "\x1b[1;32;40m";
- md->lazy = false;
- ANSIColor by{1, 33};
- ANSIColor cyan{36};
- ANSIColor bg{1, 32};
- std::string prompt = by() + "S" + cyan() + "cript " + by() + "M" + cyan() +
- "enu " + bg() + "=>" + reset() + " ";
- md->menu_prompt = prompt;
- md->menu = {{"!", "Terror"},
- {"T", "Trade"},
- {"S", "Safe Move"},
- {"C", "Closest Trade"},
- {"N", "Nearest Unexplored"},
- {"V", "Voyager Explorer"},
- {"E", "Explorer"},
- {"U", "Upgrade Planet Pants"},
- {"X", "Exit Scripts"}};
- md->setNotify([this]() { this->scripts_done(); });
- return md;
- }
- }
- void Director::scripts_done(void) {
-
-
- MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*scripts_menu));
- if (md) {
- if (md->input.empty()) {
- to_client("Scripts aborted.\n\r");
- scripts_menu.reset();
- proxy_deactivate();
- return;
- } else {
- switch (md->input[0]) {
- case 'T':
- {
- script = std::make_shared<TraderDispatch>(*this, "TraderDirector");
- TraderDispatch *ts = static_cast<TraderDispatch *>(&((*script)));
- ts->setNotify([this]() { this->proxy_deactivate(); });
-
- auto found = galaxy.find_trades(current_sector, false);
- if (found.empty()) {
- to_client(
- "No Trades found. Port burnt (CONFIG: lower burnt_percent?) "
- "or no ports around.\n\r");
- proxy_deactivate();
- return;
- }
-
- galaxy.sort_port_pair_type(found);
- BUGZ_LOG(fatal) << "Found " << found.size() << " possible trade(s).";
- BUGZ_LOG(fatal) << "Best: " << found[0].s1 << "," << found[0].s2
- << " : " << found[0].type;
-
- ts->port[0] = found[0].s1;
- ts->port[1] = found[0].s2;
- ts->type = found[0].type;
- ts->trades = found[0].trades;
- chain = script;
- chain->activate();
- return;
- } break;
- case 'S': {
- script = std::make_shared<MoveDispatch>(*this, "MoveDirector");
- MoveDispatch *md = static_cast<MoveDispatch *>(&((*script)));
- md->setNotify([this]() { this->proxy_deactivate(); });
- md->move_to = 1;
- chain = script;
- chain->activate();
- return;
- } break;
- case '!': {
- script = std::make_shared<ScriptTerror>(*this, "TerrorDirector");
- ScriptTerror *st = static_cast<ScriptTerror *>(&(*script));
- st->setNotify([this]() {
- script.reset();
- this->proxy_deactivate();
- });
- chain = script;
- chain->activate();
- return;
- } break;
-
- case 'C': {
- auto best = galaxy.find_closest(current_sector);
- std::string text;
- if (best.type != 0) {
- text = str(boost::format("Best/Closest: %1% with %2% & %3%\n\r") %
- best.type % best.s1 % best.s2);
- to_client(text);
- } else {
- to_client("I don't see any best trades.\n\r");
- }
- const char *foe[3] = {"Fuel", "Organics", "Equipment"};
- for (int x = 0; x < 3; ++x) {
- auto s = galaxy.find_nearest_selling(current_sector, x);
- text = str(boost::format("Closest Selling %1% is %2%\n\r") %
- foe[x] % s);
- to_client(text);
- }
- to_client("Good places to hide:\n\r");
- auto sectors = galaxy.find_safe();
- text = "";
- int c = 0;
- for (auto const &s : sectors) {
- ++c;
- text += str(boost::format("%1$5d ") % s);
- if (c % 10 == 0) {
- text.append("\n\r");
- to_client(text);
- text.clear();
- c = 0;
- }
- }
- if (c != 0) {
- text.append("\n\r");
- to_client(text);
- }
- } break;
- case 'N': {
- sector_type s = galaxy.find_nearest_unexplored(current_sector);
- if (s != 0) {
- std::string text = str(boost::format("Sector: %1%\n\r") % s);
- to_client(text);
- } else {
- to_client("I don't see any unexplored.\n\r");
- }
- } break;
- case 'V': {
- script = std::make_shared<ScriptVoyager>(*this, "VoyagerDirector");
- ScriptVoyager *sv = static_cast<ScriptVoyager *>(&(*script));
- sv->setNotify([this]() {
- script.reset();
- this->proxy_deactivate();
- });
- chain = script;
- chain->activate();
- return;
- } break;
- case 'E': {
- script = std::make_shared<ScriptExplore>(*this, "ExploreDirector");
- ScriptExplore *se = static_cast<ScriptExplore *>(&(*script));
- se->setNotify([this]() {
- script.reset();
- this->proxy_deactivate();
- });
- chain = script;
- chain->activate();
- return;
- } break;
- case 'U': {
- script = std::make_shared<ScriptPlanet>(*this, "PlanetDirector");
- ScriptPlanet *sp = static_cast<ScriptPlanet *>(&(*script));
- sp->setNotify([this]() {
- script.reset();
- this->proxy_deactivate();
- });
- chain = script;
- chain->activate();
- return;
- } break;
- case 'Q':
- chain = main_menu;
- main_menu->activate();
- return;
- break;
- }
- }
- }
- proxy_activate();
-
-
-
-
-
- }
- InputDispatch *Director::init_config_input(void) {
- InputDispatch *id;
- if (config_input) {
-
- id = dynamic_cast<InputDispatch *>(&(*config_input));
- ANSIColor by{1, 33};
- ANSIColor cyan{36};
- ANSIColor bg{1, 32};
- std::string prompt =
- by() + "C" + cyan() + "onfig " + bg() + "=>" + reset() + " ";
- id->prompt = prompt;
- id->numeric = true;
- id->max_length = 3;
- config_item.clear();
- return id;
- } else {
-
- config_input = std::make_shared<InputDispatch>(*this, "InputDirector");
- id = static_cast<InputDispatch *>(&(*config_input));
- ANSIColor by{1, 33};
- ANSIColor cyan{36};
- ANSIColor bg{1, 32};
- std::string prompt =
- by() + "C" + cyan() + "onfig " + bg() + "=>" + reset() + " ";
- id->prompt = prompt;
- id->numeric = true;
- id->max_length = 3;
- id->setNotify([this]() { this->config_have_input(); });
- config_item.clear();
- return id;
- }
- }
- void Director::config_edit(void) {
-
- std::string menu_box_color = "\x1b[1;33;44m";
- std::string menu_text_color = "\x1b[1;37;44m";
- auto abox = Boxes::alert(" Configuration: ", menu_box_color,
- menu_text_color, 20, 1, true);
- for (auto line : abox) {
- to_client(line);
- }
-
- int item = 1;
- ANSIColor number(COLOR::CYAN);
- ANSIColor key(COLOR::GREEN, ATTR::BOLD);
- ANSIColor value(COLOR::BLUE, ATTR::BOLD);
- for (auto const &cfg : galaxy.config.items()) {
-
- std::string output =
- str(boost::format("%1%%2$2d %3%%4$20s: %5%%6$s%7%\n\r") % number() %
- item % key() % cfg.key() % value() % cfg.value() % reset());
- to_client(output);
- ++item;
- }
- std::string message =
- number() + "Enter number to edit, " + key() + "blank to exit.\n\r";
-
- to_client(message);
-
- InputDispatch *id = init_config_input();
- chain = config_input;
- id->activate();
-
-
-
- }
- void Director::config_have_input(void) {
- InputDispatch *id = dynamic_cast<InputDispatch *>(&(*config_input));
- if (config_item.empty()) {
-
- if (id->input.empty()) {
-
- chain = main_menu;
- MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
- md->activate();
-
- config_input.reset();
- return;
- } else {
- int item = sstoi(id->input);
- if ((item < 1) || (item > (int)galaxy.config.size())) {
-
- to_client("What? I didn't see that item.\n\r");
- config_edit();
- return;
- } else {
- int pos = 1;
- for (auto const &c : galaxy.config.items()) {
- if (pos == item) {
-
- ANSIColor key(COLOR::GREEN, ATTR::BOLD);
- ANSIColor value(COLOR::BLUE, ATTR::BOLD);
- config_item = c.key();
- std::string output =
- str(boost::format("%1%%2% : %3%%4%\n\r") % key() % config_item %
- value() % galaxy.meta["help"][config_item]);
- to_client(output);
- id->max_length = 30;
- id->numeric = false;
- ANSIColor by{1, 33};
- ANSIColor cyan{36};
- ANSIColor bg{1, 32};
- std::string prompt =
- by() + "C" + cyan() + "hange to " + bg() + "=>" + reset() + " ";
- id->prompt = prompt;
- id->activate();
- return;
- };
- ++pos;
- }
- to_client("What? I didn't find that item?\n\r");
- config_edit();
- return;
- }
- }
- } else {
-
- if (id->input.empty()) {
- to_client("No change.\n\r");
- config_edit();
- return;
- } else {
- BUGZ_LOG(fatal) << "Config EDIT: " << config_item << " = " << id->input;
- galaxy.config[config_item] = id->input;
- config_edit();
- return;
- }
- }
- }
- InputDispatch *Director::init_macro_input(void) {
- InputDispatch *id;
- if (macro_input) {
-
- id = dynamic_cast<InputDispatch *>(&(*macro_input));
- ANSIColor by{1, 33};
- ANSIColor cyan{36};
- ANSIColor bg{1, 32};
- std::string prompt =
- by() + "M" + cyan() + "acro " + bg() + "=>" + reset() + " ";
- id->prompt = prompt;
- id->numeric = false;
- id->max_length = 1;
- config_item.clear();
- return id;
- } else {
-
- macro_input = std::make_shared<InputDispatch>(*this, "InputDirector");
- id = static_cast<InputDispatch *>(&(*macro_input));
- ANSIColor by{1, 33};
- ANSIColor cyan{36};
- ANSIColor bg{1, 32};
- std::string prompt =
- by() + "M" + cyan() + "acro " + bg() + "=>" + reset() + " ";
- id->prompt = prompt;
- id->numeric = false;
- id->max_length = 1;
- id->setNotify([this]() { this->macro_have_input(); });
- macro_item.clear();
- return id;
- }
- }
- void Director::macro_edit(void) {
-
- std::string menu_box_color = "\x1b[1;33;44m";
- std::string menu_text_color = "\x1b[1;37;44m";
- auto abox = Boxes::alert(" Macros: ", menu_box_color, menu_text_color,
- 14, 1, true);
- for (auto line : abox) {
- to_client(line);
- }
- ANSIColor number(COLOR::CYAN);
- ANSIColor key(COLOR::GREEN, ATTR::BOLD);
- ANSIColor value(COLOR::BLUE, ATTR::BOLD);
- if (!galaxy.meta.contains("macros")) {
- galaxy.meta["macros"]["A"] = "";
- galaxy.meta["macros"]["B"] = "";
- galaxy.meta["macros"]["C"] = "";
- galaxy.meta["macros"]["D"] = "";
- galaxy.meta["macros"]["E"] = "";
- galaxy.meta["macros"]["F"] = "";
- }
- for (auto const &cfg : galaxy.meta["macros"].items()) {
-
- std::string output = str(boost::format("%1%%2%: %3%%4$s%5%\n\r") % key() %
- cfg.key() % value() % cfg.value() % reset());
- to_client(output);
- }
- std::string message =
- number() + "Enter Letter to edit, " + key() + "blank to exit.\n\r";
- to_client(message);
-
- InputDispatch *id = init_macro_input();
- chain = macro_input;
- id->input.clear();
- macro_item.clear();
- id->activate();
- }
- void Director::macro_have_input(void) {
- InputDispatch *id = dynamic_cast<InputDispatch *>(&(*macro_input));
- if (macro_item.empty()) {
-
- if (id->input.empty()) {
- chain = main_menu;
- MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
- md->activate();
- macro_input.reset();
- return;
- } else {
- char c = toupper(id->input[0]);
- macro_item.assign(1, c);
- if (galaxy.meta["macros"].contains(macro_item)) {
- constexpr ANSIColor key("BOLD GREEN");
- constexpr ANSIColor value("BOLD BLUE");
- std::string output =
- str(boost::format("%1%%2% : %3%%4%\n\r") % key() % macro_item %
- value() % galaxy.meta["macros"][macro_item]);
- to_client(output);
- id->max_length = 100;
- id->numeric = false;
- ANSIColor by{1, 33};
- ANSIColor cyan{36};
- ANSIColor bg{1, 32};
- std::string prompt = by() + "M" + cyan() + "acro " + macro_item + bg() +
- "=>" + reset() + " ";
- id->prompt = prompt;
- id->activate();
- return;
- } else {
- to_client("I don't understand.\n\r");
- macro_edit();
- return;
- }
- }
- } else {
-
- if (id->input.empty()) {
- to_client("No change.\n\r");
- macro_item.clear();
- macro_edit();
- return;
- } else {
- galaxy.meta["macros"][macro_item] = id->input;
- macro_item.clear();
- macro_edit();
- return;
- }
- }
- }
- void Director::have_input(void) {
- ++count;
- InputDispatch *id = dynamic_cast<InputDispatch *>(&(*chain));
- if (id) {
- std::string output =
- str(boost::format("Your Input (%2%): [%1%]\n\r") % id->input % count);
- to_client("\x1b[0m");
- to_client(output);
- } else {
- proxy_deactivate();
- return;
- }
- if (count > 3) {
- proxy_deactivate();
- } else {
- chain->activate();
- }
- }
- void Director::cim_done(void) {
- BUGZ_LOG(info) << "CIM done";
- chain = main_menu;
- main_menu->activate();
- }
- void Director::information(void) {
- std::string output;
- to_client("I currently know the following:\n\r");
- output = str(
- boost::format("Ports: %1%, Sectors: %2%, Config: %3%, Meta: %4%\n\r") %
- galaxy.ports.size() % galaxy.warps.size() % galaxy.config.size() %
- galaxy.meta.size());
- to_client(output);
- }
- void Director::proxy_deactivate(void) {
- active = false;
-
- talk_direct = true;
- show_client = true;
- chain.reset();
- to_client("\n\r");
- to_client(current_raw_prompt);
- }
- void Director::SL_cimline(const std::string &line) {
- if (line == ": ENDINTERROG") {
- SL_parser = nullptr;
- return;
- }
- if (line == ": ") {
-
-
-
-
- return;
- }
- if (line.empty()) {
- SL_parser = nullptr;
- return;
- }
-
-
-
-
- if (in(line, "%")) {
-
- struct port p = parse_portcim(line);
- if (p.sector == 0)
- BUGZ_LOG(fatal) << "portcim: FAIL [" << line << "]";
- else
- galaxy.add_port(p);
-
-
- } else {
-
-
- auto warps = split(line);
- sector_warps sw;
- for (auto const &w : warps) {
- if (sw.sector == 0) {
- sw.sector = stoi(w);
- } else {
- sw.add(stoi(w));
- }
- }
-
- galaxy.add_warp(sw);
- }
- }
- void Director::SL_thiefline(const std::string &line) {
- size_t pos = line.find("Suddenly you're Busted!");
- bool busted = pos != line.npos;
- if (busted) {
- BUGZ_LOG(fatal) << "set bust";
- SL_parser = nullptr;
- } else {
- pos = line.find("(You realize the guards saw you last time!)");
- if (pos != line.npos) SL_parser = nullptr;
- }
-
- }
- void Director::SL_sectorline(const std::string &line) {
-
- if (line.empty()) {
- SL_parser = nullptr;
- } else {
-
- if (in(line, "Sector :")) {
- current_sector = stoi(line.substr(10));
-
- }
- if (in(line, "Ports :")) {
- std::string port_class;
- size_t pos = line.find(", Class ");
- if (pos != std::string::npos) {
- pos += 8;
- int class_ = stoi(line.substr(pos));
-
- galaxy.add_port(current_sector, class_);
- }
- }
- if (in(line, "Warps to Sector(s) :")) {
- std::string temp = line.substr(20);
- replace(temp, " - ", " ");
-
-
- replace(temp, "(", "");
- replace(temp, ")", "");
- sector_warps sw;
- auto warps = split(temp);
- sw.sector = current_sector;
-
- for (auto const &w : warps) {
- sw.add(stoi(w));
- }
-
- galaxy.add_warp(sw);
- }
- }
- }
- void Director::SL_densityline(const std::string &line) {
-
- if (line.empty()) {
- SL_parser = nullptr;
- return;
- }
-
-
- if (in(line, "==>")) {
- std::string work = line;
- replace(work, ":", "");
- bool known = !in(work, "(");
- replace(work, "(", "");
- replace(work, ")", "");
- replace(work, "%", "");
- replace(work, ",", "");
- auto dense = split(work);
-
- sector_type sector = std::stoi(dense.at(1));
- uint16_t density = std::stoi(dense.at(3));
- uint16_t warps = std::stoi(dense.at(5));
- uint16_t navhaz = std::stoi(dense.at(7));
- bool anom = in(dense.at(9), "Yes");
- struct density d = {sector, density, warps, navhaz, anom, known};
- galaxy.dscan.add_scan(d);
-
-
-
-
-
-
-
-
- }
- }
- void Director::SL_portline(const std::string &line) {
-
-
-
- if (in(line, "%")) {
-
-
-
- std::string work = line;
- replace(work, "Fuel Ore", "Fuel");
- auto parts = split(work);
- if (parts[0] == "Items") return;
- char c = tolower(parts[0][0]);
- int pos;
- char foe[4] = "foe";
- for (pos = 0; pos < 3; ++pos) {
- if (c == foe[pos]) break;
- }
- int amount = stoi(parts[2]);
- int percent = stoi(parts[3]);
-
- auto port = galaxy.ports.find(current_sector);
- if (port != galaxy.ports.end()) {
- port->second.amount[pos] = amount;
- port->second.percent[pos] = percent;
- }
-
-
- if (parts[0] == "Equipment") SL_parser = nullptr;
-
- }
- }
- void Director::SL_warpline(const std::string &line) {
- if (line.empty()) {
- SL_parser = nullptr;
- return;
- }
-
- BUGZ_LOG(fatal) << "warpline: [" << line << "]";
- }
- void Director::SL_infoline(const std::string &line) {
- static int state;
- if (line == "<Info>") {
- state = 0;
- galaxy.meta["info"] = json();
- }
- if (line.empty()) {
- ++state;
- if (state == 2) {
- SL_parser = nullptr;
-
- galaxy.meta["ship"] = json();
-
- if (galaxy.meta["info"].contains("Total Holds")) {
- std::string work = galaxy.meta["info"]["Total Holds"];
- replace(work, "Fuel Ore", "Fuel");
- auto parts = split(work, " - ");
- int total_holds = stoi(parts[0]);
- BUGZ_LOG(fatal) << "total holds: " << total_holds;
- auto contents = split(parts[1]);
- for (auto const &hold : contents) {
- auto hold_amount = split(hold, "=");
- BUGZ_LOG(fatal) << hold_amount[0] << " with " << hold_amount[1];
- std::string key = hold_amount[0];
- str_tolower(key);
-
-
-
-
-
- if (key != "empty") {
- key = key[0];
- }
- galaxy.meta["ship"]["holds"][key] = stoi(hold_amount[1]);
- }
- galaxy.meta["ship"]["holds"]["total"] = total_holds;
- }
- if (galaxy.meta["info"].contains("Turns to Warp")) {
-
- int warp_turns = sstoi(json_str(galaxy.meta["info"]["Turns to Warp"]));
-
- galaxy.meta["ship"]["warp_turns"] = warp_turns;
- }
- if (galaxy.meta["info"].contains("LongRange Scan")) {
- std::string scanner_text =
- galaxy.meta["info"]["LongRange Scan"].get<std::string>();
- char scanner = scanner_text[0];
-
- galaxy.meta["ship"]["scanner"] = scanner;
- }
-
- if (galaxy.meta["info"].contains("Turns left")) {
-
- std::string text = galaxy.meta["info"]["Turns left"];
- if (text == "Unlimited") {
- galaxy.meta["turns"] = -1;
- } else {
- int turns =
- stoi(text);
-
- galaxy.meta["turns"] = turns;
- }
- }
- if (galaxy.meta["info"].contains("Current Sector")) {
- int sector = sstoi(json_str(galaxy.meta["info"]["Current Sector"]));
-
-
- current_sector = sector;
- }
- if (galaxy.meta["info"].contains("Credits")) {
- std::string credit_text = galaxy.meta["info"]["Credits"];
- replace(credit_text, ",", "");
- int credits = stoi(credit_text);
- galaxy.meta["credits"] = credits;
-
- }
- }
- return;
- }
-
- size_t pos = line.find(" : ");
- if ((!endswith(line, " : ")) && (pos != line.npos)) {
- std::string key = line.substr(0, pos);
-
- std::string value = line.substr(pos + 3);
- trim(key);
- trim(value);
- galaxy.meta["info"][key] = value;
-
- }
-
- if (startswith(line, "Corp ")) {
- pos = line.find(", ");
- if (pos != line.npos) {
- galaxy.meta["info"]["Corp"] = line.substr(pos + 2);
- }
- }
- }
- void Director::SL_computer_portline(const std::string &line) {
- if (startswith(line, "What sector is the port in?"))
- computer_port_done = false;
- if (line == "I have no information about a port in that sector.") {
- computer_port_sector = 0;
- SL_parser = nullptr;
- return;
- }
- if (!computer_port_done) {
- if (in(line, "Fuel Ore")) computer_port_done = true;
- if (in(line, "Cargo holds")) {
-
-
-
- SL_parser = nullptr;
- return;
- }
- }
- if (computer_port_done) {
- if (line.empty()) {
- SL_parser = nullptr;
- return;
- }
-
-
-
-
- std::string work = line;
- replace(work, "Fuel Ore", "Fuel");
- replace(work, "%", "");
- auto parts = split(work);
- char c = tolower(parts[0][0]);
- int pos;
- char foe[4] = "foe";
- for (pos = 0; pos < 3; ++pos) {
- if (c == foe[pos]) break;
- }
- int amount = stoi(parts[2]);
- int percent = stoi(parts[3]);
-
- auto port = galaxy.ports.find(computer_port_sector);
- if (port != galaxy.ports.end()) {
- BUGZ_LOG(trace) << "COM PORT " << computer_port_sector << " " << c << " "
- << amount << " " << percent;
- port->second.amount[pos] = amount;
- port->second.percent[pos] = percent;
- }
- }
- }
- void Director::SL_planetline(const std::string &line) {
- if (line == "Corporate command [TL=00:00:00]:[344] (?=Help)? Q" ||
- line == "Computer command [TL=00:00:00]:[344] (?=Help)? Q") {
- SL_parser = nullptr;
- return;
- }
- if (in(line, "Class ") &&
- (in(line, "Level ") || (endswith(line, "No Citadel")))) {
- int level;
- char c;
- sector_type sector;
- int number;
- std::string name;
- std::string work = line;
- size_t pos = work.find('#');
- std::string temp = work.substr(0, pos);
- trim(temp);
- sector = sstoi(temp);
- work = work.substr(pos + 1);
- number = sstoi(work);
- pos = work.find(' ');
- work = work.substr(pos + 1);
- trim(work);
- if (endswith(work, "No Citadel")) {
- level = 0;
- } else {
- pos = work.rfind("Level ");
- temp = work.substr(pos + 6);
- level = sstoi(temp);
- }
- pos = work.rfind("Class ");
- temp = work.substr(pos + 6);
- c = temp[0];
- work = work.substr(0, pos);
- trim(work);
- name = work;
-
- planet p{sector, number, level, name, c};
- galaxy.planets[number] = p;
- }
-
- }
|