Implement wayback machine (not yet complete or documented),
authorEric S. Raymond <esr@thyrsus.com>
Fri, 18 Aug 2023 20:14:51 +0000 (16:14 -0400)
committerEric S. Raymond <esr@thyrsus.com>
Fri, 18 Aug 2023 20:14:51 +0000 (16:14 -0400)
63 files changed:
sst
test/test01.chk
test/test01.log
test/test02.chk
test/test02.log
test/test03.chk
test/test03.log
test/test04.chk
test/test04.log
test/test05.chk
test/test05.log
test/test06.chk
test/test06.log
test/test07.chk
test/test07.log
test/test08.chk
test/test08.log
test/test09.chk
test/test09.log
test/test10.chk
test/test10.log
test/test11.chk
test/test11.log
test/test12.chk
test/test12.log
test/test13.chk
test/test13.log
test/test14.chk
test/test14.log
test/test15.chk
test/test15.log
test/test16.chk
test/test16.log
test/test17.chk
test/test17.log
test/test18.chk
test/test18.log
test/test19.chk
test/test19.log
test/test20.chk
test/test20.log
test/test21.chk
test/test21.log
test/test22.chk
test/test22.log
test/test23.chk
test/test23.log
test/test24.chk
test/test24.log
test/test25.chk
test/test25.log
test/test26.chk
test/test26.log
test/test27.chk
test/test27.log
test/test28.chk
test/test28.log
test/test29.chk
test/test29.log
test/test30.chk
test/test30.log
test/test31.chk
test/test31.log

diff --git a/sst b/sst
index b02bc037a83e14762e74c8aca61c81c7d35db0bb..34605034ebb06f505c6f1ec1ed845f79ebed90d8 100755 (executable)
--- a/sst
+++ b/sst
@@ -5986,8 +5986,8 @@ def choose():
     game.thawed = False
     game.skill = SKILL_NONE
     gametype = None
-    mode = None
-    while gametype is None or game.length == 0 or game.skill == SKILL_NONE or mode is None:
+    wayback = 0
+    while gametype is None or game.length == 0 or game.skill == SKILL_NONE or wayback == 0:
         eol_is_fancy = False
         if not scanner.inqueue or scanner.token == "IHEOL": # Can start with command line options
             if gametype is None:
@@ -5996,8 +5996,8 @@ def choose():
                 proutn(_("Would you like a Short, Medium, or Long game? "))
             elif game.skill == SKILL_NONE:
                 proutn(_("Are you a Novice, Fair, Good, Expert, or Emeritus player? "))
-            elif mode is None:
-                proutn(_("Choose your game style (plain, almy, fancy or just press enter): "))
+            elif wayback == 0:
+                proutn(_("Wayback setting (press enter for current year): "))
                 eol_is_fancy = True
         scanner.nexttok()
         if game.idebug:
@@ -6046,18 +6046,16 @@ def choose():
             game.skill = SKILL_EXPERT
         elif scanner.token.startswith("em"):   # emeritus
             game.skill = SKILL_EMERITUS
-        elif scanner.token.startswith("p"):            # plain
-            # Approximates the UT FORTRAN version.
-            game.options &=~ (OPTION_THOLIAN | OPTION_PLANETS | OPTION_PROBE | OPTION_RAMMING | OPTION_MVBADDY | OPTION_BLKHOLE | OPTION_BASE | OPTION_WORLDS | OPTION_COLOR | OPTION_CAPTURE | OPTION_CLOAK | OPTION_ALMY | OPTION_AUTOPASS | OPTION_DOTFILL | OPTION_ALPHAMERIC)
-            mode = "plain"
-        elif scanner.token.startswith("almy"): # almy
-            # Approximates Tom Almy's version.
-            mode = "almy"
-            game.options &=~ (OPTION_BLKHOLE | OPTION_BASE | OPTION_WORLDS | OPTION_COLOR | OPTION_DOTFILL | OPTION_ALPHAMERIC)
-        elif scanner.token.startswith("f"):            # fancy
-            mode = "fancy"
+        elif scanner.type == "IHREAL":
+            wayback = scanner.int()
+            if wayback <= 1973:
+                # Approximates the UT FORTRAN version.
+                game.options &=~ (OPTION_THOLIAN | OPTION_PLANETS | OPTION_PROBE | OPTION_RAMMING | OPTION_MVBADDY | OPTION_BLKHOLE | OPTION_BASE | OPTION_WORLDS | OPTION_COLOR | OPTION_CAPTURE | OPTION_CLOAK | OPTION_ALMY | OPTION_AUTOPASS | OPTION_DOTFILL | OPTION_ALPHAMERIC)
+            elif scanner.int() < 1980:
+                # Approximates Tom Almy's 1979 version.
+                game.options &=~ (OPTION_BLKHOLE | OPTION_BASE | OPTION_WORLDS | OPTION_COLOR | OPTION_DOTFILL | OPTION_ALPHAMERIC)
         elif (eol_is_fancy and scanner.token.startswith("\n")):
-            mode = "fancy"
+            wayback = time.localtime().tm_year
         elif scanner.token.startswith("\n"):
             continue
         elif scanner.token.startswith("idebug"):
@@ -6070,7 +6068,7 @@ def choose():
         game.idebug = True
         prout("=== Debug mode enabled.")
     if game.idebug:
-        prout("--- Setup: type=%s length=%s skill=%s mode=%s" % (gametype, game.length, game.skill, mode))
+        prout("--- Setup: type=%s length=%s skill=%s wayback=%s" % (gametype, game.length, game.skill, wayback))
     # Use parameters to generate initial values of things
     game.damfac = 0.5 * game.skill
     game.inbase = rnd.integer(BASEMIN, BASEMAX+1)
index 4407a21bcd231b241e67a1569fef68331d115c5e..a2c4e5c472671fcb09ac1fed5a4be88c910cabfa 100644 (file)
@@ -11,7 +11,7 @@
 Would you like a regular, tournament, or saved game? r
 Would you like a Short, Medium, or Long game? s
 Are you a Novice, Fair, Good, Expert, or Emeritus player? g
-Choose your game style (plain, almy, fancy or just press enter): f
+Wayback setting (press enter for current year): 2023
 
 
 Stardate 3188.
index f72bcd993276c8376ebf96c12ffdde1ce3719994..76f47f470587e58b8616816c19c40d8a7fbed7bd 100644 (file)
@@ -7,7 +7,6 @@
 r
 s
 g
-f
+2023
 chart
 quit
-n
index a16b9f8f8825dc8ee49f76434e89ab4cc879bf43..dd2ac3faf4e720e764dd12c5d0a81f031e16c930 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1556101787
-# arguments regular short good fancy
+# arguments regular short good 2023
 # SST2K version 2.4
 # Test critical hit on sensors
 # recorded by esr@snark.thyrsus.com on Wed Apr 24 06:29:47 2019
index 786d12158736cf572a3e6eeb6005cb870f1880f2..6d0bb84505e83394d0cfeeef5dbc7d9344cf7803 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1556101787
-# arguments regular short good fancy
+# arguments regular short good 2023
 # SST2K version 2.4
 # Test critical hit on sensors
 # recorded by esr@snark.thyrsus.com on Wed Apr 24 06:29:47 2019
index 9c683e4de5c2bb4c8d446419cc1b88db9c7943ef..86eed5ea17534748f6dc702bab0548ea7a1ae199 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1556102474
-# arguments regular short good fancy
+# arguments regular short good 2023
 # SST2K version 2.4
 # Test Tholian boxing us in followed by death by tractor beam
 # recorded by esr@snark.thyrsus.com on Wed Apr 24 09:48:31 2019
index 6ce4f5504e0ee25dcfdb276d8b838d772bac4b6f..47db40727d799a224502fd9bbfb9eaf2fdfc062c 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1556102474
-# arguments regular short good fancy
+# arguments regular short good 2023
 # SST2K version 2.4
 # Test Tholian boxing us in followed by death by tractor beam
 # recorded by esr@snark.thyrsus.com on Wed Apr 24 09:48:31 2019
index 8440814298e0208240446707f69ee44b2ebacdf3..72960791fff24c8010ebec63b4efdc1b38a0a0bd 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1556116333
-# arguments regular short good fancy
+# arguments regular short good 2023
 # SST2K version 2.4
 # Test starbase destruction, planet destruction, docking after destruction.
 # recorded by esr@snark.thyrsus.com on Fri Aug 11 08:59:1 3 2023
index 5d8111f9500a44c452fb1f2c6218f026acbb9a4f..cdededd0091173cba82ce8f214f12dc7a1534320 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1556116333
-# arguments regular short good fancy
+# arguments regular short good 2023
 # SST2K version 2.4
 # Test starbase destruction, planet destruction, docking after destruction.
 # recorded by esr@snark.thyrsus.com on Fri Aug 11 08:59:1 3 2023
index f9cad8fc6ea07e78492d8f91d94bb164f89e3c5f..779f4b4cddb3d63550fd5b77ccde74f0bafc95ee 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1556120044
-# arguments regular short good fancy
+# arguments regular short good 2023
 # Test deep-space probes
 # recorded by esr@snark.thyrsus.com on Wed Apr 24 11:34:04 2019
 #
index e7ce90dc9855924dcdb819ccbb9915b358938578..34972455f6aabcded2a3b347ac00bd7a5963a46f 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1556120044
-# arguments regular short good fancy
+# arguments regular short good 2023
 # Test deep-space probes
 # recorded by esr@snark.thyrsus.com on Wed Apr 24 11:34:04 2019
 #
index fa4d40ebd40f5d6c919dcda9c1f954eed39fb2c7..1dd3d307abfa02e4399174e83e57d87a5ab8b1de 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1556121767
-# arguments regular short good fancy
+# arguments regular short good 2023
 # SST2K version 2.4
 # Test shuttle landing with no crystals
 # recorded by esr@snark.thyrsus.com on Wed Apr 24 12:02:47 2019
index 31d290d685f177f96e315846f24b771bb95a65bf..0576598a8e1780c159352810ff9bb147c29456d7 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1556121767
-# arguments regular short good fancy
+# arguments regular short good 2023
 # SST2K version 2.4
 # Test shuttle landing with no crystals
 # recorded by esr@snark.thyrsus.com on Wed Apr 24 12:02:47 2019
index 5c843694eb19327192649f4146be0178c88fc704..e0ab438193c59e673e0e5f3a877e10f003996473 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1691789031
-# arguments regular medium good fancy
+# arguments regular medium good 2023
 # SST2K version 2.7
 # Test supercommander destruction.
 # recorded by esr@snark.thyrsus.com on Fri Aug 11 17:23:51 2023
index a455067a45d4ff4c0f46782d2fc6c0d1ff417373..eee5561ecdca2e9e52d7cd7c48621d082165c885 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1691789031
-# arguments regular medium good fancy
+# arguments regular medium good 2023
 # SST2K version 2.7
 # Test supercommander destruction.
 # recorded by esr@snark.thyrsus.com on Fri Aug 11 17:23:51 2023
index 0c3e6735b288104eb43e38c3f96be54258fc31d5..e9f3f4d8e977cb913403934017057f6ef20cb5cb 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1691831923
-# arguments regular medium novice fancy
+# arguments regular medium novice 2023
 # SST2K version 2.7
 # Test game-win condition
 # recorded by esr@snark.thyrsus.com on Sat Aug 12 05:18:43 2023
index 0f0e6e142ea7f2be2725a8929f6abe9c668e3469..6ff36f98d97ca6a919cc7b50ad116f651784e1bb 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1691831923
-# arguments regular medium novice fancy
+# arguments regular medium novice 2023
 # SST2K version 2.7
 # Test game-win condition
 # recorded by esr@snark.thyrsus.com on Sat Aug 12 05:18:43 2023
index 712a7322ebbe0e70e361b2d7152dfab44dc4abc3..66349ea63234dad5290862e3d4ce91ad987c6391 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1691779887
-# arguments regular medium good fancy
+# arguments regular medium good 2023
 # SST2K version 2.7
 # Test behavior of Tholian
 # recorded by esr@snark.thyrsus.com on Fri Aug 11 14:51:27 2023
index d16228450688965f58246ceae009981b6c81e59d..8438ace67f64f6269a53f164686bf44bf7147722 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1691779887
-# arguments regular medium good fancy
+# arguments regular medium good 2023
 # SST2K version 2.7
 # Test behavior of Tholian
 # recorded by esr@snark.thyrsus.com on Fri Aug 11 14:51:27 2023
index 1c9028605a5acda1dc84f3c6bf70bda6b89ddd2d..70d002763c05e70c7c5fbe621e683cb2087c9950 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1691834337
-# arguments regular medium novice fancy
+# arguments regular medium novice 2023
 # SST2K version 2.7
 # Test game timeout condition
 # recorded by esr@snark.thyrsus.com on Sat Aug 12 05:58:57 2023
index 416cc3584c9f4be3cd1a47a80fb886d963890e3c..7eef4551c1d0d7c71c06d6d0480ef9c71a1060cf 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1691834337
-# arguments regular medium novice fancy
+# arguments regular medium novice 2023
 # SST2K version 2.7
 # Test game timeout condition
 # recorded by esr@snark.thyrsus.com on Sat Aug 12 05:58:57 2023
index 716041a7513609cf37ddfa13a9a6cf3526de1fb9..85b1949e9d3c8664dd4f0d7d289e75b431887aff 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1556212919
-# arguments regular short good fancy
+# arguments regular short good 2023
 # SST2K version 2.5
 # Test loss by energy exhaustion.
 # recorded by esr@snark.thyrsus.com on Thu Apr 25 13:21:59 2019
index b158c1a0f9d298378816969101564cf143ba014a..fef6d6291c37a873854a15b75bcdb220d19b8260 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1556212919
-# arguments regular short good fancy
+# arguments regular short good 2023
 # SST2K version 2.5
 # Test loss by energy exhaustion.
 # recorded by esr@snark.thyrsus.com on Thu Apr 25 13:21:59 2019
index 85b11f72a03ae42e3fdfe5f330fe12d2cba68a9a..48d6620755357c980a06dbec9fe08904c24726fa 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1691778615
-# arguments regular medium good fancy
+# arguments regular medium good 2023
 # SST2K version 2.7
 # Test dilithium mining
 # recorded by esr@snark.thyrsus.com on Fri Aug 11 14:30:15 2023
index 3ed5c87ee772047a6d670421d8c15c336b01e92f..e811ce5b17010063700de77d4407e11c7a85c43d 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1691778615
-# arguments regular medium good fancy
+# arguments regular medium good 2023
 # SST2K version 2.7
 # Test dilithium mining
 # recorded by esr@snark.thyrsus.com on Fri Aug 11 14:30:15 2023
index e5374b4befc8f1c056657e99e6ff0acf9eb37ef2..98d5ca6693b2da54f6897f8370615040e35eeabe 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1556292107
-# arguments regular short good fancy
+# arguments regular short good 2023
 # SST2K version 2.5
 # Test multiple critical hits ending in defeat by Supercommander
 # recorded by esr@snark.thyrsus.com on Fri Apr 26 11:21:47 2019
index 5fecaf79bbb8abe9d358267a774208ae441bd5e8..256d5117475887ea0fc7be2d4e50193e1bce6388 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1556292107
-# arguments regular short good fancy
+# arguments regular short good 2023
 # SST2K version 2.5
 # Test multiple critical hits ending in defeat by Supercommander
 # recorded by esr@snark.thyrsus.com on Fri Apr 26 11:21:47 2019
index 0ee7bdc4f72313aca34e32d04b86625445fdcc99..50544e3b4b3219d0ceb38c09cab64bda5d8b67d2 100644 (file)
@@ -11,7 +11,7 @@
 Would you like a regular, tournament, or saved game? r
 Would you like a Short, Medium, or Long game? s
 Are you a Novice, Fair, Good, Expert, or Emeritus player? n
-Choose your game style (plain, almy, fancy or just press enter): fancy
+Wayback setting (press enter for current year): 2023
 
 
 It is stardate 3221. The Federation is being attacked by
index 46a417e9f7c284165e3d8061bcde6128ab74cc46..e2cdd71745a453f5314e6c0c703a38ce23e10291 100644 (file)
@@ -7,7 +7,7 @@
 r
 s
 n
-fancy
+2023
 lrscan
 srscan
 move
index 220c0b6e8cf46e775e16fa86c529623bacc9d8bb..d12b3b6b17b91926ff9dab53d93632da37b40c21 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1691766356
-# arguments regular medium good fancy
+# arguments regular medium good 2023
 # SST2K version 2.7
 # Test encounter with Romulan and multiline torpedo firing
 # recorded by esr@snark.thyrsus.com on Fri Aug 11 11:05:56 2023
index 8f4c60ce959ffc1bdb2a8980518f87007fa81124..d533253240b7aaee9f24c0e9f0613f7019ca63a8 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1691766356
-# arguments regular medium good fancy
+# arguments regular medium good 2023
 # SST2K version 2.7
 # Test encounter with Romulan and multiline torpedo firing
 # recorded by esr@snark.thyrsus.com on Fri Aug 11 11:05:56 2023
index 68a4f6bfe1c736b80c47cf2c10d337a788b1cd4f..1880db7698eefe4da6223d19582c9db52df6ebf2 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1691769251
-# arguments regular medium good fancy
+# arguments regular medium good 2023
 # SST2K version 2.7
 # Test malformed torpedo command
 # recorded by esr@snark.thyrsus.com on Fri Aug 11 11:54:11 2023
index c2d7f4d588425f00be3316bd9fd3990d2ba6fd69..43339577014ef5f34c97a756cf31ab00de01d84d 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1691769251
-# arguments regular medium good fancy
+# arguments regular medium good 2023
 # SST2K version 2.7
 # Test malformed torpedo command
 # recorded by esr@snark.thyrsus.com on Fri Aug 11 11:54:11 2023
index 10a5406605d703865cba38c651eb4056b44bb4df..63d0d5403880f19f6f350aa384100b08e766c4d0 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1691774489
-# arguments regular medium good fancy
+# arguments regular medium good 2023
 # SST2K version 2.7
 # Test commander destruction and supernova alert
 # recorded by esr@snark.thyrsus.com on Fri Aug 11 13:31:26 2023
index 6768ecded58652a511782e1ed10b0510139ea882..cab0e910c4a72c1381e239357fc886c2cd01cd56 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1691774489
-# arguments regular medium good fancy
+# arguments regular medium good 2023
 # SST2K version 2.7
 # Test commander destruction and supernova alert
 # recorded by esr@snark.thyrsus.com on Fri Aug 11 13:31:26 2023
index ae83379c65e445582f353ca3c582344f8006ac06..cec7498fa1b211445dd09cceb83c79d943dc0346 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1691786582
-# arguments regular medium good fancy
+# arguments regular medium good 2023
 # SST2K version 2.7
 # Test behavior when emy is buffered into black hole
 # recorded by esr@snark.thyrsus.com on Fri Aug 11 16:43:02 2023
index 9d11e50d6eb1143a2f480ecb6b90029bc916ef47..67c29253e48fcbed45bc592266155a5ff1d917a1 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1691786582
-# arguments regular medium good fancy
+# arguments regular medium good 2023
 # SST2K version 2.7
 # Test behavior when emy is buffered into black hole
 # recorded by esr@snark.thyrsus.com on Fri Aug 11 16:43:02 2023
index bb6edfa84e4e319f0f6615295a120c2fd68a4b7f..75b4186fb25ba45fd2b7940451149eb852eeeabc 100644 (file)
@@ -1,7 +1,7 @@
 # seed 1692088612
-# arguments regular medium novice plain
+# arguments regular medium novice 1973
 # SST2K version 2.7
-# Test plain interface and old-fashioned coordinates
+# Test 1973 interface and old-fashioned coordinates
 # recorded by esr@snark.thyrsus.com on Tue Aug 15 04:36:52 2023
 #
 
index ff73e57df8ba1c4ae7a60577c5883af93f44c030..272e39d073c79f6d4c07ab31370297892102423f 100644 (file)
@@ -1,7 +1,7 @@
 # seed 1692088612
-# arguments regular medium novice plain
+# arguments regular medium novice 1973
 # SST2K version 2.7
-# Test plain interface and old-fashioned coordinates
+# Test 1973 interface and old-fashioned coordinates
 # recorded by esr@snark.thyrsus.com on Tue Aug 15 04:36:52 2023
 #
 foo
index 8f599d321d6530f880ded3267c671c2b41cffb44..257f656b3daeffda47b33e455fae6104ea4b1e43 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692093194
-# arguments regular medium novice fancy
+# arguments regular medium novice 2023
 # SST2K version 2.7
 # Test self-destruct
 # recorded by esr@snark.thyrsus.com on Tue Aug 15 05:53:14 2023
index 222d5924adc350ba932fa6f59f37c0969b3f5ad0..2764a2bb490d108f6e0ed09398a3c85c0e5155b2 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692093194
-# arguments regular medium novice fancy
+# arguments regular medium novice 2023
 # SST2K version 2.7
 # Test self-destruct
 # recorded by esr@snark.thyrsus.com on Tue Aug 15 05:53:14 2023
index 6dd69e3609256b448ddd642839e2f8df8f152ffc..7035a56e20b6b2f22c4637d8d8ddf5a3c1df18f6 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692093957
-# arguments regular medium novice fancy
+# arguments regular medium novice 2023
 # SST2K version 2.7
 # Test edge and failure cases in coordinate parsing
 # recorded by esr@snark.thyrsus.com on Tue Aug 15 06:05:57 2023
index 8b5f1cc882eb852ef95ad6631345330921f1146a..d19621e15543ef82e90a6e2cbcd9a2faac23d7a0 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692093957
-# arguments regular medium novice fancy
+# arguments regular medium novice 2023
 # SST2K version 2.7
 # Test edge and failure cases in coordinate parsing
 # recorded by esr@snark.thyrsus.com on Tue Aug 15 06:05:57 2023
index f7bf37f20e4fad4226b5aef02dc5472b0f5fc36b..7861ca3d775501201761aa48a57d310977a5d547 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692177511
-# arguments regular medium novice fancy
+# arguments regular medium novice 2023
 # SST2K version 2.7
 # Test torpedoing uninhabited planet
 # recorded by esr@snark.thyrsus.com on Wed Aug 16 05:18:31 2023
index a74a8e6bd3dd0ff55363eda6a9560521a2550cbd..54d6534dca0b024787e062329cea4e9abe087f69 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692177511
-# arguments regular medium novice fancy
+# arguments regular medium novice 2023
 # SST2K version 2.7
 # Test torpedoing uninhabited planet
 # recorded by esr@snark.thyrsus.com on Wed Aug 16 05:18:31 2023
index 97c36deb71e56d6a3c766c976b1a6b4fe4707162..1212f1e9b457ab670f71bd2fc42aba1d2716380c 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692177676
-# arguments regular medium novice fancy
+# arguments regular medium novice 2023
 # SST2K version 2.7
 # Test torpedoing inhabited planet and starbase
 # recorded by esr@snark.thyrsus.com on Wed Aug 16 05:21:16 2023
index e0aa841888b038b26462ff07e03d1932f16b118e..0a5a56acae554d57b4f9eb2d9a56f80c78c46a85 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692177676
-# arguments regular medium novice fancy
+# arguments regular medium novice 2023
 # SST2K version 2.7
 # Test torpedoing inhabited planet and starbase
 # recorded by esr@snark.thyrsus.com on Wed Aug 16 05:21:16 2023
index 9a88b8b2a31519e0ecbf8a8ea231cfffa9886196..5a46a3873fae419b4006f676fd0b94af8065b5f1 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692177875
-# arguments regular medium novice fancy
+# arguments regular medium novice 2023
 # SST2K version 2.7
 # Test cloaking device with no enemies present
 # recorded by esr@snark.thyrsus.com on Wed Aug 16 05:24:35 2023
index 52967e426923d24c111a1fa4dc95d8ae74e6dd76..d1a0fb7f86c0366af29da2dbf76c030ac45b9600 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692177875
-# arguments regular medium novice fancy
+# arguments regular medium novice 2023
 # SST2K version 2.7
 # Test cloaking device with no enemies present
 # recorded by esr@snark.thyrsus.com on Wed Aug 16 05:24:35 2023
index 6b5857e4136ad047b064334911b8e311921615c1..b3f01c93e630aa63ad66b02d876c865469e93e3b 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692263971
-# arguments regular medium expert fancy
+# arguments regular medium expert 2023
 # SST2K version 2.7
 # Test death ray (successful)
 # recorded by esr@snark.thyrsus.com on Thu Aug 17 05:19:31 2023
index f3761b7d6aa0aab9c98576d88d8e79568c524e96..a529d9dcfaa18f429729dd27964b01a7062e7308 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692263971
-# arguments regular medium expert fancy
+# arguments regular medium expert 2023
 # SST2K version 2.7
 # Test death ray (successful)
 # recorded by esr@snark.thyrsus.com on Thu Aug 17 05:19:31 2023
index ce637f87b358eb66bb877238dd14cc6cead5d5b9..3049136c9b2b3b8745cd47b529a3b17e02199301 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692178191
-# arguments regular medium novice fancy
+# arguments regular medium novice 2023
 # SST2K version 2.7
 # Test damage-report command (no damage)
 # recorded by esr@snark.thyrsus.com on Wed Aug 16 05:29:51 2023
index 953cac953c4c6a2806bbb0cd604fa5d0005a36c9..a6e443553e5ac2d547aaae9313818ed70fd5f2a9 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692178191
-# arguments regular medium novice fancy
+# arguments regular medium novice 2023
 # SST2K version 2.7
 # Test damage-report command (no damage)
 # recorded by esr@snark.thyrsus.com on Wed Aug 16 05:29:51 2023
index bf76118fb45a83288c3008776e1f0e65c98a1c02..3db0c8368d8f57b5772f3161ba1208ee10492ac4 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692178540
-# arguments regular medium novice fancy
+# arguments regular medium novice 2023
 # SST2K version 2.7
 # Test simple collision and damage treport.
 # recorded by esr@snark.thyrsus.com on Wed Aug 16 05:35:40 2023
index 31c8676acf2687d5396aeca89e59260ca66bc424..59526dd7fca533a5d60697dde3295912b854b540 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692178540
-# arguments regular medium novice fancy
+# arguments regular medium novice 2023
 # SST2K version 2.7
 # Test simple collision and damage treport.
 # recorded by esr@snark.thyrsus.com on Wed Aug 16 05:35:40 2023
index 0d28e057ff39d30740f920c452ecc01dbdcb6a72..cff579264e6a221053634d50447cc9cef32ce459 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692187822
-# arguments regular medium novice fancy
+# arguments regular medium novice 2023
 # SST2K version 2.7
 # Test encounter with Space Thingy and torperdoing it
 # recorded by esr@snark.thyrsus.com on Wed Aug 16 08:28:50 2023
index f30887c92a6042b70903e874f00eb27aa444aa26..246ff28fdf7bc7ac5a6dbac0727631f662113478 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692187822
-# arguments regular medium novice fancy
+# arguments regular medium novice 2023
 # SST2K version 2.7
 # Test encounter with Space Thingy and torperdoing it
 # recorded by esr@snark.thyrsus.com on Wed Aug 16 08:28:50 2023
index 13bb8af5e5bb038d84224a3e30b692116e6130de..a7b9a76841826fde60104ae565235e6d1c18ac3f 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692210781
-# arguments regular medium expert fancy
+# arguments regular medium expert 2023
 # SST2K version 2.7
 # Test capture - trdsuccessful
 # recorded by esr@snark.thyrsus.com on Wed Aug 16 14:33:01 2023
index 36b024d8c090edbe10b89941596ac4874744c671..14aabd3b33777d1a3ee0f0647424227c5d771e0c 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692210781
-# arguments regular medium expert fancy
+# arguments regular medium expert 2023
 # SST2K version 2.7
 # Test capture - trdsuccessful
 # recorded by esr@snark.thyrsus.com on Wed Aug 16 14:33:01 2023
index cefd344f76563eb130826421f356335b6b2de1e5..cfebdb75aeb7f62169c3484c8b6460af9d159222 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692212577
-# arguments regular medium expert fancy
+# arguments regular medium expert 2023
 # SST2K version 2.7
 # Test death ray - failure (kaboom)
 # recorded by esr@snark.thyrsus.com on Wed Aug 16 15:02:57 2023
index 4b99d2355e31549f719aaaebc48a0632baf0c7f3..7e0dbe09ba3ebbaa08b507c773cabb4f4d908eb6 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692212577
-# arguments regular medium expert fancy
+# arguments regular medium expert 2023
 # SST2K version 2.7
 # Test death ray - failure (kaboom)
 # recorded by esr@snark.thyrsus.com on Wed Aug 16 15:02:57 2023
index 08b12248d3567c30b5a6c9166eb13922673fa393..7c14efe9eef8d1b74b20a0a4c87c693b85d58ff6 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692263709
-# arguments regular medium expert fancy
+# arguments regular medium expert 2023
 # SST2K version 2.7
 # Test death ray - fail (mutation)
 # recorded by esr@snark.thyrsus.com on Thu Aug 17 05:15:09 2023
index 32949463c5f4f74860fef231f49949cc35418e9e..f035a46728822e98e7d5ec398b1cd642236855d6 100644 (file)
@@ -1,5 +1,5 @@
 # seed 1692263709
-# arguments regular medium expert fancy
+# arguments regular medium expert 2023
 # SST2K version 2.7
 # Test death ray - fail (mutation)
 # recorded by esr@snark.thyrsus.com on Thu Aug 17 05:15:09 2023