|
@@ -322,7 +322,6 @@ ScriptExplore::ScriptExplore(Director &d) : Dispatch(d) {
|
|
|
|
|
|
ScriptExplore::~ScriptExplore() {
|
|
|
BUGZ_LOG(warning) << "~ScriptExplore()";
|
|
|
- us.reset();
|
|
|
}
|
|
|
|
|
|
void ScriptExplore::init() {
|
|
@@ -360,10 +359,12 @@ void ScriptExplore::activate() {
|
|
|
|
|
|
void ScriptExplore::deactivate() {
|
|
|
BUGZ_LOG(warning) << "ScriptExplore::deactivate()";
|
|
|
+ us.reset();
|
|
|
notify();
|
|
|
}
|
|
|
|
|
|
void ScriptExplore::move_notify() {
|
|
|
+ director.chain = us;
|
|
|
if (md->aborted) {
|
|
|
deactivate();
|
|
|
return;
|
|
@@ -379,6 +380,7 @@ void ScriptExplore::move_notify() {
|
|
|
}
|
|
|
|
|
|
void ScriptExplore::input_notify() {
|
|
|
+ director.chain = us;
|
|
|
if (id->input.empty() || id->aborted) {
|
|
|
to_client("Maybe next time.\n\r");
|
|
|
deactivate();
|
|
@@ -406,7 +408,7 @@ void ScriptExplore::input_notify() {
|
|
|
BUGZ_LOG(warning) << "Explore loops: INFINITE";
|
|
|
}
|
|
|
|
|
|
- director.chain = us;
|
|
|
+
|
|
|
to_server("SD");
|
|
|
state = 3;
|
|
|
}
|
|
@@ -424,12 +426,29 @@ void ScriptExplore::next() {
|
|
|
density_scan & ds = director.galaxy.dscan;
|
|
|
density best_sector;
|
|
|
for (int x = 0; x < ds.pos; ++x) {
|
|
|
- BUGZ_LOG(warning) << "Comparing: " << ds.d[x].sector << "(" << ds.d[x].known << ") to " << best_sector.sector;
|
|
|
+ BUGZ_LOG(warning) << "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(warning) << "Subject: " << ds.d[x].sector;
|
|
|
// Compare, Warp counts
|
|
|
if (best_sector.sector != 0) {
|
|
|
- if(ds.d[x].warps >= best_sector.warps) {
|
|
|
- best_sector = ds.d[x];
|
|
|
+ if((ds.d[x].warps >= best_sector.warps) || ((ds.d[x].density == 100 || ds.d[x].density == 101) && (best_sector.density != 100 || best_sector.density != 101))) {
|
|
|
+ if(safe_sector(ds.d[x])) {
|
|
|
+ if(best_sector.sector != 0) {
|
|
|
+ BUGZ_LOG(warning) << "Storing previous best " << best_sector.sector;
|
|
|
+ unknown_warps.push(best_sector.sector);
|
|
|
+ }
|
|
|
+ best_sector = ds.d[x];
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ if(safe_sector(ds.d[x])) {
|
|
|
+ BUGZ_LOG(warning) << "Added " << ds.d[x].sector << " to unknown_warps (" << unknown_warps.size() << ")";
|
|
|
+ unknown_warps.push(ds.d[x].sector);
|
|
|
+ }
|
|
|
}
|
|
|
} else {
|
|
|
best_sector = ds.d[x];
|
|
@@ -437,10 +456,17 @@ void ScriptExplore::next() {
|
|
|
// Check density for possible port
|
|
|
}
|
|
|
}
|
|
|
+ BUGZ_LOG(warning) << "Unknown Warps: " << unknown_warps.size();
|
|
|
if (best_sector.sector == 0) {
|
|
|
- to_client("No unknown warps.");
|
|
|
- deactivate();
|
|
|
- return;
|
|
|
+ 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();
|
|
|
+ }
|
|
|
}
|
|
|
BUGZ_LOG(warning) << "Targeting sector: " << best_sector.sector;
|
|
|
md->move_to = best_sector.sector;
|
|
@@ -448,6 +474,51 @@ void ScriptExplore::next() {
|
|
|
director.chain->activate();
|
|
|
}
|
|
|
|
|
|
+bool ScriptExplore::safe_sector(density d) { // int sector, int density) {
|
|
|
+ if (d.sector == 0) return false;
|
|
|
+ if (d.anomaly) return false;
|
|
|
+ int dense = d.density;
|
|
|
+ /*
|
|
|
+ http://wiki.classictw.com/index.php?title=Gypsy%27s_Big_Dummy%27s_Guide_to_TradeWars_Text#Trader_Information
|
|
|
+ Density Readings:
|
|
|
+ 0 = Empty Sector or Ferrengi Dreadanought
|
|
|
+ 1 = Marker Beacon
|
|
|
+ 2 = Limpet Type 2 Tracking Mine
|
|
|
+ 5 = Fighter (per Fighter)
|
|
|
+ 10 = Armid Type 1 Mine
|
|
|
+ 21 = Navigation Hazard (Per 1 Percent)
|
|
|
+ 21 = Destroyed Ship (Due to 1 Percent Nav-Haz)
|
|
|
+ 38 = Unmanned Ship
|
|
|
+ 40 = Manned Ship, Alien or Ferrengi Assault Trader
|
|
|
+ 50 = Destroyed Starport (After 25 Percent Nav-Haz Clears)
|
|
|
+ 100 = Starport or Ferrengi Battle Cruiser
|
|
|
+ 210 = Destroyed Planet (Due to 10 Percent Nav-Haz)
|
|
|
+ 462 = Federation Starship under Admiral Nelson
|
|
|
+ 489 = Federation Starship under Captain Zyrain
|
|
|
+ 500 = Planet
|
|
|
+ 512 = Federation Starship under Admiral Clausewitz
|
|
|
+ 575 = Destroyed Port (Before 25% Nav-Haz Clears)
|
|
|
+ */
|
|
|
+ // Adjust density by upto 5% navhaz (Only if navhaz less than 6%)
|
|
|
+ if(d.navhaz != 0 && d.navhaz <= 5) {
|
|
|
+ dense -= d.navhaz * 21;
|
|
|
+ }
|
|
|
+ // If navhaz above 5% report it unsafe
|
|
|
+ if (d.navhaz > 5) return false;
|
|
|
+
|
|
|
+ switch (dense) {
|
|
|
+ case 0:
|
|
|
+ case 1:
|
|
|
+ case 100:
|
|
|
+ case 101:
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ // special case for sector 1:
|
|
|
+ if ((d.sector == 1) && (dense == 601)) return true;
|
|
|
+ return false;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
void ScriptExplore::server_prompt(const std::string &prompt) {
|
|
|
BUGZ_LOG(warning) << "Explorer State: SP " << state;
|
|
|
//next();
|