Selaa lähdekoodia

Merge branch 'master' of ssh://gitredgreen/RedGreen/twproxy2

This merge ie necessary because git is weird.
Steve Thielemann 3 vuotta sitten
vanhempi
commit
90e3fc094e
1 muutettua tiedostoa jossa 21 lisäystä ja 0 poistoa
  1. 21 0
      dispatchers.cpp

+ 21 - 0
dispatchers.cpp

@@ -531,6 +531,27 @@ void MoveDispatch::server_line(const std::string &line,
 }
 
 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
+  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)
+  */
   if (d.sector == 0) return false;
 
   switch (d.density) {