123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200 |
- #include "scripts.h"
- #include <boost/format.hpp>
- #include "logging.h"
- ScriptTerror::ScriptTerror(Director &d, const char *called)
- : Dispatch(d, called) {
- BUGZ_LOG(warning) << "ScriptTerror()";
- if (called == nullptr) name = "Terror";
- init();
- }
- ScriptTerror::~ScriptTerror() { BUGZ_LOG(warning) << "~ScriptTerror()"; }
- void ScriptTerror::init(void) {
- BUGZ_LOG(fatal) << "ScriptTerror::init()";
- move = std::make_shared<MoveDispatch>(director, "TerrorMove");
- md = static_cast<MoveDispatch *>(&(*move));
- // setup notify functions for results/completion.
- md->setNotify([this]() { this->move_notify(); });
- input = std::make_shared<InputDispatch>(director, "TerrorInput");
- id = static_cast<InputDispatch *>(&(*input));
- id->prompt = "Number of loops: ";
- id->max_length = 4;
- id->numeric = true;
- id->setNotify([this]() { this->input_notify(); });
- trader = std::make_shared<TraderDispatch>(director, "TerrorTrader");
- td = static_cast<TraderDispatch *>(&(*trader));
- td->setNotify([this]() { this->trade_notify(); });
- BUGZ_LOG(fatal) << "ScriptTerror::init() completed.";
- }
- void ScriptTerror::activate(void) {
- BUGZ_LOG(warning) << "ScriptTerror::activate()";
- // Need: InputDispatch, MoveDispatch, ScriptTrader
- // Save the trade_end_empty setting, and set to Y
- if (director.galaxy.config.contains("trade_end_empty")) {
- old_trade_end_empty = director.galaxy.config["trade_end_empty"];
- } else {
- old_trade_end_empty = "Y";
- }
- director.galaxy.config["trade_end_empty"] = "Y";
- // Step 0: Get ship information / # of holds
- max_loops = loops = -1;
- to_server("I");
- // Step 1: Get number of loops of terror
- // director.chain = input;
- // input->activate();
- // Step 2: Look for closest trades, try ScriptTrade until none < some
- // level. Step 3: Move on, unless out of loops (or low on turns)
- // deactivate();
- }
- void ScriptTerror::deactivate(void) {
- BUGZ_LOG(warning) << "ScriptTerror::deactivate()";
- // restore the original value.
- director.galaxy.config["trade_end_empty"] = old_trade_end_empty;
- notify();
- }
- void ScriptTerror::input_notify(void) {
- if (id->input.empty()) {
- deactivate();
- return;
- }
- if (id->aborted) {
- deactivate();
- return;
- }
- max_loops = sstoi(id->input, -1);
- if (max_loops == -1) {
- deactivate();
- return;
- }
- id->input.clear();
- BUGZ_LOG(warning) << "Loops of terror: " << max_loops;
- loops = max_loops;
- // find nearest
- int stop_percent;
- if (director.galaxy.config.contains("stop_percent")) {
- stop_percent = director.galaxy.config["stop_percent"].get<int>();
- } else {
- stop_percent = 25;
- director.galaxy.config["stop_percent"] = stop_percent;
- }
- ppt = director.galaxy.find_closest_trade(director.current_sector, 3,
- stop_percent);
- if (ppt.type == 0) {
- to_client("No trades found! You've burnt the galaxy!\n\r");
- deactivate();
- return;
- }
- // ok, step 2: move!
- // md->setNotify([this]() { this->proxy_deactivate(); });
- if (director.current_sector != ppt.s1) {
- BUGZ_LOG(fatal) << "Moving to: " << ppt.s1;
- md->move_to = ppt.s1;
- director.chain = move;
- director.chain->activate();
- return;
- } else {
- // We're already there!
- to_client("Ok! Get trading!\n\r");
- td->port[0] = ppt.s1;
- td->port[1] = ppt.s2;
- td->trades = ppt.trades;
- td->type = ppt.type;
- director.chain = trader;
- director.chain->activate();
- return;
- }
- }
- void ScriptTerror::move_notify(void) {
- BUGZ_LOG(fatal) << "move_notify()";
- if (md->aborted) {
- to_client("Move cancel.\n\r");
- deactivate();
- return;
- }
- // Check for success, and start trading!
- if (md->success) {
- to_client("We're here, get trading!\n\r");
- td->port[0] = ppt.s1;
- td->port[1] = ppt.s2;
- td->trades = ppt.trades;
- td->type = ppt.type;
- director.chain = trader;
- director.chain->activate();
- return;
- } else {
- std::string message = "Move FAILED. " + md->why_failed + "\n\r";
- // to_client("Move FAILED.\n\r");
- to_client(message);
- deactivate();
- }
- }
- void ScriptTerror::server_prompt(const std::string &prompt) {
- if ((loops == -1) && (max_loops == -1)) {
- if (at_command_prompt(prompt)) {
- // Step 1: Get number of loops of terror
- director.chain = input;
- input->activate();
- return;
- }
- }
- }
- void ScriptTerror::trade_notify(void) {
- // Done trading -- maybe! :P
- if (td->aborted) {
- to_client("Trade cancel.\n\r");
- deactivate();
- return;
- }
- if (td->success) {
- // success!
- // find nearest
- int stop_percent;
- if (director.galaxy.config.contains("stop_percent")) {
- stop_percent = director.galaxy.config["stop_percent"].get<int>();
- } else {
- stop_percent = 25;
- director.galaxy.config["stop_percent"] = stop_percent;
- }
- ppt = director.galaxy.find_closest_trade(director.current_sector, 3,
- stop_percent);
- if (ppt.type == 0) {
- to_client("No trades found! You've burnt the galaxy!\n\r");
- deactivate();
- return;
- }
- if ((director.current_sector == ppt.s1) ||
- (director.current_sector == ppt.s2)) {
- // We're still here...
- BUGZ_LOG(fatal) << "Trade it again, Sam.";
- to_client("Keep trading.\n\r");
- td->port[0] = ppt.s1;
- td->port[1] = ppt.s2;
- td->trades = ppt.trades;
- td->type = ppt.type;
- director.chain = trader;
- director.chain->activate();
- return;
- }
- // Ok, this isn't a local trade.
- if (loops == 0) {
- to_client("We're done terrorizing, for now...\n\r");
- deactivate();
- return;
- }
- --loops;
- // Move to our next target
- BUGZ_LOG(fatal) << "Moving to: " << ppt.s1;
- md->move_to = ppt.s1;
- director.chain = move;
- director.chain->activate();
- return;
- } else {
- std::string message = "Trade done: " + td->why_failed + "\n\r";
- to_client(message);
- }
- // to_client("Ok, trade is done.\n\r");
- deactivate();
- }
- ScriptVoyager::ScriptVoyager(Director &d, const char *called)
- : Dispatch(d, called) {
- BUGZ_LOG(warning) << "ScriptVoyager()";
- if (called == nullptr) name = "Voyager";
- init();
- }
- ScriptVoyager::~ScriptVoyager() { BUGZ_LOG(warning) << "~ScriptVoyager()"; }
- void ScriptVoyager::init(void) {
- move = std::make_shared<MoveDispatch>(director, "VoyagerMove");
- md = static_cast<MoveDispatch *>(&(*move));
- md->setNotify([this]() { this->move_notify(); });
- input = std::make_shared<InputDispatch>(director, "VoyagerInput");
- id = static_cast<InputDispatch *>(&(*input));
- id->prompt = "Number of loops/tries: ";
- id->max_length = 5;
- id->numeric = true;
- id->setNotify([this]() { this->input_notify(); });
- }
- void ScriptVoyager::activate(void) {
- director.chain = input;
- input->activate();
- return;
- }
- void ScriptVoyager::deactivate(void) {
- BUGZ_LOG(warning) << "ScriptVoyager::deactivate()";
- notify();
- }
- void ScriptVoyager::move_notify(void) {
- if (md->aborted) {
- deactivate();
- return;
- }
- if (md->success) {
- // Great!
- next();
- return;
- } else {
- std::string message = "No safe moves. " + md->why_failed + "\n\r";
- to_client(message);
- deactivate();
- }
- }
- void ScriptVoyager::input_notify(void) {
- if (id->input.empty() || id->aborted) {
- to_client("Ok, maybe later then.\n\r");
- deactivate();
- return;
- }
- loops = sstoi(id->input, -1);
- if (loops == -1) {
- to_client("I'm sorry, WHAT?\n\r");
- deactivate();
- }
- id->input.clear();
- BUGZ_LOG(warning) << "Voyager loops: " << loops;
- next();
- }
- void ScriptVoyager::next(void) {
- if (loops == 0) {
- // ok, stop here.
- to_client("The voyage ends here, for now.\n\r");
- deactivate();
- return;
- }
- --loops;
- sector_type s =
- director.galaxy.find_nearest_unexplored(director.current_sector);
- if (s == 0) {
- to_client("I don't see anything else to explorer.\n\r");
- BUGZ_LOG(warning) << "find_nearest_unexplored returned 0";
- deactivate();
- }
- BUGZ_LOG(warning) << "Next stop: " << s;
- md->move_to = s;
- director.chain = move;
- director.chain->activate();
- }
- // SL: [###### DANGER! You have marked sector 740 to be avoided!]
- // SP: [Do you really want to warp there? (Y/N) ]
- void ScriptVoyager::server_prompt(const std::string &prompt) {}
- ScriptExplore::ScriptExplore(Director &d, const char *called)
- : Dispatch(d, called) {
- BUGZ_LOG(warning) << "ScriptExplore()";
- if (called == nullptr) name = "Explore";
- init();
- }
- ScriptExplore::~ScriptExplore() { BUGZ_LOG(warning) << "~ScriptExplore()"; }
- void ScriptExplore::init() {
- move = std::make_shared<MoveDispatch>(director, "ExploreMove");
- md = static_cast<MoveDispatch *>(&(*move));
- md->setNotify([this]() { this->move_notify(); });
- input = std::make_shared<InputDispatch>(director, "ExploreInput");
- id = static_cast<InputDispatch *>(&(*input));
- id->prompt = "Number of sectors to explore: ";
- id->max_length = 5;
- id->numeric = true;
- id->setNotify([this]() { this->input_notify(); });
- state = 0;
- target = 0;
- if (!director.galaxy.config.contains("prefer_ports")) {
- director.galaxy.config["prefer_ports"] = "Y";
- prefer_ports = true;
- } else {
- prefer_ports = json_str(director.galaxy.config["prefer_ports"]) == "Y";
- }
- if (!director.galaxy.meta["help"].contains("prefer_ports")) {
- director.galaxy.meta["help"]["prefer_ports"] =
- "Explorer prefers to find ports.";
- }
- BUGZ_LOG(warning) << "Prefer Ports: " + prefer_ports;
- }
- void ScriptExplore::activate() {
- us = director.chain;
- state = 1;
- to_server("I");
- /*
- director.chain = input;
- input->activate();
- if(director.galaxy.meta["ship"]) {
- if(!director.galaxy.meta["ship"]["scanner"]) {
- to_client("\n\rIt appears your ship doesn't have a long range
- scanner.\n\r"); deactivate();
- }
- }
- state = 1;
- return;
- */
- }
- void ScriptExplore::deactivate() {
- BUGZ_LOG(warning) << "ScriptExplore::deactivate()";
- us.reset();
- notify();
- }
- void ScriptExplore::move_notify() {
- director.chain = us;
- if (md->aborted) {
- deactivate();
- return;
- }
- if (md->success) {
- to_server("SD");
- state = 3;
- return;
- } else {
- if (unknown_warps.size() != 0) {
- BUGZ_LOG(warning) << "Seeking previous unexplored (Unsafe Dest.)";
- state = 4;
- next();
- target = unknown_warps.top();
- unknown_warps.pop();
- std::string message = "UNSAFE DESTINATION";
- std::string indenter = " ";
- ANSIColor alert(COLOR::WHITE, COLOR::RED, ATTR::BOLD);
- to_client(indenter + alert() + message + reset() + "\n\r");
- } else {
- std::string message = "Move failed: " + md->why_failed + "\n\r";
- // to_client("No safe moves.\n\r");
- BUGZ_LOG(warning) << message;
- to_client(message);
- deactivate();
- }
- }
- }
- void ScriptExplore::input_notify() {
- director.chain = us;
- if (id->input.empty() || id->aborted) {
- to_client("Maybe next time.\n\r");
- deactivate();
- return;
- }
- loops = sstoi(id->input, -1);
- if (loops == -1) {
- to_client("I'm sorry, WHAT?\n\r");
- deactivate();
- return;
- }
- if (loops == 0) {
- infinite = true;
- } else {
- infinite = false;
- }
- id->input.clear();
- if (!infinite) {
- BUGZ_LOG(warning) << "Explore loops: " << loops;
- } else {
- to_client("Infinite Mode!\n\r");
- to_client("[ PRESS A KEY TO STOP ]\n\r");
- BUGZ_LOG(warning) << "Explore loops: INFINITE";
- }
- to_server("SD");
- state = 3;
- }
- void ScriptExplore::next() {
- if (loops <= 0 && !infinite) {
- to_client("The exploration ends, for now.\n\r");
- deactivate();
- return;
- }
- if (!infinite) --loops;
- // Calculate next best sector to goto
- density_scan &ds = director.galaxy.dscan;
- density best_sector;
- best_sector.sector = 0;
- if (target != 0) {
- BUGZ_LOG(info) << "Using: " << target;
- best_sector.sector = target;
- target = 0;
- } else {
- for (int x = 0; x < ds.pos; ++x) {
- if (best_sector.sector != 0)
- BUGZ_LOG(info) << "Comparing: " << ds.d[x].sector << " ("
- << ds.d[x].density << ", " << ds.d[x].known << ") to "
- << best_sector.sector << " (" << best_sector.density
- << ", " << best_sector.known << ")";
- /* Is this sector prefered over others?
- * Warp Counts (Number of warps)
- * Density Check (Is this sector clear, does it contain a port)
- * NavHaz Check (Avoid sectors with navhaz above X%)
- */
- if (!ds.d[x].known) {
- BUGZ_LOG(info) << "Subject: " << ds.d[x].sector;
- // Compare, Warp counts
- if (best_sector.sector != 0) {
- if (prefer_ports) {
- if ((ds.d[x].density == 100 || ds.d[x].density == 101) ||
- (ds.d[x].warps >= best_sector.warps)) {
- if (density_clear(ds.d[x].sector, ds.d[x].density,
- ds.d[x].navhaz)) {
- if (best_sector.sector != 0) {
- BUGZ_LOG(info)
- << "Storing previous best " << best_sector.sector;
- unknown_warps.push(best_sector.sector);
- }
- best_sector = ds.d[x];
- }
- } else {
- if (density_clear(ds.d[x].sector, ds.d[x].density,
- ds.d[x].navhaz)) {
- BUGZ_LOG(info)
- << "Added " << ds.d[x].sector << " to unknown_warps ("
- << unknown_warps.size() << ")";
- unknown_warps.push(ds.d[x].sector);
- }
- }
- } else {
- if ((ds.d[x].warps >= best_sector.warps)) {
- if (density_clear(ds.d[x].sector, ds.d[x].density,
- ds.d[x].navhaz)) {
- if (best_sector.sector != 0) {
- BUGZ_LOG(info)
- << "Storing previous best " << best_sector.sector;
- unknown_warps.push(best_sector.sector);
- }
- best_sector = ds.d[x];
- }
- } else {
- if (density_clear(ds.d[x].sector, ds.d[x].density,
- ds.d[x].navhaz)) {
- BUGZ_LOG(info)
- << "Added " << ds.d[x].sector << " to unknown_warps ("
- << unknown_warps.size() << ")";
- unknown_warps.push(ds.d[x].sector);
- }
- }
- }
- } else {
- BUGZ_LOG(info) << "No-Op " << ds.d[x].sector << " is best.";
- best_sector = ds.d[x];
- }
- // Check density for possible port
- }
- // Check density for possible port
- }
- }
- BUGZ_LOG(warning) << "Unknown Warps: " << unknown_warps.size();
- if (best_sector.sector == 0) {
- if (unknown_warps.size() == 0) {
- to_client("No unknown warps.");
- deactivate();
- return;
- } else {
- BUGZ_LOG(warning) << "Seeking previous unexplored";
- best_sector.sector = unknown_warps.top();
- unknown_warps.pop();
- std::string message = "DEAD END";
- std::string indenter = " ";
- ANSIColor alert(COLOR::WHITE, COLOR::RED, ATTR::BOLD);
- to_client(indenter + alert() + message + reset() + "\n\r");
- }
- }
- BUGZ_LOG(warning) << "Targeting sector: " << best_sector.sector;
- if (director.current_sector != best_sector.sector) {
- md->move_to = best_sector.sector;
- director.chain = move;
- director.chain->activate();
- } else {
- BUGZ_LOG(warning) << "Targeting current sector!";
- state = 3;
- to_server("SD");
- }
- }
- void ScriptExplore::server_prompt(const std::string &prompt) {
- BUGZ_LOG(info) << "Explorer State: SP " << state;
- // next();
- if (state == 1) {
- if (at_command_prompt(prompt)) {
- if (director.galaxy.meta.contains("ship")) {
- if (!director.galaxy.meta["ship"].contains("scanner")) {
- to_client(
- "\n\rIt appears your ship doesn't have a long range "
- "scanner.\n\r");
- deactivate();
- return;
- }
- }
- state = 2;
- BUGZ_LOG(info) << "state = 1, prompting for user input";
- director.chain = input;
- input->activate();
- return;
- }
- }
- if (state == 3) {
- if (at_command_prompt(prompt)) {
- state = 4;
- BUGZ_LOG(info) << "state = 3, calculating next sector";
- next();
- }
- }
- }
- ScriptPlanet::ScriptPlanet(Director &d, const char *called)
- : Dispatch(d, called) {
- BUGZ_LOG(warning) << "ScriptPlanet()";
- if (called == nullptr) name = "Planet";
- init();
- }
- ScriptPlanet::~ScriptPlanet() { BUGZ_LOG(warning) << "~ScriptPlanet()"; }
- void ScriptPlanet::init() {
- move = std::make_shared<MoveDispatch>(director, "PlanetMove");
- md = static_cast<MoveDispatch *>(&(*move));
- md->setNotify([this]() { this->move_notify(); });
- md->use_express = true;
- trader = std::make_shared<TraderDispatch>(director, "PlanetTrader");
- td = static_cast<TraderDispatch *>(&(*trader));
- td->setNotify([this]() { this->trade_notify(); });
- input = std::make_shared<InputDispatch>(director, "PlanetInput");
- id = static_cast<InputDispatch *>(&(*input));
- id->prompt = "Which planet would you like to upgrade => ";
- id->max_length = 3;
- id->numeric = true;
- id->setNotify([this]() { this->input_notify(); });
- state = 0;
- }
- void ScriptPlanet::activate() {
- us = director.chain;
- aborted = false;
- // FUTURE: handle special case here, where we activate at planet/citadel
- // prompt
- /*
- States:
- 1 = Team List Planets
- 2 = List Planets
- 3 = Input Which planet to upgrade?
- 4 = Move to Planet
- 5 = Land, get planet information
- 6 = CU Citadel build/upgrade
- 7 = Parse Citadel needs
- 8 = Construct/upgrade ?
- 9 = to terra!
- 10 = back to the planet!
- 11 = unloading...
- 12 = resources
- 13 = moving to buyer
- 14 = moving to planet
- 15 = product unloaded
- */
- state = 1;
- // clear out the planets list -- we're refreshing.
- director.galaxy.planets.clear();
- // get planet lists
- to_server("TLQ");
- }
- void ScriptPlanet::deactivate() {
- BUGZ_LOG(warning) << "ScriptPlanet::deactivate()";
- us.reset();
- notify();
- }
- void ScriptPlanet::clear_amounts(void) {
- // clear amounts
- for (int x = 0; x < 3; x++) {
- population[x] = 0;
- amount[x] = 0;
- needs[x] = 0;
- ship[x] = 0;
- to_make_one[x] = 0;
- }
- total_population = 0;
- support_construction = 0;
- days = 0;
- }
- /**
- * @brief Best place to put colonists
- *
- * Where is the best place to put colonists?
- *
- * That would be in production where they produce the most product.
- * Where the number to make one is the least.
- *
- * @return int
- */
- int ScriptPlanet::place_colonists(void) {
- int best = 1000;
- int pos = 0;
- for (int x = 0; x < 3; x++) {
- if (to_make_one[x] != 0) {
- if (to_make_one[x] < best) {
- best = to_make_one[x];
- pos = x;
- }
- }
- }
- return pos;
- }
- void ScriptPlanet::input_notify() {
- // deactivate();
- director.chain = us;
- if (id->input.empty()) {
- deactivate();
- return;
- }
- int selected = sstoi(id->input);
- if (selected == 0) {
- deactivate();
- return;
- }
- // find the planet in our list
- auto pos = director.galaxy.planets.find(selected);
- if (pos == director.galaxy.planets.end()) {
- to_client("Sorry, I can't find that planet #.\n\r");
- deactivate();
- return;
- }
- // Check planet level, if already max, don't bother!
- // Ok, we're off to planet # selected!
- planet = selected;
- sector = pos->second.sector;
- current_level = pos->second.level;
- if (director.current_sector == sector) {
- // We're already there!
- state = 5;
- // clear out numbers
- clear_amounts();
- // Landing ...
- to_server("L");
- return;
- } else {
- // Let's get to the planet
- state = 4;
- md->move_to = sector;
- director.chain = move;
- move->activate();
- return;
- }
- }
- void ScriptPlanet::move_notify() {
- director.chain = us;
- if (md->success) {
- // Ok, we're here
- if (state == 4) {
- state = 5;
- // clear out numbers
- clear_amounts();
- to_server("L");
- return;
- } else if (state == 9) {
- // Ok, we're at terra
- to_server("LT\r");
- return;
- } else if (state == 10) {
- // Back at the planet - Land and unload
- to_server("L");
- return;
- } else if (state == 13) {
- // Ok, we're here!
- td->port[0] = current_buyfrom;
- td->port[1] = 0;
- for (int x = 0; x < 3; x++) {
- td->port_buysell[0].foe[x] = false;
- td->port_buysell[1].foe[x] = false;
- td->trades.foe[x] = false;
- }
- td->port_buysell[0].foe[current_product] = true;
- td->trades.foe[current_product] = true;
- director.chain = trader;
- td->activate();
- return;
- } else if (state == 14) {
- // We're at the planet! Time to unload!
- to_server("L");
- return;
- }
- return;
- } else {
- std::string message = "MOVE FAILED: ";
- message.append(md->why_failed);
- message.append("\n\r");
- to_client(message);
- deactivate();
- return;
- }
- }
- void ScriptPlanet::trade_notify() {
- director.chain = us;
- if (td->success) {
- if (state == 13) {
- // Ok, we have what we came from, return to the planet.
- state = 14;
- md->move_to = sector;
- director.chain = move;
- move->activate();
- return;
- }
- } else {
- to_client("Trade failed.\n\r");
- deactivate();
- return;
- }
- }
- void ScriptPlanet::server_prompt(const std::string &prompt) {
- if (state == 1) {
- if (at_command_prompt(prompt)) {
- state = 2;
- to_server("CYQ");
- return;
- }
- } else if (state == 2) {
- if (at_command_prompt(prompt)) {
- state = 3;
- if (director.galaxy.planets.empty()) {
- to_client("Sorry, I don't see that you have any planets!\n\r");
- deactivate();
- return;
- }
- for (auto const &planet : director.galaxy.planets) {
- std::string text = str(
- boost::format("%1$3d <%2$5d> Class %3% Level %4% Name %5%\n\r") %
- planet.first % planet.second.sector % planet.second.c %
- planet.second.level % planet.second.name);
- to_client(text);
- }
- director.chain = input;
- director.chain->activate();
- return;
- }
- } else if (state == 5) {
- // Are they prompting us for which planet to land on?
- // SP: [Land on which planet <Q to abort> ? ]
- if (prompt == "Land on which planet <Q to abort> ? ") {
- std::string text = std::to_string(planet) + "\r";
- to_server(text);
- return;
- }
- // SP: [Planet command (?=help) [D] ]
- if (prompt == "Planet command (?=help) [D] ") {
- // Ok, we're here on the planet. (Did we capture the planet info on
- // landing?)
- BUGZ_LOG(fatal) << "Total population: " << total_population;
- // citadel, upgrade
- // what is the message when you don't have a citadel yet?
- state = 6;
- to_server("CU");
- return;
- }
- } else if (state == 8) {
- // SP: [Do you wish to construct one? ]
- if (startswith(prompt, "Do you wish to construct ") &&
- endswith(prompt, "? ")) {
- // Do we have what we need?
- bool ready = true;
- if (total_population < support_construction) {
- ready = false;
- state = 9;
- BUGZ_LOG(fatal) << "Need people ["
- << support_construction - total_population << "]";
- }
- for (int x = 0; x < 3; ++x) {
- if (needs[x] > amount[x]) {
- if (ready) {
- ready = false;
- state = 12;
- }
- BUGZ_LOG(fatal) << "Need " << x << " :" << needs[x] - amount[x];
- }
- }
- if (ready) {
- to_server("Y");
- deactivate();
- return;
- }
- // NNY!
- if (current_level > 0) {
- to_server("NQQ");
- } else
- to_server("NQ");
- // Ok, time to start moving!
- if (state == 9) {
- md->move_to = 1;
- director.chain = move;
- md->activate();
- return;
- }
- if (state == 12) {
- // Need resources
- current_product = -1;
- for (int x = 0; x < 3; ++x) {
- if (needs[x] > amount[x]) {
- current_product = x;
- break;
- }
- }
- if (current_product == -1) {
- // I think we have everything.
- BUGZ_LOG(fatal) << "I think we've got it...";
- to_server("CUY");
- deactivate();
- return;
- } else {
- // Ok, let's find where we need to go
- current_buyfrom = director.galaxy.find_nearest_selling(
- director.current_sector, current_product);
- if (current_buyfrom == 0) {
- to_client("We weren't able to locate a port selling.\n\r");
- deactivate();
- return;
- }
- state = 13;
- md->move_to = current_buyfrom;
- director.chain = move;
- md->activate();
- return;
- }
- }
- }
- } else if (state == 9) {
- if (at_command_prompt(prompt)) {
- // Ok! We have colonists ... back to the planet!
- state = 10;
- md->move_to = sector;
- director.chain = move;
- md->activate();
- return;
- }
- } else if (state == 10) {
- if (prompt == "Land on which planet <Q to abort> ? ") {
- std::string text = std::to_string(planet) + "\r";
- to_server(text);
- return;
- }
- if (prompt == "Planet command (?=help) [D] ") {
- // Ok, on the planet.
- state = 11;
- int place = place_colonists();
- std::string unload = "SNL";
- unload.append(std::to_string(place + 1));
- unload.append("\r");
- to_server(unload);
- return;
- }
- } else if (state == 11) {
- if (prompt == "Planet command (?=help) [D] ") {
- if (total_population < support_construction) {
- // Need More - we're not in citadel.
- to_server("Q");
- state = 9;
- md->move_to = 1;
- director.chain = move;
- md->activate();
- return;
- }
- // Ok, we're ready for the next step:
- // checking the resources.
- // Need resources
- current_product = -1;
- for (int x = 0; x < 3; ++x) {
- if (needs[x] > amount[x]) {
- current_product = x;
- break;
- }
- }
- if (current_product == -1) {
- // I think we have everything.
- BUGZ_LOG(fatal) << "I think we've got it...";
- to_server("CUY");
- deactivate();
- return;
- } else {
- // Ok, let's find where we need to go
- current_buyfrom = director.galaxy.find_nearest_selling(
- director.current_sector, current_product);
- if (current_buyfrom == 0) {
- to_client("We weren't able to locate a port selling.\n\r");
- deactivate();
- return;
- }
- to_server("Q");
- state = 13;
- md->move_to = current_buyfrom;
- director.chain = move;
- md->activate();
- return;
- }
- // ending here for now. (not in citadel)
- // to_server("Q");
- // deactivate();
- // return;
-
- }
- } else if (state == 14) {
- if (prompt == "Land on which planet <Q to abort> ? ") {
- std::string text = std::to_string(planet) + "\r";
- to_server(text);
- return;
- }
- if (prompt == "Planet command (?=help) [D] ") {
- state = 15;
- std::string command = "TNL";
- command.append(std::to_string(current_product + 1));
- command.append("\r");
- to_server(command);
- return;
- }
- } else if (state == 15) {
- if (prompt == "Planet command (?=help) [D] ") {
- // Ok, we're done unloading ... what do we need next?
- // Need resources
- current_product = -1;
- for (int x = 0; x < 3; ++x) {
- if (needs[x] > amount[x]) {
- current_product = x;
- break;
- }
- }
- if (current_product == -1) {
- // I think we have everything.
- BUGZ_LOG(fatal) << "I think we've got it...";
- to_server("CUY");
- deactivate();
- return;
- } else {
- // Ok, let's find where we need to go
- current_buyfrom = director.galaxy.find_nearest_selling(
- director.current_sector, current_product);
- if (current_buyfrom == 0) {
- to_client("We weren't able to locate a port selling.\n\r");
- deactivate();
- return;
- }
- to_server("Q");
- state = 13;
- md->move_to = current_buyfrom;
- director.chain = move;
- md->activate();
- return;
- }
- }
- }
- }
- void ScriptPlanet::server_line(const std::string &line,
- const std::string &raw_line) {
- // because I'm not sending this to the client, this is all hidden from them.
- if (state == 5) {
- // Save the planet information
- /*
- SL: [ ------- --------- --------- --------- --------- ---------
- ---------] SL: [Fuel Ore 4,950 2 2,475 28,135 0
- 200,000] SL: [Organics 0 5 0 100 0
- 200,000] SL: [Equipment 128 20 6 120 0
- 100,000] SL: [Fighters N/A 24 206 2,395 200
- 1,000,000]
- */
- std::string work = line;
- replace(work, "Fuel Ore", "Fuel");
- replace(work, ",", "");
- auto parts = split(work);
- if (parts.size() == 7) {
- int pos = -1;
- if (parts[0] == "Fuel") {
- pos = 0;
- } else if (parts[0] == "Organics") {
- pos = 1;
- } else if (parts[0] == "Equipment") {
- pos = 2;
- }
- // To save:
- if (pos >= 0) {
- population[pos] = sstoi(parts[1]);
- to_make_one[pos] = sstoi(parts[2]);
- total_population += population[pos];
- amount[pos] = sstoi(parts[4]);
- // What do we have on-board the ship?
- ship[pos] = sstoi(parts[5]);
- BUGZ_LOG(fatal) << pos << " : pop " << population[pos] << " 2M1 "
- << to_make_one[pos] << " amount " << amount[pos]
- << " ship: " << ship[pos];
- }
- }
- } else if (state == 6) {
- // [Be patient, your Citadel is not yet finished.]
- if ((line == "Be patient, your Citadel is not yet finished.") ||
- (startswith(line, "You may not upgrade while"))) {
- // We're already upgrading!
- std::string work = raw_line;
- work += "\n\r";
- to_client(work);
- if (current_level > 0) {
- to_server("QQ"); // exit citadel, exit planet
- } else {
- to_server("Q"); // exit planet
- };
- deactivate();
- return;
- }
- // Citadel upgrade information (possibly)
- /*
- SL: [Citadel construction on this type of planet requires the following:]
- SL: [ 400,000 Colonists to support the construction,]
- SL: [ 150 units of Fuel Ore,]
- SL: [ 100 units of Organics,]
- SL: [ 150 units of Equipment and]
- SL: [ 2 days to construct.]
- [Construction of a Combat Control Computer on this type of planet requires]
- */
- if ((line == "Citadel construction on this type of planet requires the "
- "following:") ||
- (endswith(line, " on this type of planet requires"))) {
- state = 7;
- }
- } else if (state == 7) {
- if (line.empty()) {
- state = 8;
- } else {
- // Display the upgrade information to the client
- std::string work = raw_line;
- work += "\n\r";
- to_client(work);
- work = line;
- replace(work, ",", "");
- trim(work);
- auto pos = work.find(" Colonists to support");
- if (pos != std::string::npos) {
- support_construction = sstoi(work) / 1000;
- return;
- }
- pos = work.find(" units of Fuel");
- if (pos != std::string::npos) {
- needs[0] = sstoi(work);
- return;
- }
- pos = work.find(" units of Organics");
- if (pos != std::string::npos) {
- needs[1] = sstoi(work);
- return;
- }
- pos = work.find(" units of Equipment");
- if (pos != std::string::npos) {
- needs[2] = sstoi(work);
- return;
- }
- pos = work.find(" days to construct");
- if (pos != std::string::npos) {
- days = sstoi(work);
- return;
- }
- }
- } else if (state == 11) {
- // SL: [How many groups of Colonists do you want to leave ([125] on board)
- // ? ]
- if (startswith(line, "How many groups of Colonists do you want to leave")) {
- std::string work = line.substr(line.find('[') + 1);
- int amount = sstoi(work);
- total_population += amount;
- BUGZ_LOG(fatal) << "Population now: " << total_population;
- }
- } else if (state == 15) {
- // SL: [How many holds of Organics do you want to leave ([250] on board) ? ]
- if (startswith(line, "How many holds of ") &&
- endswith(line, "] on board) ? ")) {
- std::string work = line.substr(line.find('[') + 1);
- int amount_moved = sstoi(work);
- amount[current_product] += amount_moved;
- BUGZ_LOG(fatal) << "Planet " << current_product << " +" << amount_moved
- << " = " << amount[current_product];
- }
- }
- }
- void ScriptPlanet::client_input(const std::string &input) { deactivate(); }
|