|
@@ -530,6 +530,7 @@ void MoveDispatch::server_line(const std::string &line,
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+/*
|
|
bool MoveDispatch::density_clear(density d) { // int sector, int density) {
|
|
bool MoveDispatch::density_clear(density d) { // int sector, int density) {
|
|
/*
|
|
/*
|
|
http://wiki.classictw.com/index.php?title=Gypsy%27s_Big_Dummy%27s_Guide_to_TradeWars_Text#Trader_Information
|
|
http://wiki.classictw.com/index.php?title=Gypsy%27s_Big_Dummy%27s_Guide_to_TradeWars_Text#Trader_Information
|
|
@@ -551,7 +552,7 @@ bool MoveDispatch::density_clear(density d) { // int sector, int density) {
|
|
500 = Planet
|
|
500 = Planet
|
|
512 = Federation Starship under Admiral Clausewitz
|
|
512 = Federation Starship under Admiral Clausewitz
|
|
575 = Destroyed Port (Before 25% Nav-Haz Clears)
|
|
575 = Destroyed Port (Before 25% Nav-Haz Clears)
|
|
- */
|
|
|
|
|
|
+ */ /*
|
|
if (d.sector == 0) return false;
|
|
if (d.sector == 0) return false;
|
|
|
|
|
|
switch (d.density) {
|
|
switch (d.density) {
|
|
@@ -564,7 +565,7 @@ bool MoveDispatch::density_clear(density d) { // int sector, int density) {
|
|
// special case for sector 1:
|
|
// special case for sector 1:
|
|
if ((d.sector == 1) && (d.density == 601)) return true;
|
|
if ((d.sector == 1) && (d.density == 601)) return true;
|
|
return false;
|
|
return false;
|
|
-}
|
|
|
|
|
|
+} */
|
|
|
|
|
|
void MoveDispatch::server_prompt(const std::string &prompt) {
|
|
void MoveDispatch::server_prompt(const std::string &prompt) {
|
|
BUGZ_LOG(fatal) << "server_prompt: " << prompt;
|
|
BUGZ_LOG(fatal) << "server_prompt: " << prompt;
|
|
@@ -579,7 +580,7 @@ void MoveDispatch::server_prompt(const std::string &prompt) {
|
|
density d = director.galaxy.dscan.find(move_to);
|
|
density d = director.galaxy.dscan.find(move_to);
|
|
if (d.sector == move_to) {
|
|
if (d.sector == move_to) {
|
|
// Yes! we found the sector in the scan!
|
|
// Yes! we found the sector in the scan!
|
|
- if (!density_clear(d)) {
|
|
|
|
|
|
+ if (!density_clear(d.sector, d.density, d.navhaz)) {
|
|
BUGZ_LOG(fatal) << "Failed density check on single move.";
|
|
BUGZ_LOG(fatal) << "Failed density check on single move.";
|
|
why_failed = str(boost::format("Density of %1% at %2%.") % move_to % d.density ); // density of move_to ...
|
|
why_failed = str(boost::format("Density of %1% at %2%.") % move_to % d.density ); // density of move_to ...
|
|
success = false;
|
|
success = false;
|
|
@@ -613,7 +614,7 @@ void MoveDispatch::server_prompt(const std::string &prompt) {
|
|
int density =
|
|
int density =
|
|
director.galaxy.meta["density"][to_check]["density"].as<int>();
|
|
director.galaxy.meta["density"][to_check]["density"].as<int>();
|
|
*/
|
|
*/
|
|
- if (density_clear(d)) { // to_check, density)) {
|
|
|
|
|
|
+ if (density_clear(d.sector, d.density, d.navhaz)) { // to_check, density)) {
|
|
to_server("S");
|
|
to_server("S");
|
|
++warp_pos;
|
|
++warp_pos;
|
|
} else {
|
|
} else {
|
|
@@ -634,11 +635,7 @@ void MoveDispatch::server_prompt(const std::string &prompt) {
|
|
if (prompt == "Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N] ? ") {
|
|
if (prompt == "Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N] ? ") {
|
|
int to_check = warp_lane[warp_pos + 1];
|
|
int to_check = warp_lane[warp_pos + 1];
|
|
density d = director.galaxy.dscan.find(to_check);
|
|
density d = director.galaxy.dscan.find(to_check);
|
|
- /*
|
|
|
|
- int density =
|
|
|
|
- director.galaxy.meta["density"][to_check]["density"].as<int>();
|
|
|
|
- */
|
|
|
|
- if (density_clear(d)) {
|
|
|
|
|
|
+ if (density_clear(d.sector, d.density, d.navhaz)) {
|
|
to_server("N");
|
|
to_server("N");
|
|
++warp_pos;
|
|
++warp_pos;
|
|
state = 4;
|
|
state = 4;
|