QB64.org Forum

Active Forums => Programs => Topic started by: romichess on December 08, 2019, 07:04:46 am

Title: Beyond Sol
Post by: romichess on December 08, 2019, 07:04:46 am
The game lives! Save humanity from the alien threat!!

To play just click on one of your stars. Then click (don't drag) on any other star and then send ships. That is all there is to it. The esc key exits the game. The "t' key toggles the star names. Look for the blue star. That is Sol the human's home star. I will probably change the color as it is one of the harder colors to see.

Missing features I'll add in the next few days. A pause key and a save/load game.

When playing it is better to be slow and careful rather than fast and reckless, :).

Code: QB64: [Select]
  1. TYPE stars
  2.     n AS STRING * 10 '                 Name of star
  3.     x AS INTEGER '                     x-position
  4.     y AS INTEGER '                     y-position
  5.     o AS INTEGER '                     Owner
  6.     c AS INTEGER '                     Color
  7.     s AS INTEGER '                     Size
  8.     t AS INTEGER '                     (Type of planetary system; terran, frozen, radiated, toxic, etc.) Ships
  9.     p AS INTEGER '                     (Population) For now ships produced per turn
  10.  
  11. TYPE FLEETS
  12.     n AS INTEGER
  13.     x1 AS INTEGER
  14.     y1 AS INTEGER
  15.     x2 AS INTEGER
  16.     y2 AS INTEGER
  17.     o AS INTEGER
  18.     d AS INTEGER
  19.  
  20. 'DECLARE SUB NewGame
  21. 'DECLARE SUB PaintStars
  22. 'DECLARE SUB StarNames
  23. 'DECLARE SUB ShowPanel (i)
  24. 'DECLARE SUB Identify (x, y)
  25. 'DECLARE SUB PaintBackground
  26. 'DECLARE SUB GetInput
  27.  
  28. ' Global variables shared because they are needed in more than one routine
  29. DIM SHARED sw AS INTEGER '             Screen Width
  30. DIM SHARED sh AS INTEGER '             Screen Height
  31. DIM SHARED sww AS INTEGER '            Screen Width Wide margin
  32. DIM SHARED swn AS INTEGER '            Screen Width Narrow adjustment
  33. DIM SHARED shw AS INTEGER '            Screen Height Wide margine
  34. DIM SHARED shn AS INTEGER '            Screen Height Narrow adjustment
  35. DIM SHARED nw AS INTEGER '             games Natural screen Width
  36. DIM SHARED nh AS INTEGER '             games Natural screen Height
  37. DIM SHARED ratio AS _FLOAT '           the Ratio of the games natural screen width to the actual
  38. DIM SHARED star(100) AS stars '        100 stars - may change
  39. DIM SHARED names(200) AS STRING * 10 ' 200 star names
  40. DIM SHARED seed AS INTEGER '           Seed to prime the Randomizer to display identical background each frame
  41. DIM SHARED home(6) AS INTEGER '        The starting star for each player. The human always has star(0), Sol
  42. DIM SHARED tt AS INTEGER '             tt = 0 star names displayed, tt = 0 star names not didplayed
  43. DIM SHARED ch AS STRING * 1 '          Game loop key input variable
  44. DIM SHARED repeat AS INTEGER '         Game loop control variable
  45. DIM SHARED fleet(1000) AS FLEETS
  46. DIM SHARED srcstr AS STRING * 10
  47. DIM SHARED dststr AS STRING * 10
  48. DIM SHARED panx, pany AS INTEGER
  49. DIM SHARED strng AS STRING * 10
  50.  
  51. sw = _DESKTOPWIDTH '                   native video with of syatem
  52. sww = sw / 24 '                        margin based on native video width to keep stars away from edge
  53. swn = sw / 48 '                        adjustment that works with sww to keep stars away from left and top of screen
  54. nw = 1920
  55.  
  56. ratio = sw / 1920 '                    Used to adjust distances and sizes for various screen modes
  57.  
  58. shw = sh / 20
  59. shn = sh / 40
  60. nh = 1080
  61.  
  62. tt = 0
  63. cx = sw
  64. cp = 100
  65. h = 100
  66. ar = 0
  67. rng = 200
  68. slct = 0
  69. strng = ""
  70.  
  71. SCREEN _NEWIMAGE(sw, sh, 256) '        creates a screen the resolution of the users native system
  72.  
  73.  
  74. ps = _NEWIMAGE(400 * ratio, 540 * ratio, 256)
  75.  
  76. StarNames '                            Routine to load star names into string array stars(200)
  77.  
  78. NewGame
  79.  
  80. ttf1 = _LOADFONT("cyberbit.ttf", 14, "BOLD")
  81. ttf2 = _LOADFONT("cyberbit.ttf", 72, "BOLD")
  82.  
  83. repeat = 1
  84.  
  85. WHILE repeat
  86.  
  87.     _LIMIT 60 '                        Set to 60 frames per second
  88.  
  89.     CLS
  90.  
  91.     PaintBackground
  92.  
  93.     PaintStars
  94.  
  95.     PaintFleet
  96.  
  97.     GetInput
  98.  
  99.     Player
  100.  
  101.     Identify x, y '                    Identify star mouse is over if any
  102.  
  103.     Computer
  104.  
  105.     _DISPLAY
  106.  
  107.  
  108.  
  109. SUB PaintFleet
  110.     count = fltcnt
  111.     i = 0
  112.     WHILE count
  113.         IF fleet(i).o <> 0 THEN
  114.             CIRCLE (fleet(i).x1, fleet(i).y1), 3, fleet(i).o + 8
  115.             count = count - 1
  116.         END IF
  117.         i = i + 1
  118.     WEND
  119.  
  120. SUB SendFleet (org, dst, ships)
  121.     IF ships = 0 THEN
  122.  
  123.     END IF
  124.     FOR i = 0 TO 999
  125.         IF fleet(i).o = 0 THEN
  126.             fleet(i).o = star(org).o
  127.             fleet(i).d = dst
  128.             fleet(i).x1 = star(org).x
  129.             fleet(i).y1 = star(org).y
  130.             fleet(i).x2 = star(dst).x
  131.             fleet(i).y2 = star(dst).y
  132.             fleet(i).n = ships
  133.             star(org).t = star(org).t - ships
  134.             fltcnt = fltcnt + 1
  135.             IF rng < 4000 THEN rng = rng + 4
  136.             EXIT FOR
  137.         END IF
  138.     NEXT
  139.     LL = LL + 1
  140.  
  141. SUB Computer
  142.     FOR i = 0 TO 99
  143.         r = INT(RND * 120)
  144.         IF r < star(i).p THEN
  145.             IF star(i).o > 0 THEN
  146.                 star(i).t = star(i).t + 1
  147.             ELSE
  148.                 IF INT(RND * 10) < 2 THEN
  149.                     star(i).t = star(i).t + 1
  150.                 END IF
  151.             END IF
  152.         END IF
  153.     NEXT
  154.     num = 0
  155.     FOR i = 2 TO 6
  156.         FOR j = 0 TO 99
  157.             IF star(j).o = i THEN
  158.                 IF star(j).t > num THEN
  159.                     num = star(j).t
  160.                     idx = j
  161.                 END IF
  162.             END IF
  163.         NEXT
  164.         org = idx
  165.         num = 10000
  166.         FOR j = 0 TO 99
  167.             IF star(j).o <> i THEN
  168.                 sway = ABS(star(org).x - star(j).x) + ABS(star(org).y - star(j).y)
  169.                 IF sway < rng AND star(j).t + SQR(sway) < num THEN
  170.                     num = star(j).t
  171.                     idx = j
  172.                 END IF
  173.             END IF
  174.         NEXT
  175.         dst = idx
  176.         IF star(org).t > LL THEN
  177.             IF star(org).t > 100 AND star(org).t > star(dst).t * 2 THEN
  178.                 SendFleet org, dst, star(org).t / 2
  179.             ELSE
  180.                 dst = home(star(org).o)
  181.                 SendFleet org, dst, star(org).t / 2
  182.             END IF
  183.         END IF
  184.     NEXT
  185.     count = fltcnt
  186.     i = 0
  187.     WHILE count
  188.         IF fleet(i).o <> 0 THEN
  189.             count = count - 1
  190.             IF fleet(i).x2 > fleet(i).x1 THEN
  191.                 fleet(i).x1 = fleet(i).x1 + 1
  192.             END IF
  193.             IF fleet(i).x2 < fleet(i).x1 THEN
  194.                 fleet(i).x1 = fleet(i).x1 - 1
  195.             END IF
  196.             IF fleet(i).y2 > fleet(i).y1 THEN
  197.                 fleet(i).y1 = fleet(i).y1 + 1
  198.             END IF
  199.             IF fleet(i).y2 < fleet(i).y1 THEN
  200.                 fleet(i).y1 = fleet(i).y1 - 1
  201.             END IF
  202.             IF fleet(i).x1 = fleet(i).x2 AND fleet(i).y1 = fleet(i).y2 THEN
  203.                 dst = fleet(i).d
  204.                 IF star(dst).o = fleet(i).o THEN
  205.                     star(dst).t = star(dst).t + fleet(i).n
  206.                     fleet(i).o = 0
  207.                     fltcnt = fltcnt - 1
  208.                 ELSE
  209.                     alive = 1
  210.                     WHILE alive
  211.                         alive = 0
  212.                         damorg = fleet(i).n / 11 + 1
  213.                         damdst = star(dst).t / 10 + 1
  214.                         fleet(i).n = fleet(i).n - damdst
  215.                         star(dst).t = star(dst).t - damorg
  216.                         IF fleet(i).n > 0 AND star(dst).t > 0 THEN
  217.                             alive = 1
  218.                         END IF
  219.                     WEND
  220.                     IF star(dst).t < 1 THEN
  221.                         star(dst).t = fleet(i).n
  222.                         star(dst).o = fleet(i).o
  223.                     END IF
  224.                     fleet(i).o = 0
  225.                     fltcnt = fltcnt - 1
  226.                 END IF
  227.             END IF
  228.         END IF
  229.         i = i + 1
  230.     WEND
  231.  
  232. SUB GetInput
  233.  
  234.     ch = INKEY$
  235.     IF ch = CHR$(27) THEN repeat = 0
  236.     IF ch = "n" THEN NewGame
  237.     IF ch = "t" THEN tt = 1 - tt
  238.     ch = ""
  239.  
  240.     WHILE _MOUSEINPUT: WEND '          Eat all the mice but keep last mouse to toy with
  241.  
  242.     x = _MOUSEX
  243.     y = _MOUSEY
  244.     mb = _MOUSEBUTTON(1)
  245.     clk = 0
  246.  
  247.     IF mb = -1 AND cx = sw THEN
  248.         cx = x
  249.         cy = y
  250.     END IF
  251.  
  252.     IF mb = 0 AND cx < sw THEN
  253.         IF ABS(x - cx) < 4 AND ABS(y - cy) < 4 THEN
  254.             clk = 1
  255.         END IF
  256.         cx = sw
  257.     END IF
  258.  
  259. SUB PaintBackground
  260.     x = RND * sw
  261.     y = RND * sh
  262.     c = RND * 14 + 1
  263.     PSET (x, y), c
  264.     RANDOMIZE USING seed
  265.     FOR i = 1 TO 600 * ratio
  266.         x = RND * sw
  267.         y = RND * sh
  268.         c = RND * 14 + 1
  269.         PSET (x, y), c
  270.     NEXT
  271.  
  272. SUB Player
  273.     tmp$ = RTRIM$(strng)
  274.     IF slct = 1 THEN
  275.         LINE (px, py)-(x, y), 10
  276.     END IF
  277.     IF pact = 1 THEN
  278.         ShowPanel ii
  279.         IF clk = 1 THEN
  280.             x1 = panx: x2 = panx + 400 * ratio
  281.             y1 = pany: y2 = pany + 540 * ratio
  282.             IF x > x1 + 216 * ratio AND x < x1 + 366 * ratio AND y > y1 + 460 * ratio AND y < y1 + 530 * ratio THEN
  283.                 pact = 0
  284.             END IF
  285.             IF x > x1 + 20 AND x < x1 + 380 AND y > y1 + 260 AND y < y1 + 320 THEN
  286.                 dig = (x - x1 - 32) / 38
  287.                 strng = tmp$ + STR$(dig)
  288.             END IF
  289.             IF x > x1 + 266 AND x < x1 + 366 AND y > y1 + 366 AND y < y1 + 406 THEN
  290.                 strng = ""
  291.             END IF
  292.             IF x > x1 + 32 AND x < x1 + 182 AND y > y1 + 460 AND y < y1 + 530 THEN
  293.                 value = VAL(strng)
  294.                 strng = ""
  295.                 pact = 0
  296.                 SendFleet srcidx, dstidx, value
  297.             END IF
  298.         END IF
  299.     END IF
  300.  
  301. SUB Identify (x, y)
  302.     FOR i = 0 TO 99
  303.         dx = star(i).x - x
  304.         dy = star(i).y - y
  305.         IF pact = 0 AND ABS(dx) <= star(i).s + 6 AND ABS(dy) <= star(i).s + 6 THEN
  306.             ii = i
  307.             IF star(i).o = 1 AND slct = 0 THEN
  308.                 IF clk THEN
  309.                     slct = 1
  310.                 END IF
  311.                 px = x
  312.                 py = y
  313.                 srcstr = star(i).n
  314.                 srcidx = i
  315.             ELSE
  316.                 IF slct = 1 OR pact = 1 THEN
  317.                     IF clk THEN
  318.                         slct = 0
  319.                         pact = 1
  320.                         dststr = star(i).n
  321.                         dstidx = i
  322.                     END IF
  323.                 END IF
  324.             END IF
  325.         END IF
  326.     NEXT
  327.  
  328. SUB ShowPanel (i)
  329.     x1 = star(i).x - 420 * ratio
  330.     IF star(i).x < sw / 2 THEN x1 = star(i).x + 20
  331.     x2 = x1 + 400 * ratio
  332.     y1 = star(i).y
  333.     IF y1 > sh - 560 * ratio THEN y1 = sh - 560 * ratio
  334.     y2 = y1 + 540 * ratio
  335.     _DEST ps
  336.     CLS 0, 8
  337.     COLOR 0, 8
  338.     _FONT ttf2
  339.     n$ = RTRIM$(srcstr)
  340.     L = _PRINTWIDTH(n$)
  341.     _PRINTSTRING ((400 - L) / 2, 8), n$, ps
  342.     n$ = "to"
  343.     L = _PRINTWIDTH(n$)
  344.     _PRINTSTRING ((400 - L) / 2, 80), n$, ps
  345.     n$ = RTRIM$(dststr)
  346.     L = _PRINTWIDTH(n$)
  347.     _PRINTSTRING ((400 - L) / 2, 152), n$, ps
  348.     LINE (20, 240)-(380, 240), 0
  349.     _PRINTSTRING (20, 260), "0123456789", ps
  350.     _PRINTSTRING (20, 346), strng, ps
  351.     xo = 286: xd = 366: yo = 366: yd = 406
  352.     LINE (xo, yo)-(xd, yd), 7, BF
  353.     xo = 32: xd = 182: yo = 460: yd = 530
  354.     LINE (xo, yo)-(xd, yd), 7, BF
  355.     xo = 216: xd = 366: yo = 460: yd = 530
  356.     LINE (xo, yo)-(xd, yd), 7, BF
  357.     COLOR 8, 7
  358.     _FONT ttf1
  359.     _PRINTSTRING (300, 380), "CLEAR", ps
  360.     _FONT ttf2
  361.     _PRINTSTRING (60, 460), "Ok", ps
  362.     _PRINTSTRING (220, 460), "Quit", ps
  363.     _PUTIMAGE (x1, y1), ps, 0, (0, 0)-(400 * ratio, 540 * ratio)
  364.     panx = x1: pany = y1
  365.     _DEST 0
  366.  
  367. SUB PaintStars
  368.     FOR i = 0 TO 99
  369.         c = star(i).c
  370.         x = star(i).x
  371.         y = star(i).y
  372.         o = star(i).o
  373.         CIRCLE (x, y), (star(i).s + 6) * ratio, c
  374.         COLOR 15
  375.         IF o > 0 THEN
  376.             PAINT (x, y), o + 8, c
  377.         END IF
  378.         _FONT ttf1
  379.         IF tt THEN
  380.             n$ = star(i).n
  381.             n$ = RTRIM$(n$)
  382.             L = _PRINTWIDTH(n$)
  383.         ELSE
  384.             n$ = STR$(star(i).t)
  385.             L = _PRINTWIDTH(n$)
  386.         END IF
  387.         _PRINTSTRING (x - L / 2, y + 12), n$, 0
  388.     NEXT
  389.  
  390. SUB NewGame
  391.     DIM k AS INTEGER
  392.     DIM r AS INTEGER
  393.     DIM dx AS INTEGER
  394.     DIM dy AS INTEGER
  395.     DIM n AS STRING * 10
  396.     FOR i = 0 TO 999
  397.         fleet(i).o = 0
  398.     NEXT
  399.     fltcnt = 0
  400.     LL = 50
  401.     seed = RND * 1000
  402.     star(0).n = "Sol"
  403.     star(0).x = RND * (sw - sww) + swn
  404.     star(0).y = RND * (sh - shw) + shn
  405.     star(0).c = 14
  406.     star(0).s = 2
  407.     star(0).o = 1
  408.     star(0).p = 20
  409.     star(0).t = 100
  410.     home(0) = 0
  411.     FOR i = 1 TO 99
  412.         k = 1
  413.         WHILE k
  414.             k = 0
  415.             x = RND * (sw - sww) + swn
  416.             y = RND * (sh - shw) + shn
  417.             r = INT(RND * 200)
  418.             n = names(r)
  419.             FOR j = 0 TO i - 1
  420.                 dx = x - star(j).x
  421.                 dy = y - star(j).y
  422.                 IF ABS(dx) < sww AND ABS(dy) < shw THEN
  423.                     k = 1
  424.                 END IF
  425.                 IF n = star(j).n THEN
  426.                     k = 1
  427.                 END IF
  428.             NEXT
  429.         WEND
  430.         star(i).n = n
  431.         star(i).x = x
  432.         star(i).y = y
  433.         star(i).c = RND * 6 + 9
  434.         star(i).s = RND * 5
  435.         star(i).o = 0
  436.         star(i).p = star(i).s + (RND * 8) + 1
  437.         star(i).t = 0
  438.     NEXT
  439.     FOR i = 2 TO 6
  440.         k = 1
  441.         WHILE k
  442.             k = 0
  443.             r = RND * 100
  444.             FOR j = 1 TO i - 1
  445.                 IF r = home(j) THEN k = 1
  446.                 x = star(0).x
  447.                 y = star(0).y
  448.                 dx = ABS(star(r).x - x)
  449.                 dy = ABS(star(r).y - y)
  450.                 IF dx < sw / 4 AND dy < sh / 4 THEN k = 1
  451.             NEXT
  452.         WEND
  453.         home(i) = r
  454.         star(r).o = i
  455.         star(r).p = 20
  456.         star(r).t = 100
  457.     NEXT
  458.  
  459. ' A lot of star names I made up
  460.  
  461. SUB StarNames
  462.     names(0) = "Acamar"
  463.     names(1) = "Arcab"
  464.     names(2) = "Acrux"
  465.     names(3) = "Adhara"
  466.     names(4) = "Arneb"
  467.     names(5) = "Antares"
  468.     names(6) = "Arcturus"
  469.     names(7) = "Atria"
  470.     names(8) = "Beid"
  471.     names(9) = "Betelgeuse"
  472.     names(10) = "Botein"
  473.     names(11) = "Beemim"
  474.     names(12) = "Bellatrix"
  475.     names(13) = "Bharani"
  476.     names(14) = "Biham"
  477.     names(15) = "Brachium"
  478.     names(16) = "Canopus"
  479.     names(17) = "Capella"
  480.     names(18) = "Castor"
  481.     names(19) = "Chara"
  482.     names(20) = "Cursa"
  483.     names(21) = "Copernicus"
  484.     names(22) = "Chalawan"
  485.     names(23) = "Chertan"
  486.     names(24) = "Dabih"
  487.     names(25) = "Dalim"
  488.     names(26) = "Deneb"
  489.     names(27) = "Denebola"
  490.     names(28) = "Diadem"
  491.     names(29) = "Diphda"
  492.     names(30) = "Dschubba"
  493.     names(31) = "Dziban"
  494.     names(32) = "Edasich"
  495.     names(33) = "Electra"
  496.     names(34) = "Elgafar"
  497.     names(35) = "Elkurud"
  498.     names(36) = "Elnath"
  499.     names(37) = "Eltanin"
  500.     names(38) = "Enif"
  501.     names(39) = "Errai"
  502.     names(40) = "Fafnir"
  503.     names(41) = "Fang"
  504.     names(42) = "Fawaris"
  505.     names(43) = "Felis"
  506.     names(44) = "Fomalhaut"
  507.     names(45) = "Fulu"
  508.     names(46) = "Fumal"
  509.     names(47) = "Furud"
  510.     names(48) = "Garnet"
  511.     names(49) = "Giausar"
  512.     names(50) = "Gienah"
  513.     names(51) = "Ginan"
  514.     names(52) = "Gomeisa"
  515.     names(53) = "Graffias"
  516.     names(54) = "Grumium"
  517.     names(55) = "Gudja"
  518.     names(56) = "Hadar"
  519.     names(57) = "Haedus"
  520.     names(58) = "Hamal"
  521.     names(59) = "Hassaleh"
  522.     names(60) = "Hatysa"
  523.     names(61) = "Helvetios"
  524.     names(62) = "Heze"
  525.     names(63) = "Homan"
  526.     names(64) = "Iklil"
  527.     names(65) = "Imai"
  528.     names(66) = "Intercrus"
  529.     names(67) = "Izar"
  530.     names(68) = "Iccar"
  531.     names(69) = "Inar"
  532.     names(70) = "Iaeth"
  533.     names(71) = "Imaous"
  534.     names(72) = "Jabbah"
  535.     names(73) = "Jishui"
  536.     names(74) = "Jax"
  537.     names(75) = "Jalae"
  538.     names(76) = "Jewel"
  539.     names(77) = "Jumbo"
  540.     names(78) = "Jerue"
  541.     names(79) = "Jabear"
  542.     names(80) = "Kakkab"
  543.     names(81) = "Kang"
  544.     names(82) = "Kekouan"
  545.     names(83) = "Keid"
  546.     names(84) = "Kitalpha"
  547.     names(85) = "Kochab"
  548.     names(86) = "Kolob"
  549.     names(87) = "Kobol"
  550.     names(88) = "Larawag"
  551.     names(89) = "Lesath"
  552.     names(90) = "Libertas"
  553.     names(91) = "Lich"
  554.     names(92) = "Lilly"
  555.     names(93) = "Laddel"
  556.     names(94) = "Luminous"
  557.     names(95) = "Lasacious"
  558.     names(96) = "Mizar"
  559.     names(97) = "Markab"
  560.     names(98) = "Matar"
  561.     names(99) = "Mintaka"
  562.     names(100) = "Meleph"
  563.     names(101) = "Menkar"
  564.     names(102) = "Merga"
  565.     names(103) = "Merope"
  566.     names(104) = "Nahn"
  567.     names(105) = "Naos"
  568.     names(106) = "Nashira"
  569.     names(107) = "Navi"
  570.     names(108) = "Nekkar"
  571.     names(109) = "Nembus"
  572.     names(110) = "Nihal"
  573.     names(111) = "Nunki"
  574.     names(112) = "Ogma"
  575.     names(113) = "Okab"
  576.     names(114) = "Ohmy"
  577.     names(115) = "Oragami"
  578.     names(116) = "Origen"
  579.     names(117) = "Omanii"
  580.     names(118) = "Obytewa"
  581.     names(119) = "Oglok"
  582.     names(120) = "Phact"
  583.     names(121) = "Pherkad"
  584.     names(122) = "Pleione"
  585.     names(122) = "Polaris"
  586.     names(123) = "Pollux"
  587.     names(124) = "Procyon"
  588.     names(125) = "Proxima"
  589.     names(126) = "Polis"
  590.     names(127) = "Quaint"
  591.     names(128) = "Quazzat"
  592.     names(129) = "Quetzal"
  593.     names(130) = "Qussol"
  594.     names(131) = "Quella"
  595.     names(132) = "Quyaeo"
  596.     names(133) = "Ququdas"
  597.     names(134) = "Quekak"
  598.     names(135) = "Rasalas"
  599.     names(136) = "Regor"
  600.     names(137) = "Regulus"
  601.     names(138) = "Rigel"
  602.     names(139) = "Revati"
  603.     names(140) = "Rotenev"
  604.     names(141) = "Rukbat"
  605.     names(142) = "Rastaban"
  606.     names(143) = "Sabik"
  607.     names(144) = "Sadr"
  608.     names(145) = "Saiph"
  609.     names(146) = "Sargas"
  610.     names(147) = "Sarin"
  611.     names(148) = "Syrma"
  612.     names(149) = "Spica"
  613.     names(150) = "Sirius"
  614.     names(151) = "Tarazed"
  615.     names(152) = "Taygeta"
  616.     names(153) = "Tejat"
  617.     names(154) = "Thabit"
  618.     names(155) = "Thuban"
  619.     names(156) = "Tiaki"
  620.     names(157) = "Toliman"
  621.     names(158) = "Torcular"
  622.     names(157) = "Umala"
  623.     names(158) = "Ulatte"
  624.     names(159) = "Ubbessa"
  625.     names(160) = "Unoless"
  626.     names(161) = "Umaddem"
  627.     names(162) = "Ummbra"
  628.     names(162) = "Uniqu"
  629.     names(163) = "Uzzaal"
  630.     names(164) = "Vega"
  631.     names(165) = "Veritate"
  632.     names(166) = "Vindetrix"
  633.     names(167) = "Vedas"
  634.     names(168) = "Vergg"
  635.     names(169) = "Vacant"
  636.     names(170) = "Vucae"
  637.     names(171) = "Vicar"
  638.     names(172) = "Wasat"
  639.     names(173) = "Wazn"
  640.     names(174) = "Wezen"
  641.     names(175) = "Waiten"
  642.     names(176) = "Wachar"
  643.     names(177) = "Wheelz"
  644.     names(178) = "Whatsp"
  645.     names(179) = "Wassand"
  646.     names(180) = "Xenno"
  647.     names(181) = "Xyphod"
  648.     names(182) = "Xu"
  649.     names(183) = "Xaal"
  650.     names(184) = "Xyross"
  651.     names(185) = "Xiggot"
  652.     names(186) = "Xirrks"
  653.     names(187) = "Yed"
  654.     names(188) = "Yildun"
  655.     names(189) = "Yundun"
  656.     names(190) = "Yavyo"
  657.     names(191) = "Yotrac"
  658.     names(192) = "Yxzoqu"
  659.     names(193) = "Ynnot"
  660.     names(194) = "Zaniah"
  661.     names(195) = "Zaurak"
  662.     names(196) = "Zhang"
  663.     names(197) = "Zibal"
  664.     names(198) = "Zosma"
  665.     names(199) = "Zuben"
  666.  
  667.  
  668.  
  669.  
  670.  
  671.  
  672.  
  673.  
  674.  
  675.  
Title: Re: Beyond Sol
Post by: OldMoses on December 08, 2019, 09:09:19 am
It seems to get stuck with the dropdown display and nothing happens. Am I doing something wrong?

A suggestion would be to work on getting your font size down so it all fits in the drop down.
Title: Re: Beyond Sol
Post by: Petr on December 08, 2019, 01:05:36 pm
Hi OldMoses,
The program works, but the reactions are very slow. It is caused by some rendering loops, I couldn't find it because of the number of shared variables.
Click the mouse on planet Sol, then on another. Make a line between the planets. A dialog is displayed (I don't know about what is asking), where you click the numbers - it is probably size of the crew, and when the rocket reaches the target planet and has more crew than the number of inhabitants on the planet, is this planet of humans.

Very interest idea.
Title: Re: Beyond Sol
Post by: romichess on December 08, 2019, 02:13:07 pm
It will only work in 1920 x 1080p until I fix the scaling. I'll be working on that next. Also some for loops can be optimized with EXIT FOR. The AI was too weak anyway so I made it a lot better. I'd like it to be a good game but for now just consider it a demo.
Title: Re: Beyond Sol
Post by: romichess on December 09, 2019, 03:03:47 am
The scaling has been fixed. It was tested in 1176 x 664, 800 x 600, 1600 x 900 and of course 1920 x 1080. The popup gui panel displayed correctly and the mouse clicks were accurate. Resolution 800 x 600 was unplayable because the number of ships under a planet could not be read. I'll look into artificially increasing the font size to any resolution smaller than the 1176 that was tested.

The AI is now a bit of a challenge!

Feedback wanted!

Code: QB64: [Select]
  1. TYPE stars
  2.     n AS STRING * 10 '                 Name of star
  3.     x AS INTEGER '                     x-position
  4.     y AS INTEGER '                     y-position
  5.     o AS INTEGER '                     Owner
  6.     c AS INTEGER '                     Color
  7.     s AS INTEGER '                     Size
  8.     t AS INTEGER '                     (Type of planetary system; terran, frozen, radiated, toxic, etc.) Ships
  9.     p AS INTEGER '                     (Population) For now ships produced per turn
  10.  
  11. TYPE FLEETS
  12.     n AS INTEGER
  13.     x1 AS INTEGER
  14.     y1 AS INTEGER
  15.     x2 AS INTEGER
  16.     y2 AS INTEGER
  17.     o AS INTEGER
  18.     d AS INTEGER
  19.  
  20. 'DECLARE SUB NewGame
  21. 'DECLARE SUB PaintStars
  22. 'DECLARE SUB StarNames
  23. 'DECLARE SUB ShowPanel (i)
  24. 'DECLARE SUB Identify (x, y)
  25. 'DECLARE SUB PaintBackground
  26. 'DECLARE SUB GetInput
  27.  
  28. ' Global variables shared because they are needed in more than one routine
  29. DIM SHARED sw AS INTEGER '             Screen Width
  30. DIM SHARED sh AS INTEGER '             Screen Height
  31. DIM SHARED sww AS INTEGER '            Screen Width Wide margin
  32. DIM SHARED swn AS INTEGER '            Screen Width Narrow adjustment
  33. DIM SHARED shw AS INTEGER '            Screen Height Wide margine
  34. DIM SHARED shn AS INTEGER '            Screen Height Narrow adjustment
  35. DIM SHARED nw AS INTEGER '             games Natural screen Width
  36. DIM SHARED nh AS INTEGER '             games Natural screen Height
  37. DIM SHARED ratio AS _FLOAT '           the Ratio of the games natural screen width to the actual
  38. DIM SHARED star(100) AS stars '        100 stars - may change
  39. DIM SHARED names(200) AS STRING * 10 ' 200 star names
  40. DIM SHARED seed AS INTEGER '           Seed to prime the Randomizer to display identical background each frame
  41. DIM SHARED home(6) AS INTEGER '        The starting star for each player. The human always has star(0), Sol
  42. DIM SHARED tt AS INTEGER '             tt = 0 star names displayed, tt = 0 star names not didplayed
  43. DIM SHARED ch AS STRING * 1 '          Game loop key input variable
  44. DIM SHARED repeat AS INTEGER '         Game loop control variable
  45. DIM SHARED fleet(1000) AS FLEETS
  46. DIM SHARED srcstr AS STRING * 10
  47. DIM SHARED dststr AS STRING * 10
  48. DIM SHARED panx, pany AS INTEGER
  49. DIM SHARED strng AS STRING * 10
  50.  
  51. sw = _DESKTOPWIDTH '                   native video with of syatem
  52. sww = sw / 24 '                        margin based on native video width to keep stars away from edge
  53. swn = sw / 48 '                        adjustment that works with sww to keep stars away from left and top of screen
  54. nw = 1920
  55.  
  56. ratio = sw / 1920 '                    Used to adjust distances and sizes for various screen modes
  57.  
  58. shw = sh / 20
  59. shn = sh / 40
  60. nh = 1080
  61.  
  62. tt = 0
  63. cx = sw
  64. cp = 100
  65. h = 100
  66. ar = 0
  67. rng = 200
  68. slct = 0
  69. strng = ""
  70.  
  71. SCREEN _NEWIMAGE(sw, sh, 256) '        creates a screen the resolution of the users native system
  72.  
  73.  
  74. ps = _NEWIMAGE(400 * ratio, 540 * ratio, 256)
  75.  
  76. StarNames '                            Routine to load star names into string array stars(200)
  77.  
  78. NewGame
  79.  
  80. ttf1 = _LOADFONT("cyberbit.ttf", 14 * ratio, "BOLD")
  81. ttf2 = _LOADFONT("cyberbit.ttf", 72 * ratio, "BOLD")
  82.  
  83. repeat = 1
  84.  
  85. WHILE repeat
  86.  
  87.     _LIMIT 60 '                        Set to 60 frames per second
  88.  
  89.     CLS
  90.  
  91.     PaintBackground
  92.  
  93.     PaintStars
  94.  
  95.     PaintFleet
  96.  
  97.     GetInput
  98.  
  99.     Player
  100.  
  101.     Identify x, y '                    Identify star mouse is over if any
  102.  
  103.     Computer
  104.  
  105.     _DISPLAY
  106.  
  107.  
  108.  
  109. SUB PaintFleet
  110.     count = fltcnt
  111.     i = 0
  112.     WHILE count
  113.         IF fleet(i).o <> 0 THEN
  114.             CIRCLE (fleet(i).x1, fleet(i).y1), 3, fleet(i).o + 8
  115.             count = count - 1
  116.         END IF
  117.         i = i + 1
  118.     WEND
  119.  
  120. SUB SendFleet (org, dst, ships)
  121.     IF ships = 0 THEN
  122.  
  123.     END IF
  124.     FOR i = 0 TO 999
  125.         IF fleet(i).o = 0 THEN
  126.             fleet(i).o = star(org).o
  127.             fleet(i).d = dst
  128.             fleet(i).x1 = star(org).x
  129.             fleet(i).y1 = star(org).y
  130.             fleet(i).x2 = star(dst).x
  131.             fleet(i).y2 = star(dst).y
  132.             fleet(i).n = ships
  133.             star(org).t = star(org).t - ships
  134.             fltcnt = fltcnt + 1
  135.             IF rng < 4000 THEN rng = rng + 1
  136.             EXIT FOR
  137.         END IF
  138.     NEXT
  139.     LL = LL + 1
  140.  
  141. SUB Computer
  142.     FOR i = 0 TO 99
  143.         r = INT(RND * 120)
  144.         IF r < star(i).p THEN
  145.             IF star(i).o > 0 THEN
  146.                 star(i).t = star(i).t + 1
  147.             ELSE
  148.                 IF INT(RND * 10) < 2 THEN
  149.                     star(i).t = star(i).t + 1
  150.                 END IF
  151.             END IF
  152.         END IF
  153.     NEXT
  154.     num = 0
  155.     FOR i = 2 TO 6
  156.         FOR j = 0 TO 99
  157.             IF star(j).o = i AND j <> home(i) AND star(j).t > LL THEN
  158.                 SendFleet j, home(i), star(j).t / 4
  159.             END IF
  160.         NEXT
  161.         org = home(i)
  162.         dst = 100
  163.         num = 10000
  164.         FOR j = 0 TO 99
  165.             IF star(j).o <> i THEN
  166.                 sway = SQR(ABS(star(org).x - star(j).x) ^ 2 + ABS(star(org).y - star(j).y) ^ 2)
  167.                 IF sway < rng AND star(j).t + sway + RND * 210 - 100 < num THEN
  168.                     num = star(j).t
  169.                     dst = j
  170.                 END IF
  171.             END IF
  172.         NEXT
  173.         IF dst < 100 AND star(org).t > LL THEN
  174.             IF star(org).t > star(dst).t * 4 THEN
  175.                 SendFleet org, dst, star(org).t / 2
  176.             END IF
  177.         END IF
  178.     NEXT
  179.     count = fltcnt
  180.     i = 0
  181.     WHILE count
  182.         IF fleet(i).o <> 0 THEN
  183.             count = count - 1
  184.             IF fleet(i).x2 > fleet(i).x1 THEN
  185.                 fleet(i).x1 = fleet(i).x1 + 1
  186.             END IF
  187.             IF fleet(i).x2 < fleet(i).x1 THEN
  188.                 fleet(i).x1 = fleet(i).x1 - 1
  189.             END IF
  190.             IF fleet(i).y2 > fleet(i).y1 THEN
  191.                 fleet(i).y1 = fleet(i).y1 + 1
  192.             END IF
  193.             IF fleet(i).y2 < fleet(i).y1 THEN
  194.                 fleet(i).y1 = fleet(i).y1 - 1
  195.             END IF
  196.             IF fleet(i).x1 = fleet(i).x2 AND fleet(i).y1 = fleet(i).y2 THEN
  197.                 dst = fleet(i).d
  198.                 IF star(dst).o = fleet(i).o THEN
  199.                     star(dst).t = star(dst).t + fleet(i).n
  200.                     fleet(i).o = 0
  201.                     fltcnt = fltcnt - 1
  202.                 ELSE
  203.                     alive = 1
  204.                     WHILE alive
  205.                         alive = 0
  206.                         damorg = fleet(i).n / 11 + 1
  207.                         damdst = star(dst).t / 10 + 1
  208.                         fleet(i).n = fleet(i).n - damdst
  209.                         star(dst).t = star(dst).t - damorg
  210.                         IF fleet(i).n > 0 AND star(dst).t > 0 THEN
  211.                             alive = 1
  212.                         END IF
  213.                     WEND
  214.                     IF star(dst).t < 1 THEN
  215.                         star(dst).t = fleet(i).n
  216.                         star(dst).o = fleet(i).o
  217.                     END IF
  218.                     fleet(i).o = 0
  219.                     fltcnt = fltcnt - 1
  220.                 END IF
  221.             END IF
  222.         END IF
  223.         i = i + 1
  224.     WEND
  225.  
  226. SUB GetInput
  227.  
  228.     ch = INKEY$
  229.     IF ch = CHR$(27) THEN repeat = 0
  230.     IF ch = "n" THEN NewGame
  231.     IF ch = "t" THEN tt = 1 - tt
  232.     ch = ""
  233.  
  234.     WHILE _MOUSEINPUT: WEND '          Eat all the mice but keep last mouse to toy with
  235.  
  236.     x = _MOUSEX
  237.     y = _MOUSEY
  238.     mb = _MOUSEBUTTON(1)
  239.     clk = 0
  240.  
  241.     IF mb = -1 AND cx = sw THEN
  242.         cx = x
  243.         cy = y
  244.     END IF
  245.  
  246.     IF mb = 0 AND cx < sw THEN
  247.         IF ABS(x - cx) < 4 AND ABS(y - cy) < 4 THEN
  248.             clk = 1
  249.         END IF
  250.         cx = sw
  251.     END IF
  252.  
  253. SUB PaintBackground
  254.     x = RND * sw
  255.     y = RND * sh
  256.     c = RND * 14 + 1
  257.     PSET (x, y), c
  258.     RANDOMIZE USING seed
  259.     FOR i = 1 TO 600 * ratio
  260.         x = RND * sw
  261.         y = RND * sh
  262.         c = RND * 14 + 1
  263.         PSET (x, y), c
  264.     NEXT
  265.  
  266. SUB Player
  267.     tmp$ = RTRIM$(strng)
  268.     IF slct = 1 THEN
  269.         LINE (px, py)-(x, y), 10
  270.     END IF
  271.     IF pact = 1 THEN
  272.         ShowPanel ii
  273.         IF clk = 1 THEN
  274.             x1 = panx: x2 = panx + 400 * ratio
  275.             y1 = pany: y2 = pany + 540 * ratio
  276.             IF x > x1 + 216 * ratio AND x < x1 + 366 * ratio AND y > y1 + 460 * ratio AND y < y1 + 530 * ratio THEN
  277.                 pact = 0
  278.             END IF
  279.             IF x > x1 + 20 * ratio AND x < x1 + 380 * ratio AND y > y1 + 260 * ratio AND y < y1 + 320 * ratio THEN
  280.                 dig = (x - x1 - 32 * ratio) / (38 * ratio)
  281.                 strng = tmp$ + STR$(dig)
  282.             END IF
  283.             IF x > x1 + 266 * ratio AND x < x1 + 366 * ratio AND y > y1 + 366 * ratio AND y < y1 + 406 * ratio THEN
  284.                 strng = ""
  285.             END IF
  286.             IF x > x1 + 32 * ratio AND x < x1 + 182 * ratio AND y > y1 + 460 * ratio AND y < y1 + 530 * ratio THEN
  287.                 IF value <= star(srcidx).t THEN
  288.                     value = VAL(strng)
  289.                     strng = ""
  290.                     pact = 0
  291.                     SendFleet srcidx, dstidx, value
  292.                 END IF
  293.             END IF
  294.         END IF
  295.     END IF
  296.  
  297. SUB Identify (x, y)
  298.     FOR i = 0 TO 99
  299.         dx = star(i).x - x
  300.         dy = star(i).y - y
  301.         IF pact = 0 AND ABS(dx) <= star(i).s + 6 AND ABS(dy) <= star(i).s + 6 THEN
  302.             ii = i
  303.             IF star(i).o = 1 AND slct = 0 THEN
  304.                 IF clk THEN
  305.                     slct = 1
  306.                 END IF
  307.                 px = x
  308.                 py = y
  309.                 srcstr = star(i).n
  310.                 srcidx = i
  311.             ELSE
  312.                 IF slct = 1 OR pact = 1 THEN
  313.                     IF clk THEN
  314.                         slct = 0
  315.                         pact = 1
  316.                         dststr = star(i).n
  317.                         dstidx = i
  318.                     END IF
  319.                 END IF
  320.             END IF
  321.             EXIT FOR
  322.         END IF
  323.     NEXT
  324.  
  325. SUB ShowPanel (i)
  326.     x1 = star(i).x - 420 * ratio
  327.     IF star(i).x < sw / 2 THEN x1 = star(i).x + 20 * ratio
  328.     x2 = x1 + 400 * ratio
  329.     y1 = star(i).y
  330.     IF y1 > sh - 560 * ratio THEN y1 = sh - 560 * ratio
  331.     y2 = y1 + 540 * ratio
  332.     _DEST ps
  333.     CLS 0, 8
  334.     COLOR 0, 8
  335.     _FONT ttf2
  336.     n$ = RTRIM$(srcstr)
  337.     L = _PRINTWIDTH(n$)
  338.     _PRINTSTRING ((400 * ratio - L) / 2, 8 * ratio), n$, ps
  339.     n$ = "to"
  340.     L = _PRINTWIDTH(n$)
  341.     _PRINTSTRING ((400 * ratio - L) / 2, 80 * ratio), n$, ps
  342.     n$ = RTRIM$(dststr)
  343.     L = _PRINTWIDTH(n$)
  344.     _PRINTSTRING ((400 * ratio - L) / 2, 152 * ratio), n$, ps
  345.     LINE (20 * ratio, 240 * ratio)-(380 * ratio, 240 * ratio), 0
  346.     _PRINTSTRING (20 * ratio, 260 * ratio), "0123456789", ps
  347.     _PRINTSTRING (20 * ratio, 346 * ratio), strng, ps
  348.     xo = 286 * ratio: xd = 366 * ratio: yo = 366 * ratio: yd = 406 * ratio
  349.     LINE (xo, yo)-(xd, yd), 7, BF
  350.     xo = 32 * ratio: xd = 182 * ratio: yo = 460 * ratio: yd = 530 * ratio
  351.     LINE (xo, yo)-(xd, yd), 7, BF
  352.     xo = 216 * ratio: xd = 366 * ratio: yo = 460 * ratio: yd = 530 * ratio
  353.     LINE (xo, yo)-(xd, yd), 7, BF
  354.     COLOR 8, 7
  355.     _FONT ttf1
  356.     _PRINTSTRING (300 * ratio, 380 * ratio), "CLEAR", ps
  357.     _FONT ttf2
  358.     _PRINTSTRING (60 * ratio, 460 * ratio), "Ok", ps
  359.     _PRINTSTRING (220 * ratio, 460 * ratio), "Quit", ps
  360.     _PUTIMAGE (x1, y1), ps, 0, (0, 0)-(400 * ratio, 540 * ratio)
  361.     panx = x1: pany = y1
  362.     _DEST 0
  363.  
  364. SUB PaintStars
  365.     FOR i = 0 TO 99
  366.         c = star(i).c
  367.         x = star(i).x
  368.         y = star(i).y
  369.         o = star(i).o
  370.         CIRCLE (x, y), (star(i).s + 6) * ratio, c
  371.         COLOR 15
  372.         IF o > 0 THEN
  373.             PAINT (x, y), o + 8, c
  374.         END IF
  375.         _FONT ttf1
  376.         IF tt THEN
  377.             n$ = star(i).n
  378.             n$ = RTRIM$(n$)
  379.             L = _PRINTWIDTH(n$)
  380.         ELSE
  381.             n$ = STR$(star(i).t)
  382.             L = _PRINTWIDTH(n$)
  383.         END IF
  384.         _PRINTSTRING (x - L / 2, y + 12), n$, 0
  385.     NEXT
  386.  
  387. SUB NewGame
  388.     DIM k AS INTEGER
  389.     DIM r AS INTEGER
  390.     DIM dx AS INTEGER
  391.     DIM dy AS INTEGER
  392.     DIM n AS STRING * 10
  393.     FOR i = 0 TO 999
  394.         fleet(i).o = 0
  395.     NEXT
  396.     fltcnt = 0
  397.     LL = 50
  398.     seed = RND * 1000
  399.     star(0).n = "Sol"
  400.     star(0).x = RND * (sw - sww) + swn
  401.     star(0).y = RND * (sh - shw) + shn
  402.     star(0).c = 14
  403.     star(0).s = 2
  404.     star(0).o = 1
  405.     star(0).p = 20
  406.     star(0).t = 100
  407.     home(0) = 0
  408.     FOR i = 1 TO 99
  409.         k = 1
  410.         WHILE k
  411.             k = 0
  412.             x = RND * (sw - sww) + swn
  413.             y = RND * (sh - shw) + shn
  414.             r = INT(RND * 200)
  415.             n = names(r)
  416.             FOR j = 0 TO i - 1
  417.                 dx = x - star(j).x
  418.                 dy = y - star(j).y
  419.                 IF ABS(dx) < sww AND ABS(dy) < shw THEN
  420.                     k = 1
  421.                 END IF
  422.                 IF n = star(j).n THEN
  423.                     k = 1
  424.                 END IF
  425.             NEXT
  426.         WEND
  427.         star(i).n = n
  428.         star(i).x = x
  429.         star(i).y = y
  430.         star(i).c = RND * 6 + 9
  431.         star(i).s = RND * 5
  432.         star(i).o = 0
  433.         star(i).p = star(i).s + (RND * 8) + 1
  434.         star(i).t = 0
  435.     NEXT
  436.     FOR i = 2 TO 6
  437.         k = 1
  438.         WHILE k
  439.             k = 0
  440.             r = RND * 100
  441.             FOR j = 1 TO i - 1
  442.                 IF r = home(j) THEN k = 1
  443.                 x = star(0).x
  444.                 y = star(0).y
  445.                 dx = ABS(star(r).x - x)
  446.                 dy = ABS(star(r).y - y)
  447.                 IF dx < sw / 4 AND dy < sh / 4 THEN k = 1
  448.             NEXT
  449.         WEND
  450.         home(i) = r
  451.         star(r).o = i
  452.         star(r).p = 20
  453.         star(r).t = 100
  454.     NEXT
  455.  
  456. ' A lot of star names I made up
  457.  
  458. SUB StarNames
  459.     names(0) = "Acamar"
  460.     names(1) = "Arcab"
  461.     names(2) = "Acrux"
  462.     names(3) = "Adhara"
  463.     names(4) = "Arneb"
  464.     names(5) = "Antares"
  465.     names(6) = "Arcturus"
  466.     names(7) = "Atria"
  467.     names(8) = "Beid"
  468.     names(9) = "Betelgeuse"
  469.     names(10) = "Botein"
  470.     names(11) = "Beemim"
  471.     names(12) = "Bellatrix"
  472.     names(13) = "Bharani"
  473.     names(14) = "Biham"
  474.     names(15) = "Brachium"
  475.     names(16) = "Canopus"
  476.     names(17) = "Capella"
  477.     names(18) = "Castor"
  478.     names(19) = "Chara"
  479.     names(20) = "Cursa"
  480.     names(21) = "Copernicus"
  481.     names(22) = "Chalawan"
  482.     names(23) = "Chertan"
  483.     names(24) = "Dabih"
  484.     names(25) = "Dalim"
  485.     names(26) = "Deneb"
  486.     names(27) = "Denebola"
  487.     names(28) = "Diadem"
  488.     names(29) = "Diphda"
  489.     names(30) = "Dschubba"
  490.     names(31) = "Dziban"
  491.     names(32) = "Edasich"
  492.     names(33) = "Electra"
  493.     names(34) = "Elgafar"
  494.     names(35) = "Elkurud"
  495.     names(36) = "Elnath"
  496.     names(37) = "Eltanin"
  497.     names(38) = "Enif"
  498.     names(39) = "Errai"
  499.     names(40) = "Fafnir"
  500.     names(41) = "Fang"
  501.     names(42) = "Fawaris"
  502.     names(43) = "Felis"
  503.     names(44) = "Fomalhaut"
  504.     names(45) = "Fulu"
  505.     names(46) = "Fumal"
  506.     names(47) = "Furud"
  507.     names(48) = "Garnet"
  508.     names(49) = "Giausar"
  509.     names(50) = "Gienah"
  510.     names(51) = "Ginan"
  511.     names(52) = "Gomeisa"
  512.     names(53) = "Graffias"
  513.     names(54) = "Grumium"
  514.     names(55) = "Gudja"
  515.     names(56) = "Hadar"
  516.     names(57) = "Haedus"
  517.     names(58) = "Hamal"
  518.     names(59) = "Hassaleh"
  519.     names(60) = "Hatysa"
  520.     names(61) = "Helvetios"
  521.     names(62) = "Heze"
  522.     names(63) = "Homan"
  523.     names(64) = "Iklil"
  524.     names(65) = "Imai"
  525.     names(66) = "Intercrus"
  526.     names(67) = "Izar"
  527.     names(68) = "Iccar"
  528.     names(69) = "Inar"
  529.     names(70) = "Iaeth"
  530.     names(71) = "Imaous"
  531.     names(72) = "Jabbah"
  532.     names(73) = "Jishui"
  533.     names(74) = "Jax"
  534.     names(75) = "Jalae"
  535.     names(76) = "Jewel"
  536.     names(77) = "Jumbo"
  537.     names(78) = "Jerue"
  538.     names(79) = "Jabear"
  539.     names(80) = "Kakkab"
  540.     names(81) = "Kang"
  541.     names(82) = "Kekouan"
  542.     names(83) = "Keid"
  543.     names(84) = "Kitalpha"
  544.     names(85) = "Kochab"
  545.     names(86) = "Kolob"
  546.     names(87) = "Kobol"
  547.     names(88) = "Larawag"
  548.     names(89) = "Lesath"
  549.     names(90) = "Libertas"
  550.     names(91) = "Lich"
  551.     names(92) = "Lilly"
  552.     names(93) = "Laddel"
  553.     names(94) = "Luminous"
  554.     names(95) = "Lasacious"
  555.     names(96) = "Mizar"
  556.     names(97) = "Markab"
  557.     names(98) = "Matar"
  558.     names(99) = "Mintaka"
  559.     names(100) = "Meleph"
  560.     names(101) = "Menkar"
  561.     names(102) = "Merga"
  562.     names(103) = "Merope"
  563.     names(104) = "Nahn"
  564.     names(105) = "Naos"
  565.     names(106) = "Nashira"
  566.     names(107) = "Navi"
  567.     names(108) = "Nekkar"
  568.     names(109) = "Nembus"
  569.     names(110) = "Nihal"
  570.     names(111) = "Nunki"
  571.     names(112) = "Ogma"
  572.     names(113) = "Okab"
  573.     names(114) = "Ohmy"
  574.     names(115) = "Oragami"
  575.     names(116) = "Origen"
  576.     names(117) = "Omanii"
  577.     names(118) = "Obytewa"
  578.     names(119) = "Oglok"
  579.     names(120) = "Phact"
  580.     names(121) = "Pherkad"
  581.     names(122) = "Pleione"
  582.     names(122) = "Polaris"
  583.     names(123) = "Pollux"
  584.     names(124) = "Procyon"
  585.     names(125) = "Proxima"
  586.     names(126) = "Polis"
  587.     names(127) = "Quaint"
  588.     names(128) = "Quazzat"
  589.     names(129) = "Quetzal"
  590.     names(130) = "Qussol"
  591.     names(131) = "Quella"
  592.     names(132) = "Quyaeo"
  593.     names(133) = "Ququdas"
  594.     names(134) = "Quekak"
  595.     names(135) = "Rasalas"
  596.     names(136) = "Regor"
  597.     names(137) = "Regulus"
  598.     names(138) = "Rigel"
  599.     names(139) = "Revati"
  600.     names(140) = "Rotenev"
  601.     names(141) = "Rukbat"
  602.     names(142) = "Rastaban"
  603.     names(143) = "Sabik"
  604.     names(144) = "Sadr"
  605.     names(145) = "Saiph"
  606.     names(146) = "Sargas"
  607.     names(147) = "Sarin"
  608.     names(148) = "Syrma"
  609.     names(149) = "Spica"
  610.     names(150) = "Sirius"
  611.     names(151) = "Tarazed"
  612.     names(152) = "Taygeta"
  613.     names(153) = "Tejat"
  614.     names(154) = "Thabit"
  615.     names(155) = "Thuban"
  616.     names(156) = "Tiaki"
  617.     names(157) = "Toliman"
  618.     names(158) = "Torcular"
  619.     names(157) = "Umala"
  620.     names(158) = "Ulatte"
  621.     names(159) = "Ubbessa"
  622.     names(160) = "Unoless"
  623.     names(161) = "Umaddem"
  624.     names(162) = "Ummbra"
  625.     names(162) = "Uniqu"
  626.     names(163) = "Uzzaal"
  627.     names(164) = "Vega"
  628.     names(165) = "Veritate"
  629.     names(166) = "Vindetrix"
  630.     names(167) = "Vedas"
  631.     names(168) = "Vergg"
  632.     names(169) = "Vacant"
  633.     names(170) = "Vucae"
  634.     names(171) = "Vicar"
  635.     names(172) = "Wasat"
  636.     names(173) = "Wazn"
  637.     names(174) = "Wezen"
  638.     names(175) = "Waiten"
  639.     names(176) = "Wachar"
  640.     names(177) = "Wheelz"
  641.     names(178) = "Whatsp"
  642.     names(179) = "Wassand"
  643.     names(180) = "Xenno"
  644.     names(181) = "Xyphod"
  645.     names(182) = "Xu"
  646.     names(183) = "Xaal"
  647.     names(184) = "Xyross"
  648.     names(185) = "Xiggot"
  649.     names(186) = "Xirrks"
  650.     names(187) = "Yed"
  651.     names(188) = "Yildun"
  652.     names(189) = "Yundun"
  653.     names(190) = "Yavyo"
  654.     names(191) = "Yotrac"
  655.     names(192) = "Yxzoqu"
  656.     names(193) = "Ynnot"
  657.     names(194) = "Zaniah"
  658.     names(195) = "Zaurak"
  659.     names(196) = "Zhang"
  660.     names(197) = "Zibal"
  661.     names(198) = "Zosma"
  662.     names(199) = "Zuben"
  663.  
  664.  
  665.  
  666.  
  667.  
  668.  
  669.  
  670.  
  671.  
  672.  
Title: Re: Beyond Sol
Post by: OldMoses on December 09, 2019, 03:26:13 am
I was starting to build a nice little local empire, pretty cool. I did find that the dropdown would freeze on me occasionally.
Title: Re: Beyond Sol
Post by: romichess on December 09, 2019, 04:18:46 am
Hi Andy, I noticed the mouse freezing only once. But it unfroze itself after 20 seconds. Thanks for trying out my game! I need to not neglect my sleep. Just a moment ago my head hit the pillow and I realized that the computer players don't need to think every frame. They could be scheduled one player per frame. So up out of bed I lept. It was a five minute fix. The mouse is much more responsive now. Here is the source and I am off to bed, again. This time for real, lol.

Code: QB64: [Select]
  1.  TYPE stars
  2.     n AS STRING * 10 '                 Name of star
  3.     x AS INTEGER '                     x-position
  4.     y AS INTEGER '                     y-position
  5.     o AS INTEGER '                     Owner
  6.     c AS INTEGER '                     Color
  7.     s AS INTEGER '                     Size
  8.     t AS INTEGER '                     (Type of planetary system; terran, frozen, radiated, toxic, etc.) Ships
  9.     p AS INTEGER '                     (Population) For now ships produced per turn
  10.  
  11. TYPE FLEETS
  12.     n AS INTEGER
  13.     x1 AS INTEGER
  14.     y1 AS INTEGER
  15.     x2 AS INTEGER
  16.     y2 AS INTEGER
  17.     o AS INTEGER
  18.     d AS INTEGER
  19.  
  20. 'DECLARE SUB NewGame
  21. 'DECLARE SUB PaintStars
  22. 'DECLARE SUB StarNames
  23. 'DECLARE SUB ShowPanel (i)
  24. 'DECLARE SUB Identify (x, y)
  25. 'DECLARE SUB PaintBackground
  26. 'DECLARE SUB GetInput
  27.  
  28. ' Global variables shared because they are needed in more than one routine
  29. DIM SHARED sw AS INTEGER '             Screen Width
  30. DIM SHARED sh AS INTEGER '             Screen Height
  31. DIM SHARED sww AS INTEGER '            Screen Width Wide margin
  32. DIM SHARED swn AS INTEGER '            Screen Width Narrow adjustment
  33. DIM SHARED shw AS INTEGER '            Screen Height Wide margine
  34. DIM SHARED shn AS INTEGER '            Screen Height Narrow adjustment
  35. DIM SHARED nw AS INTEGER '             games Natural screen Width
  36. DIM SHARED nh AS INTEGER '             games Natural screen Height
  37. DIM SHARED ratio AS _FLOAT '           the Ratio of the games natural screen width to the actual
  38. DIM SHARED star(100) AS stars '        100 stars - may change
  39. DIM SHARED names(200) AS STRING * 10 ' 200 star names
  40. DIM SHARED seed AS INTEGER '           Seed to prime the Randomizer to display identical background each frame
  41. DIM SHARED home(6) AS INTEGER '        The starting star for each player. The human always has star(0), Sol
  42. DIM SHARED tt AS INTEGER '             tt = 0 star names displayed, tt = 0 star names not didplayed
  43. DIM SHARED ch AS STRING * 1 '          Game loop key input variable
  44. DIM SHARED repeat AS INTEGER '         Game loop control variable
  45. DIM SHARED fleet(1000) AS FLEETS
  46. DIM SHARED srcstr AS STRING * 10
  47. DIM SHARED dststr AS STRING * 10
  48. DIM SHARED panx, pany AS INTEGER
  49. DIM SHARED strng AS STRING * 10
  50. DIM SHARED FrameCounter AS INTEGER
  51.  
  52. sw = _DESKTOPWIDTH '                   native video with of syatem
  53. sww = sw / 24 '                        margin based on native video width to keep stars away from edge
  54. swn = sw / 48 '                        adjustment that works with sww to keep stars away from left and top of screen
  55. nw = 1920
  56.  
  57. ratio = sw / 1920 '                    Used to adjust distances and sizes for various screen modes
  58.  
  59. shw = sh / 20
  60. shn = sh / 40
  61. nh = 1080
  62.  
  63. tt = 0
  64. cx = sw
  65. cp = 100
  66. h = 100
  67. ar = 0
  68. rng = 200
  69. slct = 0
  70. strng = ""
  71.  
  72. SCREEN _NEWIMAGE(sw, sh, 256) '        creates a screen the resolution of the users native system
  73.  
  74.  
  75. ps = _NEWIMAGE(400 * ratio, 540 * ratio, 256)
  76.  
  77. StarNames '                            Routine to load star names into string array stars(200)
  78.  
  79. NewGame
  80.  
  81. ttf1 = _LOADFONT("cyberbit.ttf", 14 * ratio, "BOLD")
  82. ttf2 = _LOADFONT("cyberbit.ttf", 72 * ratio, "BOLD")
  83.  
  84. repeat = 1
  85.  
  86. WHILE repeat
  87.  
  88.     _LIMIT 60 '                        Set to 60 frames per second
  89.  
  90.     CLS
  91.  
  92.     FrameCounter = FrameCounter + 1
  93.  
  94.     id = FrameCounter MOD 5 + 2
  95.  
  96.     PaintBackground
  97.  
  98.     PaintStars
  99.  
  100.     PaintFleet
  101.  
  102.     GetInput
  103.  
  104.     Player
  105.  
  106.     Identify x, y '                    Identify star mouse is over if any
  107.  
  108.     Computer
  109.  
  110.     _DISPLAY
  111.  
  112.  
  113.  
  114. SUB PaintFleet
  115.     count = fltcnt
  116.     i = 0
  117.     WHILE count
  118.         IF fleet(i).o <> 0 THEN
  119.             CIRCLE (fleet(i).x1, fleet(i).y1), 3, fleet(i).o + 8
  120.             count = count - 1
  121.         END IF
  122.         i = i + 1
  123.     WEND
  124.  
  125. SUB SendFleet (org, dst, ships)
  126.     IF ships = 0 THEN
  127.  
  128.     END IF
  129.     FOR i = 0 TO 999
  130.         IF fleet(i).o = 0 THEN
  131.             fleet(i).o = star(org).o
  132.             fleet(i).d = dst
  133.             fleet(i).x1 = star(org).x
  134.             fleet(i).y1 = star(org).y
  135.             fleet(i).x2 = star(dst).x
  136.             fleet(i).y2 = star(dst).y
  137.             fleet(i).n = ships
  138.             star(org).t = star(org).t - ships
  139.             fltcnt = fltcnt + 1
  140.             IF rng < 4000 THEN rng = rng + 1
  141.             EXIT FOR
  142.         END IF
  143.     NEXT
  144.     LL = LL + 1
  145.  
  146. SUB Computer
  147.     FOR i = 0 TO 99
  148.         r = INT(RND * 120)
  149.         IF r < star(i).p THEN
  150.             IF star(i).o > 0 THEN
  151.                 star(i).t = star(i).t + 1
  152.             ELSE
  153.                 IF INT(RND * 10) < 2 THEN
  154.                     star(i).t = star(i).t + 1
  155.                 END IF
  156.             END IF
  157.         END IF
  158.     NEXT
  159.     num = 0
  160.     FOR j = 0 TO 99
  161.         IF star(j).o = id AND j <> home(id) AND star(j).t > LL THEN
  162.             SendFleet j, home(id), star(j).t / 4
  163.         END IF
  164.     NEXT
  165.     org = home(id)
  166.     dst = 100
  167.     num = 10000
  168.     FOR j = 0 TO 99
  169.         IF star(j).o <> id THEN
  170.             sway = SQR(ABS(star(org).x - star(j).x) ^ 2 + ABS(star(org).y - star(j).y) ^ 2)
  171.             IF sway < rng AND star(j).t + sway + RND * 210 - 100 < num THEN
  172.                 num = star(j).t
  173.                 dst = j
  174.             END IF
  175.         END IF
  176.     NEXT
  177.     IF dst < 100 AND star(org).t > LL THEN
  178.         IF star(org).t > star(dst).t * 4 THEN
  179.             SendFleet org, dst, star(org).t / 2
  180.         END IF
  181.     END IF
  182.     count = fltcnt
  183.     i = 0
  184.     WHILE count
  185.         IF fleet(i).o <> 0 THEN
  186.             count = count - 1
  187.             IF fleet(i).x2 > fleet(i).x1 THEN
  188.                 fleet(i).x1 = fleet(i).x1 + 1
  189.             END IF
  190.             IF fleet(i).x2 < fleet(i).x1 THEN
  191.                 fleet(i).x1 = fleet(i).x1 - 1
  192.             END IF
  193.             IF fleet(i).y2 > fleet(i).y1 THEN
  194.                 fleet(i).y1 = fleet(i).y1 + 1
  195.             END IF
  196.             IF fleet(i).y2 < fleet(i).y1 THEN
  197.                 fleet(i).y1 = fleet(i).y1 - 1
  198.             END IF
  199.             IF fleet(i).x1 = fleet(i).x2 AND fleet(i).y1 = fleet(i).y2 THEN
  200.                 dst = fleet(i).d
  201.                 IF star(dst).o = fleet(i).o THEN
  202.                     star(dst).t = star(dst).t + fleet(i).n
  203.                     fleet(i).o = 0
  204.                     fltcnt = fltcnt - 1
  205.                 ELSE
  206.                     alive = 1
  207.                     WHILE alive
  208.                         alive = 0
  209.                         damorg = fleet(i).n / 11 + 1
  210.                         damdst = star(dst).t / 10 + 1
  211.                         fleet(i).n = fleet(i).n - damdst
  212.                         star(dst).t = star(dst).t - damorg
  213.                         IF fleet(i).n > 0 AND star(dst).t > 0 THEN
  214.                             alive = 1
  215.                         END IF
  216.                     WEND
  217.                     IF star(dst).t < 1 THEN
  218.                         star(dst).t = fleet(i).n
  219.                         star(dst).o = fleet(i).o
  220.                     END IF
  221.                     fleet(i).o = 0
  222.                     fltcnt = fltcnt - 1
  223.                 END IF
  224.             END IF
  225.         END IF
  226.         i = i + 1
  227.     WEND
  228.  
  229. SUB GetInput
  230.  
  231.     ch = INKEY$
  232.     IF ch = CHR$(27) THEN repeat = 0
  233.     IF ch = "n" THEN NewGame
  234.     IF ch = "t" THEN tt = 1 - tt
  235.     ch = ""
  236.  
  237.     WHILE _MOUSEINPUT: WEND '          Eat all the mice but keep last mouse to toy with
  238.  
  239.     x = _MOUSEX
  240.     y = _MOUSEY
  241.     mb = _MOUSEBUTTON(1)
  242.     clk = 0
  243.  
  244.     IF mb = -1 AND cx = sw THEN
  245.         cx = x
  246.         cy = y
  247.     END IF
  248.  
  249.     IF mb = 0 AND cx < sw THEN
  250.         IF ABS(x - cx) < 4 AND ABS(y - cy) < 4 THEN
  251.             clk = 1
  252.         END IF
  253.         cx = sw
  254.     END IF
  255.  
  256. SUB PaintBackground
  257.     x = RND * sw
  258.     y = RND * sh
  259.     c = RND * 14 + 1
  260.     PSET (x, y), c
  261.     RANDOMIZE USING seed
  262.     FOR i = 1 TO 600 * ratio
  263.         x = RND * sw
  264.         y = RND * sh
  265.         c = RND * 14 + 1
  266.         PSET (x, y), c
  267.     NEXT
  268.  
  269. SUB Player
  270.     tmp$ = RTRIM$(strng)
  271.     IF slct = 1 THEN
  272.         LINE (px, py)-(x, y), 10
  273.     END IF
  274.     IF pact = 1 THEN
  275.         ShowPanel ii
  276.         IF clk = 1 THEN
  277.             x1 = panx: x2 = panx + 400 * ratio
  278.             y1 = pany: y2 = pany + 540 * ratio
  279.             IF x > x1 + 216 * ratio AND x < x1 + 366 * ratio AND y > y1 + 460 * ratio AND y < y1 + 530 * ratio THEN
  280.                 pact = 0
  281.             END IF
  282.             IF x > x1 + 20 * ratio AND x < x1 + 380 * ratio AND y > y1 + 260 * ratio AND y < y1 + 320 * ratio THEN
  283.                 dig = (x - x1 - 32 * ratio) / (38 * ratio)
  284.                 strng = tmp$ + STR$(dig)
  285.             END IF
  286.             IF x > x1 + 266 * ratio AND x < x1 + 366 * ratio AND y > y1 + 366 * ratio AND y < y1 + 406 * ratio THEN
  287.                 strng = ""
  288.             END IF
  289.             IF x > x1 + 32 * ratio AND x < x1 + 182 * ratio AND y > y1 + 460 * ratio AND y < y1 + 530 * ratio THEN
  290.                 value = VAL(strng)
  291.                 strng = ""
  292.                 pact = 0
  293.                 IF value <= star(srcidx).t THEN
  294.                     SendFleet srcidx, dstidx, value
  295.                 END IF
  296.             END IF
  297.         END IF
  298.     END IF
  299.  
  300. SUB Identify (x, y)
  301.     FOR i = 0 TO 99
  302.         dx = star(i).x - x
  303.         dy = star(i).y - y
  304.         IF pact = 0 AND ABS(dx) <= star(i).s + 6 AND ABS(dy) <= star(i).s + 6 THEN
  305.             ii = i
  306.             IF star(i).o = 1 AND slct = 0 THEN
  307.                 IF clk THEN
  308.                     slct = 1
  309.                 END IF
  310.                 px = x
  311.                 py = y
  312.                 srcstr = star(i).n
  313.                 srcidx = i
  314.             ELSE
  315.                 IF slct = 1 OR pact = 1 THEN
  316.                     IF clk THEN
  317.                         slct = 0
  318.                         pact = 1
  319.                         dststr = star(i).n
  320.                         dstidx = i
  321.                     END IF
  322.                 END IF
  323.             END IF
  324.             EXIT FOR
  325.         END IF
  326.     NEXT
  327.  
  328. SUB ShowPanel (i)
  329.     x1 = star(i).x - 420 * ratio
  330.     IF star(i).x < sw / 2 THEN x1 = star(i).x + 20 * ratio
  331.     x2 = x1 + 400 * ratio
  332.     y1 = star(i).y
  333.     IF y1 > sh - 560 * ratio THEN y1 = sh - 560 * ratio
  334.     y2 = y1 + 540 * ratio
  335.     _DEST ps
  336.     CLS 0, 8
  337.     COLOR 0, 8
  338.     _FONT ttf2
  339.     n$ = RTRIM$(srcstr)
  340.     L = _PRINTWIDTH(n$)
  341.     _PRINTSTRING ((400 * ratio - L) / 2, 8 * ratio), n$, ps
  342.     n$ = "to"
  343.     L = _PRINTWIDTH(n$)
  344.     _PRINTSTRING ((400 * ratio - L) / 2, 80 * ratio), n$, ps
  345.     n$ = RTRIM$(dststr)
  346.     L = _PRINTWIDTH(n$)
  347.     _PRINTSTRING ((400 * ratio - L) / 2, 152 * ratio), n$, ps
  348.     LINE (20 * ratio, 240 * ratio)-(380 * ratio, 240 * ratio), 0
  349.     _PRINTSTRING (20 * ratio, 260 * ratio), "0123456789", ps
  350.     _PRINTSTRING (20 * ratio, 346 * ratio), strng, ps
  351.     xo = 286 * ratio: xd = 366 * ratio: yo = 366 * ratio: yd = 406 * ratio
  352.     LINE (xo, yo)-(xd, yd), 7, BF
  353.     xo = 32 * ratio: xd = 182 * ratio: yo = 460 * ratio: yd = 530 * ratio
  354.     LINE (xo, yo)-(xd, yd), 7, BF
  355.     xo = 216 * ratio: xd = 366 * ratio: yo = 460 * ratio: yd = 530 * ratio
  356.     LINE (xo, yo)-(xd, yd), 7, BF
  357.     COLOR 8, 7
  358.     _FONT ttf1
  359.     _PRINTSTRING (300 * ratio, 380 * ratio), "CLEAR", ps
  360.     _FONT ttf2
  361.     _PRINTSTRING (60 * ratio, 460 * ratio), "Ok", ps
  362.     _PRINTSTRING (220 * ratio, 460 * ratio), "Quit", ps
  363.     _PUTIMAGE (x1, y1), ps, 0, (0, 0)-(400 * ratio, 540 * ratio)
  364.     panx = x1: pany = y1
  365.     _DEST 0
  366.  
  367. SUB PaintStars
  368.     FOR i = 0 TO 99
  369.         c = star(i).c
  370.         x = star(i).x
  371.         y = star(i).y
  372.         o = star(i).o
  373.         CIRCLE (x, y), (star(i).s + 6) * ratio, c
  374.         COLOR 15
  375.         IF o > 0 THEN
  376.             PAINT (x, y), o + 8, c
  377.         END IF
  378.         _FONT ttf1
  379.         IF tt THEN
  380.             n$ = star(i).n
  381.             n$ = RTRIM$(n$)
  382.             L = _PRINTWIDTH(n$)
  383.         ELSE
  384.             n$ = STR$(star(i).t)
  385.             L = _PRINTWIDTH(n$)
  386.         END IF
  387.         _PRINTSTRING (x - L / 2, y + 12), n$, 0
  388.     NEXT
  389.  
  390. SUB NewGame
  391.     DIM k AS INTEGER
  392.     DIM r AS INTEGER
  393.     DIM dx AS INTEGER
  394.     DIM dy AS INTEGER
  395.     DIM n AS STRING * 10
  396.     FOR i = 0 TO 999
  397.         fleet(i).o = 0
  398.     NEXT
  399.     fltcnt = 0
  400.     LL = 50
  401.     seed = RND * 1000
  402.     star(0).n = "Sol"
  403.     star(0).x = RND * (sw - sww) + swn
  404.     star(0).y = RND * (sh - shw) + shn
  405.     star(0).c = 14
  406.     star(0).s = 2
  407.     star(0).o = 1
  408.     star(0).p = 20
  409.     star(0).t = 100
  410.     home(0) = 0
  411.     FOR i = 1 TO 99
  412.         k = 1
  413.         WHILE k
  414.             k = 0
  415.             x = RND * (sw - sww) + swn
  416.             y = RND * (sh - shw) + shn
  417.             r = INT(RND * 200)
  418.             n = names(r)
  419.             FOR j = 0 TO i - 1
  420.                 dx = x - star(j).x
  421.                 dy = y - star(j).y
  422.                 IF ABS(dx) < sww AND ABS(dy) < shw THEN
  423.                     k = 1
  424.                 END IF
  425.                 IF n = star(j).n THEN
  426.                     k = 1
  427.                 END IF
  428.             NEXT
  429.         WEND
  430.         star(i).n = n
  431.         star(i).x = x
  432.         star(i).y = y
  433.         star(i).c = RND * 6 + 9
  434.         star(i).s = RND * 5
  435.         star(i).o = 0
  436.         star(i).p = star(i).s + (RND * 8) + 1
  437.         star(i).t = 0
  438.     NEXT
  439.     FOR i = 2 TO 6
  440.         k = 1
  441.         WHILE k
  442.             k = 0
  443.             r = RND * 100
  444.             FOR j = 1 TO i - 1
  445.                 IF r = home(j) THEN k = 1
  446.                 x = star(0).x
  447.                 y = star(0).y
  448.                 dx = ABS(star(r).x - x)
  449.                 dy = ABS(star(r).y - y)
  450.                 IF dx < sw / 4 AND dy < sh / 4 THEN k = 1
  451.             NEXT
  452.         WEND
  453.         home(i) = r
  454.         star(r).o = i
  455.         star(r).p = 20
  456.         star(r).t = 100
  457.     NEXT
  458.  
  459. ' A lot of star names I made up
  460.  
  461. SUB StarNames
  462.     names(0) = "Acamar"
  463.     names(1) = "Arcab"
  464.     names(2) = "Acrux"
  465.     names(3) = "Adhara"
  466.     names(4) = "Arneb"
  467.     names(5) = "Antares"
  468.     names(6) = "Arcturus"
  469.     names(7) = "Atria"
  470.     names(8) = "Beid"
  471.     names(9) = "Betelgeuse"
  472.     names(10) = "Botein"
  473.     names(11) = "Beemim"
  474.     names(12) = "Bellatrix"
  475.     names(13) = "Bharani"
  476.     names(14) = "Biham"
  477.     names(15) = "Brachium"
  478.     names(16) = "Canopus"
  479.     names(17) = "Capella"
  480.     names(18) = "Castor"
  481.     names(19) = "Chara"
  482.     names(20) = "Cursa"
  483.     names(21) = "Copernicus"
  484.     names(22) = "Chalawan"
  485.     names(23) = "Chertan"
  486.     names(24) = "Dabih"
  487.     names(25) = "Dalim"
  488.     names(26) = "Deneb"
  489.     names(27) = "Denebola"
  490.     names(28) = "Diadem"
  491.     names(29) = "Diphda"
  492.     names(30) = "Dschubba"
  493.     names(31) = "Dziban"
  494.     names(32) = "Edasich"
  495.     names(33) = "Electra"
  496.     names(34) = "Elgafar"
  497.     names(35) = "Elkurud"
  498.     names(36) = "Elnath"
  499.     names(37) = "Eltanin"
  500.     names(38) = "Enif"
  501.     names(39) = "Errai"
  502.     names(40) = "Fafnir"
  503.     names(41) = "Fang"
  504.     names(42) = "Fawaris"
  505.     names(43) = "Felis"
  506.     names(44) = "Fomalhaut"
  507.     names(45) = "Fulu"
  508.     names(46) = "Fumal"
  509.     names(47) = "Furud"
  510.     names(48) = "Garnet"
  511.     names(49) = "Giausar"
  512.     names(50) = "Gienah"
  513.     names(51) = "Ginan"
  514.     names(52) = "Gomeisa"
  515.     names(53) = "Graffias"
  516.     names(54) = "Grumium"
  517.     names(55) = "Gudja"
  518.     names(56) = "Hadar"
  519.     names(57) = "Haedus"
  520.     names(58) = "Hamal"
  521.     names(59) = "Hassaleh"
  522.     names(60) = "Hatysa"
  523.     names(61) = "Helvetios"
  524.     names(62) = "Heze"
  525.     names(63) = "Homan"
  526.     names(64) = "Iklil"
  527.     names(65) = "Imai"
  528.     names(66) = "Intercrus"
  529.     names(67) = "Izar"
  530.     names(68) = "Iccar"
  531.     names(69) = "Inar"
  532.     names(70) = "Iaeth"
  533.     names(71) = "Imaous"
  534.     names(72) = "Jabbah"
  535.     names(73) = "Jishui"
  536.     names(74) = "Jax"
  537.     names(75) = "Jalae"
  538.     names(76) = "Jewel"
  539.     names(77) = "Jumbo"
  540.     names(78) = "Jerue"
  541.     names(79) = "Jabear"
  542.     names(80) = "Kakkab"
  543.     names(81) = "Kang"
  544.     names(82) = "Kekouan"
  545.     names(83) = "Keid"
  546.     names(84) = "Kitalpha"
  547.     names(85) = "Kochab"
  548.     names(86) = "Kolob"
  549.     names(87) = "Kobol"
  550.     names(88) = "Larawag"
  551.     names(89) = "Lesath"
  552.     names(90) = "Libertas"
  553.     names(91) = "Lich"
  554.     names(92) = "Lilly"
  555.     names(93) = "Laddel"
  556.     names(94) = "Luminous"
  557.     names(95) = "Lasacious"
  558.     names(96) = "Mizar"
  559.     names(97) = "Markab"
  560.     names(98) = "Matar"
  561.     names(99) = "Mintaka"
  562.     names(100) = "Meleph"
  563.     names(101) = "Menkar"
  564.     names(102) = "Merga"
  565.     names(103) = "Merope"
  566.     names(104) = "Nahn"
  567.     names(105) = "Naos"
  568.     names(106) = "Nashira"
  569.     names(107) = "Navi"
  570.     names(108) = "Nekkar"
  571.     names(109) = "Nembus"
  572.     names(110) = "Nihal"
  573.     names(111) = "Nunki"
  574.     names(112) = "Ogma"
  575.     names(113) = "Okab"
  576.     names(114) = "Ohmy"
  577.     names(115) = "Oragami"
  578.     names(116) = "Origen"
  579.     names(117) = "Omanii"
  580.     names(118) = "Obytewa"
  581.     names(119) = "Oglok"
  582.     names(120) = "Phact"
  583.     names(121) = "Pherkad"
  584.     names(122) = "Pleione"
  585.     names(122) = "Polaris"
  586.     names(123) = "Pollux"
  587.     names(124) = "Procyon"
  588.     names(125) = "Proxima"
  589.     names(126) = "Polis"
  590.     names(127) = "Quaint"
  591.     names(128) = "Quazzat"
  592.     names(129) = "Quetzal"
  593.     names(130) = "Qussol"
  594.     names(131) = "Quella"
  595.     names(132) = "Quyaeo"
  596.     names(133) = "Ququdas"
  597.     names(134) = "Quekak"
  598.     names(135) = "Rasalas"
  599.     names(136) = "Regor"
  600.     names(137) = "Regulus"
  601.     names(138) = "Rigel"
  602.     names(139) = "Revati"
  603.     names(140) = "Rotenev"
  604.     names(141) = "Rukbat"
  605.     names(142) = "Rastaban"
  606.     names(143) = "Sabik"
  607.     names(144) = "Sadr"
  608.     names(145) = "Saiph"
  609.     names(146) = "Sargas"
  610.     names(147) = "Sarin"
  611.     names(148) = "Syrma"
  612.     names(149) = "Spica"
  613.     names(150) = "Sirius"
  614.     names(151) = "Tarazed"
  615.     names(152) = "Taygeta"
  616.     names(153) = "Tejat"
  617.     names(154) = "Thabit"
  618.     names(155) = "Thuban"
  619.     names(156) = "Tiaki"
  620.     names(157) = "Toliman"
  621.     names(158) = "Torcular"
  622.     names(157) = "Umala"
  623.     names(158) = "Ulatte"
  624.     names(159) = "Ubbessa"
  625.     names(160) = "Unoless"
  626.     names(161) = "Umaddem"
  627.     names(162) = "Ummbra"
  628.     names(162) = "Uniqu"
  629.     names(163) = "Uzzaal"
  630.     names(164) = "Vega"
  631.     names(165) = "Veritate"
  632.     names(166) = "Vindetrix"
  633.     names(167) = "Vedas"
  634.     names(168) = "Vergg"
  635.     names(169) = "Vacant"
  636.     names(170) = "Vucae"
  637.     names(171) = "Vicar"
  638.     names(172) = "Wasat"
  639.     names(173) = "Wazn"
  640.     names(174) = "Wezen"
  641.     names(175) = "Waiten"
  642.     names(176) = "Wachar"
  643.     names(177) = "Wheelz"
  644.     names(178) = "Whatsp"
  645.     names(179) = "Wassand"
  646.     names(180) = "Xenno"
  647.     names(181) = "Xyphod"
  648.     names(182) = "Xu"
  649.     names(183) = "Xaal"
  650.     names(184) = "Xyross"
  651.     names(185) = "Xiggot"
  652.     names(186) = "Xirrks"
  653.     names(187) = "Yed"
  654.     names(188) = "Yildun"
  655.     names(189) = "Yundun"
  656.     names(190) = "Yavyo"
  657.     names(191) = "Yotrac"
  658.     names(192) = "Yxzoqu"
  659.     names(193) = "Ynnot"
  660.     names(194) = "Zaniah"
  661.     names(195) = "Zaurak"
  662.     names(196) = "Zhang"
  663.     names(197) = "Zibal"
  664.     names(198) = "Zosma"
  665.     names(199) = "Zuben"
  666.  
Title: Re: Beyond Sol
Post by: Cobalt on December 09, 2019, 10:04:41 am
Heading for a Master of Orion clone here! Interesting.  Just how much of a clone are you going for?
Title: Re: Beyond Sol
Post by: romichess on December 09, 2019, 10:34:51 am
Not really a clone at all. Just something about on MOO's level with less micromanagement. And not even this code as this was just a learning exercise. This game is actually a real time version of an old Atari 800 turn based game. The planetary mechanics are identical. But, derivative would still be a better fitting word even for that comparison.
Title: Re: Beyond Sol
Post by: Cobalt on December 09, 2019, 11:09:25 am
oh okay. For myself, I was full blown cloning it,

Code: QB64: [Select]
  1. REM'$include: 'Zlib.bi'
  2.  DECLARE DYNAMIC LIBRARY ".\zlib1"
  3.   FUNCTION zlibVersion$ ()
  4.   FUNCTION zlibCompileFlags~& ()
  5.   FUNCTION compressBound& (BYVAL LEN AS LONG)
  6.   FUNCTION compress& (BYVAL dest AS _OFFSET, destLen AS LONG, BYVAL source AS _OFFSET, BYVAL sourceLen AS LONG)
  7.   FUNCTION compress2& (BYVAL dest AS _OFFSET, destLen AS LONG, BYVAL source AS _OFFSET, BYVAL sourceLen AS LONG, BYVAL level AS LONG)
  8.   FUNCTION uncompress& (BYVAL dest AS _OFFSET, destLen AS LONG, BYVAL source AS _OFFSET, BYVAL sourceLen AS LONG)
  9.   FUNCTION crc32~& (BYVAL PNGCRC AS LONG, BYVAL buf AS _OFFSET, BYVAL LEN AS LONG)
  10.   FUNCTION adler32~& (BYVAL adler AS LONG, BYVAL buf AS _OFFSET, BYVAL LEN AS LONG)
  11.   FUNCTION zError$ (BYVAL codenum AS INTEGER)
  12.  
  13. TYPE Planet_Data
  14.  Name AS STRING * 20 'Name of Planet
  15.  XLoc AS INTEGER '    Galactic X location
  16.  YLoc AS INTEGER '    Galactic Y location
  17.  Colr AS _BYTE '      Star Color
  18.  Size AS _BYTE '      Star Size
  19.  Imag AS _BYTE '      Planetoid image
  20.  Environ AS _BYTE '   Planets enviromental type
  21.  Wealth AS _BYTE '    Mineral wealth
  22.  BasePop AS INTEGER ' Population in millions planet can support normally
  23.  ModPop AS INTEGER '  Population modifier due to Terraforming.
  24.  MaxPop AS INTEGER '  Total maximum population planet can support
  25.  CurPop AS INTEGER '  Current Population on planet
  26.  LastPop AS INTEGER ' Last years population
  27.  Factory AS INTEGER ' Factory count on planet
  28.  TotalProd AS INTEGER 'Systems total production
  29.  ActualProd AS INTEGER 'Systems adjusted production
  30.  Bases AS INTEGER '   Missle defence bases on planet
  31.  ShipProduction AS _BYTE 'Ship currently in production
  32.  ShipCredits AS INTEGER ' amount of credits currently put toward ship production
  33.  EcoCredits AS INTEGER '  amount of credits currently put toward ecology upgrade
  34.  Relocate AS _BYTE '      System ships are to relocate to
  35.  Sheild AS _BYTE '        Shield level protecting planet
  36.  SheildCredits AS INTEGER 'amount of credits currently put toward shield production
  37.  Waste AS _UNSIGNED _BYTE 'industrial waste on planet(each factory produces .5BC waste a year)
  38.  Reserve AS LONG '    Credits in planetary reserve
  39.  Owner AS _BYTE '     which race controls planet
  40.  Race1Visit AS _BYTE 'has race 1 visited planet
  41.  Race2Visit AS _BYTE 'has race 2 visited planet
  42.  Race3Visit AS _BYTE 'has race 3 visited planet
  43.  Race4Visit AS _BYTE 'has race 4 visited planet
  44.  Race5Visit AS _BYTE 'has race 5 visited planet
  45.  Race6Visit AS _BYTE 'has race 6 visited planet
  46.  Ship AS _BYTE '      percent of planetary production in Ships
  47.  Defn AS _BYTE '      percent of planetary production in Defence
  48.  Indu AS _BYTE '      percent of planetary production in Industry
  49.  Eco AS _BYTE '       percent of planetary production in Ecology
  50.  Tech AS _BYTE '      percent of planetary production in Technology
  51.  Shiplock AS _BYTE '  is ship production locked
  52.  DefnLock AS _BYTE '  is defence production locked
  53.  InduLock AS _BYTE '  is factory production locked
  54.  EcoLock AS _BYTE '   is ecology production locked
  55.  TechLock AS _BYTE '  is technology production locked
  56.  Disaster AS _BYTE '  what threat is facing the planet
  57.  Years AS _BYTE '     how long does the planet have
  58.  Solution AS INTEGER 'how much is needed until disaster is averted
  59.  TransCount AS _UNSIGNED _BYTE '# of population being transported
  60.  TransLoc AS _BYTE '  system destination of transports
  61.  
  62. TYPE Game_Data
  63.  Galaxy_Size AS _BYTE
  64.  Difficulty AS _BYTE
  65.  Races AS _BYTE
  66.  Player_Race AS _BYTE
  67.  Player_Colr AS _BYTE
  68.  Player_Name AS STRING * 20
  69.  HomeWorld_Name AS STRING * 20
  70.  Start_Game AS _BYTE
  71.  Frame AS _BYTE 'vortex animation frame
  72.  Selected_Planet AS _BYTE
  73.  Sound_Setting AS _BYTE
  74.  Quit_Game AS _BYTE
  75.  
  76. TYPE Player_Stats
  77.  FactoryCost AS _BYTE
  78.  Factorywaste AS _BYTE
  79.  EcoRestore AS _BYTE
  80.  Computers AS _BYTE
  81.  Construction AS _BYTE
  82.  ForceFeilds AS _BYTE
  83.  Planetology AS _BYTE
  84.  Propulsion AS _BYTE
  85.  WeaponTech AS _BYTE
  86.  
  87. TYPE Font
  88.  Xsiz AS _BYTE
  89.  Xoff AS INTEGER
  90.  
  91. TYPE Ship_Data
  92.  Nam AS STRING * 11
  93.  Siz AS _BYTE
  94.  Tons AS INTEGER
  95.  Hits AS INTEGER
  96.  Defn AS INTEGER
  97.  Cost AS INTEGER
  98.  Armor AS _BYTE
  99.  Engine AS _BYTE
  100.  Manuver AS _BYTE
  101.  Computer AS _BYTE
  102.  Shield AS _BYTE
  103.  Emc AS _BYTE
  104.  Weapon1 AS _BYTE
  105.  Weapon2 AS _BYTE
  106.  Weapon3 AS _BYTE
  107.  Weapon4 AS _BYTE
  108.  Count1 AS _BYTE
  109.  Count2 AS _BYTE
  110.  Count3 AS _BYTE
  111.  Count4 AS _BYTE
  112.  Special1 AS _BYTE
  113.  Special2 AS _BYTE
  114.  Special3 AS _BYTE
  115.  
  116. SCREEN _NEWIMAGE(640, 400, 32)
  117. CONST TRUE = -1, FALSE = NOT TRUE
  118. CONST CENTER = 2, LEFT = 1
  119. CONST Black = 1, White = 2, Blue = 3, Green = 4, Yellow = 5, Red = 6, Grey = 7, YellowG = 8, WhiteG = 9, GreyG = 10, DkGreen = 11, BrGreen = 12, MdGreen = 13, LtGreen = 14, YellowGA = 15
  120. CONST NORMAL = 0, SMALL = 1, XSMALL = 2, PLANETOID = 3, OUTLINE = 4
  121. CONST ACT = 1, TOT = 2
  122. CONST UPoor = 1, Poor = 2, Norm = 3, Artifact = 6, Rich = 4, URich = 5, Orion = 7
  123.  
  124. DIM SHARED G AS Game_Data, F(2, 66) AS Font, Player(6) AS Player_Stats
  125. DIM SHARED Mix&, Temp&, MFlags AS _BYTE, Saves(6) AS STRING
  126. DIM SHARED Layer(64) AS LONG, T(16) AS LONG, PT(13) AS STRING * 1, PW(7) AS STRING * 10
  127. DIM SHARED Races(10) AS STRING, Rdescript(10) AS STRING, Colrs(6) AS STRING, Leaders(10, 6) AS STRING, Planets(120) AS STRING
  128. DIM SHARED PlanetCount(4), Planet(108) AS Planet_Data, Ship(5, 5) AS Ship_Data
  129. Temp& = _NEWIMAGE(640, 400, 32)
  130. m = _MEMIMAGE(Temp&)
  131.  
  132. DATA Human,Mrrshan,Silicoid,Sakkra,Psilon,Alkari,Klackon,Bulrathi,Meklar,Darlok
  133. DATA "Durash IV","Alexander","Strader","Johann III","Lasitus","Bladrov II","Prrsha","Miamar","Mirana","Shandra","Jasana","Yalara","Igneous","Crystous","Geode","Carnax","Sedimin","Granid","Hissa","Kryssta","Sauron","Tyranid","Guanar","Saurak","Tachaon","Quark","Meson","Kelvan","Dynalon","Zygot  ","Farseer","Skylord","Ariel","Redwing","Highsoar","Sharpclaw","Ixitixl","K'kalak","Kikitik","Xantak","Kaxal","Klaquan","Grunk","Bullux","Krungo","Monch","Durpp","Smurch","M5-35","TX-1138","CB-715","QX-537","INT-986","TVC-15","Ssithra","Nazgur","Darquan","Morfane","Shador","Narzina"
  134. DATA "Sol","Fierias","Cryslon","Sssla","Mentar","Altair","Kholdan","Ursa","Meklon","Nazin","Paranar","Denubius","Antares","Draconis","Zoctan","Rigel","Talas","Moro","Quayal","Neptunus","Jinga","Argus","Escalon","Berel","Collassa","Whynil","Nordia","Tau Cygni","Phyco","Firma","Keeta","Arietis","Rhilus","Willow","Mu Delphi","Stalaz","Gorra","Beta Ceti","Spica","Omicron","Rha","Kailis","Vulcan","Centauri","Herculis","Endoria","Kulthos","Hyboria","Zhardan","Yarrow","Incedius","Paladia","Romulas","Galos","Uxmai","Thrax","Laan","Imra","Selia","Seidon","Tao","Rana","Vox","Maalor","Xudax","Helos","Crypto","Gion","Phantos","Reticuli","Maretta","Toranor","Exis","Tyr","Ajax","Obaca","Dolz","Drakka","Ryoun","Vega","Anraq","Gienah","Rotan","Proxima","Mobas","Iranha","Celtsi","Dunatis","Morrig","Primodius","Nyarl","Ukko","Crius","Hyades","Kronos","Guradas","Rayden","Kakata","Misha","Xendalla","Artemis","Aurora","Proteus","Esper","Darrian","Trax","Xengara","Nitzer","Simius","Bootis","Pollus","Cygni","Aquilae","Volantis","Tauri","Regulus","Klystron","Lyae","Capella","Alcor"
  135. 'Font offsets and sizes NORMAL
  136. '     0   1   2   3   4   5   6   7   8   9
  137. DATA 0,6,1,3,0,6,0,7,0,6,0,6,0,6,0,6,0,6,0,6
  138. '     a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   -   .
  139. DATA 0,7,0,6,0,6,0,6,0,6,0,6,0,6,0,6,2,3,1,5,0,6,0,6,0,7,0,6,0,6,0,6,0,7,0,6,0,6,0,6,0,6,0,7,0,7,0,6,0,6,0,7
  140. DATA 1,4,0,5,0,5,0,5,0,5,0,5,0,5,0,5,2,2,1,4,0,5,2,3,0,7,0,5,0,5,0,5,0,5,0,5,0,5,0,6,0,5,0,6,0,7,0,5,0,5,0,5,0,5,3,4
  141. '----------------------PLANETOID
  142. '     0   1   2   3   4   5   6   7   8   9
  143. DATA 0,7,0,4,0,7,0,7,0,7,0,7,0,7,0,7,0,7,0,7
  144. '     a    b    c    d    e    f    g    h    i   j   k    l    m    n    o    p    q    r    s    t   u    v    w    x    y    z    -   /       .   :
  145. DATA 0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,10,0,5,0,7,0,10,0,10,0,13,0,10,0,10,0,10,0,11,0,10,0,10,0,9,0,10,0,10,0,13,0,10,0,10,0,10
  146. DATA 0,07,0,07,0,07,0,07,0,07,0,06,0,07,0,07,0,4,0,5,0,07,0,04,0,10,0,07,0,07,0,07,0,07,0,07,0,07,0,6,0,07,0,07,0,10,0,07,0,07,0,07,0,7,0,8,0,9,0,4,0,4
  147.  
  148. DATA "expert traders,and magnificent,diplomats"
  149. DATA "superior gunners"
  150. DATA "immune to,hostile plant,evniroments"
  151. DATA "increased,population,growth"
  152. DATA "superior,research,techniques"
  153. DATA "superior pilots"
  154. DATA "increased,worker,production"
  155. DATA "terrific ground,fighters"
  156. DATA "enhanced,factory,controls"
  157. DATA "supreme spies"
  158. DATA Blue,Green,Purple,Red,White,Yellow
  159. DATA 24,48,70,108
  160. 'starting ship data
  161. Starting_Ships:
  162. DATA "Scout",0,1,40,3,2,6,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0
  163. DATA "Fighter",0,2,40,3,2,6,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0
  164. DATA "Destroyer",1,7,200,18,1,36,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0
  165. DATA "Bomber",1,8,200,18,1,36,1,1,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0
  166. DATA "Colony Ship",2,13,1000,100,0,200,1,1,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0
  167. Planet_Types:
  168. DATA t,j,o,a,s,d,m,b,u,e,i,p,r,,n
  169. Planet_Wealth:
  170. DATA "ultra poor","poor","normal","rich","ultra rich","artifact","orion"
  171.  
  172. Mix& = _NEWIMAGE(640, 400, 32) 'screen premix layer
  173. Layer(2) = _NEWIMAGE(640, 400, 32) 'Main menu animation layer
  174. 'Layer(3) = _LOADIMAGE("SpaceLord.bmp", 32)
  175. 'Layer(4) = _LOADIMAGE("menuchoice.bmp", 32)
  176. 'Layer(5) = _LOADIMAGE("HandPointer.bmp", 32)
  177. 'Layer(6) = _LOADIMAGE("NewGame0.bmp", 32)
  178. 'Layer(7) = _LOADIMAGE("GameOptions.bmp", 32)
  179. 'Layer(8) = _LOADIMAGE("custom0.bmp", 32)
  180. Layer(9) = _NEWIMAGE(640, 400, 32) 'font transferlayer for _clearcolor'_LOADIMAGE("orionFont.bmp", 32)
  181. 'Layer(10) = _LOADIMAGE("RaceFaces.bmp", 32)
  182. 'Layer(11) = _LOADIMAGE("Flags.bmp", 32)
  183. 'Layer(12) = _LOADIMAGE("MainView0.bmp", 32)
  184. 'Layer(13) = _LOADIMAGE("Game_Options.bmp", 32)
  185. 'Layer(14) = _LOADIMAGE("Design_Screen.bmp", 32)
  186. 'Layer(15) = _LOADIMAGE("shipsheet.bmp", 32)
  187. 'Layer(16) = _LOADIMAGE("fleetbrb0.bmp", 32)
  188. 'Layer(17) = _LOADIMAGE("viewship0.bmp", 32)
  189. 'Layer(18) = _LOADIMAGE("shipspec.bmp", 32)
  190. 'Layer(19) = _LOADIMAGE("mapview0.bmp", 32)
  191. 'Layer(20) = _LOADIMAGE("sky.bmp", 32)
  192.  
  193. 'Layer(28) = _LOADIMAGE("FontAdvanced.bmp", 32)
  194. Layer(29) = _NEWIMAGE(1080, 64, 256) 'fontlayer
  195. Layer(30) = _NEWIMAGE(640, 400, 32) 'click layer
  196.  
  197. MFI_Loader "SpaceLordV1.MFI"
  198.  
  199. _CLEARCOLOR _RGB32(0, 0, 0), Layer(3)
  200. _CLEARCOLOR _RGB32(0, 0, 0), Layer(4)
  201. _CLEARCOLOR _RGB32(0, 0, 0), Layer(5)
  202. _CLEARCOLOR _RGB32(0, 0, 0), Layer(9)
  203. '_CLEARCOLOR _RGB32(2, 2, 2), Layer(9)
  204. _CLEARCOLOR _RGB32(0, 0, 0), Layer(11)
  205. _CLEARCOLOR _RGB32(0, 0, 0), Layer(12)
  206. _CLEARCOLOR _RGB32(0, 0, 0), Layer(13)
  207. _CLEARCOLOR _RGB32(0, 0, 0), Layer(15)
  208. _CLEARCOLOR _RGB32(0, 0, 0), Layer(17)
  209. _CLEARCOLOR _RGB32(0, 0, 0), Layer(18)
  210. _CLEARCOLOR _RGB32(3, 3, 3), Layer(19)
  211.  
  212. _CLEARCOLOR 0, Layer(29)
  213. 'randomize timer
  214. InitFont 0
  215. _DELAY .33 'time for window to load
  216. _TITLE "Master Of Orion 64"
  217.  
  218. _SOURCE Layer(30) 'set to Click layer for mouse checking. only layer that needs to be checked.
  219.  
  220. MFlags = 12 'menu option flags; 1-autosave file found, 2-saved games found,4-new game option, 8-quit game option
  221. Check_Saves
  222.  
  223. '----------------Load data-----------------
  224. FOR i%% = 1 TO 10 'load race names
  225.  READ Races(i%%)
  226. NEXT i%%
  227. FOR i%% = 1 TO 10 'load leader default names
  228.  FOR j%% = 1 TO 6
  229.   READ Leaders(i%%, j%%)
  230.  NEXT j%%
  231. NEXT i%%
  232. FOR i%% = 1 TO 120 'load planet default names
  233.  READ Planets(i%%)
  234. NEXT i%%
  235. FOR i%% = 0 TO 63 'load font offset/sizes NORMAL
  236.  READ F(0, i%%).Xloc, F(0, i%%).Xsiz
  237. NEXT i%%
  238. '------load font offset/sizes PLANETIOD-----
  239. READ F(1, 0).Xloc, F(1, 0).Xsiz
  240. F(1, 0).Xoff = 0
  241. FOR i%% = 1 TO 66
  242.  READ F(1, i%%).Xloc, F(1, i%%).Xsiz
  243.  F(1, i%%).Xoff = F(1, i%% - 1).Xoff + F(1, i%% - 1).Xsiz
  244. NEXT i%%
  245.  
  246. FOR i%% = 1 TO 10
  247.  READ Rdescript(i%%)
  248. NEXT i%%
  249. FOR i%% = 1 TO 6
  250.  READ Colrs(i%%)
  251. NEXT i%%
  252. FOR i%% = 1 TO 4
  253.  READ PlanetCount(i%%)
  254. NEXT i%%
  255. RESTORE Starting_Ships
  256. FOR i%% = 0 TO 4
  257.  READ Ship(0, i%%).Nam
  258.  READ Ship(0, i%%).Siz
  259.  READ Ship(0, i%%).Img
  260.  READ Ship(0, i%%).Tons
  261.  READ Ship(0, i%%).Hits
  262.  READ Ship(0, i%%).Defn
  263.  READ Ship(0, i%%).Cost
  264.  READ Ship(0, i%%).Armor
  265.  READ Ship(0, i%%).Engine
  266.  READ Ship(0, i%%).Manuver
  267.  READ Ship(0, i%%).Computer
  268.  READ Ship(0, i%%).Shield
  269.  READ Ship(0, i%%).Emc
  270.  READ Ship(0, i%%).Weapon1
  271.  READ Ship(0, i%%).Weapon2
  272.  READ Ship(0, i%%).Weapon3
  273.  READ Ship(0, i%%).Weapon4
  274.  READ Ship(0, i%%).Count1
  275.  READ Ship(0, i%%).Count2
  276.  READ Ship(0, i%%).Count3
  277.  READ Ship(0, i%%).Count4
  278.  READ Ship(0, i%%).Special1
  279.  READ Ship(0, i%%).Special2
  280.  READ Ship(0, i%%).Special3
  281. NEXT i%%
  282. RESTORE Planet_Types
  283. FOR i%% = 0 TO 12
  284.  READ PT(i%%)
  285. NEXT i%%
  286.  
  287. RESTORE Planet_Wealth
  288. FOR i%% = 1 TO 7
  289.  READ PW(i%%)
  290. NEXT i%%
  291.  
  292. '-----------------------------------------------
  293.  
  294. T(1) = _FREETIMER 'menu animation timer
  295. T(2) = _FREETIMER 'Banner wave animation timer
  296. ON TIMER(T(1), .1) MenuAnimation
  297. ON TIMER(T(2), .095) WaveAnimation
  298.  
  299. G.Player_Race = 1
  300. G.Player_Colr = 1
  301. G.Galaxy_Size = 0
  302. G.Difficulty = 0
  303. G.Races = 0
  304.  
  305. G.Races = 1
  306. G.Player_Race = 1
  307. G.Player_Colr = 1
  308. G.Galaxy_Size = 1
  309. Player(1).FactoryCost = 10
  310. Player(1).Factorywaste = 100
  311. Player(1).EcoRestore = 2
  312. 'Play_Game
  313. 'Ship_Design
  314. 'Fleet
  315. 'SLEEP
  316. 'SYSTEM
  317. 'END
  318. '------------Main Loop-------------------
  319. Play_Intro
  320. ClearLayer Layer(2)
  321. _CLEARCOLOR _RGB32(0, 0, 0), Layer(2)
  322.  
  323.  Nul%% = MainMenu
  324.  SELECT CASE Nul%%
  325.   CASE 1 'Continue game(AutoSaved)
  326.   CASE 2 'load game
  327.   CASE 3 'new game
  328.    TIMER(T(1)) OFF
  329.    IF NewGame <> 4 THEN
  330.     IF Choose_Race <> -1 THEN
  331.      IF Choose_Banner <> -1 THEN
  332.       G.Start_Game = TRUE
  333.       Choose_Leader_Name
  334.       Choose_System_Name
  335.       TIMER(T(2)) OFF
  336.      ELSE 'user escaped from new game setup
  337.       TIMER(T(2)) OFF
  338.       TIMER(T(1)) ON
  339.      END IF
  340.     ELSE 'user escaped from new game setup
  341.      TIMER(T(1)) ON
  342.     END IF
  343.    ELSE 'user escaped from new game setup
  344.     TIMER(T(1)) ON
  345.    END IF
  346.   CASE 4
  347.    ExitFlag%% = TRUE
  348.  
  349.  IF G.Start_Game THEN Play_Game
  350.  
  351. LOOP UNTIL ExitFlag%%
  352. '----------------------------------------
  353.  
  354. PRINT "Thanks for playing Master Of Orion!"
  355. IF _FILEEXISTS("DatatempI.dat") THEN KILL "DatatempI.dat"
  356. IF _FILEEXISTS("DatatempA.dat") THEN KILL "DatatempA.dat"
  357.  
  358. SUB Play_Game
  359.  BuildClickLayer Layer(30), 5
  360.  'create the Universe!
  361.  Make_Planets
  362.  'bring up main screen
  363.  DO
  364.   nul% = _MOUSEINPUT
  365.   MX% = _MOUSEX
  366.   MY% = _MOUSEY
  367.   Opt%% = Check_Pos(MX%, MY%)
  368.    Button_Down_Lock
  369.  
  370.    SELECT CASE Opt%%
  371.     CASE 1 'ship bar
  372.      Amt%% = MX% - 504
  373.      Planet(G.Selected_Planet).Ship = Amt%% * 2
  374.      AdjustProductionValues 1
  375.     CASE 2 'defn bar
  376.      Amt%% = MX% - 504
  377.      Planet(G.Selected_Planet).Defn = Amt%% * 2
  378.      AdjustProductionValues 2
  379.     CASE 3 'indu bar
  380.      Amt%% = MX% - 504
  381.      Planet(G.Selected_Planet).Indu = Amt%% * 2
  382.      AdjustProductionValues 3
  383.     CASE 4 'eco bar
  384.      Amt%% = MX% - 504
  385.      Planet(G.Selected_Planet).Eco = Amt%% * 2
  386.      AdjustProductionValues 4
  387.     CASE 5 'tech bar
  388.      Amt%% = MX% - 504
  389.      Planet(G.Selected_Planet).Tech = Amt%% * 2
  390.      AdjustProductionValues 5
  391.     CASE 6
  392.      Planet(G.Selected_Planet).Ship = Planet(G.Selected_Planet).Ship - 2
  393.      IF Planet(G.Selected_Planet).Ship <= -2 THEN Planet(G.Selected_Planet).Ship = 0
  394.      AdjustProductionValues 1
  395.     CASE 7
  396.      Planet(G.Selected_Planet).Defn = Planet(G.Selected_Planet).Defn - 2
  397.      IF Planet(G.Selected_Planet).Defn <= -2 THEN Planet(G.Selected_Planet).Defn = 0
  398.      AdjustProductionValues 2
  399.     CASE 8
  400.      Planet(G.Selected_Planet).Indu = Planet(G.Selected_Planet).Indu - 2
  401.      IF Planet(G.Selected_Planet).Indu <= -2 THEN Planet(G.Selected_Planet).Indu = 0
  402.      AdjustProductionValues 3
  403.     CASE 9
  404.      Planet(G.Selected_Planet).Eco = Planet(G.Selected_Planet).Eco - 2
  405.      IF Planet(G.Selected_Planet).Eco <= -2 THEN Planet(G.Selected_Planet).Eco = 0
  406.      AdjustProductionValues 4
  407.     CASE 10
  408.      Planet(G.Selected_Planet).Tech = Planet(G.Selected_Planet).Tech - 2
  409.      IF Planet(G.Selected_Planet).Tech <= -2 THEN Planet(G.Selected_Planet).Tech = 0
  410.      AdjustProductionValues 5
  411.     CASE 11
  412.      Planet(G.Selected_Planet).Ship = Planet(G.Selected_Planet).Ship + 2
  413.      IF Planet(G.Selected_Planet).Ship >= 102 THEN Planet(G.Selected_Planet).Ship = 100
  414.      AdjustProductionValues 1
  415.     CASE 12
  416.      Planet(G.Selected_Planet).Defn = Planet(G.Selected_Planet).Defn + 2
  417.      IF Planet(G.Selected_Planet).Defn >= 102 THEN Planet(G.Selected_Planet).Defn = 100
  418.      AdjustProductionValues 2
  419.     CASE 13
  420.      Planet(G.Selected_Planet).Indu = Planet(G.Selected_Planet).Indu + 2
  421.      IF Planet(G.Selected_Planet).Indu >= 102 THEN Planet(G.Selected_Planet).Indu = 100
  422.      AdjustProductionValues 3
  423.     CASE 14
  424.      Planet(G.Selected_Planet).Eco = Planet(G.Selected_Planet).Eco + 2
  425.      IF Planet(G.Selected_Planet).Eco >= 102 THEN Planet(G.Selected_Planet).Eco = 100
  426.      AdjustProductionValues 4
  427.     CASE 15
  428.      Planet(G.Selected_Planet).Tech = Planet(G.Selected_Planet).Tech + 2
  429.      IF Planet(G.Selected_Planet).Tech >= 102 THEN Planet(G.Selected_Planet).Tech = 100
  430.      AdjustProductionValues 5
  431.     CASE 16
  432.      IF Planet(G.Selected_Planet).Shiplock THEN Planet(G.Selected_Planet).Shiplock = FALSE ELSE Planet(G.Selected_Planet).Shiplock = TRUE
  433.     CASE 17
  434.      IF Planet(G.Selected_Planet).DefnLock THEN Planet(G.Selected_Planet).DefnLock = FALSE ELSE Planet(G.Selected_Planet).DefnLock = TRUE
  435.     CASE 18
  436.      IF Planet(G.Selected_Planet).InduLock THEN Planet(G.Selected_Planet).InduLock = FALSE ELSE Planet(G.Selected_Planet).InduLock = TRUE
  437.     CASE 19
  438.      IF Planet(G.Selected_Planet).EcoLock THEN Planet(G.Selected_Planet).EcoLock = FALSE ELSE Planet(G.Selected_Planet).EcoLock = TRUE
  439.     CASE 20
  440.      IF Planet(G.Selected_Planet).TechLock THEN Planet(G.Selected_Planet).TechLock = FALSE ELSE Planet(G.Selected_Planet).TechLock = TRUE
  441.     CASE 21
  442.     CASE 22
  443.     CASE 23
  444.     CASE 24
  445.      Game_Options
  446.      IF G.Quit_Game THEN Exitflag%% = TRUE
  447.     CASE 25
  448.      Ship_Design
  449.     CASE 26
  450.      Fleet
  451.     CASE 27
  452.      View_Map
  453.     CASE 28
  454.     CASE 29
  455.     CASE 30
  456.     CASE 31
  457.    END SELECT
  458.   END IF
  459.  
  460.   _PUTIMAGE (0, 0)-STEP(639, 399), Layer(12), Mix&, (0, 0)-STEP(319, 199)
  461.   IF Planet(G.Selected_Planet).Race1Visit THEN
  462.    _PUTIMAGE (448, 10)-STEP(182, 348), Layer(12), Mix&, (320, 0)-STEP(90, 173)
  463.   END IF
  464.  
  465.   BuildMainGameDisplay Opt%%
  466.   Resource_Display
  467.   _PUTIMAGE , Mix&, _DISPLAY
  468.   _DELAY .04
  469.   IF INKEY$ = CHR$(27) THEN Exitflag%% = TRUE
  470.  LOOP UNTIL Exitflag%%
  471.  
  472. SUB View_Map
  473.  BuildClickLayer Layer(30), 10
  474.  Selection%% = 1
  475.  DO
  476.   nul% = _MOUSEINPUT
  477.   MX% = _MOUSEX
  478.   MY% = _MOUSEY
  479.   Opt%% = Check_Pos(MX%, MY%)
  480.    Clickset%% = TRUE
  481.    IF Opt%% <> 0 THEN Selection%% = Opt%%
  482.   END IF
  483.  
  484.   IF Clickset%% AND (NOT _MOUSEBUTTON(1)) THEN
  485.    SELECT CASE Selection%%
  486.     CASE 4 'OK
  487.      Exitflag%% = TRUE
  488.    END SELECT
  489.    Clickset%% = FALSE
  490.   END IF
  491.  
  492.   _PUTIMAGE (0, 0)-STEP(487, 399), Layer(20), Mix&, (0, 0)-STEP(243, 199)
  493.   _PUTIMAGE (0, 0)-STEP(639, 399), Layer(19), Mix&, (0, 0)-STEP(319, 199)
  494.  
  495.   IF Selection%% = 1 THEN _PUTIMAGE (490, 52)-STEP(121, 23), Layer(4), Mix&, (61, 110)-STEP(60, 11) ELSE _PUTIMAGE (490, 52)-STEP(121, 23), Layer(4), Mix&, (0, 110)-STEP(60, 11)
  496.   IF Selection%% = 2 THEN _PUTIMAGE (490, 92)-STEP(121, 23), Layer(4), Mix&, (61, 122)-STEP(60, 11) ELSE _PUTIMAGE (490, 92)-STEP(121, 23), Layer(4), Mix&, (0, 122)-STEP(60, 11)
  497.   IF Selection%% = 3 THEN _PUTIMAGE (490, 132)-STEP(121, 23), Layer(4), Mix&, (61, 134)-STEP(60, 11) ELSE _PUTIMAGE (490, 132)-STEP(121, 23), Layer(4), Mix&, (0, 134)-STEP(60, 11)
  498.   IF Selection%% = 4 THEN _PUTIMAGE (490, 360)-STEP(121, 23), Layer(4), Mix&, (61, 146)-STEP(60, 11) ELSE _PUTIMAGE (490, 360)-STEP(121, 23), Layer(4), Mix&, (0, 146)-STEP(60, 11)
  499.  
  500.   IF Selection%% <> 1 THEN
  501.    FOR i%% = 0 TO PlanetCount(G.Galaxy_Size) - 1
  502.     IF Planet(i%%).Race1Visit THEN
  503.      _PUTIMAGE (INT(Planet(i%%).XLoc * 2.25), Planet(i%%).YLoc * 2)-STEP(13, 13), Layer(4), Mix&, (109 + (Planet(i%%).Colr * 8), 65)-STEP(6, 6)
  504.      IF Selection%% = 2 THEN Oprint INT(Planet(i%%).XLoc * 2.25) + 16, Planet(i%%).YLoc * 2, PT(Planet(i%%).Environ), Green, XSMALL
  505.      IF Selection%% = 3 THEN
  506.       ox%% = INT(LEN(RTRIM$(PW(Planet(i%%).Wealth))) \ 2) * 4
  507.       IF Planet(i%%).Wealth = 1 THEN Oprint INT(Planet(i%%).XLoc * 2.25) - ox%%, Planet(i%%).YLoc * 2 + 12, PW(Planet(i%%).Wealth), Red, XSMALL
  508.       IF Planet(i%%).Wealth = 2 THEN Oprint INT(Planet(i%%).XLoc * 2.25) - ox%%, Planet(i%%).YLoc * 2 + 12, PW(Planet(i%%).Wealth), Red, XSMALL
  509.       IF Planet(i%%).Wealth = 4 THEN Oprint INT(Planet(i%%).XLoc * 2.25) - ox%%, Planet(i%%).YLoc * 2 + 12, PW(Planet(i%%).Wealth), Blue, XSMALL
  510.       IF Planet(i%%).Wealth = 5 THEN Oprint INT(Planet(i%%).XLoc * 2.25) - ox%%, Planet(i%%).YLoc * 2 + 12, PW(Planet(i%%).Wealth), Blue, XSMALL
  511.       IF Planet(i%%).Wealth = 6 THEN Oprint INT(Planet(i%%).XLoc * 2.25) - ox%%, Planet(i%%).YLoc * 2 + 12, PW(Planet(i%%).Wealth), Green, XSMALL
  512.       IF Planet(i%%).Wealth = 7 THEN Oprint INT(Planet(i%%).XLoc * 2.25) - ox%%, Planet(i%%).YLoc * 2 + 12, PW(Planet(i%%).Wealth), Green, XSMALL
  513.      END IF
  514.     ELSE
  515.      _PUTIMAGE (INT(Planet(i%%).XLoc * 2.25) + 1, Planet(i%%).YLoc * 2 + 1)-STEP(9, 9), Layer(4), Mix&, (62, 64)-STEP(4, 4)
  516.     END IF
  517.    NEXT i%%
  518.   ELSE
  519.    FOR i%% = 0 TO PlanetCount(G.Galaxy_Size) - 1
  520.     _PUTIMAGE (INT(Planet(i%%).XLoc * 2.25), Planet(i%%).YLoc * 2)-STEP(13, 13), Layer(4), Mix&, (109 + (Planet(i%%).Colr * 8), 65)-STEP(6, 6)
  521.    NEXT i%%
  522.   END IF
  523.  
  524.   Oprint 482, 14, "Galaxy Map", YellowGA, PLANETOID
  525.   Oprint 496, 172, "Map Key", YellowGA, PLANETOID
  526.   SELECT CASE Selection%%
  527.    CASE 1
  528.     FOR i%% = 1 TO G.Races
  529.     NEXT i%%
  530.    CASE 2
  531.     Oprint 482, 208, "t", Green, XSMALL
  532.     Oprint 482, 222, "j", Green, XSMALL
  533.     Oprint 482, 236, "o", Green, XSMALL
  534.     Oprint 482, 250, "a", Green, XSMALL
  535.     Oprint 482, 264, "s", Green, XSMALL
  536.     Oprint 482, 278, "d", Green, XSMALL
  537.     Oprint 482, 292, "m", Green, XSMALL
  538.     Oprint 552, 208, "b", Red, XSMALL
  539.     Oprint 552, 222, "u", Red, XSMALL
  540.     Oprint 552, 236, "e", Red, XSMALL
  541.     Oprint 552, 250, "i", Red, XSMALL
  542.     Oprint 552, 264, "p", Red, XSMALL
  543.     Oprint 552, 278, "r", Red, XSMALL
  544.     Oprint 552, 292, "n", Red, XSMALL
  545.     Oprint 494, 208, "terran", Black, XSMALL
  546.     Oprint 494, 222, "jungle", Black, XSMALL
  547.     Oprint 494, 236, "ocean", Black, XSMALL
  548.     Oprint 494, 250, "arid", Black, XSMALL
  549.     Oprint 494, 264, "steppe", Black, XSMALL
  550.     Oprint 494, 278, "desert", Black, XSMALL
  551.     Oprint 494, 292, "minimal", Black, XSMALL
  552.     Oprint 564, 208, "barren", Black, XSMALL
  553.     Oprint 564, 222, "tundra", Black, XSMALL
  554.     Oprint 564, 236, "dead", Black, XSMALL
  555.     Oprint 564, 250, "inferno", Black, XSMALL
  556.     Oprint 564, 264, "toxic", Black, XSMALL
  557.     Oprint 564, 278, "radiated", Black, XSMALL
  558.     Oprint 564, 292, "none", Black, XSMALL
  559.     _PUTIMAGE (482, 320)-STEP(7, 7), Layer(4), Mix&, (63, 69)-STEP(3, 3)
  560.     Oprint 494, 318, "unable to land on", Black, XSMALL
  561.    CASE 3
  562.     _PUTIMAGE (476, 200)-STEP(149, 139), Layer(4), Mix&, (1, 159)-STEP(74, 69)
  563.  
  564.  
  565.   _PUTIMAGE , Mix&, _DISPLAY
  566.   _DELAY .05
  567.   IF INKEY$ = CHR$(27) THEN Exitflag%% = TRUE
  568.  
  569.  LOOP UNTIL Exitflag%%
  570.  ClearLayer Mix&
  571.  BuildClickLayer Layer(30), 5
  572.  
  573.  
  574. SUB Game_Options
  575.  BuildClickLayer Layer(30), 6
  576.  Temp& = _COPYIMAGE(_DISPLAY)
  577.  DO
  578.   nul% = _MOUSEINPUT
  579.   MX% = _MOUSEX
  580.   MY% = _MOUSEY
  581.   Opt%% = Check_Pos(MX%, MY%)
  582.    Clickset%% = TRUE
  583.    Selection%% = Opt%%
  584.   END IF
  585.  
  586.   IF Clickset%% AND (NOT _MOUSEBUTTON(1)) THEN
  587.    SELECT CASE Selection%%
  588.     CASE 1 'save game
  589.      Save_Game
  590.     CASE 2 ' load game
  591.      Load_Game
  592.     CASE 3 'quit game
  593.      G.Quit_Game = TRUE
  594.      Exitflag%% = TRUE
  595.     CASE 4 'no sound
  596.      G.Sound_Setting = FALSE
  597.     CASE 5 'SFX only
  598.      G.Sound_Setting = 1
  599.     CASE 6 'full sound&music
  600.      G.Sound_Setting = 2
  601.     CASE 7 'OK
  602.      Exitflag%% = TRUE
  603.    END SELECT
  604.    Clickset%% = FALSE
  605.   END IF
  606.  
  607.  
  608.   _PUTIMAGE (0, 0)-STEP(639, 399), Layer(13), Mix&, (0, 0)-STEP(319, 199)
  609.   SELECT CASE G.Sound_Setting
  610.    CASE 0
  611.     _PUTIMAGE (422, 114)-STEP(143, 27), Layer(13), Mix&, (320, 66)-STEP(70, 13)
  612.    CASE 1
  613.     _PUTIMAGE (422, 164)-STEP(143, 27), Layer(13), Mix&, (320, 66)-STEP(70, 13)
  614.    CASE 2
  615.     _PUTIMAGE (422, 214)-STEP(143, 27), Layer(13), Mix&, (320, 66)-STEP(70, 13)
  616.  
  617.   SELECT CASE Selection%%
  618.    CASE 1
  619.     _PUTIMAGE (232, 114)-STEP(143, 27), Layer(13), Mix&, (320, 66)-STEP(70, 13)
  620.    CASE 2
  621.     _PUTIMAGE (232, 164)-STEP(143, 27), Layer(13), Mix&, (320, 66)-STEP(70, 13)
  622.    CASE 3
  623.     _PUTIMAGE (232, 214)-STEP(143, 27), Layer(13), Mix&, (320, 66)-STEP(70, 13)
  624.  
  625.   _PUTIMAGE (268, 114)-STEP(72, 27), Layer(13), Mix&, (320, 1)-STEP(35, 13)
  626.   _PUTIMAGE (270, 164)-STEP(72, 27), Layer(13), Mix&, (320, 26)-STEP(35, 13)
  627.   _PUTIMAGE (266, 214)-STEP(72, 27), Layer(13), Mix&, (320, 51)-STEP(35, 13)
  628.  
  629.   _PUTIMAGE (458, 114)-STEP(76, 27), Layer(13), Mix&, (362, 1)-STEP(37, 13)
  630.   _PUTIMAGE (442, 164)-STEP(106, 27), Layer(13), Mix&, (356, 26)-STEP(52, 13)
  631.   _PUTIMAGE (458, 214)-STEP(80, 27), Layer(13), Mix&, (364, 51)-STEP(39, 13)
  632.  
  633.   _PUTIMAGE , Mix&, _DISPLAY
  634.   _DELAY .05
  635.   IF INKEY$ = CHR$(27) THEN Exitflag%% = TRUE
  636.  
  637.  LOOP UNTIL Exitflag%%
  638.  BuildClickLayer Layer(30), 5
  639.  ClearLayer Mix&
  640.  _PUTIMAGE , Temp&, Mix&
  641.  _FREEIMAGE Temp&
  642.  
  643. SUB Fleet
  644.  ClearLayer Mix&
  645.  BuildClickLayer Layer(30), 9
  646.  DO
  647.   nul% = _MOUSEINPUT
  648.   MX% = _MOUSEX
  649.   MY% = _MOUSEY
  650.   Opt%% = Check_Pos(MX%, MY%)
  651.    Clickset%% = TRUE
  652.    Selection%% = Opt%%
  653.   END IF
  654.  
  655.   IF Clickset%% AND (NOT _MOUSEBUTTON(1)) THEN
  656.    SELECT CASE Selection%%
  657.     CASE 1
  658.      Ship_Specs
  659.      Selection%% = 0
  660.     CASE 2
  661.     CASE 3
  662.      ExitFlag%% = TRUE
  663.    END SELECT
  664.    Clickset%% = FALSE
  665.   END IF
  666.  
  667.   _PUTIMAGE (0, 0)-STEP(639, 399), Layer(16), Mix&, (0, 0)-STEP(319, 199)
  668.   FOR y%% = 0 TO 4
  669.    _PUTIMAGE (14, 34 + (y%% * 66))-STEP(67, 51), Layer(4), Mix&, (128, 84)-STEP(33, 25)
  670.    FOR x%% = 1 TO 6
  671.     _PUTIMAGE (8 + (x%% * 88), 34 + (y%% * 66))-STEP(73, 51), Layer(4), Mix&, (128, 84)-STEP(33, 25)
  672.     _PUTIMAGE (4 + (x%% * 88), 10)-STEP(81, 13), Layer(4), Mix&, (128, 84)-STEP(33, 25)
  673.     Cntr%% = LEN(RTRIM$(Ship(0, x%% - 1).Nam)) * 6 / 2
  674.     Oprint 40 + (x%% * 88) - Cntr%%, 12, RTRIM$(Ship(0, x%% - 1).Nam), Yellow, XSMALL
  675.    NEXT
  676.   NEXT
  677.   _PUTIMAGE (12, 10)-STEP(69, 13), Layer(4), Mix&, (128, 77)-STEP(34, 6)
  678.   IF Selection%% = 1 THEN _PUTIMAGE (362, 364)-STEP(69, 21), Layer(4), Mix&, (202, 74)-STEP(34, 10) ELSE _PUTIMAGE (362, 364)-STEP(69, 21), Layer(4), Mix&, (166, 74)-STEP(34, 10)
  679.   IF Selection%% = 2 THEN _PUTIMAGE (450, 364)-STEP(69, 21), Layer(4), Mix&, (202, 86)-STEP(34, 10) ELSE _PUTIMAGE (450, 364)-STEP(69, 21), Layer(4), Mix&, (166, 86)-STEP(34, 10)
  680.   IF Selection%% = 3 THEN _PUTIMAGE (538, 364)-STEP(69, 21), Layer(4), Mix&, (202, 98)-STEP(34, 10) ELSE _PUTIMAGE (538, 364)-STEP(69, 21), Layer(4), Mix&, (166, 98)-STEP(34, 10)
  681.  
  682.   _PUTIMAGE , Mix&, _DISPLAY
  683.   _DELAY .05
  684.   IF INKEY$ = CHR$(27) THEN ExitFlag%% = TRUE
  685.  
  686.  LOOP UNTIL ExitFlag%%
  687.  ClearLayer Mix&
  688.  BuildClickLayer Layer(30), 5
  689.  
  690. SUB Ship_Specs
  691.  ClearLayer Mix&
  692.  BuildClickLayer Layer(30), 10
  693.  DO
  694.   nul% = _MOUSEINPUT
  695.   MX% = _MOUSEX
  696.   MY% = _MOUSEY
  697.   Opt%% = Check_Pos(MX%, MY%)
  698.    Clickset%% = TRUE
  699.    Selection%% = Opt%%
  700.   END IF
  701.  
  702.   IF Clickset%% AND (NOT _MOUSEBUTTON(1)) THEN
  703.    SELECT CASE Selection%%
  704.     CASE 1
  705.     CASE 2
  706.     CASE 3
  707.      ExitFlag%% = TRUE
  708.    END SELECT
  709.    Clickset%% = FALSE
  710.   END IF
  711.  
  712.   _PUTIMAGE (0, 0)-STEP(639, 399), Layer(4), Mix&, (128, 84)-STEP(33, 25)
  713.   _PUTIMAGE (0, 0)-STEP(639, 399), Layer(17), Mix&, (0, 0)-STEP(319, 199)
  714.   _PUTIMAGE (94, 8)-STEP(239, 59), Layer(18), Mix&, (0, 0)-STEP(119, 29)
  715.  
  716.   _PUTIMAGE , Mix&, _DISPLAY
  717.   _DELAY .05
  718.   IF INKEY$ = CHR$(27) THEN ExitFlag%% = TRUE
  719.  
  720.  LOOP UNTIL ExitFlag%%
  721.  BuildClickLayer Layer(30), 9
  722.  
  723.  
  724. SUB Save_Game
  725.  ClearLayer Mix&
  726.  BuildClickLayer Layer(30), 7
  727.  DO
  728.   nul% = _MOUSEINPUT
  729.   MX% = _MOUSEX
  730.   MY% = _MOUSEY
  731.   Opt%% = Check_Pos(MX%, MY%)
  732.    Clickset%% = TRUE
  733.    Selection%% = Opt%%
  734.   END IF
  735.  
  736.   IF Clickset%% AND (NOT _MOUSEBUTTON(1)) THEN
  737.    SELECT CASE Selection%%
  738.     CASE 7
  739.      ExitFlag%% = TRUE
  740.     CASE 8
  741.      ExitFlag%% = TRUE
  742.    END SELECT
  743.    Clickset%% = FALSE
  744.   END IF
  745.  
  746.  
  747.   _PUTIMAGE (0, 0)-STEP(639, 399), Layer(13), Mix&, (0, 200)-STEP(319, 199)
  748.   FOR i%% = 0 TO 5
  749.    _PUTIMAGE (268, 66 + (i%% * 36))-STEP(18, 18), Layer(13), Mix&, (329, 80)-STEP(8, 8)
  750.   NEXT i%%
  751.   _PUTIMAGE , Mix&, _DISPLAY
  752.   _DELAY .05
  753.   IF INKEY$ = CHR$(27) THEN ExitFlag%% = TRUE
  754.  
  755.  LOOP UNTIL ExitFlag%%
  756.  BuildClickLayer Layer(30), 6
  757.  
  758. SUB Load_Game
  759.  ClearLayer Mix&
  760.  BuildClickLayer Layer(30), 7
  761.  DO
  762.   nul% = _MOUSEINPUT
  763.   MX% = _MOUSEX
  764.   MY% = _MOUSEY
  765.   Opt%% = Check_Pos(MX%, MY%)
  766.    Clickset%% = TRUE
  767.    Selection%% = Opt%%
  768.   END IF
  769.  
  770.   IF Clickset%% AND (NOT _MOUSEBUTTON(1)) THEN
  771.    SELECT CASE Selection%%
  772.     CASE 7
  773.      ExitFlag%% = TRUE
  774.     CASE 8
  775.      ExitFlag%% = TRUE
  776.    END SELECT
  777.    Clickset%% = FALSE
  778.   END IF
  779.  
  780.  
  781.   _PUTIMAGE (0, 0)-STEP(639, 399), Layer(13), Mix&, (320, 200)-STEP(319, 199)
  782.   FOR i%% = 0 TO 5
  783.    _PUTIMAGE (268, 66 + (i%% * 36))-STEP(18, 18), Layer(13), Mix&, (329, 80)-STEP(8, 8)
  784.   NEXT i%%
  785.   _PUTIMAGE , Mix&, _DISPLAY
  786.   _DELAY .05
  787.   IF INKEY$ = CHR$(27) THEN ExitFlag%% = TRUE
  788.  
  789.  LOOP UNTIL ExitFlag%%
  790.  BuildClickLayer Layer(30), 6
  791.  
  792. SUB Ship_Design
  793.  ClearLayer Mix&
  794.  BuildClickLayer Layer(30), 8
  795.  DO
  796.   nul% = _MOUSEINPUT
  797.   MX% = _MOUSEX
  798.   MY% = _MOUSEY
  799.   Opt%% = Check_Pos(MX%, MY%)
  800.    Clickset%% = TRUE
  801.    Selection%% = Opt%%
  802.   END IF
  803.  
  804.   IF Clickset%% AND (NOT _MOUSEBUTTON(1)) THEN
  805.    SELECT CASE Selection%%
  806.     CASE 1
  807.      ExitFlag%% = TRUE
  808.     CASE 8
  809.      ExitFlag%% = TRUE
  810.    END SELECT
  811.    Clickset%% = FALSE
  812.   END IF
  813.  
  814.  
  815.   _PUTIMAGE (0, 0)-STEP(639, 399), Layer(14), Mix&, (0, 0)-STEP(319, 199)
  816.   IF Ship(0, 0).Siz = 0 THEN Oprint 52, 326, "SMALL", White, SMALL ELSE Oprint 52, 326, "SMALL", Grey, SMALL
  817.   IF Ship(0, 0).Siz = 1 THEN Oprint 48, 340, "MEDIUM", White, SMALL ELSE Oprint 48, 340, "MEDIUM", Grey, SMALL
  818.   IF Ship(0, 0).Siz = 2 THEN Oprint 52, 354, "LARGE", White, SMALL ELSE Oprint 52, 354, "LARGE", Grey, SMALL
  819.   IF Ship(0, 0).Siz = 3 THEN Oprint 58, 368, "HUGE", White, SMALL ELSE Oprint 58, 368, "HUGE", Grey, SMALL
  820.   Oprint 34, 232, "Special 1", DkGreen, SMALL
  821.   Oprint 34, 252, "Special 2", DkGreen, SMALL
  822.   Oprint 34, 272, "Special 3", DkGreen, SMALL
  823.   Oprint 34, 142, "Weapon 1", DkGreen, SMALL
  824.   Oprint 34, 162, "Weapon 2", DkGreen, SMALL
  825.   Oprint 34, 182, "Weapon 3", DkGreen, SMALL
  826.   Oprint 34, 202, "Weapon 4", DkGreen, SMALL
  827.   Oprint 118, 122, "Count  Ship Weapons       Damage  Rng  Notes", DkGreen, SMALL
  828.   Oprint 34, 44, "Computer", DkGreen, SMALL
  829.   Oprint 34, 68, "Sheild", DkGreen, SMALL
  830.   Oprint 34, 92, "Ecm", DkGreen, SMALL
  831.   Oprint 202, 44, "Attack Level", MdGreen, XSMALL
  832.   Oprint 202, 68, "", MdGreen, XSMALL
  833.   Oprint 202, 92, "Missile Def", MdGreen, XSMALL
  834.   Oprint 334, 44, "Armor", DkGreen, SMALL
  835.   Oprint 334, 68, "Engine", DkGreen, SMALL
  836.   Oprint 334, 92, "Maneuver", DkGreen, SMALL
  837.   Oprint 500, 44, "hit points", MdGreen, XSMALL
  838.   Oprint 500, 68, "warp    def", MdGreen, XSMALL
  839.   Oprint 500, 92, "combat speed", MdGreen, XSMALL
  840.   _PUTIMAGE (118, 138)-STEP(9, 7), Layer(4), Mix&, (47, 101)-STEP(4, 3)
  841.   _PUTIMAGE (118, 148)-STEP(9, 7), Layer(4), Mix&, (47, 106)-STEP(4, 3)
  842.   _PUTIMAGE (118, 158)-STEP(9, 7), Layer(4), Mix&, (47, 101)-STEP(4, 3)
  843.   _PUTIMAGE (118, 168)-STEP(9, 7), Layer(4), Mix&, (47, 106)-STEP(4, 3)
  844.   _PUTIMAGE (118, 178)-STEP(9, 7), Layer(4), Mix&, (47, 101)-STEP(4, 3)
  845.   _PUTIMAGE (118, 188)-STEP(9, 7), Layer(4), Mix&, (47, 106)-STEP(4, 3)
  846.   _PUTIMAGE (118, 198)-STEP(9, 7), Layer(4), Mix&, (47, 101)-STEP(4, 3)
  847.   _PUTIMAGE (118, 208)-STEP(9, 7), Layer(4), Mix&, (47, 106)-STEP(4, 3)
  848.  
  849.   _PUTIMAGE (286, 324)-STEP(11, 41), Layer(4), Mix&, (52, 79)-STEP(5, 20) 'button up
  850.   _PUTIMAGE (286, 358)-STEP(11, 41), Layer(4), Mix&, (52, 96)-STEP(5, 20)
  851.   '  _PUTIMAGE (286, 324)-STEP(11, 41), Layer(4), Mix&, (59, 79)-STEP(5, 20) 'button down
  852.   '  _PUTIMAGE (286, 358)-STEP(11, 41), Layer(4), Mix&, (59, 96)-STEP(5, 20)
  853.  
  854.   _PUTIMAGE (564, 300)-STEP(57, 21), Layer(4), Mix&, (68, 74)-STEP(28, 10) 'cancel
  855.   _PUTIMAGE (564, 332)-STEP(57, 21), Layer(4), Mix&, (68, 86)-STEP(28, 10) 'clear
  856.   _PUTIMAGE (564, 364)-STEP(57, 21), Layer(4), Mix&, (68, 98)-STEP(28, 10) 'Build
  857.   Oprint 540 - (LEN(RTRIM$(Ship(0, 0).Nam)) * 9), 302, UCASE$(RTRIM$(Ship(0, 0).Nam)), White, SMALL
  858.   Oprint 540 - (LEN(RTRIM$(LTRIM$(STR$(Ship(0, 0).Tons)))) * 8), 350, LTRIM$(STR$(Ship(0, 0).Tons)), White, SMALL
  859.  
  860.   Display_Ship 184, 328, 1, Ship(0, 0).Img, 0
  861.   _PUTIMAGE , Mix&, _DISPLAY
  862.   _DELAY .05
  863.   IF INKEY$ = CHR$(27) THEN ExitFlag%% = TRUE
  864.  
  865.  LOOP UNTIL ExitFlag%%
  866.  ClearLayer Mix&
  867.  BuildClickLayer Layer(30), 5
  868.  
  869.  
  870. SUB Display_Ship (X%, Y%, C%, T%, F%)
  871.  'X%,Y%- Location to display ship
  872.  'C%-Which color ship to display(0-5)
  873.  'T%-which type\model of ship(0-35)
  874.  'F%-Frame of animation of ship to display(0-4)
  875.  C% = C% - 1: T% = T% - 1
  876.  _PUTIMAGE (X%, Y%)-STEP(63, 47), Layer(15), Mix&, (0 + (C% * 165 + F% * 33), 0 + (T% * 25))-STEP(31, 23)
  877.  
  878. FUNCTION TotalResourceDistrubution~%% (P%%)
  879.  Total~%% = Planet(P%%).Ship + Planet(P%%).Defn + Planet(P%%).Indu
  880.  Total~%% = Total~%% + Planet(P%%).Eco + Planet(P%%).Tech
  881.  TotalResourceDistrubution~%% = Total~%%
  882.  
  883. SUB AdjustProductionValues (Opt%%)
  884.  'auto adjust so maximum production is 100, this is where the actual game cheats from time
  885.  ' to time by allowing other races to have more than 100% production. Have seen values as
  886.  ' high at 2600% before.
  887.  'try to pull from bottom up save for TECH which pulls from the top down
  888.  temp~%% = TotalResourceDistrubution(G.Selected_Planet) 'how much over 100 is planet
  889.  
  890.  IF temp~%% > 100 THEN
  891.   temp~%% = temp~%% - 100 'how much needs pulled
  892.   SELECT CASE Opt%%
  893.    CASE 1 'ship change
  894.     DO
  895.      IF Planet(G.Selected_Planet).Tech > 0 AND (NOT Planet(G.Selected_Planet).TechLock) THEN
  896.       Planet(G.Selected_Planet).Tech = Planet(G.Selected_Planet).Tech - 1
  897.       temp~%% = temp~%% - 1
  898.      ELSEIF Planet(G.Selected_Planet).Eco > 0 AND (NOT Planet(G.Selected_Planet).EcoLock) THEN
  899.       Planet(G.Selected_Planet).Eco = Planet(G.Selected_Planet).Eco - 1
  900.       temp~%% = temp~%% - 1
  901.      ELSEIF Planet(G.Selected_Planet).Indu > 0 AND (NOT Planet(G.Selected_Planet).InduLock) THEN
  902.       Planet(G.Selected_Planet).Indu = Planet(G.Selected_Planet).Indu - 1
  903.       temp~%% = temp~%% - 1
  904.      ELSEIF Planet(G.Selected_Planet).Defn > 0 AND (NOT Planet(G.Selected_Planet).DefnLock) THEN
  905.       Planet(G.Selected_Planet).Defn = Planet(G.Selected_Planet).Defn - 1
  906.       temp~%% = temp~%% - 1
  907.      ELSE 'no other source of free production avaliable
  908.       Planet(G.Selected_Planet).Ship = Planet(G.Selected_Planet).Ship - 1
  909.       temp~%% = temp~%% - 1
  910.      END IF
  911.     LOOP UNTIL temp~%% = 0
  912.    CASE 2 'defence change
  913.     DO
  914.      IF Planet(G.Selected_Planet).Tech > 0 AND (NOT Planet(G.Selected_Planet).TechLock) THEN
  915.       Planet(G.Selected_Planet).Tech = Planet(G.Selected_Planet).Tech - 1
  916.       temp~%% = temp~%% - 1
  917.      ELSEIF Planet(G.Selected_Planet).Eco > 0 AND (NOT Planet(G.Selected_Planet).EcoLock) THEN
  918.       Planet(G.Selected_Planet).Eco = Planet(G.Selected_Planet).Eco - 1
  919.       temp~%% = temp~%% - 1
  920.      ELSEIF Planet(G.Selected_Planet).Indu > 0 AND (NOT Planet(G.Selected_Planet).InduLock) THEN
  921.       Planet(G.Selected_Planet).Indu = Planet(G.Selected_Planet).Indu - 1
  922.       temp~%% = temp~%% - 1
  923.      ELSEIF Planet(G.Selected_Planet).Ship > 0 AND (NOT Planet(G.Selected_Planet).Shiplock) THEN
  924.       Planet(G.Selected_Planet).Ship = Planet(G.Selected_Planet).Ship - 1
  925.       temp~%% = temp~%% - 1
  926.      ELSE 'no other source of free production avaliable
  927.       Planet(G.Selected_Planet).Defn = Planet(G.Selected_Planet).Defn - 1
  928.       temp~%% = temp~%% - 1
  929.      END IF
  930.     LOOP UNTIL temp~%% = 0
  931.    CASE 3 'Industry change
  932.     DO
  933.      IF Planet(G.Selected_Planet).Tech > 0 AND (NOT Planet(G.Selected_Planet).TechLock) THEN
  934.       Planet(G.Selected_Planet).Tech = Planet(G.Selected_Planet).Tech - 1
  935.       temp~%% = temp~%% - 1
  936.      ELSEIF Planet(G.Selected_Planet).Eco > 0 AND (NOT Planet(G.Selected_Planet).EcoLock) THEN
  937.       Planet(G.Selected_Planet).Eco = Planet(G.Selected_Planet).Eco - 1
  938.       temp~%% = temp~%% - 1
  939.      ELSEIF Planet(G.Selected_Planet).Ship > 0 AND (NOT Planet(G.Selected_Planet).Shiplock) THEN
  940.       Planet(G.Selected_Planet).Ship = Planet(G.Selected_Planet).Ship - 1
  941.       temp~%% = temp~%% - 1
  942.      ELSEIF Planet(G.Selected_Planet).Defn > 0 AND (NOT Planet(G.Selected_Planet).DefnLock) THEN
  943.       Planet(G.Selected_Planet).Defn = Planet(G.Selected_Planet).Defn - 1
  944.       temp~%% = temp~%% - 1
  945.      ELSE 'no other source of free production avaliable
  946.       Planet(G.Selected_Planet).Indu = Planet(G.Selected_Planet).Indu - 1
  947.       temp~%% = temp~%% - 1
  948.      END IF
  949.     LOOP UNTIL temp~%% = 0
  950.    CASE 4 'Ecological change
  951.     DO
  952.      IF Planet(G.Selected_Planet).Tech > 0 AND (NOT Planet(G.Selected_Planet).TechLock) THEN
  953.       Planet(G.Selected_Planet).Tech = Planet(G.Selected_Planet).Tech - 1
  954.       temp~%% = temp~%% - 1
  955.      ELSEIF Planet(G.Selected_Planet).Ship > 0 AND (NOT Planet(G.Selected_Planet).Shiplock) THEN
  956.       Planet(G.Selected_Planet).Ship = Planet(G.Selected_Planet).Ship - 1
  957.       temp~%% = temp~%% - 1
  958.      ELSEIF Planet(G.Selected_Planet).Indu > 0 AND (NOT Planet(G.Selected_Planet).InduLock) THEN
  959.       Planet(G.Selected_Planet).Indu = Planet(G.Selected_Planet).Indu - 1
  960.       temp~%% = temp~%% - 1
  961.      ELSEIF Planet(G.Selected_Planet).Defn > 0 AND (NOT Planet(G.Selected_Planet).DefnLock) THEN
  962.       Planet(G.Selected_Planet).Defn = Planet(G.Selected_Planet).Defn - 1
  963.       temp~%% = temp~%% - 1
  964.      ELSE 'no other source of free production avaliable
  965.       Planet(G.Selected_Planet).Eco = Planet(G.Selected_Planet).Eco - 1
  966.       temp~%% = temp~%% - 1
  967.      END IF
  968.     LOOP UNTIL temp~%% = 0
  969.    CASE 5 'technology change
  970.     DO
  971.      IF Planet(G.Selected_Planet).Ship > 0 AND (NOT Planet(G.Selected_Planet).Shiplock) THEN
  972.       Planet(G.Selected_Planet).Ship = Planet(G.Selected_Planet).Ship - 1
  973.       temp~%% = temp~%% - 1
  974.      ELSEIF Planet(G.Selected_Planet).Defn > 0 AND (NOT Planet(G.Selected_Planet).DefnLock) THEN
  975.       Planet(G.Selected_Planet).Defn = Planet(G.Selected_Planet).Defn - 1
  976.       temp~%% = temp~%% - 1
  977.      ELSEIF Planet(G.Selected_Planet).Indu > 0 AND (NOT Planet(G.Selected_Planet).InduLock) THEN
  978.       Planet(G.Selected_Planet).Indu = Planet(G.Selected_Planet).Indu - 1
  979.       temp~%% = temp~%% - 1
  980.      ELSEIF Planet(G.Selected_Planet).Eco > 0 AND (NOT Planet(G.Selected_Planet).EcoLock) THEN
  981.       Planet(G.Selected_Planet).Eco = Planet(G.Selected_Planet).Eco - 1
  982.       temp~%% = temp~%% - 1
  983.      ELSE 'no other source of free production avaliable
  984.       Planet(G.Selected_Planet).Tech = Planet(G.Selected_Planet).Tech - 1
  985.       temp~%% = temp~%% - 1
  986.      END IF
  987.     LOOP UNTIL temp~%% = 0
  988.  ELSE 'a production has been reduced so add to another production bar
  989.   temp~%% = 100 - temp~%% 'how much to add back in to make 100 again
  990.   SELECT CASE Opt%%
  991.    CASE 1 'ship shifts to tech(if not locked)
  992.     IF NOT Planet(G.Selected_Planet).TechLock THEN
  993.      Planet(G.Selected_Planet).Tech = Planet(G.Selected_Planet).Tech + temp~%%
  994.     ELSEIF NOT Planet(G.Selected_Planet).EcoLock THEN
  995.      Planet(G.Selected_Planet).Eco = Planet(G.Selected_Planet).Eco + temp~%%
  996.     ELSEIF NOT Planet(G.Selected_Planet).InduLock THEN
  997.      Planet(G.Selected_Planet).Indu = Planet(G.Selected_Planet).Indu + temp~%%
  998.     ELSEIF NOT Planet(G.Selected_Planet).DefnLock THEN
  999.      Planet(G.Selected_Planet).Defn = Planet(G.Selected_Planet).Defn + temp~%%
  1000.     ELSE
  1001.      Planet(G.Selected_Planet).Ship = Planet(G.Selected_Planet).Ship + temp~%%
  1002.     END IF
  1003.    CASE 2 'defn shifts to tech(if not locked)
  1004.     IF NOT Planet(G.Selected_Planet).TechLock THEN
  1005.      Planet(G.Selected_Planet).Tech = Planet(G.Selected_Planet).Tech + temp~%%
  1006.     ELSEIF NOT Planet(G.Selected_Planet).EcoLock THEN
  1007.      Planet(G.Selected_Planet).Eco = Planet(G.Selected_Planet).Eco + temp~%%
  1008.     ELSEIF NOT Planet(G.Selected_Planet).InduLock THEN
  1009.      Planet(G.Selected_Planet).Indu = Planet(G.Selected_Planet).Indu + temp~%%
  1010.     ELSEIF NOT Planet(G.Selected_Planet).Shiplock THEN
  1011.      Planet(G.Selected_Planet).Ship = Planet(G.Selected_Planet).Ship + temp~%%
  1012.     ELSE 'everything else is locked so put produciton back in defence
  1013.      Planet(G.Selected_Planet).Defn = Planet(G.Selected_Planet).Defn + temp~%%
  1014.     END IF
  1015.    CASE 3 'indu shifts to tech(if not locked)
  1016.     IF NOT Planet(G.Selected_Planet).TechLock THEN
  1017.      Planet(G.Selected_Planet).Tech = Planet(G.Selected_Planet).Tech + temp~%%
  1018.     ELSEIF NOT Planet(G.Selected_Planet).Shiplock THEN
  1019.      Planet(G.Selected_Planet).Ship = Planet(G.Selected_Planet).Ship + temp~%%
  1020.     ELSEIF NOT Planet(G.Selected_Planet).DefnLock THEN
  1021.      Planet(G.Selected_Planet).Defn = Planet(G.Selected_Planet).Defn + temp~%%
  1022.     ELSEIF NOT Planet(G.Selected_Planet).EcoLock THEN
  1023.      Planet(G.Selected_Planet).Eco = Planet(G.Selected_Planet).Eco + temp~%%
  1024.     ELSE 'everything else is locked so put produciton back in industry
  1025.      Planet(G.Selected_Planet).Indu = Planet(G.Selected_Planet).Indu + temp~%%
  1026.     END IF
  1027.    CASE 4 'eco shifts to tech(if not locked)
  1028.     IF NOT Planet(G.Selected_Planet).TechLock THEN
  1029.      Planet(G.Selected_Planet).Tech = Planet(G.Selected_Planet).Tech + temp~%%
  1030.     ELSEIF NOT Planet(G.Selected_Planet).Shiplock THEN
  1031.      Planet(G.Selected_Planet).Ship = Planet(G.Selected_Planet).Ship + temp~%%
  1032.     ELSEIF NOT Planet(G.Selected_Planet).InduLock THEN
  1033.      Planet(G.Selected_Planet).Indu = Planet(G.Selected_Planet).Indu + temp~%%
  1034.     ELSEIF NOT Planet(G.Selected_Planet).DefnLock THEN
  1035.      Planet(G.Selected_Planet).Defn = Planet(G.Selected_Planet).Defn + temp~%%
  1036.     ELSE 'everything else is locked so put produciton back in ecology
  1037.      Planet(G.Selected_Planet).Eco = Planet(G.Selected_Planet).Eco + temp~%%
  1038.     END IF
  1039.    CASE 5 'tech shifts to ship (if not locked)
  1040.     IF NOT Planet(G.Selected_Planet).Shiplock THEN
  1041.      Planet(G.Selected_Planet).Ship = Planet(G.Selected_Planet).Ship + temp~%%
  1042.     ELSEIF NOT Planet(G.Selected_Planet).DefnLock THEN
  1043.      Planet(G.Selected_Planet).Defn = Planet(G.Selected_Planet).Defn + temp~%%
  1044.     ELSEIF NOT Planet(G.Selected_Planet).InduLock THEN
  1045.      Planet(G.Selected_Planet).Indu = Planet(G.Selected_Planet).Indu + temp~%%
  1046.     ELSEIF NOT Planet(G.Selected_Planet).EcoLock THEN
  1047.      Planet(G.Selected_Planet).Eco = Planet(G.Selected_Planet).Eco + temp~%%
  1048.     ELSE 'everything else is locked so put produciton back in techology
  1049.      Planet(G.Selected_Planet).Tech = Planet(G.Selected_Planet).Tech + temp~%%
  1050.     END IF
  1051.  
  1052.  
  1053.  
  1054. SUB BuildMainGameDisplay (MO%)
  1055.  Oprint 545 - (LEN(RTRIM$(Planet(G.Selected_Planet).Name)) / 2) * 20, 18, Planet(G.Selected_Planet).Name, YellowG, PLANETOID
  1056.  Oprint 18, 366, "Game", OUTLINE, OUTLINE
  1057.  Oprint 86, 366, "Design", OUTLINE, OUTLINE
  1058.  Oprint 164, 366, "Fleet", OUTLINE, OUTLINE
  1059.  Oprint 236, 366, "Map", OUTLINE, OUTLINE
  1060.  Oprint 292, 366, "Races", OUTLINE, OUTLINE
  1061.  Oprint 366, 366, "Planets", OUTLINE, OUTLINE
  1062.  Oprint 458, 366, "Tech", OUTLINE, OUTLINE
  1063.  Oprint 524, 366, "Next Turn", OUTLINE, OUTLINE
  1064.  
  1065.  IF MO% = 24 THEN Oprint 18, 368, "Game", White, NORMAL ELSE Oprint 18, 368, "Game", Grey, NORMAL
  1066.  IF MO% = 25 THEN Oprint 86, 368, "Design", White, NORMAL ELSE Oprint 86, 368, "Design", Grey, NORMAL
  1067.  IF MO% = 26 THEN Oprint 164, 368, "Fleet", White, NORMAL ELSE Oprint 164, 368, "Fleet", Grey, NORMAL
  1068.  IF MO% = 27 THEN Oprint 236, 368, "Map", White, NORMAL ELSE Oprint 236, 368, "Map", Grey, NORMAL
  1069.  IF MO% = 28 THEN Oprint 292, 368, "Races", White, NORMAL ELSE Oprint 292, 368, "Races", Grey, NORMAL
  1070.  IF MO% = 29 THEN Oprint 366, 368, "Planets", White, NORMAL ELSE Oprint 366, 368, "Planets", Grey, NORMAL
  1071.  IF MO% = 30 THEN Oprint 458, 368, "Tech", White, NORMAL ELSE Oprint 458, 368, "Tech", Grey, NORMAL
  1072.  IF MO% = 31 THEN Oprint 524, 368, "Next Turn", White, NORMAL ELSE Oprint 524, 368, "Next Turn", Grey, NORMAL
  1073.  
  1074.  Oprint 526 - LEN(LTRIM$(RTRIM$(STR$(Planet(G.Selected_Planet).CurPop)))) * 4, 122, LTRIM$(RTRIM$(STR$(Planet(G.Selected_Planet).CurPop))), Yellow, XSMALL
  1075.  Oprint 622 - LEN(LTRIM$(RTRIM$(STR$(Planet(G.Selected_Planet).Bases)))) * 4, 122, LTRIM$(RTRIM$(STR$(Planet(G.Selected_Planet).Bases))), Yellow, XSMALL
  1076.  TotOff%% = (LEN(LTRIM$(RTRIM$(STR$(PlanetProduction(TOT))))) + 2) * 4
  1077.  Oprint 614 - TotOff%%, 144, "(" + LTRIM$(RTRIM$(STR$(PlanetProduction(TOT)))) + ")", Green, XSMALL
  1078.  Oprint 614 - (LEN(LTRIM$(RTRIM$(STR$(PlanetProduction(ACT))))) + 2) * 4 - (TotOff%% + 4), 144, LTRIM$(RTRIM$(STR$(PlanetProduction(ACT)))), Yellow, XSMALL
  1079.  
  1080.  _PUTIMAGE (565, 281)-STEP(59, 21), Layer(12), Mix&, (597, 1)-STEP(29, 10)
  1081.  _PUTIMAGE (565, 305)-STEP(59, 21), Layer(12), Mix&, (597, 12)-STEP(29, 10)
  1082.  _PUTIMAGE (565, 329)-STEP(59, 21), Layer(12), Mix&, (597, 23)-STEP(29, 10)
  1083.  
  1084. SUB Make_Planets
  1085.  FOR I%% = 0 TO PlanetCount(G.Galaxy_Size) - 1
  1086.   Planet(I%%).Name = Planets(10 + I%%)
  1087.   DO
  1088.    SELECT CASE G.Galaxy_Size
  1089.     CASE 1 'small
  1090.      Planet(I%%).XLoc = INT(RND * 185) + 10
  1091.      Planet(I%%).YLoc = INT(RND * 150) + 10
  1092.     CASE 2
  1093.      Planet(I%%).XLoc = INT(RND * 250) + 10
  1094.      Planet(I%%).YLoc = INT(RND * 190) + 10
  1095.     CASE 3
  1096.      Planet(I%%).XLoc = INT(RND * 290) + 10
  1097.      Planet(I%%).YLoc = INT(RND * 240) + 10
  1098.     CASE 4
  1099.      Planet(I%%).XLoc = INT(RND * 365) + 10
  1100.      Planet(I%%).YLoc = INT(RND * 320) + 10
  1101.    END SELECT
  1102.  
  1103.    Good%% = TRUE
  1104.  
  1105.    FOR j%% = 0 TO I%% - 1
  1106.     IF Planet(I%%).XLoc > Planet(j%%).XLoc - 20 AND Planet(I%%).XLoc < Planet(j%%).XLoc + 20 THEN Good%% = FALSE ELSE Good%% = TRUE
  1107.     IF Planet(I%%).YLoc > Planet(j%%).YLoc - 20 AND Planet(I%%).YLoc < Planet(j%%).YLoc + 20 THEN Good%% = FALSE ELSE Good%% = TRUE
  1108.     IF INKEY$ = CHR$(27) THEN END
  1109.  
  1110.    NEXT j%%
  1111.   LOOP UNTIL Good%%
  1112.  
  1113.   IF INT(RND * 100) > 49 THEN Planet(I%%).Size = 2 ELSE Planet(I%%).Size = 1
  1114.   Planet(I%%).Colr = INT(RND * 6)
  1115.   temp~%% = INT(RND * 100)
  1116.   SELECT CASE Planet(I%%).Colr
  1117.    CASE 1 'yellow
  1118.     IF temp~%% > 10 THEN
  1119.      Planet(I%%).Environ = INT(RND * 6) + 7
  1120.     ELSE
  1121.      Planet(I%%).Environ = INT(RND * 14)
  1122.     END IF
  1123.    CASE 2 'Green
  1124.     IF temp~%% > 25 THEN
  1125.      Planet(I%%).Environ = INT(RND * 6) + 7
  1126.     ELSE
  1127.      Planet(I%%).Environ = INT(RND * 14)
  1128.     END IF
  1129.    CASE 3 'red
  1130.     IF temp~%% > 49 THEN
  1131.      Planet(I%%).Environ = INT(RND * 6) + 7
  1132.     ELSE
  1133.      Planet(I%%).Environ = INT(RND * 14)
  1134.     END IF
  1135.    CASE 4 'blue
  1136.     IF temp~%% > 74 THEN
  1137.      Planet(I%%).Environ = INT(RND * 6) + 7
  1138.     ELSE
  1139.      Planet(I%%).Environ = INT(RND * 14)
  1140.     END IF
  1141.    CASE 5 'white
  1142.     IF temp~%% > 90 THEN
  1143.      Planet(I%%).Environ = INT(RND * 6) + 6
  1144.     ELSE
  1145.      Planet(I%%).Environ = INT(RND * 14)
  1146.     END IF
  1147.    CASE 6 'purple
  1148.     IF temp~%% > 65 THEN
  1149.      Planet(I%%).Environ = INT(RND * 6) + 5
  1150.     ELSE
  1151.      Planet(I%%).Environ = INT(RND * 14)
  1152.     END IF
  1153.   SELECT CASE Planet(I%%).Environ
  1154.    CASE 0 'no planets
  1155.     population~%% = 10
  1156.    CASE 1 TO 4 'max population <=50
  1157.     population~%% = (INT(RND * 8) + 2) * 5
  1158.    CASE 5 TO 7 'max population <=70
  1159.     population~%% = (INT(RND * 12) + 2) * 5
  1160.    CASE 9 TO 11 'max population <=95
  1161.     population~%% = (INT(RND * 17) + 2) * 5
  1162.    CASE 12, 13 'max population <=120
  1163.     population~%% = (INT(RND * 22) + 2) * 5
  1164.   Planet(I%%).BasePop = population~%%
  1165.   Planet(I%%).ModPop = population~%%
  1166.   Planet(I%%).MaxPop = population~%%
  1167.   Planet(I%%).Race1Visit = TRUE
  1168.  
  1169.  NEXT I%%
  1170.  '------------make players system--------------
  1171.  G.Selected_Planet = INT(RND * PlanetCount(G.Galaxy_Size))
  1172.  Planet(G.Selected_Planet).Name = Planets(G.Player_Race)
  1173.  Planet(G.Selected_Planet).Owner = 1
  1174.  Planet(G.Selected_Planet).Race1Visit = TRUE
  1175.  Planet(G.Selected_Planet).CurPop = 50
  1176.  Planet(G.Selected_Planet).LastPop = 50
  1177.  Planet(G.Selected_Planet).Factory = 30
  1178.  Planet(G.Selected_Planet).Ship = 0
  1179.  Planet(G.Selected_Planet).Defn = 0
  1180.  Planet(G.Selected_Planet).Indu = 60
  1181.  Planet(G.Selected_Planet).Eco = 40
  1182.  Planet(G.Selected_Planet).Tech = 0
  1183.  '----------------------------------------------
  1184.  Planet(G.Selected_Planet).Wealth = Norm
  1185.  Planet(G.Selected_Planet).ActualProd = PlanetProduction(ACT)
  1186.  Planet(G.Selected_Planet).TotalProd = PlanetProduction(TOT)
  1187.  
  1188.  
  1189. SUB Resource_Display
  1190.  'draws the planetary resource distrubution display
  1191.  DIM bar(5) AS _BYTE, Lok(5) AS _BYTE
  1192.  
  1193.  bar(0) = 52 * (Planet(G.Selected_Planet).Ship / 100) - 1
  1194.  bar(1) = 52 * (Planet(G.Selected_Planet).Defn / 100) - 1
  1195.  bar(2) = 52 * (Planet(G.Selected_Planet).Indu / 100) - 1
  1196.  bar(3) = 52 * (Planet(G.Selected_Planet).Eco / 100) - 1
  1197.  bar(4) = 52 * (Planet(G.Selected_Planet).Tech / 100) - 1
  1198.  IF Planet(G.Selected_Planet).Shiplock THEN Lok(1) = 26 ELSE Lok(1) = 0
  1199.  IF Planet(G.Selected_Planet).DefnLock THEN Lok(2) = 26 ELSE Lok(2) = 0
  1200.  IF Planet(G.Selected_Planet).InduLock THEN Lok(3) = 26 ELSE Lok(3) = 0
  1201.  IF Planet(G.Selected_Planet).EcoLock THEN Lok(4) = 26 ELSE Lok(4) = 0
  1202.  IF Planet(G.Selected_Planet).TechLock THEN Lok(5) = 26 ELSE Lok(5) = 0
  1203.  
  1204.  IF Lok(1) THEN _PUTIMAGE (454, 164)-STEP(33, 15), Layer(12), Mix&, (597, 36)-STEP(16, 7)
  1205.  IF Lok(2) THEN _PUTIMAGE (454, 187)-STEP(33, 15), Layer(12), Mix&, (597, 47)-STEP(16, 7)
  1206.  IF Lok(3) THEN _PUTIMAGE (454, 209)-STEP(33, 15), Layer(12), Mix&, (597, 58)-STEP(16, 7)
  1207.  IF Lok(4) THEN _PUTIMAGE (454, 231)-STEP(33, 15), Layer(12), Mix&, (597, 69)-STEP(16, 7)
  1208.  IF Lok(5) THEN _PUTIMAGE (454, 253)-STEP(33, 15), Layer(12), Mix&, (597, 80)-STEP(16, 7)
  1209.  
  1210.  IF bar(0) > 0 THEN 'shipyard alotment
  1211.   _PUTIMAGE (506, 168)-STEP(bar(0), 7), Layer(12), Mix&, (320 + Lok(1), 194)-STEP(bar(0) \ 2, 3)
  1212.   Oprint 596, 166, "NONE", Black, XSMALL
  1213.  
  1214.  IF bar(1) > 0 THEN 'defence alotment
  1215.   _PUTIMAGE (506, 191)-STEP(bar(1), 7), Layer(12), Mix&, (320 + Lok(2), 194)-STEP((bar(1) \ 2), 3)
  1216.   Oprint 596, 189, "NONE", Black, XSMALL
  1217.  
  1218.  IF bar(2) > 0 THEN 'industry alotment
  1219.   _PUTIMAGE (506, 213)-STEP(bar(2), 7), Layer(12), Mix&, (320 + Lok(3), 194)-STEP((bar(2) \ 2), 3)
  1220.   bar(2) = Planet(G.Selected_Planet).ActualProd * (Planet(G.Selected_Planet).Indu / 100)
  1221.   IF bar(2) / Player(Planet(G.Selected_Planet).Owner).FactoryCost < 10 THEN
  1222.    Fact$ = LEFT$(LTRIM$(RTRIM$(STR$(bar(2) / Player(Planet(G.Selected_Planet).Owner).FactoryCost))), 3) + "/Y"
  1223.   ELSE
  1224.    Fact$ = LEFT$(LTRIM$(RTRIM$(STR$(bar(2) / Player(Planet(G.Selected_Planet).Owner).FactoryCost))), 2) + "/Y"
  1225.   END IF
  1226.   Oprint 610 - LEN(Fact$) * 4, 211, Fact$, Black, XSMALL
  1227.   Oprint 596, 211, "NONE", Black, XSMALL
  1228.  
  1229.  '---------------------planetary alotment--------------------
  1230.  'determine factory waste by # of factories * factorywaste%(100,80,60,40,20,0)
  1231.  IF bar(3) > 0 THEN _PUTIMAGE (506, 235)-STEP(bar(3), 7), Layer(12), Mix&, (320 + Lok(4), 194)-STEP((bar(3) \ 2), 3)
  1232.  bar(3) = Planet(G.Selected_Planet).Eco
  1233.  waste% = INT((Planet(G.Selected_Planet).Factory)) * (Player(Planet(G.Selected_Planet).Owner).Factorywaste / 100)
  1234.  test% = (PlanetProduction(ACT) * (bar(3) / 100)) * Player(Planet(G.Selected_Planet).Owner).EcoRestore
  1235.  IF test% >= waste% THEN
  1236.   Oprint 584, 233, "CLEAN", Black, XSMALL
  1237.   Oprint 584, 233, "WASTE", Black, XSMALL
  1238.  
  1239.  IF bar(4) > 0 THEN 'technology alotment
  1240.   _PUTIMAGE (506, 257)-STEP(bar(4), 7), Layer(12), Mix&, (320 + Lok(5), 194)-STEP((bar(4) \ 2), 3)
  1241.   bar(4) = Planet(G.Selected_Planet).ActualProd * (Planet(G.Selected_Planet).Tech / 100)
  1242.   IF Planet(G.Selected_Planet).Wealth = 3 THEN Oprint 602 - LEN(LTRIM$(RTRIM$(STR$(bar(4))))) * 4, 255, LTRIM$(RTRIM$(STR$(bar(4)))), Black, XSMALL
  1243.   IF Planet(G.Selected_Planet).Wealth = 4 THEN Oprint 602 - LEN(LTRIM$(RTRIM$(STR$(bar(4) * 2)))) * 4, 255, LTRIM$(RTRIM$(STR$(bar(4) * 2))), Black, XSMALL
  1244.   IF Planet(G.Selected_Planet).Wealth = 7 THEN Oprint 602 - LEN(LTRIM$(RTRIM$(STR$(bar(4) * 4)))) * 4, 255, LTRIM$(RTRIM$(STR$(bar(4) * 4))), Black, XSMALL
  1245.   Oprint 602, 255, "0", Black, XSMALL
  1246.  
  1247. FUNCTION MainMenu
  1248.  OPEN "DatatempA.dat" FOR BINARY AS #2
  1249.  GET #2, , Elements%
  1250.  DIM Offs(Elements%) AS LONG, Sizs(Elements%) AS LONG
  1251.  GET #2, , Offs()
  1252.  GET #2, , Sizs()
  1253.  
  1254.  Result%% = FALSE
  1255.  BuildClickLayer Layer(30), 1
  1256.  TIMER(T(1)) ON
  1257.  DO
  1258.   nul% = _MOUSEINPUT
  1259.   X% = _MOUSEX: Y% = _MOUSEY
  1260.    opt%% = Check_Pos(X%, Y%)
  1261.    Result%% = opt%%
  1262.    IF opt%% THEN exitflag%% = TRUE
  1263.   END IF
  1264.  
  1265.   GetFrame Sizs(G.Frame), Offs(G.Frame), 2
  1266.  
  1267.   _PUTIMAGE , Temp&, Mix&
  1268.   ShowMenuOptions Check_Pos(X%, Y%)
  1269.   _PUTIMAGE (43, 22), Layer(3), Mix&
  1270.   _PUTIMAGE (X%, Y%), Layer(5), Mix&, (0, 0)-STEP(28, 24)
  1271.   _PUTIMAGE , Mix&, _DISPLAY
  1272.   _DELAY .025
  1273.   IF INKEY$ = CHR$(27) THEN exitflag%% = TRUE: Result%% = 4
  1274.  
  1275.  LOOP UNTIL exitflag%%
  1276.  TIMER(T(1)) OFF
  1277.  MainMenu = Result%%
  1278.  CLOSE #2
  1279.  
  1280. SUB MenuAnimation ()
  1281.  G.Frame = G.Frame + 1
  1282.  IF G.Frame >= 48 THEN G.Frame = 0
  1283.  
  1284. SUB WaveAnimation ()
  1285.  G.Frame = G.Frame + 1
  1286.  IF G.Frame >= 10 THEN G.Frame = 0
  1287.  
  1288. SUB BuildClickLayer (LID&, M_ID%%)
  1289.  _DEST LID&
  1290.  CLS
  1291.  SELECT CASE M_ID%%
  1292.   CASE 1
  1293.    LINE (230, 274)-STEP(190, 32), _RGB32(1, 1, 1), BF
  1294.    LINE (230, 306)-STEP(190, 32), _RGB32(2, 1, 1), BF
  1295.    LINE (230, 338)-STEP(190, 32), _RGB32(3, 1, 1), BF
  1296.    LINE (230, 370)-STEP(190, 32), _RGB32(4, 1, 1), BF
  1297.   CASE 2
  1298.    LINE (354, 62)-STEP(110, 26), _RGB32(1, 1, 1), BF
  1299.    LINE (354, 140)-STEP(110, 26), _RGB32(2, 1, 1), BF
  1300.    LINE (354, 218)-STEP(110, 26), _RGB32(3, 1, 1), BF
  1301.    LINE (185, 298)-STEP(126, 36), _RGB32(4, 1, 1), BF
  1302.    LINE (326, 298)-STEP(126, 36), _RGB32(5, 1, 1), BF
  1303.   CASE 3
  1304.    FOR i%% = 1 TO 10
  1305.     LINE (20, 42 + (i%% * 24))-STEP(110, 21), _RGB32(i%%, 1, 1), BF
  1306.    NEXT i%%
  1307.   CASE 4
  1308.    FOR i%% = 1 TO 6
  1309.     LINE (20, 42 + (i%% * 24))-STEP(110, 21), _RGB32(i%%, 1, 1), BF
  1310.    NEXT i%%
  1311.   CASE 5 'main screen
  1312.    'resource distribution area
  1313.    '----bars---
  1314.    LINE (504, 168)-STEP(51, 8), _RGB32(1, 1, 1), BF 'ship production
  1315.    LINE (504, 190)-STEP(51, 8), _RGB32(2, 1, 1), BF 'defence production
  1316.    LINE (504, 212)-STEP(51, 8), _RGB32(3, 1, 1), BF 'industry production
  1317.    LINE (504, 234)-STEP(51, 8), _RGB32(4, 1, 1), BF 'ecological production
  1318.    LINE (504, 256)-STEP(51, 8), _RGB32(5, 1, 1), BF 'technological production
  1319.    '---arrows---
  1320.    '-------reduce-------
  1321.    LINE (494, 164)-STEP(10, 10), _RGB32(6, 1, 1), BF
  1322.    LINE (494, 186)-STEP(10, 10), _RGB32(7, 1, 1), BF
  1323.    LINE (494, 208)-STEP(10, 10), _RGB32(8, 1, 1), BF
  1324.    LINE (494, 230)-STEP(10, 10), _RGB32(9, 1, 1), BF
  1325.    LINE (494, 252)-STEP(10, 10), _RGB32(10, 1, 1), BF
  1326.    '------increase------
  1327.    LINE (560, 164)-STEP(10, 10), _RGB32(11, 1, 1), BF
  1328.    LINE (560, 186)-STEP(10, 10), _RGB32(12, 1, 1), BF
  1329.    LINE (560, 208)-STEP(10, 10), _RGB32(13, 1, 1), BF
  1330.    LINE (560, 230)-STEP(10, 10), _RGB32(14, 1, 1), BF
  1331.    LINE (560, 252)-STEP(10, 10), _RGB32(15, 1, 1), BF
  1332.    '-----Lock resource-----
  1333.    LINE (454, 164)-STEP(33, 14), _RGB32(16, 1, 1), BF
  1334.    LINE (454, 186)-STEP(33, 14), _RGB32(17, 1, 1), BF
  1335.    LINE (454, 208)-STEP(33, 14), _RGB32(18, 1, 1), BF
  1336.    LINE (454, 230)-STEP(33, 14), _RGB32(19, 1, 1), BF
  1337.    LINE (454, 252)-STEP(33, 14), _RGB32(20, 1, 1), BF
  1338.    '---ShipYard Area---
  1339.    LINE (456, 280)-STEP(94, 70), _RGB32(21, 1, 1), BF 'change ship in production(area)
  1340.    LINE (564, 280)-STEP(56, 20), _RGB32(21, 1, 1), BF 'change ship in production(button)
  1341.    LINE (564, 304)-STEP(56, 20), _RGB32(22, 1, 1), BF 'relocate ship button
  1342.    LINE (564, 328)-STEP(56, 20), _RGB32(23, 1, 1), BF 'transport colonist button
  1343.    '----Bottom Area----
  1344.    LINE (10, 362)-STEP(62, 26), _RGB32(24, 1, 1), BF 'game menu
  1345.    LINE (80, 362)-STEP(70, 26), _RGB32(25, 1, 1), BF 'ship design
  1346.    LINE (158, 362)-STEP(64, 26), _RGB32(26, 1, 1), BF 'fleet information
  1347.    LINE (230, 362)-STEP(48, 26), _RGB32(27, 1, 1), BF 'galactic map
  1348.    LINE (286, 362)-STEP(66, 26), _RGB32(28, 1, 1), BF 'Race relations
  1349.    LINE (360, 362)-STEP(82, 26), _RGB32(29, 1, 1), BF 'colonized planet information
  1350.    LINE (450, 362)-STEP(58, 26), _RGB32(30, 1, 1), BF 'technology reserch
  1351.    LINE (516, 362)-STEP(112, 26), _RGB32(31, 1, 1), BF 'next turn
  1352.   CASE 6 'game option screen
  1353.    LINE (232, 114)-STEP(143, 27), _RGB32(1, 1, 1), BF 'save game
  1354.    LINE (232, 164)-STEP(143, 27), _RGB32(2, 1, 1), BF 'load game
  1355.    LINE (232, 214)-STEP(143, 27), _RGB32(3, 1, 1), BF 'quit game
  1356.    LINE (422, 114)-STEP(143, 27), _RGB32(4, 1, 1), BF 'no sound
  1357.    LINE (422, 164)-STEP(143, 27), _RGB32(5, 1, 1), BF 'SFX only
  1358.    LINE (422, 214)-STEP(143, 27), _RGB32(6, 1, 1), BF 'Full sound& music
  1359.    LINE (346, 270)-STEP(104, 30), _RGB32(7, 1, 1), BF 'OK
  1360.   CASE 7 'Load\Save Game screen
  1361.    LINE (290, 66)-STEP(224, 16), _RGB32(1, 1, 1), BF 'game  1
  1362.    LINE (290, 102)-STEP(224, 16), _RGB32(2, 1, 1), BF ' game 2
  1363.    LINE (290, 138)-STEP(224, 16), _RGB32(3, 1, 1), BF ' game 3
  1364.    LINE (290, 174)-STEP(224, 16), _RGB32(4, 1, 1), BF ' game 4
  1365.    LINE (290, 210)-STEP(224, 16), _RGB32(5, 1, 1), BF ' game 5
  1366.    LINE (290, 246)-STEP(224, 16), _RGB32(6, 1, 1), BF ' game 6
  1367.    LINE (276, 290)-STEP(104, 32), _RGB32(7, 1, 1), BF 'Cancel
  1368.    LINE (404, 290)-STEP(104, 32), _RGB32(8, 1, 1), BF 'OK
  1369.   CASE 8 'Ship Design screen
  1370.    LINE (562, 298)-STEP(64, 26), _RGB32(1, 1, 1), BF 'Cancel
  1371.    LINE (562, 330)-STEP(64, 26), _RGB32(2, 1, 1), BF 'Clear
  1372.    LINE (562, 362)-STEP(64, 26), _RGB32(3, 1, 1), BF 'Build
  1373.   CASE 9 'Fleet specs screen
  1374.    LINE (364, 362)-STEP(64, 26), _RGB32(1, 1, 1), BF 'Specs
  1375.    LINE (450, 362)-STEP(64, 26), _RGB32(2, 1, 1), BF 'Scrap
  1376.    LINE (538, 362)-STEP(64, 26), _RGB32(3, 1, 1), BF 'OK
  1377.   CASE 10 'Map screen
  1378.    LINE (490, 52)-STEP(121, 22), _RGB32(1, 1, 1), BF 'Colonies
  1379.    LINE (490, 92)-STEP(121, 22), _RGB32(2, 1, 1), BF ' Enviroments
  1380.    LINE (490, 132)-STEP(121, 22), _RGB32(3, 1, 1), BF ' minerals
  1381.    LINE (490, 360)-STEP(121, 22), _RGB32(4, 1, 1), BF ' OK
  1382.  
  1383.  
  1384. SUB ShowMenuOptions (opt%%)
  1385.  IF MFlags AND 1 THEN _PUTIMAGE (239, 274)-STEP(162, 32), Layer(4), Mix&, (0, 0)-STEP(81, 15) ELSE _PUTIMAGE (239, 274)-STEP(162, 32), Layer(4), Mix&, (82, 0)-STEP(81, 15)
  1386.  IF MFlags AND 2 THEN _PUTIMAGE (239, 306)-STEP(162, 32), Layer(4), Mix&, (0, 16)-STEP(81, 15) ELSE _PUTIMAGE (239, 306)-STEP(162, 32), Layer(4), Mix&, (82, 16)-STEP(81, 15)
  1387.  IF MFlags AND 4 THEN _PUTIMAGE (239, 338)-STEP(162, 32), Layer(4), Mix&, (0, 32)-STEP(81, 15) ELSE _PUTIMAGE (239, 338)-STEP(162, 32), Layer(4), Mix&, (82, 32)-STEP(81, 15)
  1388.  IF MFlags AND 8 THEN _PUTIMAGE (239, 370)-STEP(162, 32), Layer(4), Mix&, (0, 48)-STEP(81, 15) ELSE _PUTIMAGE (239, 370)-STEP(162, 32), Layer(4), Mix&, (82, 48)-STEP(81, 15)
  1389.  
  1390.  IF opt%% THEN
  1391.   SELECT CASE opt%%
  1392.    CASE 1
  1393.     IF MFlags AND 1 THEN _PUTIMAGE (239, 274)-STEP(162, 32), Layer(4), Mix&, (164, 0)-STEP(81, 15)
  1394.    CASE 2
  1395.     IF MFlags AND 2 THEN _PUTIMAGE (239, 306)-STEP(162, 32), Layer(4), Mix&, (164, 16)-STEP(81, 15)
  1396.    CASE 3
  1397.     IF MFlags AND 4 THEN _PUTIMAGE (239, 338)-STEP(162, 32), Layer(4), Mix&, (164, 32)-STEP(81, 15)
  1398.    CASE 4
  1399.     IF MFlags AND 8 THEN _PUTIMAGE (239, 370)-STEP(162, 32), Layer(4), Mix&, (164, 48)-STEP(81, 15)
  1400.  
  1401. SUB Check_Saves
  1402.  IF _FILEEXISTS("SAVE7.GAM") THEN MFlags = MFlags + 1 'does auto save game exist?
  1403.  FOR i%% = 1 TO 6 'check for manual save games
  1404.   FE$ = "SAVE" + LTRIM$(STR$(i%%)) + ".GAM"
  1405.   IF _FILEEXISTS(FE$) THEN MFlags = MFlags + 2: i%% = 7 ' if any save game exists then exit loop
  1406.  NEXT i%%
  1407.  
  1408. SUB load_game_names
  1409.  OPEN "StarLord.cfg" FOR BINARY AS #1
  1410.  GET #1, , Saves()
  1411.  CLOSE #1
  1412.  
  1413. FUNCTION Check_Pos (x%, y%)
  1414.  Result%% = 0
  1415.  TP~& = POINT(x%, y%)
  1416.  Result%% = _RED(TP~&)
  1417.  Check_Pos = Result%%
  1418.  
  1419. SUB Oprint (X%, Y%, TXT$, C%%, TYP%%)
  1420.  InitFont C%%
  1421.  SELECT CASE TYP%%
  1422.   CASE XSMALL
  1423.    FOR I%% = 1 TO LEN(TXT$)
  1424.     T%% = ASC(MID$(UCASE$(TXT$), I%%, 1))
  1425.     IF T%% = 32 THEN
  1426.      xs% = xs% + 6
  1427.     ELSE
  1428.      Lxo% = 4 * (T%% - 40)
  1429.      IF T%% = 49 OR T%% = 73 THEN xs% = xs% - 2
  1430.      _PUTIMAGE (X% + xs%, Y%)-STEP(7, 11), Layer(29), Mix&, (Lxo%, 0)-STEP(3, 5)
  1431.      IF T%% = 49 OR T%% = 73 THEN xs% = xs% + 6 ELSE xs% = xs% + 8
  1432.     END IF
  1433.    NEXT I%%
  1434.   CASE SMALL
  1435.    FOR I%% = 1 TO LEN(TXT$)
  1436.     T%% = ASC(MID$(TXT$, I%%, 1))
  1437.     SELECT CASE T%%
  1438.      CASE 32
  1439.       xs% = xs% + 8
  1440.      CASE 44
  1441.       Ys% = Ys% + 14
  1442.       xs% = 0
  1443.      CASE 45 TO 90
  1444.       T%% = T%% - 45
  1445.       IF T%% = 4 OR T%% = 28 THEN xs% = xs% - 2
  1446.       _PUTIMAGE (X% + xs% - XC%%, Y% + Ys%)-STEP(9, 9), Layer(29), Mix&, (0 + 5 * T%%, 6)-STEP(4, 4)
  1447.       xs% = xs% + 10
  1448.       IF T%% = 32 OR T%% = 42 OR T%% = 43 OR T%% = 41 OR T%% = 39 THEN xs% = xs% + 2
  1449.       LastLetter%% = TRUE 'if the last letter was upper case
  1450.      CASE 97 TO 122
  1451.       T%% = T%% - 97
  1452.       IF T%% = 8 OR T%% = 11 THEN xs% = xs% - 2 'remove excess space infront of `i` and  `l`
  1453.       IF T%% = 12 OR T%% = 22 THEN xs% = xs% + 2 'add space before `m` and `w`
  1454.       IF LastLetter%% THEN xs% = xs% - 2 'remove extra space after upper case letter
  1455.       _PUTIMAGE (X% + xs% - XC%%, Y% + Ys%)-STEP(9, 11), Layer(29), Mix&, (235 + 5 * T%%, 6)-STEP(4, 5)
  1456.       xs% = xs% + 8
  1457.       IF T%% = 8 OR T%% = 11 THEN xs% = xs% - 2 'remove excess space after of `i` and  `l`
  1458.       IF T%% = 12 OR T%% = 22 THEN xs% = xs% + 2 'add space after `m` and `w`
  1459.       LastLetter%% = FALSE 'if the last letter was not upper case
  1460.  
  1461.      CASE 97 TO 122
  1462.  
  1463.     END SELECT
  1464.    NEXT I%%
  1465.   CASE NORMAL
  1466.    FOR I%% = 1 TO LEN(TXT$)
  1467.     T%% = ASC(MID$(TXT$, I%%, 1))
  1468.     SELECT CASE T%%
  1469.      CASE 32
  1470.       xs% = xs% + 10
  1471.      CASE 45
  1472.       Lxo% = 7 * 62 + F(0, 62).Xloc
  1473.       _PUTIMAGE (X% + xs%, Y%)-STEP(F(0, 62).Xsiz * 2, 18), Layer(29), Mix&, (Lxo%, 12)-STEP(F(0, 62).Xsiz, 9)
  1474.       xs% = xs% + (F(0, 62).Xsiz * 2)
  1475.      CASE 46
  1476.       Lxo% = 7 * 63 + F(0, 63).Xloc
  1477.       _PUTIMAGE (X% + xs%, Y%)-STEP(F(0, 63).Xsiz * 2, 18), Layer(29), Mix&, (Lxo%, 12)-STEP(F(0, 63).Xsiz, 9)
  1478.       xs% = xs% + (F(0, 63).Xsiz * 2)
  1479.  
  1480.      CASE 48 TO 57
  1481.       Lxo% = 7 * (T%% - 48) + F(0, T%% - 48).Xloc
  1482.       _PUTIMAGE (X% + xs%, Y%)-STEP(F(0, T%% - 48).Xsiz * 2 + 1, 13), Layer(29), Mix&, (Lxo%, 12)-STEP(F(0, T%% - 48).Xsiz, 6)
  1483.       xs% = xs% + (F(0, T%% - 48).Xsiz * 2)
  1484.  
  1485.      CASE 65 TO 90
  1486.       Lxo% = 7 * (T%% - 65) + F(0, 10 + T%% - 65).Xloc + 70
  1487.       _PUTIMAGE (X% + xs%, Y%)-STEP(F(0, 10 + T%% - 65).Xsiz * 2 + 1, 13), Layer(29), Mix&, (Lxo%, 12)-STEP(F(0, 10 + T%% - 65).Xsiz, 6)
  1488.       xs% = xs% + (F(0, 10 + T%% - 65).Xsiz * 2)
  1489.  
  1490.      CASE 97 TO 122
  1491.       Lxo% = 7 * (T%% - 97) + F(0, 36 + T%% - 97).Xloc + 252
  1492.       _PUTIMAGE (X% + xs%, Y%)-STEP(F(0, 36 + T%% - 97).Xsiz * 2 + 1, 17), Layer(29), Mix&, (Lxo%, 12)-STEP(F(0, 36 + T%% - 97).Xsiz, 8)
  1493.       xs% = xs% + (F(0, 36 + T%% - 97).Xsiz * 2)
  1494.     END SELECT
  1495.    NEXT I%%
  1496.   CASE PLANETOID
  1497.    FOR I%% = 1 TO LEN(TXT$)
  1498.     T%% = ASC(MID$(TXT$, I%%, 1))
  1499.     SELECT CASE T%%
  1500.      CASE 32
  1501.       xs% = xs% + 10
  1502.      CASE 45
  1503.       Lxo% = F(1, 62).Xoff
  1504.       _PUTIMAGE (X% + xs%, Y%)-STEP(F(1, 62).Xsiz * 2, 21), Layer(29), Mix&, (Lxo%, 33)-STEP(F(1, 62).Xsiz - 1, 10)
  1505.       xs% = xs% + (F(1, 62).Xsiz * 2 - 2)
  1506.      CASE 46
  1507.       Lxo% = F(1, 63).Xoff
  1508.       _PUTIMAGE (X% + xs%, Y%)-STEP(F(1, 63).Xsiz * 2 - 1, 21), Layer(29), Mix&, (Lxo%, 33)-STEP(F(1, 63).Xsiz - 1, 10)
  1509.       xs% = xs% + (F(1, 63).Xsiz * 2 - 2)
  1510.  
  1511.      CASE 48 TO 57
  1512.       Lxo% = F(1, T%% - 48).Xoff
  1513.       _PUTIMAGE (X% + xs%, Y%)-STEP(F(1, T%% - 48).Xsiz * 2 - 1, 21), Layer(29), Mix&, (Lxo%, 33)-STEP(F(1, T%% - 48).Xsiz - 1, 10)
  1514.       xs% = xs% + (F(1, T%% - 48).Xsiz * 2 - 2)
  1515.  
  1516.      CASE 65 TO 90
  1517.       Lxo% = F(1, 10 + T%% - 65).Xoff
  1518.       _PUTIMAGE (X% + xs%, Y%)-STEP(F(1, 10 + T%% - 65).Xsiz * 2 - 1, 21), Layer(29), Mix&, (Lxo%, 33)-STEP(F(1, 10 + T%% - 65).Xsiz - 1, 10)
  1519.       xs% = xs% + (F(1, 10 + T%% - 65).Xsiz * 2 - 2)
  1520.  
  1521.      CASE 97 TO 122
  1522.       Lxo% = F(1, 36 + T%% - 97).Xoff
  1523.       _PUTIMAGE (X% + xs%, Y%)-STEP(F(1, 36 + T%% - 97).Xsiz * 2 - 1, 21), Layer(29), Mix&, (Lxo%, 33)-STEP(F(1, 36 + T%% - 97).Xsiz - 1, 10)
  1524.       xs% = xs% + (F(1, 36 + T%% - 97).Xsiz * 2 - 2)
  1525.     END SELECT
  1526.    NEXT I%%
  1527.   CASE OUTLINE
  1528.    C%% = C%% + 1
  1529.    FOR I%% = 1 TO LEN(TXT$)
  1530.     T%% = ASC(MID$(TXT$, I%%, 1))
  1531.     SELECT CASE T%%
  1532.      CASE 32
  1533.       xs% = xs% + 10
  1534.      CASE 45
  1535.       Lxo% = 7 * 62 + F(0, 62).Xloc
  1536.       _PUTIMAGE (X% + xs%, Y%)-STEP(F(0, 62).Xsiz * 2, 21), Layer(29), Mix&, (Lxo%, 21)-STEP(F(0, 62).Xsiz, 11)
  1537.       xs% = xs% + (F(0, 62).Xsiz * 2)
  1538.      CASE 46
  1539.       Lxo% = 7 * 63 + F(0, 63).Xloc
  1540.       _PUTIMAGE (X% + xs%, Y%)-STEP(F(0, 63).Xsiz * 2, 21), Layer(29), Mix&, (Lxo%, 21)-STEP(F(0, 63).Xsiz, 11)
  1541.       xs% = xs% + (F(0, 63).Xsiz * 2)
  1542.  
  1543.      CASE 48 TO 57
  1544.       Lxo% = 7 * (T%% - 48) + F(0, T%% - 48).Xloc
  1545.       _PUTIMAGE (X% + xs%, Y%)-STEP(F(0, T%% - 48).Xsiz * 2 + 1, 17), Layer(29), Mix&, (Lxo%, 21)-STEP(F(0, T%% - 48).Xsiz, 8)
  1546.       xs% = xs% + (F(0, T%% - 48).Xsiz * 2)
  1547.  
  1548.      CASE 65 TO 90
  1549.       Lxo% = 7 * (T%% - 65) + F(0, 10 + T%% - 65).Xloc + 70
  1550.       _PUTIMAGE (X% + xs%, Y%)-STEP(F(0, 10 + T%% - 65).Xsiz * 2 + 1, 17), Layer(29), Mix&, (Lxo%, 21)-STEP(F(0, 10 + T%% - 65).Xsiz, 8)
  1551.       xs% = xs% + (F(0, 10 + T%% - 65).Xsiz * 2)
  1552.  
  1553.      CASE 97 TO 122
  1554.       Lxo% = 7 * (T%% - 97) + F(0, 36 + T%% - 97).Xloc + 252
  1555.       _PUTIMAGE (X% + xs%, Y%)-STEP(F(0, 36 + T%% - 97).Xsiz * 2 + 1, 21), Layer(29), Mix&, (Lxo%, 21)-STEP(F(0, 36 + T%% - 97).Xsiz, 10)
  1556.       xs% = xs% + (F(0, 36 + T%% - 97).Xsiz * 2)
  1557.     END SELECT
  1558.    NEXT I%%
  1559.  ' _CLEARCOLOR _RGB32(0, 0, 0), Layer(9)
  1560.  ' _PUTIMAGE , Layer(9), Mix&
  1561.  
  1562. REM'$include:'DeInflator.bi'
  1563. FUNCTION Deflate$ (text$)
  1564.  DIM FileSize AS LONG, CompSize AS LONG
  1565.  DIM m AS _MEM
  1566.  FileSize = LEN(text$): CompSize = compressBound(FileSize)
  1567.  m = _MEMNEW(FileSize)
  1568.  _MEMPUT m, m.OFFSET, text$ 'set the variable length text into a memblock so it won't move in memory as we access it.
  1569.  REDIM CompBuff(1 TO CompSize) AS _UNSIGNED _BYTE
  1570.  Result = compress2(_OFFSET(CompBuff(1)), CompSize, m.OFFSET, FileSize, 9)
  1571.  REDIM _PRESERVE CompBuff(1 TO CompSize) AS _UNSIGNED _BYTE
  1572.  m = _MEM(CompBuff())
  1573.  Deflate$ = SPACE$(CompSize)
  1574.  _MEMGET m, m.OFFSET, Deflate$
  1575.  Deflate$ = MKL$(FileSize) + Deflate$
  1576.  
  1577. FUNCTION Inflate$ (text$)
  1578.  DIM m AS _MEM, m1 AS _MEM
  1579.  FileSize& = CVL(LEFT$(text$, 4))
  1580.  text1$ = MID$(text$, 5): temp$ = SPACE$(FileSize&)
  1581.  m = _MEMNEW(FileSize&): m1 = _MEMNEW(LEN(text1$))
  1582.  _MEMPUT m1, m1.OFFSET, text1$
  1583.  Result = uncompress(m.OFFSET, FileSize&, m1.OFFSET, LEN(text1$))
  1584.  _MEMGET m, m.OFFSET, temp$
  1585.  Inflate$ = temp$
  1586.  
  1587.  
  1588. REM '$include:'Play_Intro.bi'
  1589. SUB Play_Intro
  1590.  OPEN "DatatempI.dat" FOR BINARY AS #1
  1591.  GET #1, , Elements%
  1592.  DIM Offs(Elements%) AS LONG, Sizs(Elements%) AS LONG, FadeIns%(8), FadeOuts%(8)
  1593.  DATA 0,115,145,215,284,324
  1594.  DATA 114,144,214,283,323,533
  1595.  FOR i%% = 0 TO 5
  1596.   READ FadeIns%(i%%)
  1597.  NEXT i%%
  1598.  FOR i%% = 0 TO 5
  1599.   READ FadeOuts%(i%%)
  1600.  NEXT i%%
  1601.  
  1602.  GET #1, , Offs()
  1603.  GET #1, , Sizs()
  1604.  
  1605.  NF%% = 0: NFO%% = 0
  1606.  FOR i% = 0 TO 533
  1607.  
  1608.   IF i% = FadeIns%(NF%%) THEN
  1609.    '-----------Fade image in--------------
  1610.    GetFrame Sizs(i%), Offs(i%), 1
  1611.    _DEST Mix&
  1612.    FOR fade% = 63 TO 0 STEP -4
  1613.     _PUTIMAGE , Temp&, Mix&
  1614.     LINE (0, 0)-(639, 399), _RGBA32(0, 0, 0, fade% * 4), BF
  1615.     _PUTIMAGE , Mix&, _DISPLAY
  1616.     _DELAY .075
  1617.    NEXT fade%
  1618.    NF%% = NF%% + 1
  1619.  
  1620.   ELSEIF i% = FadeOuts%(NFO%%) THEN
  1621.    '-----------Fade image out----------------
  1622.    GetFrame Sizs(i%), Offs(i%), 1
  1623.    _DEST Mix&
  1624.    FOR fade% = 0 TO 63 STEP 4
  1625.     _PUTIMAGE , Temp&, Mix&
  1626.     LINE (0, 0)-(639, 399), _RGBA32(0, 0, 0, fade% * 4), BF
  1627.     _PUTIMAGE , Mix&, _DISPLAY
  1628.     _DELAY .075
  1629.    NEXT fade%
  1630.    NFO%% = NFO%% + 1
  1631.  
  1632.   ELSE
  1633.    GetFrame Sizs(i%), Offs(i%), 1
  1634.    _PUTIMAGE , Temp&, _DISPLAY
  1635.   END IF
  1636.  
  1637.   _DELAY .125
  1638.   IF INKEY$ = CHR$(27) THEN exitflag% = -1: i% = 999
  1639.  NEXT i%
  1640.  CLOSE #1
  1641.  
  1642. REM'$include:'New_Game.bi'
  1643. FUNCTION NewGame
  1644.  Result%% = 4
  1645.  BuildClickLayer Layer(30), 2
  1646.  DO
  1647.   nul% = _MOUSEINPUT
  1648.   X% = _MOUSEX: Y% = _MOUSEY
  1649.    opt%% = Check_Pos(X%, Y%)
  1650.    Result%% = opt%%
  1651.    SELECT CASE opt%%
  1652.     CASE 1 'Galaxy Size
  1653.      G.Galaxy_Size = G.Galaxy_Size + 1
  1654.      IF G.Galaxy_Size = 4 THEN G.Galaxy_Size = 0
  1655.     CASE 2 'difficulty
  1656.      G.Difficulty = G.Difficulty + 1
  1657.      IF G.Difficulty = 5 THEN G.Difficulty = 0
  1658.     CASE 3 'races
  1659.      G.Races = G.Races + 1
  1660.      IF G.Races = 5 THEN G.Races = 0
  1661.     CASE 4 'cancel
  1662.      exitflag%% = TRUE
  1663.     CASE 5 'Ok
  1664.      exitflag%% = TRUE
  1665.    END SELECT
  1666.    DO: nul% = _MOUSEINPUT: _DELAY .001: LOOP WHILE _MOUSEBUTTON(1)
  1667.   END IF
  1668.   _PUTIMAGE , Layer(6), Mix&
  1669.   _PUTIMAGE (354, 62)-STEP(111, 26), Layer(7), Mix&, (0, 0 + 13 * G.Galaxy_Size)-STEP(55, 12) 'size
  1670.   _PUTIMAGE (354, 140)-STEP(111, 26), Layer(7), Mix&, (55, 0 + 13 * G.Difficulty)-STEP(55, 12) 'difficulty
  1671.   _PUTIMAGE (354, 218)-STEP(111, 26), Layer(7), Mix&, (110, 0 + 13 * G.Races)-STEP(55, 12) 'races
  1672.   _PUTIMAGE (X%, Y%), Layer(5), Mix&, (0, 0)-STEP(28, 24)
  1673.  
  1674.   _PUTIMAGE , Mix&, _DISPLAY
  1675.   _DELAY .025
  1676.   IF INKEY$ = CHR$(27) THEN exitflag%% = TRUE
  1677.  
  1678.  LOOP UNTIL exitflag%%
  1679.  NewGame = Result%%
  1680.  
  1681. FUNCTION Choose_Race
  1682.  Result%% = -1
  1683.  selection%% = 1
  1684.  BuildClickLayer Layer(30), 3
  1685.  DO
  1686.   nul% = _MOUSEINPUT
  1687.   X% = _MOUSEX: Y% = _MOUSEY
  1688.    opt%% = Check_Pos(X%, Y%)
  1689.    Result%% = opt%%
  1690.    exitflag%% = TRUE
  1691.    DO: nul% = _MOUSEINPUT: _DELAY .001: LOOP WHILE _MOUSEBUTTON(1)
  1692.   ELSE
  1693.    opt%% = Check_Pos(X%, Y%)
  1694.    IF opt%% THEN selection%% = opt%%
  1695.   END IF
  1696.  
  1697.   _PUTIMAGE , Layer(8), Mix&
  1698.   Oprint 20, 20, "Choose Race", White, NORMAL
  1699.   'selection hi-lite
  1700.   _DEST Mix&
  1701.   LINE (20, 42 + ((selection%% - 1) * 24))-STEP(110, 21), _RGBA32(255, 255, 255, 56), BF
  1702.   'display race face
  1703.   _PUTIMAGE (182, 22)-STEP(79, 69), Layer(10), Mix&, (0 + (selection%% - 1) * 40, 0)-STEP(40, 34)
  1704.   'display race description
  1705.   Oprint 162, 100, Rdescript(selection%%), 0, SMALL
  1706.  
  1707.   FOR i%% = 1 TO 10
  1708.    Oprint 36, 20 + 24 * i%%, Races(i%%), Black, NORMAL
  1709.   NEXT i%%
  1710.   _PUTIMAGE (X%, Y% - 24), Layer(5), Mix&, (0, 0)-STEP(28, 24)
  1711.   _PUTIMAGE , Mix&, _DISPLAY
  1712.   IF INKEY$ = CHR$(27) THEN exitflag%% = TRUE
  1713.   _DELAY .025
  1714.  LOOP UNTIL exitflag%%
  1715.  G.Player_Race = Result%%
  1716.  Choose_Race = Result%%
  1717.  
  1718. FUNCTION Choose_Banner
  1719.  TIMER(T(2)) ON
  1720.  Result%% = -1
  1721.  selection%% = 1
  1722.  Frame%% = 0
  1723.  BuildClickLayer Layer(30), 4
  1724.  DO
  1725.   nul% = _MOUSEINPUT
  1726.   X% = _MOUSEX: Y% = _MOUSEY
  1727.    opt%% = Check_Pos(X%, Y%)
  1728.    Result%% = opt%%
  1729.    exitflag%% = TRUE
  1730.    DO: nul% = _MOUSEINPUT: _DELAY .001: LOOP WHILE _MOUSEBUTTON(1)
  1731.   ELSE
  1732.    opt%% = Check_Pos(X%, Y%)
  1733.    IF opt%% THEN selection%% = opt%%
  1734.   END IF
  1735.  
  1736.   _PUTIMAGE , Layer(8), Mix&
  1737.   Oprint 20, 20, "Choose Banner", White, NORMAL
  1738.   'selection hi-lite
  1739.   _DEST Mix&
  1740.   LINE (20, 42 + ((selection%% - 1) * 24))-STEP(110, 21), _RGBA32(255, 255, 255, 56), BF
  1741.   'display race face
  1742.   _PUTIMAGE (182, 22)-STEP(79, 69), Layer(10), Mix&, (0 + (G.Player_Race - 1) * 40, 0)-STEP(40, 34)
  1743.   'display flag
  1744.   _PUTIMAGE (180, 106)-STEP(84, 76), Layer(4), Mix&, (0, 72)-STEP(41, 37)
  1745.   _PUTIMAGE (182, 108)-STEP(80, 72), Layer(11), Mix&, (0 + 40 * G.Frame, 0 + 36 * (selection%% - 1))-STEP(39, 35)
  1746.  
  1747.  
  1748.   FOR i%% = 1 TO 6
  1749.    Oprint 36, 20 + 24 * i%%, Colrs(i%%), Black, NORMAL
  1750.   NEXT i%%
  1751.  
  1752.  
  1753.   _PUTIMAGE , Layer(2), Mix&
  1754.   _PUTIMAGE (X%, Y% - 24), Layer(5), Mix&, (0, 0)-STEP(28, 24)
  1755.   _PUTIMAGE , Mix&, _DISPLAY
  1756.   IF INKEY$ = CHR$(27) THEN exitflag%% = TRUE
  1757.   _DELAY .025
  1758.  LOOP UNTIL exitflag%%
  1759.  G.Player_Colr = Result%%
  1760.  Choose_Flag = Result%%
  1761.  
  1762. SUB Choose_Leader_Name
  1763.  temp$ = Leaders(G.Player_Race, INT(RND * 6) + 1)
  1764.  DO
  1765.   nul% = _MOUSEINPUT
  1766.   X% = _MOUSEX: Y% = _MOUSEY
  1767.    Result%% = opt%%
  1768.    exitflag%% = TRUE
  1769.    DO: nul% = _MOUSEINPUT: _DELAY .001: LOOP WHILE _MOUSEBUTTON(1)
  1770.   END IF
  1771.  
  1772.   KBD& = _KEYHIT
  1773.   SELECT CASE KBD&
  1774.    CASE 8 'backspace
  1775.     IF LEN(temp$) > 0 THEN temp$ = LEFT$(temp$, LEN(temp$) - 1)
  1776.    CASE 32, 45, 48 TO 57, 65 TO 90, 97 TO 122
  1777.     '    IF LEN(temp$) < 13 THEN temp$ = temp$ + CHR$(KBD&)
  1778.     IF NameLength(temp$) < 130 THEN temp$ = temp$ + CHR$(KBD&)
  1779.    CASE 13
  1780.     G.Player_Name = temp$
  1781.     exitflag%% = TRUE
  1782.  
  1783.   _PUTIMAGE , Layer(8), Mix&
  1784.   Oprint 20, 20, "Your Name...", White, NORMAL
  1785.  
  1786.   _DEST Mix&
  1787.   LINE (20, 42)-STEP(150, 21), _RGBA32(255, 255, 255, 56), BF
  1788.  
  1789.   'display race face
  1790.   _PUTIMAGE (182, 22)-STEP(79, 69), Layer(10), Mix&, (0 + (G.Player_Race - 1) * 40, 0)-STEP(40, 34)
  1791.   'display flag
  1792.   _PUTIMAGE (180, 106)-STEP(84, 76), Layer(4), Mix&, (0, 72)-STEP(41, 37)
  1793.   _PUTIMAGE (182, 108)-STEP(80, 72), Layer(11), Mix&, (0 + 40 * G.Frame, 0 + 36 * (G.Player_Colr - 1))-STEP(39, 35)
  1794.   'coursor
  1795.   _PUTIMAGE (22 + NameLength(temp$), 45)-STEP(8, 14), Layer(4), Mix&, (42, 87 + G.Frame * 2)-STEP(4, 7)
  1796.   'print name
  1797.   Oprint 22, 45, temp$, Black, NORMAL
  1798.  
  1799.   _PUTIMAGE (X%, Y% - 24), Layer(5), Mix&, (0, 0)-STEP(28, 24)
  1800.   _PUTIMAGE , Mix&, _DISPLAY
  1801.   IF INKEY$ = CHR$(27) THEN exitflag%% = TRUE
  1802.   _DELAY .025
  1803.  LOOP UNTIL exitflag%%
  1804.  
  1805. SUB Choose_System_Name
  1806.  temp$ = Planets(G.Player_Race)
  1807.  DO
  1808.   nul% = _MOUSEINPUT
  1809.   X% = _MOUSEX: Y% = _MOUSEY
  1810.    Result%% = opt%%
  1811.    exitflag%% = TRUE
  1812.    DO: nul% = _MOUSEINPUT: _DELAY .001: LOOP WHILE _MOUSEBUTTON(1)
  1813.   END IF
  1814.  
  1815.   KBD& = _KEYHIT
  1816.   SELECT CASE KBD&
  1817.    CASE 8 'backspace
  1818.     IF LEN(temp$) > 0 THEN temp$ = LEFT$(temp$, LEN(temp$) - 1)
  1819.    CASE 32, 45, 48 TO 57, 65 TO 90, 97 TO 122
  1820.     IF LEN(temp$) < 13 THEN temp$ = temp$ + CHR$(KBD&)
  1821.    CASE 13
  1822.     G.Player_Name = temp$
  1823.     exitflag%% = TRUE
  1824.  
  1825.   _PUTIMAGE , Layer(8), Mix&
  1826.   Oprint 20, 20, "Home World...", White, NORMAL
  1827.  
  1828.   _DEST Mix&
  1829.   LINE (20, 42)-STEP(150, 21), _RGBA32(255, 255, 255, 56), BF
  1830.  
  1831.   'display race face
  1832.   _PUTIMAGE (182, 22)-STEP(79, 69), Layer(10), Mix&, (0 + (G.Player_Race - 1) * 40, 0)-STEP(40, 34)
  1833.   'display flag
  1834.   _PUTIMAGE (180, 106)-STEP(84, 76), Layer(4), Mix&, (0, 72)-STEP(41, 37)
  1835.   _PUTIMAGE (182, 108)-STEP(80, 72), Layer(11), Mix&, (0 + 40 * G.Frame, 0 + 36 * (G.Player_Colr - 1))-STEP(39, 35)
  1836.   'coursor
  1837.   _PUTIMAGE (22 + (LEN(temp$)) * 10, 45)-STEP(8, 14), Layer(4), Mix&, (42, 87 + G.Frame * 2)-STEP(4, 7)
  1838.   'print name
  1839.   Oprint 22, 45, temp$, Black, NORMAL
  1840.  
  1841.   _PUTIMAGE (X%, Y% - 24), Layer(5), Mix&, (0, 0)-STEP(28, 24)
  1842.   _PUTIMAGE , Mix&, _DISPLAY
  1843.   IF INKEY$ = CHR$(27) THEN exitflag%% = TRUE
  1844.   _DELAY .025
  1845.  LOOP UNTIL exitflag%%
  1846.  
  1847.  
  1848.  
  1849. SUB GetFrame (SID&, OID&, F%%)
  1850.  temp$ = SPACE$(SID&)
  1851.  GET #F%%, OID&, temp$
  1852.  Frame$ = Inflate(temp$)
  1853.  _MEMPUT m, m.OFFSET, Frame$
  1854.  
  1855. SUB ClearLayer (L&)
  1856.  _DEST L&
  1857.  CLS
  1858.  
  1859. FUNCTION NameLength~%% (N$)
  1860.  FOR i%% = 1 TO LEN(N$)
  1861.   T%% = ASC(MID$(N$, i%%, 1))
  1862.   SELECT CASE T%%
  1863.    CASE 32
  1864.     Result~%% = Result~%% + 10
  1865.    CASE 45
  1866.     Result~%% = Result~%% + (F(0, 62).Xsiz * 2)
  1867.    CASE 46
  1868.     Result~%% = Result~%% + (F(0, 63).Xsiz * 2)
  1869.    CASE 48 TO 57
  1870.     Result~%% = Result~%% + F(0, T%% - 48).Xsiz * 2
  1871.    CASE 65 TO 90
  1872.     Result~%% = Result~%% + F(0, 10 + T%% - 65).Xsiz * 2
  1873.    CASE 97 TO 122
  1874.     Result~%% = Result~%% + F(0, 36 + T%% - 97).Xsiz * 2
  1875.  NEXT i%%
  1876.  NameLength~%% = Result~%%
  1877.  
  1878. FUNCTION PlanetProduction (T%%)
  1879.  'ship maintance is 2% of ship production cost(ie: 600bc to build, maintance is 12bc)
  1880.  SELECT CASE T%%
  1881.   CASE ACT
  1882.    Result% = Planet(G.Selected_Planet).CurPop * .51 + Player(Planet(G.Selected_Planet).Owner).Planetology * 2
  1883.    Result% = Result% + Planet(G.Selected_Planet).Factory
  1884.    Result% = Result% * (1 + trade)
  1885.    Result% = Result% * (1 - ships - spys - bases)
  1886.   CASE TOT
  1887.    Result% = Planet(G.Selected_Planet).CurPop * .51 + Player(Planet(G.Selected_Planet).Owner).Planetology * 2
  1888.    Result% = Result% + Planet(G.Selected_Planet).Factory
  1889.  PlanetProduction = Result%
  1890.  
  1891. SUB Button_Down_Lock
  1892.  ButtonDown%% = TRUE
  1893.  '--------lock mouse until button release---------
  1894.  DO
  1895.    IF NOT _MOUSEBUTTON(1) THEN ButtonDown%% = FALSE
  1896.   END IF
  1897.   _DELAY .001
  1898.  LOOP WHILE ButtonDown%%
  1899.  '------------------------------------------------
  1900.  
  1901. SUB InitFont (C%%)
  1902.  SELECT CASE C%%
  1903.   CASE 0 'font startup
  1904.    _PALETTECOLOR 1, _RGB32(5, 5, 5), Layer(29)
  1905.    _PALETTECOLOR 2, _RGB32(255, 255, 255), Layer(29)
  1906.    _PALETTECOLOR 3, _RGB32(112, 112, 112), Layer(29)
  1907.    _PALETTECOLOR 4, _RGB32(170, 170, 170), Layer(29)
  1908.    _PALETTECOLOR 5, _RGB32(150, 150, 150), Layer(29)
  1909.    _PALETTECOLOR 6, _RGB32(175, 175, 175), Layer(29)
  1910.    _PALETTECOLOR 7, _RGB32(200, 200, 200), Layer(29)
  1911.    _PALETTECOLOR 8, _RGB32(216, 216, 216), Layer(29)
  1912.    _PALETTECOLOR 9, _RGB32(180, 180, 180), Layer(29)
  1913.    _PALETTECOLOR 10, _RGB32(205, 205, 205), Layer(29)
  1914.    _PALETTECOLOR 11, _RGB32(221, 221, 221), Layer(29)
  1915.    _PALETTECOLOR 12, _RGB32(240, 240, 240), Layer(29)
  1916.    _PALETTECOLOR 13, _RGB32(245, 245, 245), Layer(29)
  1917.    _SOURCE Layer(28)
  1918.    _DEST Layer(29)
  1919.    FOR y% = 0 TO 63
  1920.     FOR x% = 0 TO 539
  1921.      c~& = POINT(x%, y%)
  1922.      R~%% = _RED(c~&, Nuk&)
  1923.      G~%% = _GREEN(c~&, Nuk&)
  1924.      B~%% = _BLUE(c~&, Nuk&)
  1925.      PSET (x%, y%), _RGB(R~%%, G~%%, B~%%)
  1926.      'LINE (ox%, oy%)-STEP(1, 1), _RGB(R~%%, G~%%, B~%%), BF '2x font size
  1927.      ox% = ox% + 2
  1928.     NEXT x%
  1929.     ox% = 0
  1930.     oy% = oy% + 2
  1931.    NEXT y%
  1932.    _SOURCE Layer(30)
  1933.   CASE 1 'Black font
  1934.    _PALETTECOLOR 2, _RGB32(8, 8, 8), Layer(29) 'black text
  1935.    _PALETTECOLOR 3, _RGB32(4, 4, 4), Layer(29) 'black text secondary(med font)
  1936.   CASE 2 'white font
  1937.    _PALETTECOLOR 2, _RGB32(255, 255, 255), Layer(29) 'white text
  1938.    _PALETTECOLOR 3, _RGB32(112, 112, 112), Layer(29) 'white text secondary(med font)
  1939.   CASE 3 'blue font
  1940.    _PALETTECOLOR 2, _RGB32(116, 148, 188), Layer(29) 'blue text
  1941.    _PALETTECOLOR 3, _RGB32(76, 124, 172), Layer(29) 'blue text secondary(med font)
  1942.   CASE 4 'green font
  1943.    _PALETTECOLOR 2, _RGB32(73, 207, 36), Layer(29) 'green text
  1944.    _PALETTECOLOR 3, _RGB32(44, 150, 12), Layer(29) 'green text secondary(med font)
  1945.   CASE 5 'yellow font
  1946.    _PALETTECOLOR 2, _RGB32(255, 224, 80), Layer(29) 'yellow text
  1947.    _PALETTECOLOR 3, _RGB32(200, 144, 0), Layer(29) 'yellow text secondary(med font)
  1948.   CASE 6 'red font
  1949.    _PALETTECOLOR 2, _RGB32(220, 32, 32), Layer(29) 'red text
  1950.    _PALETTECOLOR 3, _RGB32(144, 24, 4), Layer(29) 'red text secondary(med font)
  1951.   CASE 7 'grey font
  1952.    _PALETTECOLOR 2, _RGB32(160, 160, 160), Layer(29) 'grey text
  1953.    _PALETTECOLOR 3, _RGB32(140, 140, 140), Layer(29) 'grey text secondary(med font)
  1954.   CASE 8 'yellow gradiant
  1955.    _PALETTECOLOR 1, _RGB32(3, 3, 3), Layer(29) '
  1956.    _PALETTECOLOR 4, _RGB32(224, 186, 84), Layer(29) 'Yellow gradiant text
  1957.    _PALETTECOLOR 5, _RGB32(210, 166, 36), Layer(29) '
  1958.    _PALETTECOLOR 6, _RGB32(224, 186, 84), Layer(29) '
  1959.    _PALETTECOLOR 7, _RGB32(210, 166, 36), Layer(29) '
  1960.    _PALETTECOLOR 8, _RGB32(210, 166, 36), Layer(29) '
  1961.    _PALETTECOLOR 9, _RGB32(224, 186, 84), Layer(29) '
  1962.    _PALETTECOLOR 10, _RGB32(230, 208, 138), Layer(29) '
  1963.    _PALETTECOLOR 11, _RGB32(244, 230, 196), Layer(29) '
  1964.    _PALETTECOLOR 12, _RGB32(244, 230, 196), Layer(29) '
  1965.    _PALETTECOLOR 13, _RGB32(248, 244, 200), Layer(29) '
  1966.   CASE 9 'white gradiant
  1967.    _PALETTECOLOR 4, _RGB32(170, 170, 170), Layer(29) 'white gradiant text
  1968.    _PALETTECOLOR 5, _RGB32(150, 150, 150), Layer(29) '
  1969.    _PALETTECOLOR 6, _RGB32(170, 170, 170), Layer(29) '
  1970.    _PALETTECOLOR 7, _RGB32(200, 200, 200), Layer(29) '
  1971.    _PALETTECOLOR 8, _RGB32(216, 216, 216), Layer(29) '
  1972.    _PALETTECOLOR 9, _RGB32(180, 180, 180), Layer(29) '
  1973.    _PALETTECOLOR 10, _RGB32(200, 200, 200), Layer(29) '
  1974.    _PALETTECOLOR 11, _RGB32(216, 216, 216), Layer(29) '
  1975.    _PALETTECOLOR 12, _RGB32(246, 246, 246), Layer(29) '
  1976.    _PALETTECOLOR 13, _RGB32(246, 246, 246), Layer(29) '
  1977.   CASE 10 'grey gradiant
  1978.    _PALETTECOLOR 4, _RGB32(84, 84, 84), Layer(29) 'Grey gradiant text
  1979.    _PALETTECOLOR 5, _RGB32(68, 68, 68), Layer(29) '
  1980.    _PALETTECOLOR 6, _RGB32(84, 84, 84), Layer(29) '
  1981.    _PALETTECOLOR 7, _RGB32(104, 104, 104), Layer(29) '
  1982.    _PALETTECOLOR 8, _RGB32(120, 120, 120), Layer(29) '
  1983.    _PALETTECOLOR 9, _RGB32(104, 104, 104), Layer(29) '
  1984.    _PALETTECOLOR 10, _RGB32(120, 120, 120), Layer(29) '
  1985.    _PALETTECOLOR 11, _RGB32(142, 142, 142), Layer(29) '
  1986.    _PALETTECOLOR 12, _RGB32(142, 142, 142), Layer(29) '
  1987.    _PALETTECOLOR 13, _RGB32(160, 160, 160), Layer(29) '
  1988.   CASE 11 'Dark Green
  1989.    _PALETTECOLOR 2, _RGB32(0, 130, 94), Layer(29) 'green text
  1990.    _PALETTECOLOR 3, _RGB32(0, 110, 74), Layer(29) 'green text secondary(med font)
  1991.   CASE 12 'Bright Green
  1992.    _PALETTECOLOR 2, _RGB32(184, 240, 224), Layer(29) 'green text
  1993.    _PALETTECOLOR 3, _RGB32(124, 180, 164), Layer(29) 'green text secondary(med font)
  1994.   CASE 13 'Medium Green
  1995.    _PALETTECOLOR 2, _RGB32(32, 190, 144), Layer(29) 'green text
  1996.    _PALETTECOLOR 3, _RGB32(32, 190, 144), Layer(29) 'green text secondary(med font)
  1997.   CASE 14 'Lite Green
  1998.    _PALETTECOLOR 2, _RGB32(124, 216, 124), Layer(29) 'green text
  1999.    _PALETTECOLOR 3, _RGB32(100, 180, 100), Layer(29) 'green text secondary(med font)
  2000.   CASE 15 'yellow gradiant Brown outline
  2001.    _PALETTECOLOR 1, _RGB32(70, 52, 40), Layer(29) '
  2002.    _PALETTECOLOR 4, _RGB32(224, 186, 84), Layer(29) 'Yellow gradiant text
  2003.    _PALETTECOLOR 5, _RGB32(210, 166, 36), Layer(29) '
  2004.    _PALETTECOLOR 6, _RGB32(224, 186, 84), Layer(29) '
  2005.    _PALETTECOLOR 7, _RGB32(210, 166, 36), Layer(29) '
  2006.    _PALETTECOLOR 8, _RGB32(210, 166, 36), Layer(29) '
  2007.    _PALETTECOLOR 9, _RGB32(224, 186, 84), Layer(29) '
  2008.    _PALETTECOLOR 10, _RGB32(230, 208, 138), Layer(29) '
  2009.    _PALETTECOLOR 11, _RGB32(244, 230, 196), Layer(29) '
  2010.    _PALETTECOLOR 12, _RGB32(244, 230, 196), Layer(29) '
  2011.    _PALETTECOLOR 13, _RGB32(248, 244, 200), Layer(29) '
  2012.  
  2013.  
  2014. SUB MFI_Loader (FN$)
  2015.  DIM Size(64) AS LONG, FOffset(64) AS LONG
  2016.  GET #1, , c~%% 'retrieve number of files
  2017.  FOR I~%% = 1 TO c~%%
  2018.   GET #1, , FOffset(I~%%)
  2019.   GET #1, , Size(I~%%)
  2020.   FOffset&(I~%%) = FOffset&(I~%%) + 1
  2021.  NEXT I~%%
  2022.  'load the files where they go here----------
  2023.  ' Layer(2) = LoadGFX(FOffset(1), Size(1)) '_LOADIMAGE("Upper_Card.png", 32) 'upper score card
  2024.  Layer(3) = LoadGFX(FOffset(1), Size(1)) ' Layer(3) = _LOADIMAGE("SpaceLord.bmp", 32)
  2025.  Layer(4) = LoadGFX(FOffset(2), Size(2)) ' Layer(4) = _LOADIMAGE("menuchoice.bmp", 32)
  2026.  Layer(5) = LoadGFX(FOffset(3), Size(3)) ' Layer(5) = _LOADIMAGE("HandPointer.bmp", 32)
  2027.  Layer(6) = LoadGFX(FOffset(4), Size(4)) ' Layer(6) = _LOADIMAGE("NewGame0.bmp", 32)
  2028.  Layer(7) = LoadGFX(FOffset(5), Size(5)) ' Layer(7) = _LOADIMAGE("GameOptions.bmp", 32)
  2029.  Layer(8) = LoadGFX(FOffset(6), Size(6)) ' Layer(8) = _LOADIMAGE("custom0.bmp", 32)
  2030.  Layer(10) = LoadGFX(FOffset(7), Size(7)) ' Layer(10) = _LOADIMAGE("RaceFaces.bmp", 32)
  2031.  Layer(11) = LoadGFX(FOffset(8), Size(8)) ' Layer(11) = _LOADIMAGE("Flags.bmp", 32)
  2032.  Layer(12) = LoadGFX(FOffset(9), Size(9)) ' Layer(12) = _LOADIMAGE("MainView0.bmp", 32)
  2033.  Layer(13) = LoadGFX(FOffset(10), Size(10)) ' Layer(13) = _LOADIMAGE("Game_Options.bmp", 32)
  2034.  Layer(14) = LoadGFX(FOffset(11), Size(11)) ' Layer(14) = _LOADIMAGE("Design_Screen.bmp", 32)
  2035.  Layer(15) = LoadGFX(FOffset(12), Size(12)) ' Layer(15) = _LOADIMAGE("shipsheet.bmp", 32)
  2036.  Layer(16) = LoadGFX(FOffset(13), Size(13)) ' Layer(16) = _LOADIMAGE("fleetbrb0.bmp", 32)
  2037.  Layer(17) = LoadGFX(FOffset(14), Size(14)) ' Layer(17) = _LOADIMAGE("viewship0.bmp", 32)
  2038.  Layer(18) = LoadGFX(FOffset(15), Size(15)) ' Layer(18) = _LOADIMAGE("shipspec.bmp", 32)
  2039.  Layer(19) = LoadGFX(FOffset(16), Size(16)) ' Layer(19) = _LOADIMAGE("mapview0.bmp", 32)
  2040.  Layer(20) = LoadGFX(FOffset(17), Size(17)) ' Layer(20) = _LOADIMAGE("sky.bmp", 32)
  2041.  Layer(28) = LoadGFX(FOffset(18), Size(18)) ' Layer(28) = _LOADIMAGE("FontAdvanced.bmp", 32)
  2042.  LoadData FOffset(19), Size(19)
  2043.  LoadData FOffset(20), Size(20)
  2044.  '-------------------------------------------
  2045.  CLOSE #1
  2046.  IF _FILEEXISTS("temp.dat") THEN KILL "temp.dat"
  2047.  
  2048.  
  2049. FUNCTION LoadGFX& (Foff&, Size&)
  2050.  IF _FILEEXISTS("temp.dat") THEN KILL "temp.dat"
  2051.  OPEN "temp.dat" FOR BINARY AS #3
  2052.  dat$ = SPACE$(Size&)
  2053.  GET #1, Foff&, dat$
  2054.  PUT #3, , dat$
  2055.  CLOSE #3
  2056.  LoadGFX& = _LOADIMAGE("temp.dat", 32)
  2057.  
  2058. FUNCTION LoadFFX& (Foff&, Size&, Fize%%)
  2059.  IF _FILEEXISTS("temp.dat") THEN KILL "temp.dat"
  2060.  OPEN "temp.dat" FOR BINARY AS #3
  2061.  dat$ = SPACE$(Size&)
  2062.  GET #1, Foff&, dat$
  2063.  PUT #3, , dat$
  2064.  CLOSE #3
  2065.  LoadFFX& = _LOADFONT("temp.dat", Fize%%, "monospace")
  2066.  
  2067. FUNCTION LoadSFX& (Foff&, Size&)
  2068.  IF _FILEEXISTS("temp.dat") THEN KILL "temp.dat"
  2069.  OPEN "temp.dat" FOR BINARY AS #3
  2070.  dat$ = SPACE$(Size&)
  2071.  GET #1, Foff&, dat$
  2072.  PUT #3, , dat$
  2073.  CLOSE #3
  2074.  LoadSFX& = _SNDOPEN("temp.dat")
  2075.  
  2076. SUB LoadData (Foff&, Size&)
  2077.  IF _FILEEXISTS("DatatempI.dat") THEN 'KILL "Datatemp.dat"
  2078.   OPEN "DatatempA.dat" FOR BINARY AS #3
  2079.   dat$ = SPACE$(Size&)
  2080.   GET #1, Foff&, dat$
  2081.   PUT #3, , dat$
  2082.   CLOSE #3
  2083.   OPEN "DatatempI.dat" FOR BINARY AS #3
  2084.   dat$ = SPACE$(Size&)
  2085.   GET #1, Foff&, dat$
  2086.   PUT #3, , dat$
  2087.   CLOSE #3
  2088.  

it became quite a mess, so I've stepped away from it for a bit.
but that plays the intro animation, runs the menu, and allows setup of a new game.

zlib1.dll goes in the QB64 folder, its for playing back the animations(intro, and swirl on the main menu)

the MFI file contains all the graphics and animation.

I have a second R&D(research and development) copy that generates the galaxy. and displays it in the map view and main view.

When I was looking up information on the game, it seems that Microprose is not opposed to clones, just as long as it does not use the name "Master Of Orion".
Title: Re: Beyond Sol
Post by: romichess on December 09, 2019, 02:07:51 pm
Who would have ever thought MOO would be that complicated to program. I can't imagine then what the code for Stellaris might look like. The space 4x that I had been playing most recently is Star Drive 2. I absolutely love the ship design 'workshop' and then watching them in real time battles. It is the rest of the game that leaves me wishing for something better. Despite MOO 1's flaws it is the best space 4x ever created.

If I could ask a computer_game_god for the perfect game it would be MOO 1 without any of the bad and it would have Star Drive 2's ship design/combat and it would be in real time. It probably is never going to happen though.

Now that I understand real time programming  a whole lot better than before I feel as though I could make an attempt. But, the graphics are my weakest point. What you see in this game is the "grandest" graphics I have ever done, LOL. I would be open to the idea of having a partner if they brought graphical ability to the table.

Even if this project does not go much further I had a good time getting this far. It was fun creating something a bit different! Oh, and I will take a closer look at your game when I get a chance.


Title: Re: Beyond Sol
Post by: Petr on December 09, 2019, 04:53:15 pm
romichess: I played your latest version for about an hour now! It's a hell of a lot of fun!
Title: Re: Beyond Sol
Post by: romichess on December 09, 2019, 06:04:08 pm
romichess: I played your latest version for about an hour now! It's a hell of a lot of fun!

Thank you Petr, If you have any suggestions to make it even more fun please let me know!

I have to add pause and save game. Also I'm working on a right click panel to give repeating orders to a star. Like if ships > 800 then send 100 ships to [star] increase 800 by 10 to 810 for next time. Thanks again.
Title: Re: Beyond Sol
Post by: romichess on December 09, 2019, 10:34:25 pm
Just a bug fix and maybe a bit better AI.
Code: QB64: [Select]
  1. TYPE stars
  2.     n AS STRING * 10 '                 Name of star
  3.     x AS INTEGER '                     x-position
  4.     y AS INTEGER '                     y-position
  5.     o AS INTEGER '                     Owner
  6.     c AS INTEGER '                     Color
  7.     s AS INTEGER '                     Size
  8.     t AS INTEGER '                     (Type of planetary system; terran, frozen, radiated, toxic, etc.) Ships
  9.     p AS INTEGER '                     (Population) For now ships produced per turn
  10.  
  11. TYPE FLEETS
  12.     n AS INTEGER
  13.     x1 AS INTEGER
  14.     y1 AS INTEGER
  15.     x2 AS INTEGER
  16.     y2 AS INTEGER
  17.     o AS INTEGER
  18.     d AS INTEGER
  19.  
  20. 'DECLARE SUB NewGame
  21. 'DECLARE SUB PaintStars
  22. 'DECLARE SUB StarNames
  23. 'DECLARE SUB ShowPanel (i)
  24. 'DECLARE SUB Identify (x, y)
  25. 'DECLARE SUB PaintBackground
  26. 'DECLARE SUB GetInput
  27.  
  28. ' Global variables shared because they are needed in more than one routine
  29. DIM SHARED sw AS INTEGER '             Screen Width
  30. DIM SHARED sh AS INTEGER '             Screen Height
  31. DIM SHARED sww AS INTEGER '            Screen Width Wide margin
  32. DIM SHARED swn AS INTEGER '            Screen Width Narrow adjustment
  33. DIM SHARED shw AS INTEGER '            Screen Height Wide margine
  34. DIM SHARED shn AS INTEGER '            Screen Height Narrow adjustment
  35. DIM SHARED nw AS INTEGER '             games Natural screen Width
  36. DIM SHARED nh AS INTEGER '             games Natural screen Height
  37. DIM SHARED ratio AS _FLOAT '           the Ratio of the games natural screen width to the actual
  38. DIM SHARED star(100) AS stars '        100 stars - may change
  39. DIM SHARED names(200) AS STRING * 10 ' 200 star names
  40. DIM SHARED seed AS INTEGER '           Seed to prime the Randomizer to display identical background each frame
  41. DIM SHARED home(7) AS INTEGER '        The starting star for each player. The human always has star(0), Sol
  42. DIM SHARED tt AS INTEGER '             tt = 0 star names displayed, tt = 0 star names not didplayed
  43. DIM SHARED ch AS STRING * 1 '          Game loop key input variable
  44. DIM SHARED repeat AS INTEGER '         Game loop control variable
  45. DIM SHARED fleet(1000) AS FLEETS
  46. DIM SHARED srcstr AS STRING * 10
  47. DIM SHARED dststr AS STRING * 10
  48. DIM SHARED panx, pany AS INTEGER
  49. DIM SHARED strng AS STRING * 10
  50.  
  51. sw = _DESKTOPWIDTH '                   native video with of syatem
  52. sww = sw / 24 '                        margin based on native video width to keep stars away from edge
  53. swn = sw / 48 '                        adjustment that works with sww to keep stars away from left and top of screen
  54. nw = 1920
  55.  
  56. ratio = sw / 1920 '                    Used to adjust distances and sizes for various screen modes
  57.  
  58. shw = sh / 20
  59. shn = sh / 40
  60. nh = 1080
  61.  
  62. tt = 0
  63. cx = sw
  64. cp = 100
  65. h = 100
  66. ar = 0
  67. rng = 300
  68. slct = 0
  69. strng = ""
  70.  
  71. SCREEN _NEWIMAGE(sw, sh, 256) '        creates a screen the resolution of the users native system
  72.  
  73.  
  74. ps = _NEWIMAGE(400 * ratio, 540 * ratio, 256)
  75.  
  76. StarNames '                            Routine to load star names into string array stars(200)
  77.  
  78. NewGame
  79.  
  80. ttf1 = _LOADFONT("cyberbit.ttf", 14 * ratio, "BOLD")
  81. ttf2 = _LOADFONT("cyberbit.ttf", 72 * ratio, "BOLD")
  82.  
  83. repeat = 1
  84.  
  85. WHILE repeat
  86.  
  87.     _LIMIT 200 '                        Set to 200 frames per second
  88.  
  89.     CLS
  90.  
  91.     id = INT(RND * 5 + 2)
  92.  
  93.     PaintBackground
  94.  
  95.     PaintStars
  96.  
  97.     PaintFleet
  98.  
  99.     GetInput
  100.  
  101.     Player
  102.  
  103.     Identify x, y '                    Identify star mouse is over if any
  104.  
  105.     Computer
  106.  
  107.     _DISPLAY
  108.  
  109.  
  110.  
  111. SUB PaintFleet
  112.     count = fltcnt
  113.     i = 0
  114.     WHILE count
  115.         IF fleet(i).o <> 0 THEN
  116.             CIRCLE (fleet(i).x1, fleet(i).y1), 3, fleet(i).o + 8
  117.             count = count - 1
  118.         END IF
  119.         i = i + 1
  120.     WEND
  121.  
  122. SUB SendFleet (org, dst, ships)
  123.     IF ships = 0 THEN
  124.  
  125.     END IF
  126.     FOR i = 0 TO 999
  127.         IF fleet(i).o = 0 THEN
  128.             fleet(i).o = star(org).o
  129.             fleet(i).d = dst
  130.             fleet(i).x1 = star(org).x
  131.             fleet(i).y1 = star(org).y
  132.             fleet(i).x2 = star(dst).x
  133.             fleet(i).y2 = star(dst).y
  134.             fleet(i).n = ships
  135.             star(org).t = star(org).t - ships
  136.             fltcnt = fltcnt + 1
  137.             IF rng < 4000 THEN rng = rng + 1
  138.             EXIT FOR
  139.         END IF
  140.     NEXT
  141.     LL = LL + 1
  142.  
  143. SUB Computer
  144.     FOR i = 0 TO 99
  145.         r = INT(RND * 120)
  146.         IF r < star(i).p THEN
  147.             IF star(i).o > 0 THEN
  148.                 star(i).t = star(i).t + 1
  149.             ELSE
  150.                 IF INT(RND * 10) < 2 THEN
  151.                     star(i).t = star(i).t + 1
  152.                 END IF
  153.             END IF
  154.         END IF
  155.     NEXT
  156.     FOR j = 0 TO 99
  157.         IF star(j).o = id AND j <> home(id) AND star(j).t > LL + star(j).p * 16 THEN
  158.             SendFleet j, home(id), star(j).t - LL - star(j).p * 8
  159.         END IF
  160.     NEXT
  161.     org = home(id)
  162.     dst = 100
  163.     num = 10000
  164.     FOR j = 0 TO 99
  165.         IF star(j).o <> id THEN
  166.             sway = SQR(ABS(star(org).x - star(j).x) ^ 2 + ABS(star(org).y - star(j).y) ^ 2)
  167.             IF star(org).t > star(j).t * 5 + SQR(sway) AND sway < num THEN
  168.                 num = sway
  169.                 dst = j
  170.             END IF
  171.         END IF
  172.     NEXT
  173.     IF dst < 100 AND star(dst).o <> id AND star(org).t > LL * 2 THEN
  174.         IF star(org).t > star(dst).t * 4 THEN
  175.             SendFleet org, dst, star(org).t / 2
  176.         END IF
  177.     END IF
  178.     count = fltcnt
  179.     i = 0
  180.     WHILE count
  181.         IF fleet(i).o <> 0 THEN
  182.             count = count - 1
  183.             IF fleet(i).x2 > fleet(i).x1 THEN
  184.                 fleet(i).x1 = fleet(i).x1 + 1
  185.             END IF
  186.             IF fleet(i).x2 < fleet(i).x1 THEN
  187.                 fleet(i).x1 = fleet(i).x1 - 1
  188.             END IF
  189.             IF fleet(i).y2 > fleet(i).y1 THEN
  190.                 fleet(i).y1 = fleet(i).y1 + 1
  191.             END IF
  192.             IF fleet(i).y2 < fleet(i).y1 THEN
  193.                 fleet(i).y1 = fleet(i).y1 - 1
  194.             END IF
  195.             IF fleet(i).x1 = fleet(i).x2 AND fleet(i).y1 = fleet(i).y2 THEN
  196.                 dst = fleet(i).d
  197.                 IF star(dst).o = fleet(i).o THEN
  198.                     star(dst).t = star(dst).t + fleet(i).n
  199.                     fleet(i).o = 0
  200.                     fltcnt = fltcnt - 1
  201.                 ELSE
  202.                     alive = 1
  203.                     WHILE alive
  204.                         alive = 0
  205.                         damorg = fleet(i).n / 11 + 1
  206.                         damdst = star(dst).t / 10 + 1
  207.                         fleet(i).n = fleet(i).n - damdst
  208.                         star(dst).t = star(dst).t - damorg
  209.                         IF fleet(i).n > 0 AND star(dst).t > 0 THEN
  210.                             alive = 1
  211.                         END IF
  212.                     WEND
  213.                     IF star(dst).t < 1 THEN
  214.                         star(dst).t = fleet(i).n
  215.                         star(dst).o = fleet(i).o
  216.                     END IF
  217.                     fleet(i).o = 0
  218.                     fltcnt = fltcnt - 1
  219.                 END IF
  220.             END IF
  221.         END IF
  222.         i = i + 1
  223.     WEND
  224.  
  225. SUB GetInput
  226.  
  227.     ch = INKEY$
  228.     IF ch = CHR$(27) THEN repeat = 0
  229.     IF ch = "n" THEN NewGame
  230.     IF ch = "t" THEN tt = 1 - tt
  231.     ch = ""
  232.  
  233.     WHILE _MOUSEINPUT: WEND '          Eat all the mice but keep last mouse to toy with
  234.  
  235.     x = _MOUSEX
  236.     y = _MOUSEY
  237.     mb = _MOUSEBUTTON(1)
  238.     clk = 0
  239.  
  240.     IF mb = -1 AND cx = sw THEN
  241.         cx = x
  242.         cy = y
  243.     END IF
  244.  
  245.     IF mb = 0 AND cx < sw THEN
  246.         IF ABS(x - cx) < 6 AND ABS(y - cy) < 6 THEN
  247.             clk = 1
  248.         END IF
  249.         cx = sw
  250.     END IF
  251.  
  252. SUB PaintBackground
  253.     x = RND * sw
  254.     y = RND * sh
  255.     c = RND * 14 + 1
  256.     PSET (x, y), c
  257.     RANDOMIZE USING seed
  258.     FOR i = 1 TO 600 * ratio
  259.         x = RND * sw
  260.         y = RND * sh
  261.         c = RND * 14 + 1
  262.         PSET (x, y), c
  263.     NEXT
  264.  
  265. SUB Player
  266.     tmp$ = RTRIM$(strng)
  267.     IF slct = 1 THEN
  268.         LINE (px, py)-(x, y), 10
  269.     END IF
  270.     IF pact = 1 THEN
  271.         ShowPanel ii
  272.         IF clk = 1 THEN
  273.             x1 = panx: x2 = panx + 400 * ratio
  274.             y1 = pany: y2 = pany + 540 * ratio
  275.             IF x > x1 + 216 * ratio AND x < x1 + 366 * ratio AND y > y1 + 460 * ratio AND y < y1 + 530 * ratio THEN
  276.                 pact = 0
  277.             END IF
  278.             IF x > x1 + 20 * ratio AND x < x1 + 380 * ratio AND y > y1 + 260 * ratio AND y < y1 + 320 * ratio THEN
  279.                 dig = (x - x1 - 32 * ratio) / (38 * ratio)
  280.                 strng = tmp$ + STR$(dig)
  281.             END IF
  282.             IF x > x1 + 266 * ratio AND x < x1 + 366 * ratio AND y > y1 + 366 * ratio AND y < y1 + 406 * ratio THEN
  283.                 strng = ""
  284.             END IF
  285.             IF x > x1 + 32 * ratio AND x < x1 + 182 * ratio AND y > y1 + 460 * ratio AND y < y1 + 530 * ratio THEN
  286.                 value = VAL(strng)
  287.                 strng = ""
  288.                 pact = 0
  289.                 IF value <= star(srcidx).t THEN
  290.                     SendFleet srcidx, dstidx, value
  291.                 END IF
  292.             END IF
  293.         END IF
  294.     END IF
  295.  
  296. SUB Identify (x, y)
  297.     FOR i = 0 TO 99
  298.         dx = star(i).x - x
  299.         dy = star(i).y - y
  300.         IF pact = 0 AND ABS(dx) <= star(i).s + 6 AND ABS(dy) <= star(i).s + 6 THEN
  301.             ii = i
  302.             IF star(i).o = 1 AND slct = 0 THEN
  303.                 IF clk THEN
  304.                     slct = 1
  305.                 END IF
  306.                 px = x
  307.                 py = y
  308.                 srcstr = star(i).n
  309.                 srcidx = i
  310.             ELSE
  311.                 IF slct = 1 OR pact = 1 THEN
  312.                     IF clk THEN
  313.                         slct = 0
  314.                         pact = 1
  315.                         dststr = star(i).n
  316.                         dstidx = i
  317.                     END IF
  318.                 END IF
  319.             END IF
  320.             EXIT FOR
  321.         END IF
  322.     NEXT
  323.  
  324. SUB ShowPanel (i)
  325.     x1 = star(i).x - 420 * ratio
  326.     IF star(i).x < sw / 2 THEN x1 = star(i).x + 20 * ratio
  327.     x2 = x1 + 400 * ratio
  328.     y1 = star(i).y
  329.     IF y1 > sh - 560 * ratio THEN y1 = sh - 560 * ratio
  330.     y2 = y1 + 540 * ratio
  331.     _DEST ps
  332.     CLS 0, 8
  333.     COLOR 0, 8
  334.     _FONT ttf2
  335.     n$ = RTRIM$(srcstr)
  336.     L = _PRINTWIDTH(n$)
  337.     _PRINTSTRING ((400 * ratio - L) / 2, 8 * ratio), n$, ps
  338.     n$ = "to"
  339.     L = _PRINTWIDTH(n$)
  340.     _PRINTSTRING ((400 * ratio - L) / 2, 80 * ratio), n$, ps
  341.     n$ = RTRIM$(dststr)
  342.     L = _PRINTWIDTH(n$)
  343.     _PRINTSTRING ((400 * ratio - L) / 2, 152 * ratio), n$, ps
  344.     LINE (20 * ratio, 240 * ratio)-(380 * ratio, 240 * ratio), 0
  345.     _PRINTSTRING (20 * ratio, 260 * ratio), "0123456789", ps
  346.     _PRINTSTRING (20 * ratio, 346 * ratio), strng, ps
  347.     xo = 286 * ratio: xd = 366 * ratio: yo = 366 * ratio: yd = 406 * ratio
  348.     LINE (xo, yo)-(xd, yd), 7, BF
  349.     xo = 32 * ratio: xd = 182 * ratio: yo = 460 * ratio: yd = 530 * ratio
  350.     LINE (xo, yo)-(xd, yd), 7, BF
  351.     xo = 216 * ratio: xd = 366 * ratio: yo = 460 * ratio: yd = 530 * ratio
  352.     LINE (xo, yo)-(xd, yd), 7, BF
  353.     COLOR 8, 7
  354.     _FONT ttf1
  355.     _PRINTSTRING (300 * ratio, 380 * ratio), "CLEAR", ps
  356.     _FONT ttf2
  357.     _PRINTSTRING (60 * ratio, 460 * ratio), "Ok", ps
  358.     _PRINTSTRING (220 * ratio, 460 * ratio), "Quit", ps
  359.     _PUTIMAGE (x1, y1), ps, 0, (0, 0)-(400 * ratio, 540 * ratio)
  360.     panx = x1: pany = y1
  361.     _DEST 0
  362.  
  363. SUB PaintStars
  364.     FOR i = 0 TO 99
  365.         c = star(i).c
  366.         x = star(i).x
  367.         y = star(i).y
  368.         o = star(i).o
  369.         CIRCLE (x, y), (star(i).s + 6) * ratio, c
  370.         COLOR 15
  371.         IF o > 0 THEN
  372.             PAINT (x, y), o + 8, c
  373.         END IF
  374.         _FONT ttf1
  375.         IF tt THEN
  376.             n$ = star(i).n
  377.             n$ = RTRIM$(n$)
  378.             L = _PRINTWIDTH(n$)
  379.         ELSE
  380.             n$ = STR$(star(i).t)
  381.             L = _PRINTWIDTH(n$)
  382.         END IF
  383.         _PRINTSTRING (x - L / 2, y + 12), n$, 0
  384.     NEXT
  385.  
  386. SUB NewGame
  387.     DIM k AS INTEGER
  388.     DIM r AS INTEGER
  389.     DIM dx AS INTEGER
  390.     DIM dy AS INTEGER
  391.     DIM n AS STRING * 10
  392.     FOR i = 0 TO 999
  393.         fleet(i).o = 0
  394.     NEXT
  395.     fltcnt = 0
  396.     LL = 0
  397.     seed = RND * 1000
  398.     star(0).n = "Sol"
  399.     star(0).x = RND * (sw - sww) + swn
  400.     star(0).y = RND * (sh - shw) + shn
  401.     star(0).c = 14
  402.     star(0).s = 2
  403.     star(0).o = 1
  404.     star(0).p = 20
  405.     star(0).t = 100
  406.     home(0) = 0
  407.     FOR i = 1 TO 99
  408.         k = 1
  409.         WHILE k
  410.             k = 0
  411.             x = RND * (sw - sww) + swn
  412.             y = RND * (sh - shw) + shn
  413.             r = INT(RND * 200)
  414.             n = names(r)
  415.             FOR j = 0 TO i - 1
  416.                 dx = x - star(j).x
  417.                 dy = y - star(j).y
  418.                 IF ABS(dx) < sww AND ABS(dy) < shw THEN
  419.                     k = 1
  420.                 END IF
  421.                 IF n = star(j).n THEN
  422.                     k = 1
  423.                 END IF
  424.             NEXT
  425.         WEND
  426.         star(i).n = n
  427.         star(i).x = x
  428.         star(i).y = y
  429.         star(i).c = RND * 6 + 9
  430.         star(i).s = RND * 5
  431.         star(i).o = 0
  432.         star(i).p = star(i).s + (RND * 8) + 1
  433.         star(i).t = 0
  434.     NEXT
  435.     FOR i = 2 TO 6
  436.         k = 1
  437.         WHILE k
  438.             k = 0
  439.             r = RND * 100
  440.             FOR j = 1 TO i - 1
  441.                 IF r = home(j) THEN k = 1
  442.                 x = star(0).x
  443.                 y = star(0).y
  444.                 dx = ABS(star(r).x - x)
  445.                 dy = ABS(star(r).y - y)
  446.                 IF dx < sw / 4 AND dy < sh / 4 THEN k = 1
  447.             NEXT
  448.         WEND
  449.         home(i) = r
  450.         star(r).o = i
  451.         star(r).p = 20
  452.         star(r).t = 100
  453.     NEXT
  454.  
  455. ' A lot of star names I made up
  456.  
  457. SUB StarNames
  458.     names(0) = "Acamar"
  459.     names(1) = "Arcab"
  460.     names(2) = "Acrux"
  461.     names(3) = "Adhara"
  462.     names(4) = "Arneb"
  463.     names(5) = "Antares"
  464.     names(6) = "Arcturus"
  465.     names(7) = "Atria"
  466.     names(8) = "Beid"
  467.     names(9) = "Betelgeuse"
  468.     names(10) = "Botein"
  469.     names(11) = "Beemim"
  470.     names(12) = "Bellatrix"
  471.     names(13) = "Bharani"
  472.     names(14) = "Biham"
  473.     names(15) = "Brachium"
  474.     names(16) = "Canopus"
  475.     names(17) = "Capella"
  476.     names(18) = "Castor"
  477.     names(19) = "Chara"
  478.     names(20) = "Cursa"
  479.     names(21) = "Copernicus"
  480.     names(22) = "Chalawan"
  481.     names(23) = "Chertan"
  482.     names(24) = "Dabih"
  483.     names(25) = "Dalim"
  484.     names(26) = "Deneb"
  485.     names(27) = "Denebola"
  486.     names(28) = "Diadem"
  487.     names(29) = "Diphda"
  488.     names(30) = "Dschubba"
  489.     names(31) = "Dziban"
  490.     names(32) = "Edasich"
  491.     names(33) = "Electra"
  492.     names(34) = "Elgafar"
  493.     names(35) = "Elkurud"
  494.     names(36) = "Elnath"
  495.     names(37) = "Eltanin"
  496.     names(38) = "Enif"
  497.     names(39) = "Errai"
  498.     names(40) = "Fafnir"
  499.     names(41) = "Fang"
  500.     names(42) = "Fawaris"
  501.     names(43) = "Felis"
  502.     names(44) = "Fomalhaut"
  503.     names(45) = "Fulu"
  504.     names(46) = "Fumal"
  505.     names(47) = "Furud"
  506.     names(48) = "Garnet"
  507.     names(49) = "Giausar"
  508.     names(50) = "Gienah"
  509.     names(51) = "Ginan"
  510.     names(52) = "Gomeisa"
  511.     names(53) = "Graffias"
  512.     names(54) = "Grumium"
  513.     names(55) = "Gudja"
  514.     names(56) = "Hadar"
  515.     names(57) = "Haedus"
  516.     names(58) = "Hamal"
  517.     names(59) = "Hassaleh"
  518.     names(60) = "Hatysa"
  519.     names(61) = "Helvetios"
  520.     names(62) = "Heze"
  521.     names(63) = "Homan"
  522.     names(64) = "Iklil"
  523.     names(65) = "Imai"
  524.     names(66) = "Intercrus"
  525.     names(67) = "Izar"
  526.     names(68) = "Iccar"
  527.     names(69) = "Inar"
  528.     names(70) = "Iaeth"
  529.     names(71) = "Imaous"
  530.     names(72) = "Jabbah"
  531.     names(73) = "Jishui"
  532.     names(74) = "Jax"
  533.     names(75) = "Jalae"
  534.     names(76) = "Jewel"
  535.     names(77) = "Jumbo"
  536.     names(78) = "Jerue"
  537.     names(79) = "Jabear"
  538.     names(80) = "Kakkab"
  539.     names(81) = "Kang"
  540.     names(82) = "Kekouan"
  541.     names(83) = "Keid"
  542.     names(84) = "Kitalpha"
  543.     names(85) = "Kochab"
  544.     names(86) = "Kolob"
  545.     names(87) = "Kobol"
  546.     names(88) = "Larawag"
  547.     names(89) = "Lesath"
  548.     names(90) = "Libertas"
  549.     names(91) = "Lich"
  550.     names(92) = "Lilly"
  551.     names(93) = "Laddel"
  552.     names(94) = "Luminous"
  553.     names(95) = "Lasacious"
  554.     names(96) = "Mizar"
  555.     names(97) = "Markab"
  556.     names(98) = "Matar"
  557.     names(99) = "Mintaka"
  558.     names(100) = "Meleph"
  559.     names(101) = "Menkar"
  560.     names(102) = "Merga"
  561.     names(103) = "Merope"
  562.     names(104) = "Nahn"
  563.     names(105) = "Naos"
  564.     names(106) = "Nashira"
  565.     names(107) = "Navi"
  566.     names(108) = "Nekkar"
  567.     names(109) = "Nembus"
  568.     names(110) = "Nihal"
  569.     names(111) = "Nunki"
  570.     names(112) = "Ogma"
  571.     names(113) = "Okab"
  572.     names(114) = "Ohmy"
  573.     names(115) = "Oragami"
  574.     names(116) = "Origen"
  575.     names(117) = "Omanii"
  576.     names(118) = "Obytewa"
  577.     names(119) = "Oglok"
  578.     names(120) = "Phact"
  579.     names(121) = "Pherkad"
  580.     names(122) = "Pleione"
  581.     names(122) = "Polaris"
  582.     names(123) = "Pollux"
  583.     names(124) = "Procyon"
  584.     names(125) = "Proxima"
  585.     names(126) = "Polis"
  586.     names(127) = "Quaint"
  587.     names(128) = "Quazzat"
  588.     names(129) = "Quetzal"
  589.     names(130) = "Qussol"
  590.     names(131) = "Quella"
  591.     names(132) = "Quyaeo"
  592.     names(133) = "Ququdas"
  593.     names(134) = "Quekak"
  594.     names(135) = "Rasalas"
  595.     names(136) = "Regor"
  596.     names(137) = "Regulus"
  597.     names(138) = "Rigel"
  598.     names(139) = "Revati"
  599.     names(140) = "Rotenev"
  600.     names(141) = "Rukbat"
  601.     names(142) = "Rastaban"
  602.     names(143) = "Sabik"
  603.     names(144) = "Sadr"
  604.     names(145) = "Saiph"
  605.     names(146) = "Sargas"
  606.     names(147) = "Sarin"
  607.     names(148) = "Syrma"
  608.     names(149) = "Spica"
  609.     names(150) = "Sirius"
  610.     names(151) = "Tarazed"
  611.     names(152) = "Taygeta"
  612.     names(153) = "Tejat"
  613.     names(154) = "Thabit"
  614.     names(155) = "Thuban"
  615.     names(156) = "Tiaki"
  616.     names(157) = "Toliman"
  617.     names(158) = "Torcular"
  618.     names(157) = "Umala"
  619.     names(158) = "Ulatte"
  620.     names(159) = "Ubbessa"
  621.     names(160) = "Unoless"
  622.     names(161) = "Umaddem"
  623.     names(162) = "Ummbra"
  624.     names(162) = "Uniqu"
  625.     names(163) = "Uzzaal"
  626.     names(164) = "Vega"
  627.     names(165) = "Veritate"
  628.     names(166) = "Vindetrix"
  629.     names(167) = "Vedas"
  630.     names(168) = "Vergg"
  631.     names(169) = "Vacant"
  632.     names(170) = "Vucae"
  633.     names(171) = "Vicar"
  634.     names(172) = "Wasat"
  635.     names(173) = "Wazn"
  636.     names(174) = "Wezen"
  637.     names(175) = "Waiten"
  638.     names(176) = "Wachar"
  639.     names(177) = "Wheelz"
  640.     names(178) = "Whatsp"
  641.     names(179) = "Wassand"
  642.     names(180) = "Xenno"
  643.     names(181) = "Xyphod"
  644.     names(182) = "Xu"
  645.     names(183) = "Xaal"
  646.     names(184) = "Xyross"
  647.     names(185) = "Xiggot"
  648.     names(186) = "Xirrks"
  649.     names(187) = "Yed"
  650.     names(188) = "Yildun"
  651.     names(189) = "Yundun"
  652.     names(190) = "Yavyo"
  653.     names(191) = "Yotrac"
  654.     names(192) = "Yxzoqu"
  655.     names(193) = "Ynnot"
  656.     names(194) = "Zaniah"
  657.     names(195) = "Zaurak"
  658.     names(196) = "Zhang"
  659.     names(197) = "Zibal"
  660.     names(198) = "Zosma"
  661.     names(199) = "Zuben"
  662.  
Title: Re: Beyond Sol
Post by: romichess on December 11, 2019, 09:45:29 pm
The letter 'p' can be pressed to pause the game and pressed again to unpause. It is becoming intense and fast paced. If the starting position is not good I suggest pressing 'n' for a new game. All players are range bound now. The rule for range is that if a player cannot reach at least 12 stars that they do not own their range is increased until they can attack at least 12 stars they do not own. The green from/to line changes to red if a star is out of range and nothing happens if the mouse is clicked.

Any feedback good or bad is not only welcome it is needed for this project to last much longer. I'll be on to something else if no one is interested. As it is it seems like at least an interesting example of GUI on demand.

Code: QB64: [Select]
  1. TYPE stars
  2.     n AS STRING * 10 '                 Name of star
  3.     x AS INTEGER '                     x-position
  4.     y AS INTEGER '                     y-position
  5.     o AS INTEGER '                     Owner
  6.     c AS INTEGER '                     Color
  7.     s AS INTEGER '                     Size
  8.     t AS INTEGER '                     (Type of planetary system; terran, frozen, radiated, toxic, etc.) Ships
  9.     p AS INTEGER '                     (Population) For now ships produced per turn
  10.  
  11. TYPE FLEETS
  12.     n AS INTEGER
  13.     x1 AS INTEGER
  14.     y1 AS INTEGER
  15.     x2 AS INTEGER
  16.     y2 AS INTEGER
  17.     o AS INTEGER
  18.     d AS INTEGER
  19.  
  20. 'DECLARE SUB NewGame
  21. 'DECLARE SUB PaintStars
  22. 'DECLARE SUB StarNames
  23. 'DECLARE SUB ShowPanel (i)
  24. 'DECLARE SUB Identify (x, y)
  25. 'DECLARE SUB PaintBackground
  26. 'DECLARE SUB GetInput
  27.  
  28. ' Global variables shared because they are needed in more than one routine
  29. DIM SHARED sw AS INTEGER '             Screen Width
  30. DIM SHARED sh AS INTEGER '             Screen Height
  31. DIM SHARED sww AS INTEGER '            Screen Width Wide margin
  32. DIM SHARED swn AS INTEGER '            Screen Width Narrow adjustment
  33. DIM SHARED shw AS INTEGER '            Screen Height Wide margine
  34. DIM SHARED shn AS INTEGER '            Screen Height Narrow adjustment
  35. DIM SHARED nw AS INTEGER '             games Natural screen Width
  36. DIM SHARED nh AS INTEGER '             games Natural screen Height
  37. DIM SHARED ratio AS _FLOAT '           the Ratio of the games natural screen width to the actual
  38. DIM SHARED star(100) AS stars '        100 stars - may change
  39. DIM SHARED names(200) AS STRING * 10 ' 200 star names
  40. DIM SHARED seed AS INTEGER '           Seed to prime the Randomizer to display identical background each frame
  41. DIM SHARED home(7) AS INTEGER '        The starting star for each player. The human always has star(0), Sol
  42. DIM SHARED tt AS INTEGER '             tt = 0 star names displayed, tt = 0 star names not didplayed
  43. DIM SHARED ch AS STRING * 1 '          Game loop key input variable
  44. DIM SHARED repeat AS INTEGER '         Game loop control variable
  45. DIM SHARED fleet(1000) AS FLEETS
  46. DIM SHARED srcstr AS STRING * 10
  47. DIM SHARED dststr AS STRING * 10
  48. DIM SHARED panx, pany AS INTEGER
  49. DIM SHARED strng AS STRING * 10
  50. DIM SHARED maxdst(7) AS INTEGER
  51.  
  52. sw = _DESKTOPWIDTH '                   native video with of syatem
  53. sww = sw / 24 '                        margin based on native video width to keep stars away from edge
  54. swn = sw / 48 '                        adjustment that works with sww to keep stars away from left and top of screen
  55. nw = 1920
  56.  
  57. ratio = sw / 1920 '                    Used to adjust distances and sizes for various screen modes
  58.  
  59. shw = sh / 20
  60. shn = sh / 40
  61. nh = 1080
  62.  
  63. tt = 0
  64. cx = sw
  65. cp = 100
  66. h = 100
  67. ar = 0
  68. rng = 200
  69. slct = 0
  70. strng = ""
  71.  
  72. SCREEN _NEWIMAGE(sw, sh, 256) '        creates a screen the resolution of the users native system
  73.  
  74.  
  75. ps = _NEWIMAGE(400 * ratio, 540 * ratio, 256)
  76.  
  77. StarNames '                            Routine to load star names into string array stars(200)
  78.  
  79. NewGame
  80.  
  81. ttf1 = _LOADFONT("cyberbit.ttf", 16 * ratio, "BOLD")
  82. ttf2 = _LOADFONT("cyberbit.ttf", 72 * ratio, "BOLD")
  83.  
  84. repeat = 1
  85.  
  86. WHILE repeat
  87.  
  88.     _LIMIT 200 '                        Set to 200 frames per second
  89.  
  90.     CLS
  91.  
  92.     id = INT(RND * 5 + 2)
  93.  
  94.     PaintBackground
  95.  
  96.     PaintStars
  97.  
  98.     PaintFleet
  99.  
  100.     GetInput
  101.  
  102.     Player
  103.  
  104.     Identify x, y '                    Identify star mouse is over if any
  105.  
  106.     Computer
  107.  
  108.     _DISPLAY
  109.  
  110.  
  111.  
  112. SUB PaintFleet
  113.     count = fltcnt
  114.     i = 0
  115.     WHILE count
  116.         IF fleet(i).o <> 0 THEN
  117.             CIRCLE (fleet(i).x1, fleet(i).y1), 3, fleet(i).o + 8
  118.             count = count - 1
  119.         END IF
  120.         i = i + 1
  121.     WEND
  122.  
  123. SUB SendFleet (org, dst, ships)
  124.     FOR i = 0 TO 999
  125.         IF fleet(i).o = 0 THEN
  126.             fleet(i).o = star(org).o
  127.             fleet(i).d = dst
  128.             fleet(i).x1 = star(org).x
  129.             fleet(i).y1 = star(org).y
  130.             fleet(i).x2 = star(dst).x
  131.             fleet(i).y2 = star(dst).y
  132.             fleet(i).n = ships
  133.             star(org).t = star(org).t - ships
  134.             fltcnt = fltcnt + 1
  135.             EXIT FOR
  136.         END IF
  137.     NEXT
  138.     LL = LL + 1
  139.  
  140. SUB Computer
  141.     FOR i = 0 TO 99
  142.         r = INT(RND * 60)
  143.         IF r < star(i).p THEN
  144.             IF star(i).o > 0 THEN
  145.                 star(i).t = star(i).t + 1
  146.             ELSE
  147.                 IF INT(RND * 10) < 3 THEN
  148.                     star(i).t = star(i).t + 1
  149.                 END IF
  150.             END IF
  151.         END IF
  152.     NEXT
  153.  
  154.     FOR i = 0 TO 99
  155.         IF star(i).t > 50 AND star(i).o = id AND i <> home(id) THEN
  156.             ok = 1
  157.             FOR j = 1 TO 6
  158.                 IF j <> id THEN
  159.                     h = home(j)
  160.                     sway = SQR(ABS(star(h).x - star(i).x) ^ 2 + ABS(star(h).y - star(i).y) ^ 2)
  161.                     IF sway - 50 < maxdst(j) THEN
  162.                         ok = 0
  163.                         EXIT FOR
  164.                     END IF
  165.                 END IF
  166.             NEXT
  167.             IF ok = 1 THEN
  168.                 SendFleet i, home(id), star(i).t
  169.                 EXIT FOR
  170.             END IF
  171.         END IF
  172.     NEXT
  173.  
  174.     org = home(id)
  175.     IF star(org).o <> id THEN
  176.         FOR j = 0 TO 99
  177.             IF star(j).o = id THEN home(id) = j: EXIT FOR
  178.         NEXT
  179.     END IF
  180.  
  181.     count = 0
  182.     FOR j = 0 TO 99
  183.         IF star(j).o <> id THEN
  184.             sway = SQR(ABS(star(org).x - star(j).x) ^ 2 + ABS(star(org).y - star(j).y) ^ 2)
  185.             IF sway < maxdst(id) THEN count = count + 1
  186.             IF count > 11 THEN EXIT FOR
  187.         END IF
  188.     NEXT
  189.     IF count < 12 THEN maxdst(id) = maxdst(id) + 1
  190.  
  191.     FOR j = 0 TO 99
  192.         sway = SQR(ABS(star(org).x - star(j).x) ^ 2 + ABS(star(org).y - star(j).y) ^ 2)
  193.         IF sway < maxdst(id) AND star(j).o <> id AND star(org).t > LL * 2 THEN
  194.             IF star(org).t > star(j).t * 5 THEN
  195.                 SendFleet org, j, star(org).t / 3
  196.             END IF
  197.         END IF
  198.     NEXT
  199.  
  200.     FOR j = 0 TO 99
  201.         IF star(j).o = id AND j <> home(id) AND star(j).t > LL * 1.5 THEN
  202.             SendFleet j, home(id), star(j).t / 3
  203.         END IF
  204.     NEXT
  205.  
  206.     count = fltcnt
  207.     i = 0
  208.     WHILE count
  209.         IF fleet(i).o <> 0 THEN
  210.             count = count - 1
  211.             IF fleet(i).x2 > fleet(i).x1 THEN
  212.                 fleet(i).x1 = fleet(i).x1 + 1
  213.             END IF
  214.             IF fleet(i).x2 < fleet(i).x1 THEN
  215.                 fleet(i).x1 = fleet(i).x1 - 1
  216.             END IF
  217.             IF fleet(i).y2 > fleet(i).y1 THEN
  218.                 fleet(i).y1 = fleet(i).y1 + 1
  219.             END IF
  220.             IF fleet(i).y2 < fleet(i).y1 THEN
  221.                 fleet(i).y1 = fleet(i).y1 - 1
  222.             END IF
  223.             IF fleet(i).x1 = fleet(i).x2 AND fleet(i).y1 = fleet(i).y2 THEN
  224.                 dst = fleet(i).d
  225.                 IF star(dst).o = fleet(i).o THEN
  226.                     star(dst).t = star(dst).t + fleet(i).n
  227.                     fleet(i).o = 0
  228.                     fltcnt = fltcnt - 1
  229.                 ELSE
  230.                     alive = 1
  231.                     WHILE alive
  232.                         alive = 0
  233.                         damorg = fleet(i).n / 11 + 1
  234.                         damdst = star(dst).t / 10 + 1
  235.                         fleet(i).n = fleet(i).n - damdst
  236.                         star(dst).t = star(dst).t - damorg
  237.                         IF fleet(i).n > 0 AND star(dst).t > 0 THEN
  238.                             alive = 1
  239.                         END IF
  240.                     WEND
  241.                     IF star(dst).t < 1 THEN
  242.                         star(dst).t = fleet(i).n
  243.                         star(dst).o = fleet(i).o
  244.                     END IF
  245.                     fleet(i).o = 0
  246.                     fltcnt = fltcnt - 1
  247.                 END IF
  248.             END IF
  249.         END IF
  250.         i = i + 1
  251.     WEND
  252.  
  253. SUB GetInput
  254.  
  255.     ch = INKEY$
  256.     IF ch = CHR$(27) THEN repeat = 0
  257.     IF ch = "n" THEN NewGame
  258.     IF ch = "t" THEN tt = 1 - tt
  259.  
  260.     WHILE (ch = "p")
  261.         IF INKEY$ = "p" THEN EXIT WHILE
  262.     WEND
  263.  
  264.     ch = ""
  265.  
  266.     WHILE _MOUSEINPUT: WEND '          Eat all the mice but keep last mouse to toy with
  267.  
  268.     x = _MOUSEX
  269.     y = _MOUSEY
  270.     mb = _MOUSEBUTTON(1)
  271.     clk = 0
  272.  
  273.     IF mb = -1 AND cx = sw THEN
  274.         cx = x
  275.         cy = y
  276.     END IF
  277.  
  278.     IF mb = 0 AND cx < sw THEN
  279.         IF ABS(x - cx) < 8 AND ABS(y - cy) < 8 THEN
  280.             clk = 1
  281.         END IF
  282.         cx = sw
  283.     END IF
  284.  
  285. SUB PaintBackground
  286.     x = RND * sw
  287.     y = RND * sh
  288.     c = RND * 14 + 1
  289.     PSET (x, y), c
  290.     RANDOMIZE USING seed
  291.     FOR i = 1 TO 600 * ratio
  292.         x = RND * sw
  293.         y = RND * sh
  294.         c = RND * 14 + 1
  295.         PSET (x, y), c
  296.     NEXT
  297.  
  298. SUB Player
  299.     tmp$ = RTRIM$(strng)
  300.     count = 0
  301.     FOR j = 0 TO 99
  302.         IF star(j).o <> 1 THEN
  303.             sway = SQR(ABS(star(home(1)).x - star(j).x) ^ 2 + ABS(star(home(1)).y - star(j).y) ^ 2)
  304.             IF sway < maxdst(1) THEN count = count + 1
  305.             IF count > 11 THEN EXIT FOR
  306.         END IF
  307.     NEXT
  308.     IF count < 12 THEN maxdst(1) = maxdst(1) + 1
  309.     IF slct = 1 THEN
  310.         sway = SQR(ABS(star(home(i)).x - x) ^ 2 + ABS(star(home(1)).y - y) ^ 2)
  311.         c = 10
  312.         IF sway > maxdst(1) THEN
  313.             c = 12
  314.             clk = 0
  315.         END IF
  316.         LINE (px, py)-(x, y), c
  317.     END IF
  318.     IF pact = 1 THEN
  319.         ShowPanel ii
  320.         IF clk = 1 THEN
  321.             x1 = panx: x2 = panx + 400 * ratio
  322.             y1 = pany: y2 = pany + 540 * ratio
  323.             IF x > x1 + 216 * ratio AND x < x1 + 366 * ratio AND y > y1 + 460 * ratio AND y < y1 + 530 * ratio THEN
  324.                 pact = 0
  325.             ELSE IF x > x1 + 20 * ratio AND x < x1 + 380 * ratio AND y > y1 + 260 * ratio AND y < y1 + 320 * ratio THEN
  326.                     dig = (x - x1 - 32 * ratio) / (38 * ratio)
  327.                     strng = tmp$ + STR$(dig)
  328.                 ELSE IF x > x1 + 266 * ratio AND x < x1 + 366 * ratio AND y > y1 + 366 * ratio AND y < y1 + 406 * ratio THEN
  329.                         strng = ""
  330.                     ELSE IF x > x1 + 32 * ratio AND x < x1 + 182 * ratio AND y > y1 + 460 * ratio AND y < y1 + 530 * ratio THEN
  331.                             value = VAL(strng)
  332.                             strng = ""
  333.                             pact = 0
  334.                             IF value <= star(srcidx).t THEN
  335.                                 SendFleet srcidx, dstidx, value
  336.                             END IF
  337.                         END IF
  338.                     END IF
  339.                 END IF
  340.             END IF
  341.         END IF
  342.     END IF
  343.  
  344. SUB Identify (x, y)
  345.     FOR i = 0 TO 99
  346.         dx = star(i).x - x
  347.         dy = star(i).y - y
  348.         IF pact = 0 AND ABS(dx) <= star(i).s + 8 AND ABS(dy) <= star(i).s + 8 THEN
  349.             ii = i
  350.             IF star(i).o = 1 AND slct = 0 THEN
  351.                 IF clk THEN
  352.                     slct = 1
  353.                 END IF
  354.                 px = x
  355.                 py = y
  356.                 srcstr = star(i).n
  357.                 srcidx = i
  358.             ELSE
  359.                 IF slct = 1 OR pact = 1 THEN
  360.                     IF clk THEN
  361.                         slct = 0
  362.                         pact = 1
  363.                         dststr = star(i).n
  364.                         dstidx = i
  365.                     END IF
  366.                 END IF
  367.             END IF
  368.             EXIT FOR
  369.         END IF
  370.     NEXT
  371.  
  372. SUB ShowPanel (i)
  373.     x1 = star(i).x - 420 * ratio
  374.     IF star(i).x < sw / 2 THEN x1 = star(i).x + 20 * ratio
  375.     x2 = x1 + 400 * ratio
  376.     y1 = star(i).y
  377.     IF y1 > sh - 560 * ratio THEN y1 = sh - 560 * ratio
  378.     y2 = y1 + 540 * ratio
  379.     _DEST ps
  380.     CLS 0, 8
  381.     COLOR 0, 8
  382.     _FONT ttf2
  383.     n$ = RTRIM$(srcstr)
  384.     L = _PRINTWIDTH(n$)
  385.     _PRINTSTRING ((400 * ratio - L) / 2, 8 * ratio), n$, ps
  386.     n$ = "to"
  387.     L = _PRINTWIDTH(n$)
  388.     _PRINTSTRING ((400 * ratio - L) / 2, 80 * ratio), n$, ps
  389.     n$ = RTRIM$(dststr)
  390.     L = _PRINTWIDTH(n$)
  391.     _PRINTSTRING ((400 * ratio - L) / 2, 152 * ratio), n$, ps
  392.     LINE (20 * ratio, 240 * ratio)-(380 * ratio, 240 * ratio), 0
  393.     _PRINTSTRING (20 * ratio, 260 * ratio), "0123456789", ps
  394.     _PRINTSTRING (20 * ratio, 346 * ratio), strng, ps
  395.     xo = 286 * ratio: xd = 366 * ratio: yo = 366 * ratio: yd = 406 * ratio
  396.     LINE (xo, yo)-(xd, yd), 7, BF
  397.     xo = 32 * ratio: xd = 182 * ratio: yo = 458 * ratio: yd = 530 * ratio
  398.     LINE (xo, yo)-(xd, yd), 7, BF
  399.     xo = 216 * ratio: xd = 366 * ratio: yo = 458 * ratio: yd = 530 * ratio
  400.     LINE (xo, yo)-(xd, yd), 7, BF
  401.     _FONT ttf1
  402.     COLOR 7, 8
  403.     _PRINTSTRING (100 * ratio, 112 * ratio), STR$(star(srcidx).t), ps
  404.     _PRINTSTRING (270 * ratio, 112 * ratio), STR$(star(dstidx).t), ps
  405.     COLOR 0, 7
  406.     _PRINTSTRING (300 * ratio, 380 * ratio), "CLEAR", ps
  407.     _FONT ttf2
  408.     _PRINTSTRING (60 * ratio, 458 * ratio), "Ok", ps
  409.     _PRINTSTRING (220 * ratio, 458 * ratio), "Quit", ps
  410.     _PUTIMAGE (x1, y1), ps, 0, (0, 0)-(400 * ratio, 540 * ratio)
  411.     panx = x1: pany = y1
  412.     _DEST 0
  413.  
  414. SUB PaintStars
  415.     FOR i = 0 TO 99
  416.         c = star(i).c
  417.         x = star(i).x
  418.         y = star(i).y
  419.         o = star(i).o
  420.         CIRCLE (x, y), (star(i).s + 8) * ratio, c
  421.         COLOR 15
  422.         IF o > 0 THEN
  423.             PAINT (x, y), o + 8, c
  424.         END IF
  425.         _FONT ttf1
  426.         IF tt THEN
  427.             n$ = star(i).n
  428.             n$ = RTRIM$(n$)
  429.             L = _PRINTWIDTH(n$)
  430.         ELSE
  431.             n$ = STR$(star(i).t)
  432.             L = _PRINTWIDTH(n$)
  433.         END IF
  434.         _PRINTSTRING (x - L / 2, y + 14), n$, 0
  435.     NEXT
  436.  
  437. SUB NewGame
  438.     DIM k AS INTEGER
  439.     DIM r AS INTEGER
  440.     DIM dx AS INTEGER
  441.     DIM dy AS INTEGER
  442.     DIM n AS STRING * 10
  443.     FOR i = 0 TO 999
  444.         fleet(i).o = 0
  445.     NEXT
  446.     slct = 0
  447.     fltcnt = 0
  448.     LL = 0
  449.     seed = RND * 1000
  450.     star(0).n = "Sol"
  451.     star(0).x = RND * (sw - sww) + swn
  452.     star(0).y = RND * (sh - shw) + shn
  453.     star(0).c = 14
  454.     star(0).s = 2
  455.     star(0).o = 1
  456.     star(0).p = 10
  457.     star(0).t = 100
  458.     home(1) = 0
  459.     maxdst(1) = 200
  460.     FOR i = 1 TO 99
  461.         k = 1
  462.         WHILE k
  463.             k = 0
  464.             x = RND * (sw - sww) + swn
  465.             y = RND * (sh - shw) + shn
  466.             r = INT(RND * 200)
  467.             n = names(r)
  468.             FOR j = 0 TO i - 1
  469.                 dx = x - star(j).x
  470.                 dy = y - star(j).y
  471.                 IF ABS(dx) < sww AND ABS(dy) < shw THEN
  472.                     k = 1
  473.                 END IF
  474.                 IF n = star(j).n THEN
  475.                     k = 1
  476.                 END IF
  477.             NEXT
  478.         WEND
  479.         star(i).n = n
  480.         star(i).x = x
  481.         star(i).y = y
  482.         star(i).c = RND * 6 + 9
  483.         star(i).s = RND * 5
  484.         star(i).o = 0
  485.         star(i).p = star(i).s + (RND * 5) + 4
  486.         star(i).t = 0
  487.     NEXT
  488.     FOR i = 2 TO 6
  489.         k = 1
  490.         WHILE k
  491.             k = 0
  492.             r = RND * 100
  493.             FOR j = 1 TO i - 1
  494.                 IF r = home(j) THEN k = 1
  495.                 x = star(0).x
  496.                 y = star(0).y
  497.                 dx = ABS(star(r).x - x)
  498.                 dy = ABS(star(r).y - y)
  499.                 IF dx < sw / 4 AND dy < sh / 4 THEN k = 1
  500.             NEXT
  501.         WEND
  502.         home(i) = r
  503.         star(r).o = i
  504.         star(r).p = 10
  505.         star(r).t = 100
  506.         maxdst(i) = 200
  507.     NEXT
  508.  
  509. ' A lot of star names I made up
  510.  
  511. SUB StarNames
  512.     names(0) = "Acamar"
  513.     names(1) = "Arcab"
  514.     names(2) = "Acrux"
  515.     names(3) = "Adhara"
  516.     names(4) = "Arneb"
  517.     names(5) = "Antares"
  518.     names(6) = "Arcturus"
  519.     names(7) = "Atria"
  520.     names(8) = "Beid"
  521.     names(9) = "Betelgeuse"
  522.     names(10) = "Botein"
  523.     names(11) = "Beemim"
  524.     names(12) = "Bellatrix"
  525.     names(13) = "Bharani"
  526.     names(14) = "Biham"
  527.     names(15) = "Brachium"
  528.     names(16) = "Canopus"
  529.     names(17) = "Capella"
  530.     names(18) = "Castor"
  531.     names(19) = "Chara"
  532.     names(20) = "Cursa"
  533.     names(21) = "Copernicus"
  534.     names(22) = "Chalawan"
  535.     names(23) = "Chertan"
  536.     names(24) = "Dabih"
  537.     names(25) = "Dalim"
  538.     names(26) = "Deneb"
  539.     names(27) = "Denebola"
  540.     names(28) = "Diadem"
  541.     names(29) = "Diphda"
  542.     names(30) = "Dschubba"
  543.     names(31) = "Dziban"
  544.     names(32) = "Edasich"
  545.     names(33) = "Electra"
  546.     names(34) = "Elgafar"
  547.     names(35) = "Elkurud"
  548.     names(36) = "Elnath"
  549.     names(37) = "Eltanin"
  550.     names(38) = "Enif"
  551.     names(39) = "Errai"
  552.     names(40) = "Fafnir"
  553.     names(41) = "Fang"
  554.     names(42) = "Fawaris"
  555.     names(43) = "Felis"
  556.     names(44) = "Fomalhaut"
  557.     names(45) = "Fulu"
  558.     names(46) = "Fumal"
  559.     names(47) = "Furud"
  560.     names(48) = "Garnet"
  561.     names(49) = "Giausar"
  562.     names(50) = "Gienah"
  563.     names(51) = "Ginan"
  564.     names(52) = "Gomeisa"
  565.     names(53) = "Graffias"
  566.     names(54) = "Grumium"
  567.     names(55) = "Gudja"
  568.     names(56) = "Hadar"
  569.     names(57) = "Haedus"
  570.     names(58) = "Hamal"
  571.     names(59) = "Hassaleh"
  572.     names(60) = "Hatysa"
  573.     names(61) = "Helvetios"
  574.     names(62) = "Heze"
  575.     names(63) = "Homan"
  576.     names(64) = "Iklil"
  577.     names(65) = "Imai"
  578.     names(66) = "Intercrus"
  579.     names(67) = "Izar"
  580.     names(68) = "Iccar"
  581.     names(69) = "Inar"
  582.     names(70) = "Iaeth"
  583.     names(71) = "Imaous"
  584.     names(72) = "Jabbah"
  585.     names(73) = "Jishui"
  586.     names(74) = "Jax"
  587.     names(75) = "Jalae"
  588.     names(76) = "Jewel"
  589.     names(77) = "Jumbo"
  590.     names(78) = "Jerue"
  591.     names(79) = "Jabear"
  592.     names(80) = "Kakkab"
  593.     names(81) = "Kang"
  594.     names(82) = "Kekouan"
  595.     names(83) = "Keid"
  596.     names(84) = "Kitalpha"
  597.     names(85) = "Kochab"
  598.     names(86) = "Kolob"
  599.     names(87) = "Kobol"
  600.     names(88) = "Larawag"
  601.     names(89) = "Lesath"
  602.     names(90) = "Libertas"
  603.     names(91) = "Lich"
  604.     names(92) = "Lilly"
  605.     names(93) = "Laddel"
  606.     names(94) = "Luminous"
  607.     names(95) = "Lasacious"
  608.     names(96) = "Mizar"
  609.     names(97) = "Markab"
  610.     names(98) = "Matar"
  611.     names(99) = "Mintaka"
  612.     names(100) = "Meleph"
  613.     names(101) = "Menkar"
  614.     names(102) = "Merga"
  615.     names(103) = "Merope"
  616.     names(104) = "Nahn"
  617.     names(105) = "Naos"
  618.     names(106) = "Nashira"
  619.     names(107) = "Navi"
  620.     names(108) = "Nekkar"
  621.     names(109) = "Nembus"
  622.     names(110) = "Nihal"
  623.     names(111) = "Nunki"
  624.     names(112) = "Ogma"
  625.     names(113) = "Okab"
  626.     names(114) = "Ohmy"
  627.     names(115) = "Oragami"
  628.     names(116) = "Origen"
  629.     names(117) = "Omanii"
  630.     names(118) = "Obytewa"
  631.     names(119) = "Oglok"
  632.     names(120) = "Phact"
  633.     names(121) = "Pherkad"
  634.     names(122) = "Pleione"
  635.     names(122) = "Polaris"
  636.     names(123) = "Pollux"
  637.     names(124) = "Procyon"
  638.     names(125) = "Proxima"
  639.     names(126) = "Polis"
  640.     names(127) = "Quaint"
  641.     names(128) = "Quazzat"
  642.     names(129) = "Quetzal"
  643.     names(130) = "Qussol"
  644.     names(131) = "Quella"
  645.     names(132) = "Quyaeo"
  646.     names(133) = "Ququdas"
  647.     names(134) = "Quekak"
  648.     names(135) = "Rasalas"
  649.     names(136) = "Regor"
  650.     names(137) = "Regulus"
  651.     names(138) = "Rigel"
  652.     names(139) = "Revati"
  653.     names(140) = "Rotenev"
  654.     names(141) = "Rukbat"
  655.     names(142) = "Rastaban"
  656.     names(143) = "Sabik"
  657.     names(144) = "Sadr"
  658.     names(145) = "Saiph"
  659.     names(146) = "Sargas"
  660.     names(147) = "Sarin"
  661.     names(148) = "Syrma"
  662.     names(149) = "Spica"
  663.     names(150) = "Sirius"
  664.     names(151) = "Tarazed"
  665.     names(152) = "Taygeta"
  666.     names(153) = "Tejat"
  667.     names(154) = "Thabit"
  668.     names(155) = "Thuban"
  669.     names(156) = "Tiaki"
  670.     names(157) = "Toliman"
  671.     names(158) = "Torcular"
  672.     names(157) = "Umala"
  673.     names(158) = "Ulatte"
  674.     names(159) = "Ubbessa"
  675.     names(160) = "Unoless"
  676.     names(161) = "Umaddem"
  677.     names(162) = "Ummbra"
  678.     names(162) = "Uniqu"
  679.     names(163) = "Uzzaal"
  680.     names(164) = "Vega"
  681.     names(165) = "Veritate"
  682.     names(166) = "Vindetrix"
  683.     names(167) = "Vedas"
  684.     names(168) = "Vergg"
  685.     names(169) = "Vacant"
  686.     names(170) = "Vucae"
  687.     names(171) = "Vicar"
  688.     names(172) = "Wasat"
  689.     names(173) = "Wazn"
  690.     names(174) = "Wezen"
  691.     names(175) = "Waiten"
  692.     names(176) = "Wachar"
  693.     names(177) = "Wheelz"
  694.     names(178) = "Whatsp"
  695.     names(179) = "Wassand"
  696.     names(180) = "Xenno"
  697.     names(181) = "Xyphod"
  698.     names(182) = "Xu"
  699.     names(183) = "Xaal"
  700.     names(184) = "Xyross"
  701.     names(185) = "Xiggot"
  702.     names(186) = "Xirrks"
  703.     names(187) = "Yed"
  704.     names(188) = "Yildun"
  705.     names(189) = "Yundun"
  706.     names(190) = "Yavyo"
  707.     names(191) = "Yotrac"
  708.     names(192) = "Yxzoqu"
  709.     names(193) = "Ynnot"
  710.     names(194) = "Zaniah"
  711.     names(195) = "Zaurak"
  712.     names(196) = "Zhang"
  713.     names(197) = "Zibal"
  714.     names(198) = "Zosma"
  715.     names(199) = "Zuben"
  716.  
Title: Re: Beyond Sol
Post by: romichess on December 16, 2019, 11:54:16 pm
It is enough better to make a new post.

Press:
esc to quit
p to pause/unpause
t toggles star name and production value
n for new game

Click:
on a blue planet then any planet to send ships
on numbers to select number of ships
on OK to send ships
on QUIT to cancel send
on CLEAR to start over selecting number of ships
can only click on second planet if range line is green
if range line is red second planet is out of range

I think that is all actions for now.

Code: QB64: [Select]
  1. TYPE stars
  2.     n AS STRING * 10 '                 Name of star
  3.     x AS INTEGER '                     x-position
  4.     y AS INTEGER '                     y-position
  5.     o AS INTEGER '                     Owner
  6.     c AS INTEGER '                     Color
  7.     s AS INTEGER '                     Size
  8.     t AS LONG '                     (Type of planetary system; terran, frozen, radiated, toxic, etc.) Ships
  9.     p AS INTEGER '                     (Population) For now ships produced per turn
  10.  
  11. TYPE FLEETS
  12.     t AS LONG
  13.     x1 AS INTEGER
  14.     y1 AS INTEGER
  15.     x2 AS INTEGER
  16.     y2 AS INTEGER
  17.     o AS INTEGER
  18.     d AS INTEGER
  19.  
  20. 'DECLARE SUB NewGame
  21. 'DECLARE SUB PaintStars
  22. 'DECLARE SUB StarNames
  23. 'DECLARE SUB ShowPanel (i)
  24. 'DECLARE SUB Identify (x, y)
  25. 'DECLARE SUB PaintBackground
  26. 'DECLARE SUB GetInput
  27.  
  28. ' Global variables shared because they are needed in more than one routine
  29. DIM SHARED sw AS INTEGER '             Screen Width
  30. DIM SHARED sh AS INTEGER '             Screen Height
  31. DIM SHARED sww AS INTEGER '            Screen Width Wide margin
  32. DIM SHARED swn AS INTEGER '            Screen Width Narrow adjustment
  33. DIM SHARED shw AS INTEGER '            Screen Height Wide margine
  34. DIM SHARED shn AS INTEGER '            Screen Height Narrow adjustment
  35. DIM SHARED nw AS INTEGER '             games Natural screen Width
  36. DIM SHARED nh AS INTEGER '             games Natural screen Height
  37. DIM SHARED ratio AS _FLOAT '           the Ratio of the games natural screen width to the actual
  38. DIM SHARED star(100) AS stars '        100 stars - may change
  39. DIM SHARED names(200) AS STRING * 10 ' 200 star names
  40. DIM SHARED seed AS INTEGER '           Seed to prime the Randomizer to display identical background each frame
  41. DIM SHARED home(7) AS INTEGER '        The starting star for each player. The human always has star(0), Sol
  42. DIM SHARED tt AS INTEGER '             tt = 0 star names displayed, tt = 0 star names not didplayed
  43. DIM SHARED ch AS STRING * 1 '          Game loop key input variable
  44. DIM SHARED repeat AS INTEGER '         Game loop control variable
  45. DIM SHARED fleet(1000) AS FLEETS
  46. DIM SHARED srcstr AS STRING * 10
  47. DIM SHARED dststr AS STRING * 10
  48. DIM SHARED panx, pany AS INTEGER
  49. DIM SHARED strng AS STRING * 10
  50. DIM SHARED hate(7, 7) AS INTEGER
  51.  
  52. sw = _DESKTOPWIDTH '                   native video with of syatem
  53. sww = sw / 24 '                        margin based on native video width to keep stars away from edge
  54. swn = sw / 48 '                        adjustment that works with sww to keep stars away from left and top of screen
  55. nw = 1920
  56.  
  57. ratio = sw / 1920 '                    Used to adjust distances and sizes for various screen modes
  58.  
  59. shw = sh / 20
  60. shn = sh / 40
  61. nh = 1080
  62.  
  63. tt = 0
  64. cx = sw
  65. cp = 100
  66. h = 100
  67. ar = 0
  68. rng = 200
  69. slct = 0
  70. strng = ""
  71.  
  72. SCREEN _NEWIMAGE(sw, sh, 256) '        creates a screen the resolution of the users native system
  73.  
  74.  
  75. ps = _NEWIMAGE(400 * ratio, 540 * ratio, 256)
  76.  
  77. StarNames '                            Routine to load star names into string array stars(200)
  78.  
  79. NewGame
  80.  
  81. ttf1 = _LOADFONT("cyberbit.ttf", 16 * ratio, "BOLD")
  82. ttf2 = _LOADFONT("cyberbit.ttf", 72 * ratio, "BOLD")
  83.  
  84. repeat = 1
  85.  
  86. WHILE repeat
  87.  
  88.     _LIMIT 200 '                        Set to 200 frames per second
  89.  
  90.     id = INT(RND * 5 + 2)
  91.  
  92.     CLS
  93.  
  94.     PaintBackground
  95.  
  96.     PaintStars
  97.  
  98.     PaintFleet
  99.  
  100.     GetInput
  101.  
  102.     Identify x, y '                     Identify star mouse is over if any
  103.  
  104.     Player
  105.  
  106.     Computer
  107.  
  108.     _DISPLAY
  109.  
  110.  
  111.  
  112. SUB PaintFleet
  113.     count = fltcnt
  114.     i = 0
  115.     WHILE count
  116.         IF fleet(i).o <> 0 THEN
  117.             CIRCLE (fleet(i).x1, fleet(i).y1), 3, fleet(i).o + 8
  118.             count = count - 1
  119.         END IF
  120.         i = i + 1
  121.     WEND
  122.  
  123. SUB SendFleet (org, dst, ships)
  124.     FOR i = 0 TO 999
  125.         IF fleet(i).o = 0 THEN
  126.             fleet(i).o = star(org).o
  127.             fleet(i).d = dst
  128.             fleet(i).x1 = star(org).x
  129.             fleet(i).y1 = star(org).y
  130.             fleet(i).x2 = star(dst).x
  131.             fleet(i).y2 = star(dst).y
  132.             fleet(i).t = ships
  133.             star(org).t = star(org).t - ships
  134.             fltcnt = fltcnt + 1
  135.             EXIT FOR
  136.         END IF
  137.     NEXT
  138.     LL = LL + 1
  139.  
  140. SUB Computer
  141.     FOR i = 0 TO 99
  142.         r = INT(RND * 60)
  143.         IF r < star(i).p THEN
  144.             IF star(i).o > 0 THEN
  145.                 star(i).t = star(i).t + 1
  146.             ELSE
  147.                 IF INT(RND * 10) < 3 THEN
  148.                     star(i).t = star(i).t + 1
  149.                 END IF
  150.             END IF
  151.         END IF
  152.     NEXT
  153.  
  154.     org = home(id)
  155.     IF star(org).o <> id THEN
  156.         FOR j = 0 TO 99
  157.             IF star(j).o = id THEN home(id) = j: EXIT FOR
  158.         NEXT
  159.     END IF
  160.  
  161.     FOR p = 0 TO 3
  162.  
  163.         IF p = 0 THEN
  164.             sf2 = 100
  165.             sf1 = home(id)
  166.             IF star(sf1).t > LL * 2 THEN
  167.                 sf3 = star(sf1).t / 2
  168.                 g = -1
  169.                 FOR j = 0 TO 99
  170.                     IF star(j).o <> id THEN
  171.                         IF hate(id, star(j).o) > g THEN
  172.                             IF star(sf1).t > star(j).t * 5 + RND * 200 - 100 THEN
  173.                                 FOR k = 0 TO 99
  174.                                     IF star(k).o = id THEN
  175.                                         dist = SQR(ABS(star(k).x - star(j).x) ^ 2 + ABS(star(k).y - star(j).y) ^ 2)
  176.                                         IF dist <= 250 * ratio THEN
  177.                                             sf2 = j
  178.                                             g = hate(id, star(j).o)
  179.                                             EXIT FOR
  180.                                         END IF
  181.                                     END IF
  182.                                 NEXT
  183.                             END IF
  184.                         END IF
  185.                     END IF
  186.                     IF g = h THEN EXIT FOR
  187.                 NEXT
  188.                 IF sf2 < 100 THEN
  189.                     SendFleet sf1, sf2, sf3
  190.                     sf2 = 100
  191.                     EXIT FOR
  192.                 END IF
  193.             END IF
  194.         END IF
  195.  
  196.         IF p = 1 THEN
  197.             ok = 0
  198.             FOR i = 1 TO 99
  199.                 IF i <> home(id) AND star(i).o = id THEN
  200.                     IF star(i).t > LL * 1.5 THEN
  201.                         ok = 1
  202.                         EXIT FOR
  203.                     END IF
  204.                 END IF
  205.             NEXT
  206.             IF ok = 1 THEN
  207.                 SendFleet i, home(id), star(i).t / 4
  208.                 EXIT FOR
  209.             END IF
  210.         END IF
  211.  
  212.         IF p = 2 THEN
  213.             FOR i = 1 TO 99
  214.                 IF i <> home(id) AND star(i).o = id THEN
  215.                     IF star(i).t > 49 THEN
  216.                         ok = 1
  217.                         FOR j = 0 TO 99
  218.                             IF star(j).o <> id AND star(j).o <> 0 THEN
  219.                                 dist = SQR(ABS(star(i).x - star(j).x) ^ 2 + ABS(star(i).y - star(j).y) ^ 2)
  220.                                 IF dist <= 350 * ratio THEN
  221.                                     ok = 0
  222.                                     EXIT FOR
  223.                                 END IF
  224.                             END IF
  225.                         NEXT
  226.                         IF ok = 1 THEN
  227.                             SendFleet i, home(id), star(i).t
  228.                             EXIT FOR
  229.                         END IF
  230.                     END IF
  231.                 END IF
  232.             NEXT
  233.             IF ok = 1 THEN EXIT FOR
  234.         END IF
  235.  
  236.         IF p = 3 THEN
  237.             sf2 = 100
  238.             FOR i = 0 TO 99
  239.                 IF star(i).o = id AND star(i).t > LL * 1.5 THEN
  240.                     sf3 = star(i).t / 2
  241.                     FOR j = 0 TO 99
  242.                         IF star(j).o <> id AND star(i).t > star(j).t * 4 THEN
  243.                             FOR k = 0 TO 99
  244.                                 IF star(k).o = id THEN
  245.                                     dist = SQR(ABS(star(k).x - star(j).x) ^ 2 + ABS(star(k).y - star(j).y) ^ 2)
  246.                                     IF dist <= 250 * ratio THEN
  247.                                         sf1 = i
  248.                                         sf2 = j
  249.                                         g = hate(id, star(j).o)
  250.                                         EXIT FOR
  251.                                     END IF
  252.                                 END IF
  253.                             NEXT
  254.                         END IF
  255.                     NEXT
  256.                     IF g = h THEN EXIT FOR
  257.                 END IF
  258.             NEXT
  259.             IF sf2 < 100 THEN
  260.                 SendFleet sf1, sf2, sf3
  261.                 sf2 = 100
  262.                 EXIT FOR
  263.             END IF
  264.         END IF
  265.  
  266.     NEXT
  267.  
  268.     GetInput
  269.  
  270.     Identify x, y '                     Identify star mouse is over if any
  271.  
  272.     count = fltcnt
  273.     i = 0
  274.     WHILE count
  275.         IF fleet(i).o <> 0 THEN
  276.             count = count - 1
  277.             IF fleet(i).x2 > fleet(i).x1 THEN
  278.                 fleet(i).x1 = fleet(i).x1 + 1
  279.             END IF
  280.             IF fleet(i).x2 < fleet(i).x1 THEN
  281.                 fleet(i).x1 = fleet(i).x1 - 1
  282.             END IF
  283.             IF fleet(i).y2 > fleet(i).y1 THEN
  284.                 fleet(i).y1 = fleet(i).y1 + 1
  285.             END IF
  286.             IF fleet(i).y2 < fleet(i).y1 THEN
  287.                 fleet(i).y1 = fleet(i).y1 - 1
  288.             END IF
  289.             IF fleet(i).x1 = fleet(i).x2 AND fleet(i).y1 = fleet(i).y2 THEN
  290.                 dst = fleet(i).d
  291.                 IF star(dst).o = fleet(i).o THEN
  292.                     star(dst).t = star(dst).t + fleet(i).t
  293.                     fleet(i).o = 0
  294.                     fltcnt = fltcnt - 1
  295.                 ELSE
  296.                     IF fleet(i).t > star(dst).t * 1.1 THEN
  297.                         alive = 1
  298.                         WHILE alive
  299.                             alive = 0
  300.                             damorg = fleet(i).t / 11 + 1
  301.                             damdst = star(dst).t / 10 + 1
  302.                             fleet(i).t = fleet(i).t - damdst
  303.                             star(dst).t = star(dst).t - damorg
  304.                             IF fleet(i).t > 0 AND star(dst).t > 0 THEN
  305.                                 alive = 1
  306.                             END IF
  307.                         WEND
  308.                         IF star(dst).t < 1 THEN
  309.                             hate(star(dst).o, fleet(i).o) = hate(star(dst).o, fleet(i).o) + 1
  310.                             star(dst).t = fleet(i).t
  311.                             star(dst).o = fleet(i).o
  312.                         END IF
  313.                         fleet(i).o = 0
  314.                         fltcnt = fltcnt - 1
  315.                     ELSE
  316.                         k = 100
  317.                         shortest = 10000
  318.                         FOR j = 0 TO 99
  319.                             IF star(j).o = fleet(i).o THEN
  320.                                 dist = SQR(ABS(star(j).x - fleet(i).x1) ^ 2 + ABS(star(j).y - fleet(i).y1) ^ 2)
  321.                                 IF dist < shortest THEN
  322.                                     shortest = dist
  323.                                     k = j
  324.                                 END IF
  325.                             END IF
  326.                         NEXT
  327.                         IF k < 100 THEN
  328.                             fleet(i).x2 = star(k).x
  329.                             fleet(i).y2 = star(k).y
  330.                             fleet(i).d = k
  331.                         END IF
  332.                     END IF
  333.                 END IF
  334.             END IF
  335.         END IF
  336.         i = i + 1
  337.     WEND
  338.  
  339. SUB GetInput
  340.  
  341.     ch = INKEY$
  342.     IF ch = CHR$(27) THEN repeat = 0
  343.     IF ch = "n" THEN NewGame
  344.     IF ch = "t" THEN tt = 1 - tt
  345.     IF ch = "p" THEN pause = 1
  346.  
  347.     WHILE (pause = 1)
  348.         IF INKEY$ = "p" THEN
  349.             pause = 0
  350.         END IF
  351.     WEND
  352.  
  353.     WHILE _MOUSEINPUT: WEND '          Eat all the mice but keep last mouse to toy with
  354.  
  355.     x = _MOUSEX
  356.     y = _MOUSEY
  357.     mb = _MOUSEBUTTON(1)
  358.     clk = 0
  359.  
  360.     IF mb = -1 AND cx = sw THEN
  361.         cx = x
  362.         cy = y
  363.     END IF
  364.  
  365.     IF mb = 0 AND cx < sw THEN
  366.         IF ABS(x - cx) < 9 AND ABS(y - cy) < 9 THEN
  367.             clk = 1
  368.         END IF
  369.         cx = sw
  370.     END IF
  371.  
  372. SUB PaintBackground
  373.     x = RND * sw
  374.     y = RND * sh
  375.     c = RND * 14 + 1
  376.     PSET (x, y), c
  377.     RANDOMIZE USING seed
  378.     FOR i = 1 TO 600 * ratio
  379.         x = RND * sw
  380.         y = RND * sh
  381.         c = RND * 14 + 1
  382.         PSET (x, y), c
  383.     NEXT
  384.  
  385. SUB Player
  386.     tmp$ = RTRIM$(strng)
  387.     IF slct = 1 THEN
  388.         nclk = 1
  389.         FOR i = 0 TO 99
  390.             IF star(i).o = 1 THEN
  391.                 dist = SQR(ABS(star(i).x - x) ^ 2 + ABS(star(i).y - y) ^ 2)
  392.                 IF dist <= 200 * ratio THEN
  393.                     nclk = 0
  394.                     EXIT FOR
  395.                 END IF
  396.             END IF
  397.         NEXT
  398.         c = 10
  399.         IF nclk = 1 THEN
  400.             c = 12
  401.             clk = 0
  402.         END IF
  403.         LINE (px, py)-(x, y), c
  404.         EXIT SUB
  405.     END IF
  406.     IF pact = 1 THEN
  407.         ShowPanel ii
  408.         IF clk = 1 THEN
  409.             x1 = panx: x2 = panx + 400 * ratio
  410.             y1 = pany: y2 = pany + 540 * ratio
  411.             IF x > x1 + 216 * ratio AND x < x1 + 366 * ratio AND y > y1 + 460 * ratio AND y < y1 + 530 * ratio THEN
  412.                 pact = 0
  413.             ELSE IF x > x1 + 20 * ratio AND x < x1 + 380 * ratio AND y > y1 + 260 * ratio AND y < y1 + 320 * ratio THEN
  414.                     dig = (x - x1 - 32 * ratio) / (38 * ratio)
  415.                     strng = tmp$ + STR$(dig)
  416.                 ELSE IF x > x1 + 266 * ratio AND x < x1 + 366 * ratio AND y > y1 + 366 * ratio AND y < y1 + 406 * ratio THEN
  417.                         strng = ""
  418.                     ELSE IF x > x1 + 32 * ratio AND x < x1 + 182 * ratio AND y > y1 + 460 * ratio AND y < y1 + 530 * ratio THEN
  419.                             value = VAL(strng)
  420.                             strng = ""
  421.                             pact = 0
  422.                             IF value <= star(srcidx).t THEN
  423.                                 SendFleet srcidx, dstidx, value
  424.                             END IF
  425.                         END IF
  426.                     END IF
  427.                 END IF
  428.             END IF
  429.         END IF
  430.     END IF
  431.  
  432. SUB Identify (x, y)
  433.     IF nclk = 0 THEN
  434.         FOR i = 0 TO 99
  435.             dx = star(i).x - x
  436.             dy = star(i).y - y
  437.             IF pact = 0 AND ABS(dx) <= star(i).s + 8 AND ABS(dy) <= star(i).s + 8 THEN
  438.                 ii = i
  439.                 IF star(i).o = 1 AND slct = 0 THEN
  440.                     IF clk THEN
  441.                         slct = 1
  442.                     END IF
  443.                     px = x
  444.                     py = y
  445.                     srcstr = star(i).n
  446.                     srcidx = i
  447.                 ELSE
  448.                     IF slct = 1 OR pact = 1 THEN
  449.                         IF clk THEN
  450.                             slct = 0
  451.                             pact = 1
  452.                             dststr = star(i).n
  453.                             dstidx = i
  454.                         END IF
  455.                     END IF
  456.                 END IF
  457.                 EXIT FOR
  458.             END IF
  459.         NEXT
  460.     END IF
  461.  
  462. SUB ShowPanel (i)
  463.     x1 = star(i).x - 420 * ratio
  464.     IF star(i).x < sw / 2 THEN x1 = star(i).x + 20 * ratio
  465.     x2 = x1 + 400 * ratio
  466.     y1 = star(i).y
  467.     IF y1 > sh - 560 * ratio THEN y1 = sh - 560 * ratio
  468.     y2 = y1 + 540 * ratio
  469.     _DEST ps
  470.     CLS 0, 8
  471.     COLOR 0, 8
  472.     _FONT ttf2
  473.     n$ = RTRIM$(srcstr)
  474.     L = _PRINTWIDTH(n$)
  475.     _PRINTSTRING ((400 * ratio - L) / 2, 8 * ratio), n$, ps
  476.     n$ = "to"
  477.     L = _PRINTWIDTH(n$)
  478.     _PRINTSTRING ((400 * ratio - L) / 2, 80 * ratio), n$, ps
  479.     n$ = RTRIM$(dststr)
  480.     L = _PRINTWIDTH(n$)
  481.     _PRINTSTRING ((400 * ratio - L) / 2, 152 * ratio), n$, ps
  482.     LINE (20 * ratio, 240 * ratio)-(380 * ratio, 240 * ratio), 0
  483.     _PRINTSTRING (20 * ratio, 260 * ratio), "0123456789", ps
  484.     _PRINTSTRING (20 * ratio, 346 * ratio), strng, ps
  485.     xo = 286 * ratio: xd = 366 * ratio: yo = 366 * ratio: yd = 406 * ratio
  486.     LINE (xo, yo)-(xd, yd), 7, BF
  487.     xo = 32 * ratio: xd = 182 * ratio: yo = 458 * ratio: yd = 530 * ratio
  488.     LINE (xo, yo)-(xd, yd), 7, BF
  489.     xo = 216 * ratio: xd = 366 * ratio: yo = 458 * ratio: yd = 530 * ratio
  490.     LINE (xo, yo)-(xd, yd), 7, BF
  491.     _FONT ttf1
  492.     COLOR 7, 8
  493.     _PRINTSTRING (100 * ratio, 112 * ratio), STR$(star(srcidx).t), ps
  494.     _PRINTSTRING (270 * ratio, 112 * ratio), STR$(star(dstidx).t), ps
  495.     COLOR 0, 7
  496.     _PRINTSTRING (300 * ratio, 380 * ratio), "CLEAR", ps
  497.     _FONT ttf2
  498.     _PRINTSTRING (60 * ratio, 458 * ratio), "Ok", ps
  499.     _PRINTSTRING (220 * ratio, 458 * ratio), "Quit", ps
  500.     _PUTIMAGE (x1, y1), ps, 0, (0, 0)-(400 * ratio, 540 * ratio)
  501.     panx = x1: pany = y1
  502.     _DEST 0
  503.  
  504. SUB PaintStars
  505.     FOR i = 0 TO 99
  506.         c = star(i).c
  507.         x = star(i).x
  508.         y = star(i).y
  509.         o = star(i).o
  510.         CIRCLE (x, y), (star(i).s + 8) * ratio, c
  511.         COLOR 15
  512.         IF o > 0 THEN
  513.             PAINT (x, y), o + 8, c
  514.         END IF
  515.         _FONT ttf1
  516.         IF tt THEN
  517.             n$ = star(i).n
  518.             n$ = RTRIM$(n$)
  519.             L = _PRINTWIDTH(n$)
  520.             _PRINTSTRING (x + 10, y), STR$(star(i).p), 0
  521.         ELSE
  522.             n$ = STR$(star(i).t)
  523.             L = _PRINTWIDTH(n$)
  524.         END IF
  525.         _PRINTSTRING (x - L / 2, y + 14), n$, 0
  526.     NEXT
  527.  
  528. SUB NewGame
  529.     DIM k AS INTEGER
  530.     DIM r AS INTEGER
  531.     DIM dx AS INTEGER
  532.     DIM dy AS INTEGER
  533.     DIM n AS STRING * 10
  534.     FOR i = 0 TO 999
  535.         fleet(i).o = 0
  536.     NEXT
  537.     slct = 0
  538.     fltcnt = 0
  539.     LL = 0
  540.     seed = RND * 1000
  541.     star(0).n = "Sol"
  542.     star(0).x = RND * (sw - sww) + swn
  543.     star(0).y = RND * (sh - shw) + shn
  544.     star(0).c = 14
  545.     star(0).s = 2
  546.     star(0).o = 1
  547.     star(0).p = 10
  548.     star(0).t = 100
  549.     home(1) = 0
  550.     FOR i = 1 TO 99
  551.         k = 1
  552.         WHILE k
  553.             k = 0
  554.             x = RND * (sw - sww) + swn
  555.             y = RND * (sh - shw) + shn
  556.             r = INT(RND * 200)
  557.             n = names(r)
  558.             FOR j = 0 TO i - 1
  559.                 dx = x - star(j).x
  560.                 dy = y - star(j).y
  561.                 IF ABS(dx) < sww AND ABS(dy) < shw THEN
  562.                     k = 1
  563.                 END IF
  564.                 IF n = star(j).n THEN
  565.                     k = 1
  566.                 END IF
  567.             NEXT
  568.         WEND
  569.         star(i).n = n
  570.         star(i).x = x
  571.         star(i).y = y
  572.         star(i).c = RND * 6 + 9
  573.         star(i).s = RND * 5
  574.         star(i).o = 0
  575.         star(i).p = star(i).s + (RND * 5) + 3
  576.         star(i).t = 0
  577.     NEXT
  578.     FOR i = 2 TO 6
  579.         ok = 0
  580.         WHILE (ok < 1)
  581.             ok = 1
  582.             j = RND * 100
  583.             FOR k = 1 TO i - 1
  584.                 dist = SQR(ABS(star(j).x - star(home(k)).x) ^ 2 + ABS(star(j).y - star(home(k)).y) ^ 2)
  585.                 IF dist < 500 * ratio THEN
  586.                     ok = 0
  587.                     EXIT FOR
  588.                 END IF
  589.             NEXT
  590.             IF ok = 1 THEN
  591.                 ok = -1
  592.                 FOR k = 0 TO 99
  593.                     dist = SQR(ABS(star(j).x - star(k).x) ^ 2 + ABS(star(j).y - star(k).y) ^ 2)
  594.                     IF dist <= 250 THEN ok = ok + 1
  595.                     IF ok = 1 THEN EXIT FOR
  596.                 NEXT
  597.             END IF
  598.         WEND
  599.         home(i) = j
  600.         star(j).o = i
  601.         star(j).t = 100
  602.     NEXT
  603.  
  604. ' A lot of star names I made up
  605.  
  606. SUB StarNames
  607.     names(0) = "Acamar"
  608.     names(1) = "Arcab"
  609.     names(2) = "Acrux"
  610.     names(3) = "Adhara"
  611.     names(4) = "Arneb"
  612.     names(5) = "Antares"
  613.     names(6) = "Arcturus"
  614.     names(7) = "Atria"
  615.     names(8) = "Beid"
  616.     names(9) = "Betelgeuse"
  617.     names(10) = "Botein"
  618.     names(11) = "Beemim"
  619.     names(12) = "Bellatrix"
  620.     names(13) = "Bharani"
  621.     names(14) = "Biham"
  622.     names(15) = "Brachium"
  623.     names(16) = "Canopus"
  624.     names(17) = "Capella"
  625.     names(18) = "Castor"
  626.     names(19) = "Chara"
  627.     names(20) = "Cursa"
  628.     names(21) = "Copernicus"
  629.     names(22) = "Chalawan"
  630.     names(23) = "Chertan"
  631.     names(24) = "Dabih"
  632.     names(25) = "Dalim"
  633.     names(26) = "Deneb"
  634.     names(27) = "Denebola"
  635.     names(28) = "Diadem"
  636.     names(29) = "Diphda"
  637.     names(30) = "Dschubba"
  638.     names(31) = "Dziban"
  639.     names(32) = "Edasich"
  640.     names(33) = "Electra"
  641.     names(34) = "Elgafar"
  642.     names(35) = "Elkurud"
  643.     names(36) = "Elnath"
  644.     names(37) = "Eltanin"
  645.     names(38) = "Enif"
  646.     names(39) = "Errai"
  647.     names(40) = "Fafnir"
  648.     names(41) = "Fang"
  649.     names(42) = "Fawaris"
  650.     names(43) = "Felis"
  651.     names(44) = "Fomalhaut"
  652.     names(45) = "Fulu"
  653.     names(46) = "Fumal"
  654.     names(47) = "Furud"
  655.     names(48) = "Garnet"
  656.     names(49) = "Giausar"
  657.     names(50) = "Gienah"
  658.     names(51) = "Ginan"
  659.     names(52) = "Gomeisa"
  660.     names(53) = "Graffias"
  661.     names(54) = "Grumium"
  662.     names(55) = "Gudja"
  663.     names(56) = "Hadar"
  664.     names(57) = "Haedus"
  665.     names(58) = "Hamal"
  666.     names(59) = "Hassaleh"
  667.     names(60) = "Hatysa"
  668.     names(61) = "Helvetios"
  669.     names(62) = "Heze"
  670.     names(63) = "Homan"
  671.     names(64) = "Iklil"
  672.     names(65) = "Imai"
  673.     names(66) = "Intercrus"
  674.     names(67) = "Izar"
  675.     names(68) = "Iccar"
  676.     names(69) = "Inar"
  677.     names(70) = "Iaeth"
  678.     names(71) = "Imaous"
  679.     names(72) = "Jabbah"
  680.     names(73) = "Jishui"
  681.     names(74) = "Jax"
  682.     names(75) = "Jalae"
  683.     names(76) = "Jewel"
  684.     names(77) = "Jumbo"
  685.     names(78) = "Jerue"
  686.     names(79) = "Jabear"
  687.     names(80) = "Kakkab"
  688.     names(81) = "Kang"
  689.     names(82) = "Kekouan"
  690.     names(83) = "Keid"
  691.     names(84) = "Kitalpha"
  692.     names(85) = "Kochab"
  693.     names(86) = "Kolob"
  694.     names(87) = "Kobol"
  695.     names(88) = "Larawag"
  696.     names(89) = "Lesath"
  697.     names(90) = "Libertas"
  698.     names(91) = "Lich"
  699.     names(92) = "Lilly"
  700.     names(93) = "Laddel"
  701.     names(94) = "Luminous"
  702.     names(95) = "Lasacious"
  703.     names(96) = "Mizar"
  704.     names(97) = "Markab"
  705.     names(98) = "Matar"
  706.     names(99) = "Mintaka"
  707.     names(100) = "Meleph"
  708.     names(101) = "Menkar"
  709.     names(102) = "Merga"
  710.     names(103) = "Merope"
  711.     names(104) = "Nahn"
  712.     names(105) = "Naos"
  713.     names(106) = "Nashira"
  714.     names(107) = "Navi"
  715.     names(108) = "Nekkar"
  716.     names(109) = "Nembus"
  717.     names(110) = "Nihal"
  718.     names(111) = "Nunki"
  719.     names(112) = "Ogma"
  720.     names(113) = "Okab"
  721.     names(114) = "Ohmy"
  722.     names(115) = "Oragami"
  723.     names(116) = "Origen"
  724.     names(117) = "Omanii"
  725.     names(118) = "Obytewa"
  726.     names(119) = "Oglok"
  727.     names(120) = "Phact"
  728.     names(121) = "Pherkad"
  729.     names(122) = "Pleione"
  730.     names(122) = "Polaris"
  731.     names(123) = "Pollux"
  732.     names(124) = "Procyon"
  733.     names(125) = "Proxima"
  734.     names(126) = "Polis"
  735.     names(127) = "Quaint"
  736.     names(128) = "Quazzat"
  737.     names(129) = "Quetzal"
  738.     names(130) = "Qussol"
  739.     names(131) = "Quella"
  740.     names(132) = "Quyaeo"
  741.     names(133) = "Ququdas"
  742.     names(134) = "Quekak"
  743.     names(135) = "Rasalas"
  744.     names(136) = "Regor"
  745.     names(137) = "Regulus"
  746.     names(138) = "Rigel"
  747.     names(139) = "Revati"
  748.     names(140) = "Rotenev"
  749.     names(141) = "Rukbat"
  750.     names(142) = "Rastaban"
  751.     names(143) = "Sabik"
  752.     names(144) = "Sadr"
  753.     names(145) = "Saiph"
  754.     names(146) = "Sargas"
  755.     names(147) = "Sarin"
  756.     names(148) = "Syrma"
  757.     names(149) = "Spica"
  758.     names(150) = "Sirius"
  759.     names(151) = "Tarazed"
  760.     names(152) = "Taygeta"
  761.     names(153) = "Tejat"
  762.     names(154) = "Thabit"
  763.     names(155) = "Thuban"
  764.     names(156) = "Tiaki"
  765.     names(157) = "Toliman"
  766.     names(158) = "Torcular"
  767.     names(157) = "Umala"
  768.     names(158) = "Ulatte"
  769.     names(159) = "Ubbessa"
  770.     names(160) = "Unoless"
  771.     names(161) = "Umaddem"
  772.     names(162) = "Ummbra"
  773.     names(162) = "Uniqu"
  774.     names(163) = "Uzzaal"
  775.     names(164) = "Vega"
  776.     names(165) = "Veritate"
  777.     names(166) = "Vindetrix"
  778.     names(167) = "Vedas"
  779.     names(168) = "Vergg"
  780.     names(169) = "Vacant"
  781.     names(170) = "Vucae"
  782.     names(171) = "Vicar"
  783.     names(172) = "Wasat"
  784.     names(173) = "Wazn"
  785.     names(174) = "Wezen"
  786.     names(175) = "Waiten"
  787.     names(176) = "Wachar"
  788.     names(177) = "Wheelz"
  789.     names(178) = "Whatsp"
  790.     names(179) = "Wassand"
  791.     names(180) = "Xenno"
  792.     names(181) = "Xyphod"
  793.     names(182) = "Xu"
  794.     names(183) = "Xaal"
  795.     names(184) = "Xyross"
  796.     names(185) = "Xiggot"
  797.     names(186) = "Xirrks"
  798.     names(187) = "Yed"
  799.     names(188) = "Yildun"
  800.     names(189) = "Yundun"
  801.     names(190) = "Yavyo"
  802.     names(191) = "Yotrac"
  803.     names(192) = "Yxzoqu"
  804.     names(193) = "Ynnot"
  805.     names(194) = "Zaniah"
  806.     names(195) = "Zaurak"
  807.     names(196) = "Zhang"
  808.     names(197) = "Zibal"
  809.     names(198) = "Zosma"
  810.     names(199) = "Zuben"
  811.  
  812.  
  813.  
Title: Re: Beyond Sol
Post by: bplus on December 17, 2019, 10:06:17 am
Quote
Any feedback good or bad is not only welcome it is needed for this project to last much longer. I'll be on to something else if no one is interested. As it is it seems like at least an interesting example of GUI on demand.

OK in last post you start explaining some things, I have no idea idea why I want to send ships anywhere? So if you want a new audience, you might consider explaining the the game setup and objectives.
Title: Re: Beyond Sol
Post by: romichess on December 17, 2019, 11:31:31 am
OK in last post you start explaining some things, I have no idea idea why I want to send ships anywhere? So if you want a new audience, you might consider explaining the the game setup and objectives.
From the op.

The game lives! Save humanity from the alien threat!!

To play just click on one of your stars. Then click (don't drag) on any other star and then send ships. That is all there is to it. The esc key exits the game. The "t' key toggles the star names. Look for the blue star. That is Sol the human's home star.


I'm pretty sure any child could figure it out from that. :)
Title: Re: Beyond Sol
Post by: bplus on December 17, 2019, 12:25:03 pm
LOL sure a child can figure it out but well a little far from that...

OK so I click Sol and then click another star and a blue bubble travels (and not as the crow flies, which I can fix if you are interested) ever so slowly from Sol to planet and back and then nothing changes... ??? Still don't get it?
Title: Re: Beyond Sol
Post by: romichess on December 18, 2019, 12:28:53 am
LOL sure a child can figure it out but well a little far from that...

OK so I click Sol and then click another star and a blue bubble travels (and not as the crow flies, which I can fix if you are interested) ever so slowly from Sol to planet and back and then nothing changes... ??? Still don't get it?

You have to send enough ships to take over the star system. If you don't the fleet turns around. Afterall they don't want to die for nothing, LOL. The graphics are not the final graphics. I'm just working on game play right now. When the ships are not traveling as the crow flies it is unknown by the player where the computers ships are going until they make the turn. In some cases that gives the player little time to react. It is a work in progress.
Title: Re: Beyond Sol
Post by: Kazman on December 18, 2019, 10:07:25 am
I'm playing the game, I like it but mouse reactions are too slow... I often had to click several times on every button in order to make effect
Title: Re: Beyond Sol
Post by: romichess on December 18, 2019, 04:50:48 pm
I'm playing the game, I like it but mouse reactions are too slow... I often had to click several times on every button in order to make effect

Thank you for trying the game and thanks for liking it! The mouse is a problem. It seems to be the speed of the click. If I hesitate in the button down position for just a moment before letting the button up it works every time. If I could figure out why then maybe it can be fixed. Also my goal is for the computer to be a challenge without resorting to cheating like so many games do.
Title: Re: Beyond Sol
Post by: romichess on December 20, 2019, 06:15:23 am
The news is that the mouse problem is solved. It is silky smooth now. Still if one is in a hurry moving and clicking the mouse at the same time especially if clicking at double click speed there are still issues. But that is like at crazy speed. One can operate the mouse very quickly without any problems at all. And clicking on the numbers is more accurate as well. Also the computer target selection code has been completely rewritten. I do have a friend that test almost every new version. And he really likes this version. He says it is more challenging. So it seems that the playing algorithm may be finalized soon.

In the next update (not this one) starbases will be added. Basically starbases will be from level 0 to 9. The math will be like a lvl 0 (1) will be like 1 x 1 x 1000 ships. They will do the damage of a thousand ships but only cost 500 ships to build. They will take normal damage. A lvl 9 (10) starbase will be like 10 x 10 x 1000 ships and they will do the damage of 100,000 ships but because of their size and thickness of hull they will take half damage. It will cost ships at one fourth to repair them. Just wanted to let everyone know it was coming! :)

Code: QB64: [Select]
  1. TYPE stars
  2.     n AS STRING * 10 '                 Name of star
  3.     x AS INTEGER '                     x-position
  4.     y AS INTEGER '                     y-position
  5.     o AS INTEGER '                     Owner
  6.     c AS INTEGER '                     Color
  7.     s AS INTEGER '                     Size
  8.     t AS LONG '                     (Type of planetary system; terran, frozen, radiated, toxic, etc.) Ships
  9.     p AS INTEGER '                     (Population) For now ships produced per turn
  10.  
  11. TYPE FLEETS
  12.     t AS LONG
  13.     x1 AS INTEGER
  14.     y1 AS INTEGER
  15.     x2 AS INTEGER
  16.     y2 AS INTEGER
  17.     o AS INTEGER
  18.     d AS INTEGER
  19.  
  20. 'DECLARE SUB NewGame
  21. 'DECLARE SUB PaintStars
  22. 'DECLARE SUB StarNames
  23. 'DECLARE SUB ShowPanel (i)
  24. 'DECLARE SUB Identify (x, y)
  25. 'DECLARE SUB PaintBackground
  26. 'DECLARE SUB GetInput
  27.  
  28. ' Global variables shared because they are needed in more than one routine
  29. DIM SHARED sw AS INTEGER '             Screen Width
  30. DIM SHARED sh AS INTEGER '             Screen Height
  31. DIM SHARED sww AS INTEGER '            Screen Width Wide margin
  32. DIM SHARED swn AS INTEGER '            Screen Width Narrow adjustment
  33. DIM SHARED shw AS INTEGER '            Screen Height Wide margine
  34. DIM SHARED shn AS INTEGER '            Screen Height Narrow adjustment
  35. DIM SHARED nw AS INTEGER '             games Natural screen Width
  36. DIM SHARED nh AS INTEGER '             games Natural screen Height
  37. DIM SHARED ratio AS _FLOAT '           the Ratio of the games natural screen width to the actual
  38. DIM SHARED star(100) AS stars '        100 stars - may change
  39. DIM SHARED names(200) AS STRING * 10 ' 200 star names
  40. DIM SHARED seed AS INTEGER '           Seed to prime the Randomizer to display identical background each frame
  41. DIM SHARED home(7) AS INTEGER '        The starting star for each player. The human always has star(0), Sol
  42. DIM SHARED tt AS INTEGER '             tt = 0 star names displayed, tt = 0 star names not didplayed
  43. DIM SHARED ch AS STRING * 1 '          Game loop key input variable
  44. DIM SHARED repeat AS INTEGER '         Game loop control variable
  45. DIM SHARED fleet(1000) AS FLEETS
  46. DIM SHARED srcstr AS STRING * 10
  47. DIM SHARED dststr AS STRING * 10
  48. DIM SHARED panx, pany AS INTEGER
  49. DIM SHARED strng AS STRING * 10
  50. DIM SHARED hate(7, 7) AS INTEGER
  51.  
  52. sw = _DESKTOPWIDTH '                   native video with of syatem
  53. sww = sw / 24 '                        margin based on native video width to keep stars away from edge
  54. swn = sw / 48 '                        adjustment that works with sww to keep stars away from left and top of screen
  55. nw = 1920
  56.  
  57. ratio = sw / 1920 '                    Used to adjust distances and sizes for various screen modes
  58.  
  59. shw = sh / 20
  60. shn = sh / 40
  61. nh = 1080
  62.  
  63. tt = 0
  64. cx = sw
  65. cp = 100
  66. h = 100
  67. ar = 0
  68. rng = 200
  69. slct = 0
  70. strng = ""
  71.  
  72. SCREEN _NEWIMAGE(sw, sh, 256) '        creates a screen the resolution of the users native system
  73.  
  74.  
  75. ps = _NEWIMAGE(400 * ratio, 540 * ratio, 256)
  76.  
  77. StarNames '                            Routine to load star names into string array stars(200)
  78.  
  79. NewGame
  80.  
  81. ttf1 = _LOADFONT("cyberbit.ttf", 16 * ratio, "BOLD")
  82. ttf2 = _LOADFONT("cyberbit.ttf", 72 * ratio, "BOLD")
  83.  
  84. repeat = 1
  85.  
  86. WHILE repeat
  87.  
  88.     _LIMIT 60 '                        Set to 200 frames per second
  89.  
  90.     id = INT(RND * 5 + 2)
  91.  
  92.     CLS
  93.  
  94.     PaintBackground
  95.  
  96.     PaintStars
  97.  
  98.     PaintFleet
  99.  
  100.     GetInput
  101.  
  102.     Identify x, y
  103.  
  104.     Player
  105.  
  106.     Computer
  107.  
  108.     _DISPLAY
  109.  
  110.  
  111.  
  112. SUB PaintFleet
  113.     count = fltcnt
  114.     i = 0
  115.     WHILE count
  116.         IF fleet(i).o <> 0 THEN
  117.             CIRCLE (fleet(i).x1, fleet(i).y1), 3, fleet(i).o + 8
  118.             count = count - 1
  119.         END IF
  120.         i = i + 1
  121.     WEND
  122.  
  123. SUB SendFleet (org, dst, ships)
  124.     FOR i = 0 TO 999
  125.         IF fleet(i).o = 0 THEN
  126.             fleet(i).o = star(org).o
  127.             fleet(i).d = dst
  128.             fleet(i).x1 = star(org).x
  129.             fleet(i).y1 = star(org).y
  130.             fleet(i).x2 = star(dst).x
  131.             fleet(i).y2 = star(dst).y
  132.             fleet(i).t = ships
  133.             star(org).t = star(org).t - ships
  134.             fltcnt = fltcnt + 1
  135.             EXIT FOR
  136.         END IF
  137.     NEXT
  138.     LL = LL + 1
  139.  
  140. SUB Computer
  141.     FOR i = 0 TO 99
  142.         r = INT(RND * 60)
  143.         IF r < star(i).p THEN
  144.             IF star(i).o > 0 THEN
  145.                 star(i).t = star(i).t + 1
  146.             ELSE
  147.                 IF INT(RND * 10) < 3 THEN
  148.                     star(i).t = star(i).t + 1
  149.                 END IF
  150.             END IF
  151.         END IF
  152.     NEXT
  153.  
  154.     org = home(id)
  155.     IF star(org).o <> id THEN
  156.         FOR j = 0 TO 99
  157.             IF star(j).o = id THEN home(id) = j: EXIT FOR
  158.         NEXT
  159.     END IF
  160.  
  161.     FOR p = 0 TO 3
  162.  
  163.         IF p = 0 THEN
  164.             away = 10000
  165.             i = home(id)
  166.             IF star(i).t > LL * 2 THEN
  167.                 FOR j = 0 TO 99
  168.                     IF star(j).o <> id THEN
  169.                         dist = SQR(ABS(star(i).x - star(j).x) ^ 2 + ABS(star(i).y - star(j).y) ^ 2)
  170.                         IF dist <= 250 AND star(j).t > star(i).t / 3 THEN
  171.                             away = 10000
  172.                             EXIT FOR
  173.                         END IF
  174.                         ok = 0
  175.                         FOR K = 0 TO 99
  176.                             IF star(K).o = id THEN
  177.                                 dist = SQR(ABS(star(j).x - star(K).x) ^ 2 + ABS(star(j).y - star(K).y) ^ 2)
  178.                                 IF dist <= 250 THEN
  179.                                     ok = 1
  180.                                     EXIT FOR
  181.                                 END IF
  182.                             END IF
  183.                         NEXT
  184.                         IF ok = 1 THEN
  185.                             dist = SQR(ABS(star(i).x - star(j).x) ^ 2 + ABS(star(i).y - star(j).y) ^ 2)
  186.                             IF dist < away AND star(i).t > star(j).t * 3 THEN
  187.                                 away = dist
  188.                                 jay = j
  189.                             END IF
  190.                         END IF
  191.                     END IF
  192.                 NEXT
  193.                 IF away < 10000 THEN
  194.                     SendFleet i, jay, star(i).t / 2
  195.                 END IF
  196.             END IF
  197.         END IF
  198.  
  199.         IF p = 1 THEN
  200.             sf2 = 100
  201.             FOR i = 0 TO 99
  202.                 IF star(i).o = id AND i <> home(id) AND star(i).t > LL * 1.5 THEN
  203.                     sf3 = star(i).t / 2
  204.                     FOR j = 0 TO 99
  205.                         IF star(j).o <> id AND star(i).t > star(j).t * 4 THEN
  206.                             FOR K = 0 TO 99
  207.                                 IF star(K).o = id THEN
  208.                                     dist = SQR(ABS(star(K).x - star(j).x) ^ 2 + ABS(star(K).y - star(j).y) ^ 2)
  209.                                     IF dist <= 250 * ratio THEN
  210.                                         sf1 = i
  211.                                         sf2 = j
  212.                                         EXIT FOR
  213.                                     END IF
  214.                                 END IF
  215.                             NEXT
  216.                         END IF
  217.                     NEXT
  218.                     IF sf2 < 100 THEN EXIT FOR
  219.                 END IF
  220.             NEXT
  221.             IF sf2 < 100 THEN
  222.                 SendFleet sf1, sf2, sf3
  223.                 EXIT FOR
  224.             END IF
  225.         END IF
  226.  
  227.         IF p = 2 THEN
  228.             FOR i = 0 TO 99
  229.                 IF i <> home(id) AND star(i).o = id THEN
  230.                     IF star(i).t > 49 THEN
  231.                         ok = 1
  232.                         FOR j = 0 TO 99
  233.                             IF star(j).o <> id AND star(j).o <> 0 THEN
  234.                                 dist = SQR(ABS(star(i).x - star(j).x) ^ 2 + ABS(star(i).y - star(j).y) ^ 2)
  235.                                 IF dist <= 350 * ratio THEN
  236.                                     ok = 0
  237.                                     EXIT FOR
  238.                                 END IF
  239.                             END IF
  240.                         NEXT
  241.                         IF ok = 1 THEN
  242.                             SendFleet i, home(id), star(i).t
  243.                             EXIT FOR
  244.                         END IF
  245.                     END IF
  246.                 END IF
  247.             NEXT
  248.             IF ok = 1 THEN EXIT FOR
  249.         END IF
  250.  
  251.         IF p = 3 THEN
  252.             ok = 0
  253.             FOR i = 0 TO 99
  254.                 IF i <> home(id) AND star(i).o = id THEN
  255.                     IF star(i).t > LL * 1.5 + star(i).p * 50 THEN
  256.                         ok = 1
  257.                         EXIT FOR
  258.                     END IF
  259.                 END IF
  260.             NEXT
  261.             IF ok = 1 THEN
  262.                 SendFleet i, home(id), star(i).t / 4
  263.                 EXIT FOR
  264.             END IF
  265.         END IF
  266.  
  267.     NEXT
  268.  
  269.     count = fltcnt
  270.     i = 0
  271.     WHILE count
  272.         IF fleet(i).o <> 0 THEN
  273.             count = count - 1
  274.             IF fleet(i).x2 > fleet(i).x1 THEN
  275.                 fleet(i).x1 = fleet(i).x1 + 1
  276.             END IF
  277.             IF fleet(i).x2 < fleet(i).x1 THEN
  278.                 fleet(i).x1 = fleet(i).x1 - 1
  279.             END IF
  280.             IF fleet(i).y2 > fleet(i).y1 THEN
  281.                 fleet(i).y1 = fleet(i).y1 + 1
  282.             END IF
  283.             IF fleet(i).y2 < fleet(i).y1 THEN
  284.                 fleet(i).y1 = fleet(i).y1 - 1
  285.             END IF
  286.             IF fleet(i).x1 = fleet(i).x2 AND fleet(i).y1 = fleet(i).y2 THEN
  287.                 dst = fleet(i).d
  288.                 IF star(dst).o = fleet(i).o THEN
  289.                     star(dst).t = star(dst).t + fleet(i).t
  290.                     fleet(i).o = 0
  291.                     fltcnt = fltcnt - 1
  292.                 ELSE
  293.                     IF fleet(i).t > star(dst).t * 0.6 THEN
  294.                         alive = 1
  295.                         WHILE alive
  296.                             alive = 0
  297.                             damorg = fleet(i).t / 10 + 1
  298.                             damdst = star(dst).t / 9 + 1
  299.                             fleet(i).t = fleet(i).t - damdst
  300.                             star(dst).t = star(dst).t - damorg
  301.                             IF fleet(i).t > 0 AND star(dst).t > 0 THEN
  302.                                 alive = 1
  303.                             END IF
  304.                         WEND
  305.                         IF star(dst).t < 1 THEN
  306.                             hate(star(dst).o, fleet(i).o) = hate(star(dst).o, fleet(i).o) + 1
  307.                             star(dst).t = fleet(i).t
  308.                             star(dst).o = fleet(i).o
  309.                         END IF
  310.                         fleet(i).o = 0
  311.                         fltcnt = fltcnt - 1
  312.                     ELSE
  313.                         K = 100
  314.                         shortest = 10000
  315.                         FOR j = 0 TO 99
  316.                             IF star(j).o = fleet(i).o THEN
  317.                                 dist = SQR(ABS(star(j).x - fleet(i).x1) ^ 2 + ABS(star(j).y - fleet(i).y1) ^ 2)
  318.                                 IF dist < shortest THEN
  319.                                     shortest = dist
  320.                                     K = j
  321.                                 END IF
  322.                             END IF
  323.                         NEXT
  324.                         IF K < 100 THEN
  325.                             fleet(i).x2 = star(K).x
  326.                             fleet(i).y2 = star(K).y
  327.                             fleet(i).d = K
  328.                         END IF
  329.                     END IF
  330.                 END IF
  331.             END IF
  332.         END IF
  333.         i = i + 1
  334.     WEND
  335.  
  336. SUB GetInput
  337.  
  338.     ch = INKEY$
  339.     IF ch = CHR$(27) THEN repeat = 0
  340.     IF ch = "n" THEN NewGame
  341.     IF ch = "t" THEN tt = 1 - tt
  342.     IF ch = "p" THEN pause = 1
  343.  
  344.     WHILE (pause = 1)
  345.         IF INKEY$ = "p" THEN
  346.             pause = 0
  347.         END IF
  348.     WEND
  349.  
  350.     clk = 0
  351.  
  352.  
  353.         x = _MOUSEX
  354.         y = _MOUSEY
  355.         mb = _MOUSEBUTTON(1)
  356.  
  357.         IF mb AND cx = sw THEN cx = x
  358.  
  359.     WEND
  360.  
  361.     IF mb = 0 AND cx < sw THEN clk = 1
  362.  
  363.     cx = sw
  364.  
  365.     x = _MOUSEX
  366.     y = _MOUSEY
  367.  
  368.  
  369. SUB PaintBackground
  370.     x = RND * sw
  371.     y = RND * sh
  372.     c = RND * 14 + 1
  373.     PSET (x, y), c
  374.     RANDOMIZE USING seed
  375.     FOR i = 1 TO 600 * ratio
  376.         x = RND * sw
  377.         y = RND * sh
  378.         c = RND * 14 + 1
  379.         PSET (x, y), c
  380.     NEXT
  381.  
  382. SUB Player
  383.     tmp$ = RTRIM$(strng)
  384.     IF slct = 1 THEN
  385.         nclk = 1
  386.         FOR i = 0 TO 99
  387.             IF star(i).o = 1 THEN
  388.                 dist = SQR(ABS(star(i).x - x) ^ 2 + ABS(star(i).y - y) ^ 2)
  389.                 IF dist <= 250 * ratio THEN
  390.                     nclk = 0
  391.                     EXIT FOR
  392.                 END IF
  393.             END IF
  394.         NEXT
  395.         c = 10
  396.         IF nclk = 1 THEN
  397.             c = 12
  398.             clk = 0
  399.         END IF
  400.         LINE (px, py)-(x, y), c
  401.         n$ = STR$(INT(dist))
  402.         _PRINTSTRING (x + 20, y), n$, 0
  403.         EXIT SUB
  404.     END IF
  405.     IF pact = 1 THEN
  406.         ShowPanel ii
  407.         IF clk = 1 THEN
  408.             x1 = panx: x2 = panx + 400 * ratio
  409.             y1 = pany: y2 = pany + 540 * ratio
  410.             IF x > x1 + 216 * ratio AND x < x1 + 366 * ratio AND y > y1 + 460 * ratio AND y < y1 + 530 * ratio THEN
  411.                 pact = 0
  412.             ELSE IF x > x1 + 20 * ratio AND x < x1 + 380 * ratio AND y > y1 + 260 * ratio AND y < y1 + 320 * ratio THEN
  413.                     dig = (x - x1 - 32 * ratio) / (37 * ratio)
  414.                     strng = tmp$ + STR$(dig)
  415.                 ELSE IF x > x1 + 266 * ratio AND x < x1 + 366 * ratio AND y > y1 + 366 * ratio AND y < y1 + 406 * ratio THEN
  416.                         strng = ""
  417.                     ELSE IF x > x1 + 32 * ratio AND x < x1 + 182 * ratio AND y > y1 + 460 * ratio AND y < y1 + 530 * ratio THEN
  418.                             value = VAL(strng)
  419.                             strng = ""
  420.                             pact = 0
  421.                             IF value <= star(srcidx).t THEN
  422.                                 SendFleet srcidx, dstidx, value
  423.                             END IF
  424.                         END IF
  425.                     END IF
  426.                 END IF
  427.             END IF
  428.         END IF
  429.     END IF
  430.  
  431. SUB Identify (x, y)
  432.     IF nclk = 0 THEN
  433.         FOR i = 0 TO 99
  434.             dx = star(i).x - x
  435.             dy = star(i).y - y
  436.             IF pact = 0 AND ABS(dx) <= star(i).s + 8 AND ABS(dy) <= star(i).s + 8 THEN
  437.                 ii = i
  438.                 IF star(i).o = 1 AND slct = 0 THEN
  439.                     IF clk THEN
  440.                         slct = 1
  441.                     END IF
  442.                     px = x
  443.                     py = y
  444.                     srcstr = star(i).n
  445.                     srcidx = i
  446.                 ELSE
  447.                     IF slct = 1 OR pact = 1 THEN
  448.                         IF clk THEN
  449.                             slct = 0
  450.                             pact = 1
  451.                             dststr = star(i).n
  452.                             dstidx = i
  453.                         END IF
  454.                     END IF
  455.                 END IF
  456.                 EXIT FOR
  457.             END IF
  458.         NEXT
  459.     END IF
  460.  
  461. SUB ShowPanel (i)
  462.     x1 = star(i).x - 420 * ratio
  463.     IF star(i).x < sw / 2 THEN x1 = star(i).x + 20 * ratio
  464.     x2 = x1 + 400 * ratio
  465.     y1 = star(i).y
  466.     IF y1 > sh - 560 * ratio THEN y1 = sh - 560 * ratio
  467.     y2 = y1 + 540 * ratio
  468.     _DEST ps
  469.     CLS 0, 8
  470.     COLOR 0, 8
  471.     _FONT ttf2
  472.     n$ = RTRIM$(srcstr)
  473.     L = _PRINTWIDTH(n$)
  474.     _PRINTSTRING ((400 * ratio - L) / 2, 8 * ratio), n$, ps
  475.     n$ = "to"
  476.     L = _PRINTWIDTH(n$)
  477.     _PRINTSTRING ((400 * ratio - L) / 2, 80 * ratio), n$, ps
  478.     n$ = RTRIM$(dststr)
  479.     L = _PRINTWIDTH(n$)
  480.     _PRINTSTRING ((400 * ratio - L) / 2, 152 * ratio), n$, ps
  481.     LINE (20 * ratio, 240 * ratio)-(380 * ratio, 240 * ratio), 0
  482.     _PRINTSTRING (20 * ratio, 260 * ratio), "0123456789", ps
  483.     _PRINTSTRING (20 * ratio, 346 * ratio), strng, ps
  484.     xo = 286 * ratio: xd = 366 * ratio: yo = 366 * ratio: yd = 406 * ratio
  485.     LINE (xo, yo)-(xd, yd), 7, BF
  486.     xo = 32 * ratio: xd = 182 * ratio: yo = 458 * ratio: yd = 530 * ratio
  487.     LINE (xo, yo)-(xd, yd), 7, BF
  488.     xo = 216 * ratio: xd = 366 * ratio: yo = 458 * ratio: yd = 530 * ratio
  489.     LINE (xo, yo)-(xd, yd), 7, BF
  490.     _FONT ttf1
  491.     COLOR 7, 8
  492.     _PRINTSTRING (100 * ratio, 112 * ratio), STR$(star(srcidx).t), ps
  493.     _PRINTSTRING (270 * ratio, 112 * ratio), STR$(star(dstidx).t), ps
  494.     COLOR 0, 7
  495.     _PRINTSTRING (300 * ratio, 380 * ratio), "CLEAR", ps
  496.     _FONT ttf2
  497.     _PRINTSTRING (60 * ratio, 458 * ratio), "Ok", ps
  498.     _PRINTSTRING (220 * ratio, 458 * ratio), "Quit", ps
  499.     _PUTIMAGE (x1, y1), ps, 0, (0, 0)-(400 * ratio, 540 * ratio)
  500.     panx = x1: pany = y1
  501.     _DEST 0
  502.  
  503. SUB PaintStars
  504.     FOR i = 0 TO 99
  505.         c = star(i).c
  506.         x = star(i).x
  507.         y = star(i).y
  508.         o = star(i).o
  509.         CIRCLE (x, y), (star(i).s + 8) * ratio, c
  510.         COLOR 15
  511.         IF o > 0 THEN
  512.             PAINT (x, y), o + 8, c
  513.         END IF
  514.         _FONT ttf1
  515.         IF tt THEN
  516.             n$ = star(i).n
  517.             n$ = RTRIM$(n$)
  518.             L = _PRINTWIDTH(n$)
  519.             _PRINTSTRING (x + 10, y), STR$(star(i).p), 0
  520.         ELSE
  521.             n$ = STR$(star(i).t)
  522.             L = _PRINTWIDTH(n$)
  523.         END IF
  524.         _PRINTSTRING (x - L / 2, y + 14), n$, 0
  525.     NEXT
  526.  
  527. SUB NewGame
  528.     DIM k AS INTEGER
  529.     DIM r AS INTEGER
  530.     DIM dx AS INTEGER
  531.     DIM dy AS INTEGER
  532.     DIM n AS STRING * 10
  533.     FOR i = 0 TO 999
  534.         fleet(i).o = 0
  535.     NEXT
  536.     slct = 0
  537.     fltcnt = 0
  538.     LL = 25
  539.     seed = RND * 1000
  540.     star(0).n = "Sol"
  541.     star(0).x = RND * (sw - sww) + swn
  542.     star(0).y = RND * (sh - shw) + shn
  543.     star(0).c = 14
  544.     star(0).s = 2
  545.     star(0).o = 1
  546.     star(0).p = 10
  547.     star(0).t = 100
  548.     home(1) = 0
  549.     FOR i = 1 TO 99
  550.         k = 1
  551.         WHILE k
  552.             k = 0
  553.             x = RND * (sw - sww) + swn
  554.             y = RND * (sh - shw) + shn
  555.             r = INT(RND * 200)
  556.             n = names(r)
  557.             FOR j = 0 TO i - 1
  558.                 dx = x - star(j).x
  559.                 dy = y - star(j).y
  560.                 IF ABS(dx) < sww AND ABS(dy) < shw THEN
  561.                     k = 1
  562.                 END IF
  563.                 IF n = star(j).n THEN
  564.                     k = 1
  565.                 END IF
  566.             NEXT
  567.         WEND
  568.         star(i).n = n
  569.         star(i).x = x
  570.         star(i).y = y
  571.         star(i).c = RND * 6 + 9
  572.         star(i).s = RND * 5
  573.         star(i).o = 0
  574.         star(i).p = star(i).s + (RND * 5) + 3
  575.         star(i).t = 0
  576.     NEXT
  577.     FOR i = 2 TO 6
  578.         ok = 0
  579.         WHILE (ok < 1)
  580.             ok = 1
  581.             j = RND * 100
  582.             FOR k = 1 TO i - 1
  583.                 dist = SQR(ABS(star(j).x - star(home(k)).x) ^ 2 + ABS(star(j).y - star(home(k)).y) ^ 2)
  584.                 IF dist < 500 * ratio THEN
  585.                     ok = 0
  586.                     EXIT FOR
  587.                 END IF
  588.             NEXT
  589.             IF ok = 1 THEN
  590.                 ok = -1
  591.                 FOR k = 0 TO 99
  592.                     dist = SQR(ABS(star(j).x - star(k).x) ^ 2 + ABS(star(j).y - star(k).y) ^ 2)
  593.                     IF dist <= 200 THEN ok = ok + 1
  594.                     IF ok = 1 THEN EXIT FOR
  595.                 NEXT
  596.             END IF
  597.         WEND
  598.         home(i) = j
  599.         star(j).o = i
  600.         star(j).p = 10
  601.         star(j).t = 100
  602.     NEXT
  603.  
  604. ' A lot of star names I made up
  605.  
  606. SUB StarNames
  607.     names(0) = "Acamar"
  608.     names(1) = "Arcab"
  609.     names(2) = "Acrux"
  610.     names(3) = "Adhara"
  611.     names(4) = "Arneb"
  612.     names(5) = "Antares"
  613.     names(6) = "Arcturus"
  614.     names(7) = "Atria"
  615.     names(8) = "Beid"
  616.     names(9) = "Betelgeuse"
  617.     names(10) = "Botein"
  618.     names(11) = "Beemim"
  619.     names(12) = "Bellatrix"
  620.     names(13) = "Bharani"
  621.     names(14) = "Biham"
  622.     names(15) = "Brachium"
  623.     names(16) = "Canopus"
  624.     names(17) = "Capella"
  625.     names(18) = "Castor"
  626.     names(19) = "Chara"
  627.     names(20) = "Cursa"
  628.     names(21) = "Copernicus"
  629.     names(22) = "Chalawan"
  630.     names(23) = "Chertan"
  631.     names(24) = "Dabih"
  632.     names(25) = "Dalim"
  633.     names(26) = "Deneb"
  634.     names(27) = "Denebola"
  635.     names(28) = "Diadem"
  636.     names(29) = "Diphda"
  637.     names(30) = "Dschubba"
  638.     names(31) = "Dziban"
  639.     names(32) = "Edasich"
  640.     names(33) = "Electra"
  641.     names(34) = "Elgafar"
  642.     names(35) = "Elkurud"
  643.     names(36) = "Elnath"
  644.     names(37) = "Eltanin"
  645.     names(38) = "Enif"
  646.     names(39) = "Errai"
  647.     names(40) = "Fafnir"
  648.     names(41) = "Fang"
  649.     names(42) = "Fawaris"
  650.     names(43) = "Felis"
  651.     names(44) = "Fomalhaut"
  652.     names(45) = "Fulu"
  653.     names(46) = "Fumal"
  654.     names(47) = "Furud"
  655.     names(48) = "Garnet"
  656.     names(49) = "Giausar"
  657.     names(50) = "Gienah"
  658.     names(51) = "Ginan"
  659.     names(52) = "Gomeisa"
  660.     names(53) = "Graffias"
  661.     names(54) = "Grumium"
  662.     names(55) = "Gudja"
  663.     names(56) = "Hadar"
  664.     names(57) = "Haedus"
  665.     names(58) = "Hamal"
  666.     names(59) = "Hassaleh"
  667.     names(60) = "Hatysa"
  668.     names(61) = "Helvetios"
  669.     names(62) = "Heze"
  670.     names(63) = "Homan"
  671.     names(64) = "Iklil"
  672.     names(65) = "Imai"
  673.     names(66) = "Intercrus"
  674.     names(67) = "Izar"
  675.     names(68) = "Iccar"
  676.     names(69) = "Inar"
  677.     names(70) = "Iaeth"
  678.     names(71) = "Imaous"
  679.     names(72) = "Jabbah"
  680.     names(73) = "Jishui"
  681.     names(74) = "Jax"
  682.     names(75) = "Jalae"
  683.     names(76) = "Jewel"
  684.     names(77) = "Jumbo"
  685.     names(78) = "Jerue"
  686.     names(79) = "Jabear"
  687.     names(80) = "Kakkab"
  688.     names(81) = "Kang"
  689.     names(82) = "Kekouan"
  690.     names(83) = "Keid"
  691.     names(84) = "Kitalpha"
  692.     names(85) = "Kochab"
  693.     names(86) = "Kolob"
  694.     names(87) = "Kobol"
  695.     names(88) = "Larawag"
  696.     names(89) = "Lesath"
  697.     names(90) = "Libertas"
  698.     names(91) = "Lich"
  699.     names(92) = "Lilly"
  700.     names(93) = "Laddel"
  701.     names(94) = "Luminous"
  702.     names(95) = "Lasacious"
  703.     names(96) = "Mizar"
  704.     names(97) = "Markab"
  705.     names(98) = "Matar"
  706.     names(99) = "Mintaka"
  707.     names(100) = "Meleph"
  708.     names(101) = "Menkar"
  709.     names(102) = "Merga"
  710.     names(103) = "Merope"
  711.     names(104) = "Nahn"
  712.     names(105) = "Naos"
  713.     names(106) = "Nashira"
  714.     names(107) = "Navi"
  715.     names(108) = "Nekkar"
  716.     names(109) = "Nembus"
  717.     names(110) = "Nihal"
  718.     names(111) = "Nunki"
  719.     names(112) = "Ogma"
  720.     names(113) = "Okab"
  721.     names(114) = "Ohmy"
  722.     names(115) = "Oragami"
  723.     names(116) = "Origen"
  724.     names(117) = "Omanii"
  725.     names(118) = "Obytewa"
  726.     names(119) = "Oglok"
  727.     names(120) = "Phact"
  728.     names(121) = "Pherkad"
  729.     names(122) = "Pleione"
  730.     names(122) = "Polaris"
  731.     names(123) = "Pollux"
  732.     names(124) = "Procyon"
  733.     names(125) = "Proxima"
  734.     names(126) = "Polis"
  735.     names(127) = "Quaint"
  736.     names(128) = "Quazzat"
  737.     names(129) = "Quetzal"
  738.     names(130) = "Qussol"
  739.     names(131) = "Quella"
  740.     names(132) = "Quyaeo"
  741.     names(133) = "Ququdas"
  742.     names(134) = "Quekak"
  743.     names(135) = "Rasalas"
  744.     names(136) = "Regor"
  745.     names(137) = "Regulus"
  746.     names(138) = "Rigel"
  747.     names(139) = "Revati"
  748.     names(140) = "Rotenev"
  749.     names(141) = "Rukbat"
  750.     names(142) = "Rastaban"
  751.     names(143) = "Sabik"
  752.     names(144) = "Sadr"
  753.     names(145) = "Saiph"
  754.     names(146) = "Sargas"
  755.     names(147) = "Sarin"
  756.     names(148) = "Syrma"
  757.     names(149) = "Spica"
  758.     names(150) = "Sirius"
  759.     names(151) = "Tarazed"
  760.     names(152) = "Taygeta"
  761.     names(153) = "Tejat"
  762.     names(154) = "Thabit"
  763.     names(155) = "Thuban"
  764.     names(156) = "Tiaki"
  765.     names(157) = "Toliman"
  766.     names(158) = "Torcular"
  767.     names(157) = "Umala"
  768.     names(158) = "Ulatte"
  769.     names(159) = "Ubbessa"
  770.     names(160) = "Unoless"
  771.     names(161) = "Umaddem"
  772.     names(162) = "Ummbra"
  773.     names(162) = "Uniqu"
  774.     names(163) = "Uzzaal"
  775.     names(164) = "Vega"
  776.     names(165) = "Veritate"
  777.     names(166) = "Vindetrix"
  778.     names(167) = "Vedas"
  779.     names(168) = "Vergg"
  780.     names(169) = "Vacant"
  781.     names(170) = "Vucae"
  782.     names(171) = "Vicar"
  783.     names(172) = "Wasat"
  784.     names(173) = "Wazn"
  785.     names(174) = "Wezen"
  786.     names(175) = "Waiten"
  787.     names(176) = "Wachar"
  788.     names(177) = "Wheelz"
  789.     names(178) = "Whatsp"
  790.     names(179) = "Wassand"
  791.     names(180) = "Xenno"
  792.     names(181) = "Xyphod"
  793.     names(182) = "Xu"
  794.     names(183) = "Xaal"
  795.     names(184) = "Xyross"
  796.     names(185) = "Xiggot"
  797.     names(186) = "Xirrks"
  798.     names(187) = "Yed"
  799.     names(188) = "Yildun"
  800.     names(189) = "Yundun"
  801.     names(190) = "Yavyo"
  802.     names(191) = "Yotrac"
  803.     names(192) = "Yxzoqu"
  804.     names(193) = "Ynnot"
  805.     names(194) = "Zaniah"
  806.     names(195) = "Zaurak"
  807.     names(196) = "Zhang"
  808.     names(197) = "Zibal"
  809.     names(198) = "Zosma"
  810.     names(199) = "Zuben"
  811.  
  812.  
Title: Re: Beyond Sol
Post by: romichess on December 23, 2019, 04:23:36 am
First of all when over 60 y.o. never program when tired. I just went through several days of hell making and fixing bugs only to create more bugs than I fixed. After taking a day and a half off and getting lots of sleep I was able to fix all the bugs and add a ton of new features. No star bases yet but that is next. Much of the code was completely rewritten and is much cleaner. That process will continue. Optimising for speed will come later.

I probably can't name all the changes but here is a list of what I can remember.

Send all, send half and send third buttons to the fleet send panel.
A standing orders panel. So stars can automatically send ships to another planet.
Right clicking the mouse will cancel a panel
Right clicking on empty space will pause/unpause the game. Orders can still be issued.
Pressing "p" will do the same and orders can be issued.
The range line will when over a star snap to the center of the star and give the exact range
Range can be gotten between any two stars.
Right clicking will cancel range lines.
The computer players start the game paused so that a player can find his home star. Initial orders can be placed before unpausing.
And a few more minor changes.
The computer players are better than ever also! And still no cheating!!

To bring up a panel left or right click on one of your stars. Then left click another star to send ships or right click another one of your planets to bring up the standing orders panel. To cancel a standing order just enter 0 and 0. One standing order per star.

I was going to add star bases before making another post but I'm at the point of needing another day and a half off. That is all there is for now. Opinions about the interface are welcome as well as suggestions and opinions about the computer's play. Thanks!

Code: QB64: [Select]
  1. TYPE stars
  2.     n AS STRING * 10 '                 Name of star
  3.     x AS INTEGER '                     x-position
  4.     y AS INTEGER '                     y-position
  5.     o AS INTEGER '                     Owner
  6.     c AS INTEGER '                     Color
  7.     s AS INTEGER '                     Size
  8.     t AS LONG '                        Ships
  9.     p AS INTEGER '                     (Population) For now ships production
  10.  
  11. TYPE FLEETS
  12.     t AS LONG
  13.     x1 AS INTEGER
  14.     y1 AS INTEGER
  15.     x2 AS INTEGER
  16.     y2 AS INTEGER
  17.     o AS INTEGER
  18.     d AS INTEGER
  19.  
  20. TYPE ORDERS
  21.     src AS LONG
  22.     ovr AS LONG
  23.     shp AS LONG
  24.     dst AS LONG
  25.  
  26. ' Global variables shared because they are needed in more than one routine
  27. DIM SHARED sw AS INTEGER '             Screen Width
  28. DIM SHARED sh AS INTEGER '             Screen Height
  29. DIM SHARED sww AS INTEGER '            Screen Width Wide margin
  30. DIM SHARED swn AS INTEGER '            Screen Width Narrow adjustment
  31. DIM SHARED shw AS INTEGER '            Screen Height Wide margine
  32. DIM SHARED shn AS INTEGER '            Screen Height Narrow adjustment
  33. DIM SHARED nw AS INTEGER '             games Natural screen Width
  34. DIM SHARED nh AS INTEGER '             games Natural screen Height
  35. DIM SHARED ratio AS _FLOAT '           the Ratio of the games natural screen width to the actual
  36. DIM SHARED star(100) AS stars '        100 stars - may change
  37. DIM SHARED names(200) AS STRING * 10 ' 200 star names
  38. DIM SHARED seed AS INTEGER '           Seed to prime the Randomizer to display identical background each frame
  39. DIM SHARED home(7) AS INTEGER '        The starting star for each player. The human always has star(0), Sol
  40. DIM SHARED tt AS INTEGER '             tt = 0 star names displayed, tt = 0 star names not didplayed
  41. DIM SHARED ch AS STRING * 1 '          Game loop key input variable
  42. DIM SHARED repeat AS INTEGER '         Game loop control variable
  43. DIM SHARED fleet(1000) AS FLEETS
  44. DIM SHARED panx, pany AS INTEGER
  45. DIM SHARED oanx, oany AS INTEGER
  46. DIM SHARED strng AS STRING * 14
  47. DIM SHARED hate(7, 7) AS INTEGER
  48. DIM SHARED strng0 AS STRING * 10
  49. DIM SHARED strng1 AS STRING * 10
  50. DIM SHARED order(100) AS ORDERS
  51. DIM SHARED ord AS ORDERS
  52.  
  53. sw = _DESKTOPWIDTH '                   native video with of syatem
  54. sww = sw / 24 '                        margin based on native video width to keep stars away from edge
  55. swn = sw / 48 '                        adjustment that works with sww to keep stars away from left and top of screen
  56. nw = 1920
  57.  
  58. ratio = sw / 1920 '                    Used to adjust distances and sizes for various screen modes
  59.  
  60. shw = sh / 20
  61. shn = sh / 40
  62. nh = 1080
  63.  
  64. tt = 0
  65. lcx = sw
  66. rcx = sw
  67. cp = 100
  68. h = 100
  69. ar = 0
  70. rng = 200
  71. slct = 0
  72. strng = ""
  73. strng0 = ""
  74. strng1 = ""
  75. src = 100
  76. dst = 100
  77. ord.src = 100
  78.  
  79. SCREEN _NEWIMAGE(sw, sh, 256) '        creates a screen the resolution of the users native system
  80.  
  81.  
  82. sp = _NEWIMAGE(400 * ratio, 540 * ratio, 256)
  83. op = _NEWIMAGE(400 * ratio, 225 * ratio, 256)
  84.  
  85. StarNames '                            Routine to load star names into string array stars(200)
  86.  
  87. NewGame
  88.  
  89. ttf16 = _LOADFONT("cyberbit.ttf", 16 * ratio, "BOLD")
  90. ttf24 = _LOADFONT("cyberbit.ttf", 24 * ratio, "BOLD")
  91. ttf36 = _LOADFONT("cyberbit.ttf", 36 * ratio, "BOLD")
  92. ttf72 = _LOADFONT("cyberbit.ttf", 72 * ratio, "BOLD")
  93.  
  94. repeat = 1
  95.  
  96. WHILE repeat
  97.  
  98.     _LIMIT 60 '                        Set to 200 frames per second
  99.  
  100.     id = INT(RND * 5 + 2)
  101.  
  102.     CLS
  103.  
  104.     PaintBackground
  105.  
  106.     PaintStars
  107.  
  108.     PaintFleet
  109.  
  110.     GetInput
  111.  
  112.     Player
  113.  
  114.     Computer
  115.  
  116.     _DISPLAY
  117.  
  118.  
  119.  
  120. SUB Computer
  121.     STATIC last(7) AS INTEGER
  122.  
  123.     IF paused = 0 THEN
  124.         RANDOMIZE TIMER
  125.         FOR i = 0 TO 99
  126.             r = INT(RND * 60)
  127.             IF r < star(i).p THEN
  128.                 IF star(i).o > 0 THEN
  129.                     star(i).t = star(i).t + 1
  130.                 ELSE
  131.                     IF INT(RND * 10) < 3 THEN
  132.                         star(i).t = star(i).t + 1
  133.                     END IF
  134.                 END IF
  135.             END IF
  136.         NEXT
  137.  
  138.         org = home(id)
  139.         IF star(org).o <> id THEN
  140.             FOR j = 0 TO 99
  141.                 IF star(j).o = id THEN home(id) = j: EXIT FOR
  142.             NEXT
  143.         END IF
  144.  
  145.         FOR p = 0 TO 3
  146.  
  147.             IF p = 0 THEN
  148.                 away = 10000
  149.                 i = home(id)
  150.                 IF star(i).t > LL THEN
  151.                     FOR j = 0 TO 99
  152.                         IF star(j).o <> id AND last(id) <> j THEN
  153.                             dist = SQR(ABS(star(i).x - star(j).x) ^ 2 + ABS(star(i).y - star(j).y) ^ 2)
  154.                             IF dist <= 250 AND star(j).t > star(i).t / 3 THEN
  155.                                 away = 10000
  156.                                 EXIT FOR
  157.                             END IF
  158.                             ok = 0
  159.                             FOR K = 0 TO 99
  160.                                 IF star(K).o = id THEN
  161.                                     dist = SQR(ABS(star(j).x - star(K).x) ^ 2 + ABS(star(j).y - star(K).y) ^ 2)
  162.                                     IF dist <= 250 THEN
  163.                                         ok = 1
  164.                                         EXIT FOR
  165.                                     END IF
  166.                                 END IF
  167.                             NEXT
  168.                             IF ok = 1 THEN
  169.                                 dist = SQR(ABS(star(i).x - star(j).x) ^ 2 + ABS(star(i).y - star(j).y) ^ 2)
  170.                                 IF dist < away AND star(i).t > star(j).t * 2 THEN
  171.                                     away = dist
  172.                                     jay = j
  173.                                 END IF
  174.                             END IF
  175.                         END IF
  176.                     NEXT
  177.                     IF away < 10000 THEN
  178.                         last(id) = jay
  179.                         SendFleet i, jay, star(i).t / 1.5
  180.                     END IF
  181.                 END IF
  182.             END IF
  183.  
  184.             IF p = 1 THEN
  185.                 sf2 = 100
  186.                 FOR i = 0 TO 99
  187.                     IF star(i).o = id AND i <> home(id) AND star(i).t > LL * 1.5 THEN
  188.                         sf3 = star(i).t / 2
  189.                         FOR j = 0 TO 99
  190.                             IF star(j).o <> id AND star(i).t > star(j).t * 4 THEN
  191.                                 FOR K = 0 TO 99
  192.                                     IF star(K).o = id THEN
  193.                                         dist = SQR(ABS(star(K).x - star(j).x) ^ 2 + ABS(star(K).y - star(j).y) ^ 2)
  194.                                         IF dist <= 250 * ratio THEN
  195.                                             sf1 = i
  196.                                             sf2 = j
  197.                                             EXIT FOR
  198.                                         END IF
  199.                                     END IF
  200.                                 NEXT
  201.                             END IF
  202.                         NEXT
  203.                         IF sf2 < 100 THEN EXIT FOR
  204.                     END IF
  205.                 NEXT
  206.                 IF sf2 < 100 THEN
  207.                     SendFleet sf1, sf2, sf3
  208.                     EXIT FOR
  209.                 END IF
  210.             END IF
  211.  
  212.             IF p = 2 THEN
  213.                 FOR i = 0 TO 99
  214.                     IF i <> home(id) AND star(i).o = id THEN
  215.                         IF star(i).t > 49 THEN
  216.                             ok = 1
  217.                             FOR j = 0 TO 99
  218.                                 IF star(j).o <> id AND star(j).o <> 0 THEN
  219.                                     dist = SQR(ABS(star(i).x - star(j).x) ^ 2 + ABS(star(i).y - star(j).y) ^ 2)
  220.                                     IF dist <= 350 * ratio THEN
  221.                                         ok = 0
  222.                                         EXIT FOR
  223.                                     END IF
  224.                                 END IF
  225.                             NEXT
  226.                             IF ok = 1 THEN
  227.                                 SendFleet i, home(id), star(i).t
  228.                                 EXIT FOR
  229.                             END IF
  230.                         END IF
  231.                     END IF
  232.                 NEXT
  233.                 IF ok = 1 THEN EXIT FOR
  234.             END IF
  235.  
  236.             IF p = 3 THEN
  237.                 ok = 0
  238.                 FOR i = 0 TO 99
  239.                     IF i <> home(id) AND star(i).o = id THEN
  240.                         IF star(i).t > LL * 1.5 + star(i).p * 50 THEN
  241.                             ok = 1
  242.                             EXIT FOR
  243.                         END IF
  244.                     END IF
  245.                 NEXT
  246.                 IF ok = 1 THEN
  247.                     SendFleet i, home(id), star(i).t / 4
  248.                     EXIT FOR
  249.                 END IF
  250.             END IF
  251.  
  252.         NEXT
  253.  
  254.         count = fltcnt
  255.         i = 0
  256.         WHILE count
  257.             IF fleet(i).o <> 0 THEN
  258.                 count = count - 1
  259.                 IF fleet(i).x2 > fleet(i).x1 THEN
  260.                     fleet(i).x1 = fleet(i).x1 + 1
  261.                 END IF
  262.                 IF fleet(i).x2 < fleet(i).x1 THEN
  263.                     fleet(i).x1 = fleet(i).x1 - 1
  264.                 END IF
  265.                 IF fleet(i).y2 > fleet(i).y1 THEN
  266.                     fleet(i).y1 = fleet(i).y1 + 1
  267.                 END IF
  268.                 IF fleet(i).y2 < fleet(i).y1 THEN
  269.                     fleet(i).y1 = fleet(i).y1 - 1
  270.                 END IF
  271.                 IF fleet(i).x1 = fleet(i).x2 AND fleet(i).y1 = fleet(i).y2 THEN
  272.                     dest = fleet(i).d
  273.                     IF star(dest).o = fleet(i).o THEN
  274.                         star(dest).t = star(dest).t + fleet(i).t
  275.                         fleet(i).o = 0
  276.                         fltcnt = fltcnt - 1
  277.                     ELSE
  278.                         IF fleet(i).t > star(dest).t * 0.6 THEN
  279.                             alive = 1
  280.                             WHILE alive
  281.                                 alive = 0
  282.                                 damorg = fleet(i).t / 10 + 1
  283.                                 damdst = star(dest).t / 9 + 1
  284.                                 fleet(i).t = fleet(i).t - damdst
  285.                                 star(dest).t = star(dest).t - damorg
  286.                                 IF fleet(i).t > 0 AND star(dest).t > 0 THEN
  287.                                     alive = 1
  288.                                 END IF
  289.                             WEND
  290.                             IF star(dest).t < 1 THEN
  291.                                 hate(star(dest).o, fleet(i).o) = hate(star(dest).o, fleet(i).o) + 1
  292.                                 star(dest).t = fleet(i).t
  293.                                 star(dest).o = fleet(i).o
  294.                             END IF
  295.                             fleet(i).o = 0
  296.                             fltcnt = fltcnt - 1
  297.                         ELSE
  298.                             K = 100
  299.                             shortest = 10000
  300.                             FOR j = 0 TO 99
  301.                                 IF star(j).o = fleet(i).o THEN
  302.                                     dist = SQR(ABS(star(j).x - fleet(i).x1) ^ 2 + ABS(star(j).y - fleet(i).y1) ^ 2)
  303.                                     IF dist < shortest THEN
  304.                                         shortest = dist
  305.                                         K = j
  306.                                     END IF
  307.                                 END IF
  308.                             NEXT
  309.                             IF K < 100 THEN
  310.                                 fleet(i).x2 = star(K).x
  311.                                 fleet(i).y2 = star(K).y
  312.                                 fleet(i).d = K
  313.                             END IF
  314.                         END IF
  315.                     END IF
  316.                 END IF
  317.             END IF
  318.             i = i + 1
  319.         WEND
  320.     END IF
  321.  
  322. SUB GetInput
  323.  
  324.     IF ch = CHR$(27) THEN repeat = 0
  325.     IF ch = "n" THEN NewGame
  326.     IF ch = "t" THEN tt = 1 - tt
  327.     IF ch = "p" THEN paused = 1 - paused
  328.     ch = INKEY$
  329.  
  330.     lclk = 0
  331.     rclk = 0
  332.  
  333.  
  334.         x = _MOUSEX
  335.         y = _MOUSEY
  336.         lmb = _MOUSEBUTTON(1)
  337.         rmb = _MOUSEBUTTON(2)
  338.  
  339.         IF lmb AND lcx = sw THEN lcx = x
  340.         IF rmb AND rcx = sw THEN rcx = x
  341.     WEND
  342.  
  343.     IF lmb = 0 AND lcx < sw THEN lclk = 1
  344.     IF rmb = 0 AND rcx < sw THEN rclk = 1
  345.  
  346.     lcx = sw
  347.     rcx = sw
  348.  
  349.     x = _MOUSEX
  350.     y = _MOUSEY
  351.  
  352.     IF rclk = 1 THEN
  353.         i = Identify
  354.         IF i = 100 THEN
  355.             IF src = 100 THEN
  356.                 paused = 1 - paused
  357.                 ch = ""
  358.             ELSE
  359.                 src = 100
  360.                 oact = 0
  361.                 pact = 0
  362.             END IF
  363.             rclk = 0
  364.         END IF
  365.         IF pact = 1 OR oact = 1 THEN
  366.             rclk = 0
  367.         END IF
  368.     END IF
  369.  
  370.  
  371. FUNCTION Identify
  372.     ii = 100
  373.     FOR i = 0 TO 99
  374.         dx = star(i).x - x
  375.         dy = star(i).y - y
  376.         IF ABS(dx) <= star(i).s + 8 AND ABS(dy) <= star(i).s + 8 THEN
  377.             ii = i
  378.             EXIT FOR
  379.         END IF
  380.     NEXT
  381.     Identify = ii
  382.  
  383. SUB OrderPanel (i)
  384.     x1 = star(i).x - 420 * ratio
  385.     IF star(i).x < sw / 2 THEN x1 = star(i).x + 20 * ratio
  386.     x2 = x1 + 400 * ratio
  387.     y1 = star(i).y
  388.     IF y1 > sh - 225 * ratio THEN y1 = sh - 225 * ratio
  389.     y2 = y1 + 225 * ratio
  390.     _DEST op
  391.     CLS 0, 8
  392.     COLOR 0, 8
  393.     _FONT ttf72
  394.     n$ = RTRIM$(star(i).n)
  395.     l = _PRINTWIDTH(n$)
  396.     _PRINTSTRING ((400 * ratio - l) / 2, 4 * ratio), n$, op
  397.     LINE (20 * ratio, 76 * ratio)-(380 * ratio, 76 * ratio), 0
  398.     _PRINTSTRING (20 * ratio, 80 * ratio), "0123456789", op
  399.     COLOR 7, 8
  400.     _FONT ttf36
  401.     IF box = 0 THEN
  402.         _PRINTSTRING (20 * ratio, 166 * ratio), "If Over", op
  403.         xo = 142 * ratio: xd = 250 * ratio: yo = 166 * ratio: yd = 200 * ratio
  404.         LINE (xo, yo)-(xd, yd), 7, BF
  405.         xo = 268 * ratio: xd = 314 * ratio: yo = 166 * ratio: yd = 200 * ratio
  406.         LINE (xo, yo)-(xd, yd), 7, BF
  407.         xo = 332 * ratio: xd = 366 * ratio: yo = 166 * ratio: yd = 200 * ratio
  408.         LINE (xo, yo)-(xd, yd), 7, BF
  409.         n$ = RTRIM$(strng0)
  410.         COLOR 0, 7
  411.         _FONT ttf24
  412.         _PRINTSTRING (148 * ratio, 172 * ratio), n$, op
  413.         _PRINTSTRING (273 * ratio, 172 * ratio), "OK", op
  414.         _PRINTSTRING (341 * ratio, 172 * ratio), "X", op
  415.     END IF
  416.     IF box = 1 THEN
  417.         _PRINTSTRING (20 * ratio, 166 * ratio), "Then Send", op
  418.         xo = 198 * ratio: xd = 278 * ratio: yo = 166 * ratio: yd = 200 * ratio
  419.         LINE (xo, yo)-(xd, yd), 7, BF
  420.         xo = 294 * ratio: xd = 340 * ratio: yo = 166 * ratio: yd = 200 * ratio
  421.         LINE (xo, yo)-(xd, yd), 7, BF
  422.         xo = 356 * ratio: xd = 390 * ratio: yo = 166 * ratio: yd = 200 * ratio
  423.         LINE (xo, yo)-(xd, yd), 7, BF
  424.         n$ = RTRIM$(strng1)
  425.         COLOR 0, 7
  426.         _FONT ttf24
  427.         _PRINTSTRING (200 * ratio, 172 * ratio), n$, op
  428.         _PRINTSTRING (299 * ratio, 172 * ratio), "OK", op
  429.         _PRINTSTRING (365 * ratio, 172 * ratio), "X", op
  430.     END IF
  431.     _PUTIMAGE (x1, y1), op, 0, (0, 0)-(400 * ratio, 225 * ratio)
  432.     _DEST 0
  433.     oanx = x1: oany = y1
  434.  
  435. SUB PaintBackground
  436.     x = RND * sw
  437.     y = RND * sh
  438.     c = RND * 14 + 1
  439.     PSET (x, y), c
  440.     RANDOMIZE USING seed
  441.     FOR i = 1 TO 600 * ratio
  442.         x = RND * sw
  443.         y = RND * sh
  444.         c = RND * 14 + 1
  445.         PSET (x, y), c
  446.     NEXT
  447.  
  448. SUB PaintFleet
  449.     count = fltcnt
  450.     i = 0
  451.     WHILE count
  452.         IF fleet(i).o <> 0 THEN
  453.             CIRCLE (fleet(i).x1, fleet(i).y1), 3, fleet(i).o + 8
  454.             count = count - 1
  455.         END IF
  456.         i = i + 1
  457.     WEND
  458.  
  459. SUB PaintStars
  460.     FOR i = 0 TO 99
  461.         c = star(i).c
  462.         x = star(i).x
  463.         y = star(i).y
  464.         o = star(i).o
  465.         CIRCLE (x, y), (star(i).s + 8) * ratio, c
  466.         COLOR 15
  467.         IF o > 0 THEN
  468.             PAINT (x, y), o + 8, c
  469.         END IF
  470.         _FONT ttf16
  471.         IF tt THEN
  472.             n$ = star(i).n
  473.             n$ = RTRIM$(n$)
  474.             l = _PRINTWIDTH(n$)
  475.             _PRINTSTRING (x + 10, y), STR$(star(i).p), 0
  476.         ELSE
  477.             n$ = STR$(star(i).t)
  478.             l = _PRINTWIDTH(n$)
  479.         END IF
  480.         _PRINTSTRING (x - l / 2, y + 14), n$, 0
  481.     NEXT
  482.  
  483. SUB Player
  484.  
  485.     'Add new order to standing orders
  486.     IF ord.src <> 100 THEN
  487.         i = ord.src
  488.         IF ord.shp = 0 THEN
  489.             order(i).src = 100
  490.         ELSE
  491.             order(i) = ord
  492.         END IF
  493.         ord.src = 100
  494.     END IF
  495.  
  496.     'execute standing orders
  497.     FOR i = 0 TO 99
  498.         IF order(i).src <> 100 THEN
  499.             IF star(i).o <> 1 THEN
  500.                 order(i).src = 100
  501.             ELSE
  502.                 IF star(i).t >= order(i).ovr THEN
  503.                     SendFleet order(i).src, order(i).dst, order(i).shp
  504.                 END IF
  505.             END IF
  506.         END IF
  507.     NEXT
  508.  
  509.     IF pact = 0 AND oact = 0 THEN
  510.  
  511.         'If there is no source star see if we can get one
  512.         IF src = 100 THEN
  513.             IF lclk = 1 OR rclk = 1 THEN
  514.                 lclk = 0
  515.                 rclk = 0
  516.                 src = Identify
  517.             END IF
  518.         END IF
  519.  
  520.         ' If there is a source star then look for a right click else draw a range line
  521.         IF src <> 100 THEN
  522.             c = 12
  523.             FOR i = 0 TO 99
  524.                 IF star(i).o = 1 THEN
  525.                     dist = SQR(ABS(star(i).x - x) ^ 2 + ABS(star(i).y - y) ^ 2)
  526.                     IF dist <= 250 * ratio THEN
  527.                         c = 10
  528.                         EXIT FOR
  529.                     END IF
  530.                 END IF
  531.             NEXT
  532.             rang = SQR(ABS(star(src).x - x) ^ 2 + ABS(star(src).y - y) ^ 2)
  533.             i = Identify
  534.             IF i <> 100 THEN
  535.                 x = star(i).x
  536.                 y = star(i).y
  537.             END IF
  538.             LINE (star(src).x, star(src).y)-(x, y), c
  539.             n$ = STR$(INT(rang))
  540.             _FONT ttf16
  541.             _PRINTSTRING (x + 20, y), n$, 0
  542.         END IF
  543.  
  544.         'If we have a source star see if we clicked on a destination star
  545.         IF src <> 100 THEN
  546.             IF lclk = 1 OR rclk = 1 THEN
  547.                 i = Identify
  548.                 IF i < 100 AND i <> src THEN
  549.                     dst = i
  550.                     IF lclk = 1 THEN
  551.                         lclk = 0
  552.                         pact = 1
  553.                     ELSE
  554.                         rclk = 0
  555.                         IF star(i).o = 1 THEN
  556.                             oact = 1
  557.                         END IF
  558.                     END IF
  559.                 END IF
  560.             END IF
  561.         END IF
  562.  
  563.     END IF
  564.  
  565.     'If the star standing orders panel is active
  566.     IF oact = 1 THEN
  567.  
  568.         IF star(src).o = 1 THEN
  569.             OrderPanel dst
  570.         END IF
  571.  
  572.         IF rclk = 1 THEN oact = 0
  573.  
  574.         IF box = 0 THEN
  575.             tmp$ = RTRIM$(strng0)
  576.         ELSE
  577.             tmp$ = RTRIM$(strng1)
  578.         END IF
  579.  
  580.         IF lclk = 1 THEN
  581.  
  582.             x1 = oanx: x2 = oanx + 400 * ratio
  583.             y1 = oany: y2 = oany + 540 * ratio
  584.  
  585.             IF y > y1 + 80 * ratio AND y < y1 + 152 * ratio THEN
  586.                 IF x > x1 + 20 * ratio AND x < x1 + 380 * ratio THEN
  587.                     dig = (x - x1 - 32 * ratio) / (37 * ratio)
  588.                     IF box = 0 THEN
  589.                         n$ = RTRIM$(strng0)
  590.                         l = LEN(n$)
  591.                         IF l < 8 THEN strng0 = tmp$ + STR$(dig)
  592.                     ELSE
  593.                         n$ = RTRIM$(strng1)
  594.                         l = LEN(n$)
  595.                         IF l < 8 THEN strng1 = tmp$ + STR$(dig)
  596.                     END IF
  597.                 END IF
  598.             END IF
  599.  
  600.             IF y > y1 + 166 * ratio AND y < y1 + 200 * ratio THEN
  601.  
  602.                 IF box = 0 THEN
  603.  
  604.                     IF x > x1 + 268 * ratio AND x < x1 + 314 * ratio THEN
  605.                         ord.ovr = INT(VAL(strng0))
  606.                         strng0 = ""
  607.                         strng1 = ""
  608.                         box = 1
  609.                     END IF
  610.  
  611.                     IF x > x1 + 332 * ratio AND x < x1 + 366 * ratio THEN
  612.                         strng0 = ""
  613.                     END IF
  614.  
  615.                 ELSE
  616.  
  617.                     IF x > x1 + 294 * ratio AND x < x1 + 340 * ratio THEN
  618.                         IF INT(VAL(strng1)) > ord.ovr THEN
  619.                             strng1 = ""
  620.                         ELSE
  621.                             ord.src = src
  622.                             ord.shp = VAL(strng1)
  623.                             ord.dst = dst
  624.                             box = 0
  625.                             oact = 0
  626.                             strng0 = ""
  627.                             strng1 = ""
  628.                             src = 100
  629.                         END IF
  630.                     END IF
  631.  
  632.                     IF x > x1 + 356 * ratio AND x < x1 + 390 * ratio THEN
  633.                         strng0 = ""
  634.                         strng1 = ""
  635.                         box = 0
  636.                     END IF
  637.  
  638.                 END IF
  639.  
  640.             END IF
  641.         END IF
  642.         x1 = 10000: y1 = 10000
  643.     END IF
  644.  
  645.     'If the fleet send panel is active
  646.     IF pact = 1 THEN
  647.         IF rclk = 1 THEN pact = 0
  648.         IF star(src).o = 1 THEN
  649.             ShowPanel dst
  650.         END IF
  651.         IF lclk = 1 THEN
  652.             tmp$ = RTRIM$(strng)
  653.  
  654.             x1 = panx: x2 = panx + 400 * ratio
  655.             y1 = pany: y2 = pany + 540 * ratio
  656.  
  657.             IF y > y1 + 256 * ratio AND y < y1 + 328 * ratio THEN
  658.                 IF x > x1 + 20 * ratio AND x < x1 + 380 * ratio THEN
  659.                     dig = (x - x1 - 32 * ratio) / (37 * ratio)
  660.                     strng = tmp$ + STR$(dig)
  661.                 END IF
  662.             END IF
  663.  
  664.             IF y > y1 + 334 * ratio AND y < y1 + 374 * ratio THEN
  665.                 IF x > x1 + 20 * ratio AND x < x1 + 84 * ratio THEN
  666.                     pact = 0
  667.                     value = star(src).t
  668.                     SendFleet src, dst, value
  669.                     src = 100
  670.                 END IF
  671.                 IF x > x1 + 102 * ratio AND x < x1 + 184 * ratio THEN
  672.                     pact = 0
  673.                     value = star(src).t / 2
  674.                     SendFleet src, dst, value
  675.                     src = 100
  676.                 END IF
  677.                 IF x > x1 + 202 * ratio AND x < x1 + 282 * ratio THEN
  678.                     pact = 0
  679.                     value = star(src).t / 3
  680.                     SendFleet src, dst, value
  681.                     src = 100
  682.                 END IF
  683.                 IF x > x1 + 300 * ratio AND x < x1 + 380 * ratio THEN
  684.                     strng = ""
  685.                 END IF
  686.             END IF
  687.  
  688.             IF y > y1 + 460 * ratio AND y < y1 + 530 * ratio THEN
  689.                 IF x > x1 + 32 * ratio AND x < x1 + 182 * ratio THEN
  690.                     value = VAL(strng)
  691.                     strng = ""
  692.                     pact = 0
  693.                     IF value <= star(src).t THEN
  694.                         SendFleet src, dst, value
  695.                     END IF
  696.                     src = 100
  697.                 END IF
  698.                 IF x > x1 + 212 * ratio AND x < x1 + 362 * ratio THEN
  699.                     pact = 0
  700.                     src = 100
  701.                     strng = ""
  702.                 END IF
  703.             END IF
  704.         END IF
  705.     END IF
  706.  
  707. SUB SendFleet (src, dst, ships)
  708.     FOR i = 0 TO 999
  709.         IF fleet(i).o = 0 THEN
  710.             fleet(i).o = star(src).o
  711.             fleet(i).d = dst
  712.             fleet(i).x1 = star(src).x
  713.             fleet(i).y1 = star(src).y
  714.             fleet(i).x2 = star(dst).x
  715.             fleet(i).y2 = star(dst).y
  716.             fleet(i).t = ships
  717.             star(src).t = star(src).t - ships
  718.             fltcnt = fltcnt + 1
  719.             EXIT FOR
  720.         END IF
  721.     NEXT
  722.     LL = LL + 1
  723.  
  724. SUB ShowPanel (i)
  725.     x1 = star(i).x - 420 * ratio
  726.     IF star(i).x < sw / 2 THEN x1 = star(i).x + 20 * ratio
  727.     x2 = x1 + 400 * ratio
  728.     y1 = star(i).y
  729.     IF y1 > sh - 560 * ratio THEN y1 = sh - 560 * ratio
  730.     y2 = y1 + 540 * ratio
  731.     _DEST sp
  732.     CLS 0, 8
  733.     COLOR 0, 8
  734.     _FONT ttf72
  735.     n$ = RTRIM$(star(src).n)
  736.     l = _PRINTWIDTH(n$)
  737.     _PRINTSTRING ((400 * ratio - l) / 2, 12 * ratio), n$, sp
  738.     n$ = "to"
  739.     l = _PRINTWIDTH(n$)
  740.     _PRINTSTRING ((400 * ratio - l) / 2, 80 * ratio), n$, sp
  741.     n$ = RTRIM$(star(dst).n)
  742.     l = _PRINTWIDTH(n$)
  743.     _PRINTSTRING ((400 * ratio - l) / 2, 152 * ratio), n$, sp
  744.     LINE (20 * ratio, 239 * ratio)-(380 * ratio, 239 * ratio), 0
  745.     _PRINTSTRING (20 * ratio, 256 * ratio), "0123456789", sp
  746.     n$ = RTRIM$(strng)
  747.     l = _PRINTWIDTH(n$)
  748.     _PRINTSTRING ((400 * ratio - l) / 2, 383 * ratio), n$, sp
  749.     xo = 20 * ratio: xd = 84 * ratio: yo = 334 * ratio: yd = 374 * ratio
  750.     LINE (xo, yo)-(xd, yd), 7, BF
  751.     xo = 102 * ratio: xd = 184 * ratio: yo = 334 * ratio: yd = 374 * ratio
  752.     LINE (xo, yo)-(xd, yd), 7, BF
  753.     xo = 202 * ratio: xd = 282 * ratio: yo = 334 * ratio: yd = 374 * ratio
  754.     LINE (xo, yo)-(xd, yd), 7, BF
  755.     xo = 300 * ratio: xd = 380 * ratio: yo = 334 * ratio: yd = 374 * ratio
  756.     LINE (xo, yo)-(xd, yd), 7, BF
  757.     xo = 32 * ratio: xd = 182 * ratio: yo = 458 * ratio: yd = 530 * ratio
  758.     LINE (xo, yo)-(xd, yd), 7, BF
  759.     xo = 212 * ratio: xd = 362 * ratio: yo = 458 * ratio: yd = 530 * ratio
  760.     LINE (xo, yo)-(xd, yd), 7, BF
  761.     _FONT ttf24
  762.     COLOR 7, 8
  763.     n$ = RTRIM$(STR$(star(src).t))
  764.     l = _PRINTWIDTH(n$)
  765.     _PRINTSTRING (120 * ratio - l, 112 * ratio), n$, sp
  766.     n$ = RTRIM$(STR$(star(dst).t))
  767.     l = _PRINTWIDTH(n$)
  768.     _PRINTSTRING (300 * ratio - l, 112 * ratio), n$, sp
  769.     _FONT ttf16
  770.     COLOR 0, 7
  771.     _PRINTSTRING (38 * ratio, 347 * ratio), "ALL", sp
  772.     _PRINTSTRING (122 * ratio, 347 * ratio), "HALF", sp
  773.     _PRINTSTRING (214 * ratio, 347 * ratio), "THIRD", sp
  774.     _PRINTSTRING (312 * ratio, 347 * ratio), "CLEAR", sp
  775.     _FONT ttf72
  776.     _PRINTSTRING (60 * ratio, 458 * ratio), "Ok", sp
  777.     _PRINTSTRING (216 * ratio, 458 * ratio), "Quit", sp
  778.     _PUTIMAGE (x1, y1), sp, 0, (0, 0)-(400 * ratio, 540 * ratio)
  779.     panx = x1: pany = y1
  780.     _DEST 0
  781.  
  782. SUB NewGame
  783.     DIM k AS INTEGER
  784.     DIM r AS INTEGER
  785.     DIM dx AS INTEGER
  786.     DIM dy AS INTEGER
  787.     DIM n AS STRING * 10
  788.     paused = 1
  789.     FOR i = 0 TO 999
  790.         fleet(i).o = 0
  791.     NEXT
  792.     slct = 0
  793.     fltcnt = 0
  794.     LL = 25
  795.     seed = RND * 1000
  796.     FOR i = 0 TO 99
  797.         k = 1
  798.         WHILE k
  799.             k = 0
  800.             x = RND * (sw - sww) + swn
  801.             y = RND * (sh - shw) + shn
  802.             r = INT(RND * 200)
  803.             n = names(r)
  804.             FOR j = 0 TO i - 1
  805.                 dx = x - star(j).x
  806.                 dy = y - star(j).y
  807.                 IF ABS(dx) < sww AND ABS(dy) < shw THEN
  808.                     k = 1
  809.                 END IF
  810.                 IF n = star(j).n THEN
  811.                     k = 1
  812.                 END IF
  813.             NEXT
  814.         WEND
  815.         star(i).n = n
  816.         star(i).x = x
  817.         star(i).y = y
  818.         star(i).c = RND * 6 + 9
  819.         star(i).s = RND * 5
  820.         star(i).o = 0
  821.         star(i).p = star(i).s + (RND * 5) + 3
  822.         star(i).t = 0
  823.         order(i).src = 100
  824.     NEXT
  825.     FOR i = 1 TO 6
  826.         ok = 0
  827.         WHILE (ok < 1)
  828.             ok = 1
  829.             j = RND * 100
  830.             FOR k = 1 TO i - 1
  831.                 dist = SQR(ABS(star(j).x - star(home(k)).x) ^ 2 + ABS(star(j).y - star(home(k)).y) ^ 2)
  832.                 IF dist < 500 * ratio THEN
  833.                     ok = 0
  834.                     EXIT FOR
  835.                 END IF
  836.             NEXT
  837.             IF ok = 1 THEN
  838.                 ok = -1
  839.                 FOR k = 0 TO 99
  840.                     dist = SQR(ABS(star(j).x - star(k).x) ^ 2 + ABS(star(j).y - star(k).y) ^ 2)
  841.                     IF dist <= 200 THEN ok = ok + 1
  842.                     IF ok = 1 THEN EXIT FOR
  843.                 NEXT
  844.             END IF
  845.         WEND
  846.         home(i) = j
  847.         star(j).o = i
  848.         star(j).p = 10
  849.         star(j).t = 100
  850.         star(j).s = 4
  851.         star(home(1)).n = "Sol"
  852.         star(home(1)).c = 14
  853.     NEXT
  854.  
  855. ' A lot of star names I made up
  856.  
  857. SUB StarNames
  858.     names(0) = "Acamar"
  859.     names(1) = "Arcab"
  860.     names(2) = "Acrux"
  861.     names(3) = "Adhara"
  862.     names(4) = "Arneb"
  863.     names(5) = "Antares"
  864.     names(6) = "Arcturus"
  865.     names(7) = "Atria"
  866.     names(8) = "Beid"
  867.     names(9) = "Betelgeuse"
  868.     names(10) = "Botein"
  869.     names(11) = "Beemim"
  870.     names(12) = "Bellatrix"
  871.     names(13) = "Bharani"
  872.     names(14) = "Biham"
  873.     names(15) = "Brachium"
  874.     names(16) = "Canopus"
  875.     names(17) = "Capella"
  876.     names(18) = "Castor"
  877.     names(19) = "Chara"
  878.     names(20) = "Cursa"
  879.     names(21) = "Copernicus"
  880.     names(22) = "Chalawan"
  881.     names(23) = "Chertan"
  882.     names(24) = "Dabih"
  883.     names(25) = "Dalim"
  884.     names(26) = "Deneb"
  885.     names(27) = "Denebola"
  886.     names(28) = "Diadem"
  887.     names(29) = "Diphda"
  888.     names(30) = "Dschubba"
  889.     names(31) = "Dziban"
  890.     names(32) = "Edasich"
  891.     names(33) = "Electra"
  892.     names(34) = "Elgafar"
  893.     names(35) = "Elkurud"
  894.     names(36) = "Elnath"
  895.     names(37) = "Eltanin"
  896.     names(38) = "Enif"
  897.     names(39) = "Errai"
  898.     names(40) = "Fafnir"
  899.     names(41) = "Fang"
  900.     names(42) = "Fawaris"
  901.     names(43) = "Felis"
  902.     names(44) = "Fomalhaut"
  903.     names(45) = "Fulu"
  904.     names(46) = "Fumal"
  905.     names(47) = "Furud"
  906.     names(48) = "Garnet"
  907.     names(49) = "Giausar"
  908.     names(50) = "Gienah"
  909.     names(51) = "Ginan"
  910.     names(52) = "Gomeisa"
  911.     names(53) = "Graffias"
  912.     names(54) = "Grumium"
  913.     names(55) = "Gudja"
  914.     names(56) = "Hadar"
  915.     names(57) = "Haedus"
  916.     names(58) = "Hamal"
  917.     names(59) = "Hassaleh"
  918.     names(60) = "Hatysa"
  919.     names(61) = "Helvetios"
  920.     names(62) = "Heze"
  921.     names(63) = "Homan"
  922.     names(64) = "Iklil"
  923.     names(65) = "Imai"
  924.     names(66) = "Intercrus"
  925.     names(67) = "Izar"
  926.     names(68) = "Iccar"
  927.     names(69) = "Inar"
  928.     names(70) = "Iaeth"
  929.     names(71) = "Imaous"
  930.     names(72) = "Jabbah"
  931.     names(73) = "Jishui"
  932.     names(74) = "Jax"
  933.     names(75) = "Jalae"
  934.     names(76) = "Jewel"
  935.     names(77) = "Jumbo"
  936.     names(78) = "Jerue"
  937.     names(79) = "Jabear"
  938.     names(80) = "Kakkab"
  939.     names(81) = "Kang"
  940.     names(82) = "Kekouan"
  941.     names(83) = "Keid"
  942.     names(84) = "Kitalpha"
  943.     names(85) = "Kochab"
  944.     names(86) = "Kolob"
  945.     names(87) = "Kobol"
  946.     names(88) = "Larawag"
  947.     names(89) = "Lesath"
  948.     names(90) = "Libertas"
  949.     names(91) = "Lich"
  950.     names(92) = "Lilly"
  951.     names(93) = "Laddel"
  952.     names(94) = "Luminous"
  953.     names(95) = "Lasacious"
  954.     names(96) = "Mizar"
  955.     names(97) = "Markab"
  956.     names(98) = "Matar"
  957.     names(99) = "Mintaka"
  958.     names(100) = "Meleph"
  959.     names(101) = "Menkar"
  960.     names(102) = "Merga"
  961.     names(103) = "Merope"
  962.     names(104) = "Nahn"
  963.     names(105) = "Naos"
  964.     names(106) = "Nashira"
  965.     names(107) = "Navi"
  966.     names(108) = "Nekkar"
  967.     names(109) = "Nembus"
  968.     names(110) = "Nihal"
  969.     names(111) = "Nunki"
  970.     names(112) = "Ogma"
  971.     names(113) = "Okab"
  972.     names(114) = "Ohmy"
  973.     names(115) = "Oragami"
  974.     names(116) = "Origen"
  975.     names(117) = "Omanii"
  976.     names(118) = "Obytewa"
  977.     names(119) = "Oglok"
  978.     names(120) = "Phact"
  979.     names(121) = "Pherkad"
  980.     names(122) = "Pleione"
  981.     names(122) = "Polaris"
  982.     names(123) = "Pollux"
  983.     names(124) = "Procyon"
  984.     names(125) = "Proxima"
  985.     names(126) = "Polis"
  986.     names(127) = "Quaint"
  987.     names(128) = "Quazzat"
  988.     names(129) = "Quetzal"
  989.     names(130) = "Qussol"
  990.     names(131) = "Quella"
  991.     names(132) = "Quyaeo"
  992.     names(133) = "Ququdas"
  993.     names(134) = "Quekak"
  994.     names(135) = "Rasalas"
  995.     names(136) = "Regor"
  996.     names(137) = "Regulus"
  997.     names(138) = "Rigel"
  998.     names(139) = "Revati"
  999.     names(140) = "Rotenev"
  1000.     names(141) = "Rukbat"
  1001.     names(142) = "Rastaban"
  1002.     names(143) = "Sabik"
  1003.     names(144) = "Sadr"
  1004.     names(145) = "Saiph"
  1005.     names(146) = "Sargas"
  1006.     names(147) = "Sarin"
  1007.     names(148) = "Syrma"
  1008.     names(149) = "Spica"
  1009.     names(150) = "Sirius"
  1010.     names(151) = "Tarazed"
  1011.     names(152) = "Taygeta"
  1012.     names(153) = "Tejat"
  1013.     names(154) = "Thabit"
  1014.     names(155) = "Thuban"
  1015.     names(156) = "Tiaki"
  1016.     names(157) = "Toliman"
  1017.     names(158) = "Torcular"
  1018.     names(157) = "Umala"
  1019.     names(158) = "Ulatte"
  1020.     names(159) = "Ubbessa"
  1021.     names(160) = "Unoless"
  1022.     names(161) = "Umaddem"
  1023.     names(162) = "Ummbra"
  1024.     names(162) = "Uniqu"
  1025.     names(163) = "Uzzaal"
  1026.     names(164) = "Vega"
  1027.     names(165) = "Veritate"
  1028.     names(166) = "Vindetrix"
  1029.     names(167) = "Vedas"
  1030.     names(168) = "Vergg"
  1031.     names(169) = "Vacant"
  1032.     names(170) = "Vucae"
  1033.     names(171) = "Vicar"
  1034.     names(172) = "Wasat"
  1035.     names(173) = "Wazn"
  1036.     names(174) = "Wezen"
  1037.     names(175) = "Waiten"
  1038.     names(176) = "Wachar"
  1039.     names(177) = "Wheelz"
  1040.     names(178) = "Whatsp"
  1041.     names(179) = "Wassand"
  1042.     names(180) = "Xenno"
  1043.     names(181) = "Xyphod"
  1044.     names(182) = "Xu"
  1045.     names(183) = "Xaal"
  1046.     names(184) = "Xyross"
  1047.     names(185) = "Xiggot"
  1048.     names(186) = "Xirrks"
  1049.     names(187) = "Yed"
  1050.     names(188) = "Yildun"
  1051.     names(189) = "Yundun"
  1052.     names(190) = "Yavyo"
  1053.     names(191) = "Yotrac"
  1054.     names(192) = "Yxzoqu"
  1055.     names(193) = "Ynnot"
  1056.     names(194) = "Zaniah"
  1057.     names(195) = "Zaurak"
  1058.     names(196) = "Zhang"
  1059.     names(197) = "Zibal"
  1060.     names(198) = "Zosma"
  1061.     names(199) = "Zuben"
  1062.  
  1063.  
Title: Re: Beyond Sol
Post by: Kazman on December 23, 2019, 07:31:44 am
I will test last version at home, because I'm testing it at work and it does almost nothing... no right click, no menus, no ships moving... I thing it is my problem, this pc is a sh#t :P
Title: Re: Beyond Sol
Post by: romichess on December 23, 2019, 02:04:47 pm
I will test last version at home, because I'm testing it at work and it does almost nothing... no right click, no menus, no ships moving... I thing it is my problem, this pc is a sh#t :P

I'm sorry! Just to be sure I copied the posted code and ran it. It works on my machine. The game DOES START PAUSED now. Right clicking or pressing "p" toggles the paused mode. Even paused, orders should be able to be entered. Thus one should get menus. Please let me know when you get home if it is working for you, or not. Thanks!
Title: Re: Beyond Sol
Post by: romichess on December 24, 2019, 04:31:28 pm
I did find a couple of bugs. They were not fatal bugs. Anyway they are squashed now. And I performed more rigorous testing to make sure that there are no more bugs. And I added two more features. Lines were added for standing orders which are barely visible but if I can see them with my old eyes ... but if they are not visible on a lower contrast monitor, let me know. The second feature is a "mystery player". One of the computer players is randomly selected to use a different algorithm.

Code: QB64: [Select]
  1. TYPE stars
  2.     n AS STRING * 10 '                 Name of star
  3.     x AS INTEGER '                     x-position
  4.     y AS INTEGER '                     y-position
  5.     o AS INTEGER '                     Owner
  6.     c AS INTEGER '                     Color
  7.     s AS INTEGER '                     Size
  8.     t AS LONG '                        Ships
  9.     p AS INTEGER '                     (Population) For now ships production
  10.  
  11. TYPE FLEETS
  12.     t AS LONG
  13.     x1 AS INTEGER
  14.     y1 AS INTEGER
  15.     x2 AS INTEGER
  16.     y2 AS INTEGER
  17.     o AS INTEGER
  18.     d AS INTEGER
  19.  
  20. TYPE ORDERS
  21.     src AS LONG
  22.     ovr AS LONG
  23.     shp AS LONG
  24.     dst AS LONG
  25.  
  26. ' Global variables shared because they are needed in more than one routine
  27. DIM SHARED sw AS INTEGER '             Screen Width
  28. DIM SHARED sh AS INTEGER '             Screen Height
  29. DIM SHARED sww AS INTEGER '            Screen Width Wide margin
  30. DIM SHARED swn AS INTEGER '            Screen Width Narrow adjustment
  31. DIM SHARED shw AS INTEGER '            Screen Height Wide margine
  32. DIM SHARED shn AS INTEGER '            Screen Height Narrow adjustment
  33. DIM SHARED nw AS INTEGER '             games Natural screen Width
  34. DIM SHARED nh AS INTEGER '             games Natural screen Height
  35. DIM SHARED ratio AS _FLOAT '           the Ratio of the games natural screen width to the actual
  36. DIM SHARED star(100) AS stars '        100 stars - may change
  37. DIM SHARED names(200) AS STRING * 10 ' 200 star names
  38. DIM SHARED seed AS INTEGER '           Seed to prime the Randomizer to display identical background each frame
  39. DIM SHARED home(7) AS INTEGER '        The starting star for each player. The human always has star(0), Sol
  40. DIM SHARED tt AS INTEGER '             tt = 0 star names displayed, tt = 0 star names not didplayed
  41. DIM SHARED ch AS STRING * 1 '          Game loop key input variable
  42. DIM SHARED repeat AS INTEGER '         Game loop control variable
  43. DIM SHARED fleet(1000) AS FLEETS
  44. DIM SHARED panx, pany AS INTEGER
  45. DIM SHARED oanx, oany AS INTEGER
  46. DIM SHARED strng AS STRING * 14
  47. DIM SHARED hate(7, 7) AS INTEGER
  48. DIM SHARED strng0 AS STRING * 10
  49. DIM SHARED strng1 AS STRING * 10
  50. DIM SHARED order(100) AS ORDERS
  51. DIM SHARED ord AS ORDERS
  52.  
  53. sw = _DESKTOPWIDTH '                   native video with of syatem
  54. sww = sw / 24 '                        margin based on native video width to keep stars away from edge
  55. swn = sw / 48 '                        adjustment that works with sww to keep stars away from left and top of screen
  56. nw = 1920
  57.  
  58. ratio = sw / 1920 '                    Used to adjust distances and sizes for various screen modes
  59.  
  60. shw = sh / 20
  61. shn = sh / 40
  62. nh = 1080
  63.  
  64. tt = 0
  65. lcx = sw
  66. rcx = sw
  67. cp = 100
  68. h = 100
  69. ar = 0
  70. rng = 200
  71. slct = 0
  72. strng = ""
  73. strng0 = ""
  74. strng1 = ""
  75. src = 100
  76. dst = 100
  77. ord.src = 100
  78.  
  79. SCREEN _NEWIMAGE(sw, sh, 256) '        creates a screen the resolution of the users native system
  80.  
  81.  
  82. sp = _NEWIMAGE(400 * ratio, 540 * ratio, 256)
  83. op = _NEWIMAGE(400 * ratio, 225 * ratio, 256)
  84.  
  85. StarNames '                            Routine to load star names into string array stars(200)
  86.  
  87. NewGame
  88.  
  89. ttf16 = _LOADFONT("cyberbit.ttf", 16 * ratio, "BOLD")
  90. ttf24 = _LOADFONT("cyberbit.ttf", 24 * ratio, "BOLD")
  91. ttf36 = _LOADFONT("cyberbit.ttf", 36 * ratio, "BOLD")
  92. ttf72 = _LOADFONT("cyberbit.ttf", 72 * ratio, "BOLD")
  93.  
  94. repeat = 1
  95.  
  96. WHILE repeat
  97.  
  98.     _LIMIT 60 '                        Set to 200 frames per second
  99.  
  100.     id = INT(RND * 5 + 2)
  101.  
  102.     CLS
  103.  
  104.     PaintBackground
  105.  
  106.     PaintStars
  107.  
  108.     PaintFleet
  109.  
  110.     GetInput
  111.  
  112.     Player
  113.  
  114.     Computer
  115.  
  116.     _DISPLAY
  117.  
  118.  
  119.  
  120. SUB Computer
  121.     STATIC last(7) AS INTEGER
  122.  
  123.     IF paused = 0 THEN
  124.         RANDOMIZE TIMER
  125.         FOR i = 0 TO 99
  126.             r = INT(RND * 60)
  127.             IF r < star(i).p THEN
  128.                 IF star(i).o > 0 THEN
  129.                     star(i).t = star(i).t + 1
  130.                 ELSE
  131.                     IF INT(RND * 10) < 3 THEN
  132.                         star(i).t = star(i).t + 1
  133.                     END IF
  134.                 END IF
  135.             END IF
  136.         NEXT
  137.  
  138.         org = home(id)
  139.         IF star(org).o <> id THEN
  140.             FOR j = 0 TO 99
  141.                 IF star(j).o = id THEN home(id) = j: EXIT FOR
  142.             NEXT
  143.         END IF
  144.  
  145.         FOR p = 0 TO 3
  146.  
  147.             IF p = 0 THEN
  148.                 away = 10000
  149.                 i = home(id)
  150.                 IF id = hid THEN
  151.                     most = 0
  152.                     FOR j = 0 TO 99
  153.                         IF star(j).o <> hid THEN
  154.                             ok = 0
  155.                             FOR k = 0 TO 99
  156.                                 IF star(k).o = hid THEN
  157.                                     dist = SQR(ABS(star(j).x - star(k).x) ^ 2 + ABS(star(j).y - star(k).y) ^ 2)
  158.                                     IF dist <= 250 THEN
  159.                                         ok = 1
  160.                                         EXIT FOR
  161.                                     END IF
  162.                                 END IF
  163.                             NEXT
  164.                             IF ok = 1 THEN
  165.                                 IF star(j).p >= most THEN
  166.                                     most = star(j).p
  167.                                     jay = j
  168.                                 END IF
  169.                             END IF
  170.                         END IF
  171.                     NEXT
  172.                     IF star(i).t > star(jay).t * 3 THEN
  173.                         SendFleet i, jay, star(i).t / 2
  174.                     END IF
  175.                 ELSE
  176.                     IF star(i).t > LL THEN
  177.                         FOR j = 0 TO 99
  178.                             IF star(j).o <> id AND last(id) <> j THEN
  179.                                 ok = 0
  180.                                 FOR k = 0 TO 99
  181.                                     IF star(k).o = id THEN
  182.                                         dist = SQR(ABS(star(j).x - star(k).x) ^ 2 + ABS(star(j).y - star(k).y) ^ 2)
  183.                                         IF dist <= 250 THEN
  184.                                             ok = 1
  185.                                             EXIT FOR
  186.                                         END IF
  187.                                     END IF
  188.                                 NEXT
  189.                                 IF ok = 1 THEN
  190.                                     dist = SQR(ABS(star(i).x - star(j).x) ^ 2 + ABS(star(i).y - star(j).y) ^ 2)
  191.                                     IF dist < away AND star(i).t > star(j).t * 2 THEN
  192.                                         away = dist
  193.                                         jay = j
  194.                                     END IF
  195.                                 END IF
  196.                             END IF
  197.                         NEXT
  198.                         IF away < 10000 THEN
  199.                             last(id) = jay
  200.                             SendFleet i, jay, star(i).t / 1.5
  201.                         END IF
  202.                     END IF
  203.                 END IF
  204.             END IF
  205.  
  206.             IF p = 1 THEN
  207.                 sf2 = 100
  208.                 FOR i = 0 TO 99
  209.                     IF star(i).o = id AND i <> home(id) AND star(i).t > LL * 1.5 THEN
  210.                         sf3 = star(i).t / 2
  211.                         FOR j = 0 TO 99
  212.                             IF star(j).o <> id AND star(i).t > star(j).t * 4 AND id <> hid THEN
  213.                                 FOR k = 0 TO 99
  214.                                     IF star(k).o = id THEN
  215.                                         dist = SQR(ABS(star(k).x - star(j).x) ^ 2 + ABS(star(k).y - star(j).y) ^ 2)
  216.                                         IF dist <= 250 * ratio THEN
  217.                                             sf1 = i
  218.                                             sf2 = j
  219.                                             EXIT FOR
  220.                                         END IF
  221.                                     END IF
  222.                                 NEXT
  223.                             END IF
  224.                         NEXT
  225.                         IF sf2 < 100 THEN EXIT FOR
  226.                     END IF
  227.                 NEXT
  228.                 IF sf2 < 100 THEN
  229.                     SendFleet sf1, sf2, sf3
  230.                     EXIT FOR
  231.                 END IF
  232.             END IF
  233.  
  234.             IF p = 2 THEN
  235.                 FOR i = 0 TO 99
  236.                     IF i <> home(id) AND star(i).o = id THEN
  237.                         IF star(i).t > 49 THEN
  238.                             ok = 1
  239.                             FOR j = 0 TO 99
  240.                                 IF star(j).o <> id AND star(j).o <> 0 THEN
  241.                                     dist = SQR(ABS(star(i).x - star(j).x) ^ 2 + ABS(star(i).y - star(j).y) ^ 2)
  242.                                     IF dist <= 350 * ratio THEN
  243.                                         ok = 0
  244.                                         EXIT FOR
  245.                                     END IF
  246.                                 END IF
  247.                             NEXT
  248.                             IF ok = 1 THEN
  249.                                 SendFleet i, home(id), star(i).t
  250.                                 EXIT FOR
  251.                             END IF
  252.                         END IF
  253.                     END IF
  254.                 NEXT
  255.                 IF ok = 1 THEN EXIT FOR
  256.             END IF
  257.  
  258.             IF p = 3 THEN
  259.                 ok = 0
  260.                 FOR i = 0 TO 99
  261.                     IF i <> home(id) AND star(i).o = id THEN
  262.                         IF star(i).t > LL * 1.5 + star(i).p * 50 THEN
  263.                             ok = 1
  264.                             EXIT FOR
  265.                         END IF
  266.                     END IF
  267.                 NEXT
  268.                 IF ok = 1 THEN
  269.                     SendFleet i, home(id), star(i).t / 4
  270.                     EXIT FOR
  271.                 END IF
  272.             END IF
  273.  
  274.         NEXT
  275.  
  276.         count = fltcnt
  277.         i = 0
  278.         WHILE count
  279.             IF fleet(i).o <> 0 THEN
  280.                 count = count - 1
  281.                 IF fleet(i).x2 > fleet(i).x1 THEN
  282.                     fleet(i).x1 = fleet(i).x1 + 1
  283.                 END IF
  284.                 IF fleet(i).x2 < fleet(i).x1 THEN
  285.                     fleet(i).x1 = fleet(i).x1 - 1
  286.                 END IF
  287.                 IF fleet(i).y2 > fleet(i).y1 THEN
  288.                     fleet(i).y1 = fleet(i).y1 + 1
  289.                 END IF
  290.                 IF fleet(i).y2 < fleet(i).y1 THEN
  291.                     fleet(i).y1 = fleet(i).y1 - 1
  292.                 END IF
  293.                 IF fleet(i).x1 = fleet(i).x2 AND fleet(i).y1 = fleet(i).y2 THEN
  294.                     dest = fleet(i).d
  295.                     IF star(dest).o = fleet(i).o THEN
  296.                         star(dest).t = star(dest).t + fleet(i).t
  297.                         fleet(i).o = 0
  298.                         fltcnt = fltcnt - 1
  299.                     ELSE
  300.                         IF fleet(i).t > star(dest).t * 0.6 THEN
  301.                             alive = 1
  302.                             WHILE alive
  303.                                 alive = 0
  304.                                 damorg = fleet(i).t / 10 + 1
  305.                                 damdst = star(dest).t / 9 + 1
  306.                                 fleet(i).t = fleet(i).t - damdst
  307.                                 star(dest).t = star(dest).t - damorg
  308.                                 IF fleet(i).t > 0 AND star(dest).t > 0 THEN
  309.                                     alive = 1
  310.                                 END IF
  311.                             WEND
  312.                             IF star(dest).t < 1 THEN
  313.                                 hate(star(dest).o, fleet(i).o) = hate(star(dest).o, fleet(i).o) + 1
  314.                                 star(dest).t = fleet(i).t
  315.                                 star(dest).o = fleet(i).o
  316.                             END IF
  317.                             fleet(i).o = 0
  318.                             fltcnt = fltcnt - 1
  319.                         ELSE
  320.                             k = 100
  321.                             shortest = 10000
  322.                             FOR j = 0 TO 99
  323.                                 IF star(j).o = fleet(i).o THEN
  324.                                     dist = SQR(ABS(star(j).x - fleet(i).x1) ^ 2 + ABS(star(j).y - fleet(i).y1) ^ 2)
  325.                                     IF dist < shortest THEN
  326.                                         shortest = dist
  327.                                         k = j
  328.                                     END IF
  329.                                 END IF
  330.                             NEXT
  331.                             IF k < 100 THEN
  332.                                 fleet(i).x2 = star(k).x
  333.                                 fleet(i).y2 = star(k).y
  334.                                 fleet(i).d = k
  335.                             END IF
  336.                         END IF
  337.                     END IF
  338.                 END IF
  339.             END IF
  340.             i = i + 1
  341.         WEND
  342.     END IF
  343.  
  344. SUB GetInput
  345.  
  346.     IF ch = CHR$(27) THEN repeat = 0
  347.     IF ch = "n" THEN NewGame
  348.     IF ch = "t" THEN tt = 1 - tt
  349.     IF ch = "p" THEN paused = 1 - paused
  350.     ch = INKEY$
  351.  
  352.     lclk = 0
  353.     rclk = 0
  354.  
  355.  
  356.         x = _MOUSEX
  357.         y = _MOUSEY
  358.         lmb = _MOUSEBUTTON(1)
  359.         rmb = _MOUSEBUTTON(2)
  360.  
  361.         IF lmb AND lcx = sw THEN lcx = x
  362.         IF rmb AND rcx = sw THEN rcx = x
  363.     WEND
  364.  
  365.     IF lmb = 0 AND lcx < sw THEN lclk = 1
  366.     IF rmb = 0 AND rcx < sw THEN rclk = 1
  367.  
  368.     lcx = sw
  369.     rcx = sw
  370.  
  371.     x = _MOUSEX
  372.     y = _MOUSEY
  373.  
  374.     IF rclk = 1 THEN
  375.         i = Identify
  376.         IF i = 100 THEN
  377.             IF src = 100 THEN
  378.                 paused = 1 - paused
  379.                 ch = ""
  380.             ELSE
  381.                 src = 100
  382.                 oact = 0
  383.                 pact = 0
  384.             END IF
  385.             rclk = 0
  386.         END IF
  387.         IF pact = 1 OR oact = 1 THEN
  388.             rclk = 0
  389.         END IF
  390.     END IF
  391.  
  392.  
  393. FUNCTION Identify
  394.     ii = 100
  395.     FOR i = 0 TO 99
  396.         dx = star(i).x - x
  397.         dy = star(i).y - y
  398.         IF ABS(dx) <= star(i).s + 8 AND ABS(dy) <= star(i).s + 8 THEN
  399.             ii = i
  400.             EXIT FOR
  401.         END IF
  402.     NEXT
  403.     Identify = ii
  404.  
  405. SUB OrderPanel (i)
  406.     x1 = star(i).x - 420 * ratio
  407.     IF star(i).x < sw / 2 THEN x1 = star(i).x + 20 * ratio
  408.     x2 = x1 + 400 * ratio
  409.     y1 = star(i).y
  410.     IF y1 > sh - 225 * ratio THEN y1 = sh - 225 * ratio
  411.     y2 = y1 + 225 * ratio
  412.     _DEST op
  413.     CLS 0, 8
  414.     COLOR 0, 8
  415.     _FONT ttf72
  416.     n$ = RTRIM$(star(i).n)
  417.     l = _PRINTWIDTH(n$)
  418.     _PRINTSTRING ((400 * ratio - l) / 2, 4 * ratio), n$, op
  419.     LINE (20 * ratio, 76 * ratio)-(380 * ratio, 76 * ratio), 0
  420.     _PRINTSTRING (20 * ratio, 80 * ratio), "0123456789", op
  421.     COLOR 7, 8
  422.     _FONT ttf36
  423.     IF box = 0 THEN
  424.         _PRINTSTRING (20 * ratio, 166 * ratio), "If Over", op
  425.         xo = 142 * ratio: xd = 250 * ratio: yo = 166 * ratio: yd = 200 * ratio
  426.         LINE (xo, yo)-(xd, yd), 7, BF
  427.         xo = 268 * ratio: xd = 314 * ratio: yo = 166 * ratio: yd = 200 * ratio
  428.         LINE (xo, yo)-(xd, yd), 7, BF
  429.         xo = 332 * ratio: xd = 366 * ratio: yo = 166 * ratio: yd = 200 * ratio
  430.         LINE (xo, yo)-(xd, yd), 7, BF
  431.         n$ = RTRIM$(strng0)
  432.         COLOR 0, 7
  433.         _FONT ttf24
  434.         _PRINTSTRING (148 * ratio, 172 * ratio), n$, op
  435.         _PRINTSTRING (273 * ratio, 172 * ratio), "OK", op
  436.         _PRINTSTRING (341 * ratio, 172 * ratio), "X", op
  437.     END IF
  438.     IF box = 1 THEN
  439.         _PRINTSTRING (20 * ratio, 166 * ratio), "Then Send", op
  440.         xo = 198 * ratio: xd = 278 * ratio: yo = 166 * ratio: yd = 200 * ratio
  441.         LINE (xo, yo)-(xd, yd), 7, BF
  442.         xo = 294 * ratio: xd = 340 * ratio: yo = 166 * ratio: yd = 200 * ratio
  443.         LINE (xo, yo)-(xd, yd), 7, BF
  444.         xo = 356 * ratio: xd = 390 * ratio: yo = 166 * ratio: yd = 200 * ratio
  445.         LINE (xo, yo)-(xd, yd), 7, BF
  446.         n$ = RTRIM$(strng1)
  447.         COLOR 0, 7
  448.         _FONT ttf24
  449.         _PRINTSTRING (200 * ratio, 172 * ratio), n$, op
  450.         _PRINTSTRING (299 * ratio, 172 * ratio), "OK", op
  451.         _PRINTSTRING (365 * ratio, 172 * ratio), "X", op
  452.     END IF
  453.     _PUTIMAGE (x1, y1), op, 0, (0, 0)-(400 * ratio, 225 * ratio)
  454.     _DEST 0
  455.     oanx = x1: oany = y1
  456.  
  457. SUB PaintBackground
  458.     x = RND * sw
  459.     y = RND * sh
  460.     c = RND * 14 + 1
  461.     PSET (x, y), c
  462.     RANDOMIZE USING seed
  463.     FOR i = 1 TO 600 * ratio
  464.         x = RND * sw
  465.         y = RND * sh
  466.         c = RND * 14 + 1
  467.         PSET (x, y), c
  468.     NEXT
  469.  
  470. SUB PaintFleet
  471.     count = fltcnt
  472.     i = 0
  473.     WHILE count
  474.         IF fleet(i).o <> 0 THEN
  475.             CIRCLE (fleet(i).x1, fleet(i).y1), 3, fleet(i).o + 8
  476.             count = count - 1
  477.         END IF
  478.         i = i + 1
  479.     WEND
  480.  
  481. SUB PaintStars
  482.     FOR i = 0 TO 99
  483.         c = star(i).c
  484.         x = star(i).x
  485.         y = star(i).y
  486.         o = star(i).o
  487.         CIRCLE (x, y), (star(i).s + 8) * ratio, c
  488.         COLOR 15
  489.         IF o > 0 THEN
  490.             PAINT (x, y), o + 8, c
  491.         END IF
  492.         _FONT ttf16
  493.         IF tt THEN
  494.             n$ = star(i).n
  495.             n$ = RTRIM$(n$)
  496.             l = _PRINTWIDTH(n$)
  497.             _PRINTSTRING (x + 10, y), STR$(star(i).p), 0
  498.         ELSE
  499.             n$ = STR$(star(i).t)
  500.             l = _PRINTWIDTH(n$)
  501.         END IF
  502.         _PRINTSTRING (x - l / 2, y + 14), n$, 0
  503.     NEXT
  504.  
  505. SUB Player
  506.     'Add new order to standing orders
  507.     IF ord.src <> 100 THEN
  508.         i = ord.src
  509.         IF ord.shp = 0 THEN
  510.             order(i).src = 100
  511.         ELSE
  512.             order(i) = ord
  513.         END IF
  514.         src = 100
  515.         ord.src = 100
  516.     END IF
  517.  
  518.     'execute standing orders
  519.     FOR i = 0 TO 99
  520.         IF order(i).src <> 100 THEN
  521.             IF star(i).o <> 1 THEN
  522.                 order(i).src = 100
  523.             ELSE
  524.                 LINE (star(i).x, star(i).y)-(star(order(i).dst).x, star(order(i).dst).y), 17
  525.                 IF star(i).t >= order(i).ovr THEN
  526.                     SendFleet order(i).src, order(i).dst, order(i).shp
  527.                 END IF
  528.             END IF
  529.         END IF
  530.     NEXT
  531.  
  532.     IF pact = 0 AND oact = 0 THEN
  533.  
  534.         'If there is no source star see if we can get one
  535.         IF src = 100 THEN
  536.             IF lclk = 1 OR rclk = 1 THEN
  537.                 lclk = 0
  538.                 rclk = 0
  539.                 src = Identify
  540.             END IF
  541.         END IF
  542.  
  543.         ' If there is a source star then look for a right click else draw a range line
  544.         IF src <> 100 THEN
  545.             c = 12
  546.             FOR i = 0 TO 99
  547.                 IF star(i).o = 1 THEN
  548.                     dist = SQR(ABS(star(i).x - x) ^ 2 + ABS(star(i).y - y) ^ 2)
  549.                     IF dist <= 250 * ratio THEN
  550.                         c = 10
  551.                         EXIT FOR
  552.                     END IF
  553.                 END IF
  554.             NEXT
  555.             i = Identify
  556.             IF i <> 100 THEN
  557.                 x = star(i).x
  558.                 y = star(i).y
  559.             END IF
  560.             rang = SQR(ABS(star(src).x - x) ^ 2 + ABS(star(src).y - y) ^ 2)
  561.             LINE (star(src).x, star(src).y)-(x, y), c
  562.             n$ = STR$(INT(rang))
  563.             _FONT ttf16
  564.             _PRINTSTRING (x + 20, y), n$, 0
  565.         END IF
  566.  
  567.         'If we have a source star see if we clicked on a destination star
  568.         IF src <> 100 THEN
  569.             IF lclk = 1 OR rclk = 1 THEN
  570.                 i = Identify
  571.                 IF i < 100 AND i <> src THEN
  572.                     IF lclk = 1 THEN
  573.                         lclk = 0
  574.                         FOR j = 0 TO 99
  575.                             IF star(j).o = 1 THEN
  576.                                 dist = SQR(ABS(star(i).x - star(j).x) ^ 2 + ABS(star(i).y - star(j).y) ^ 2)
  577.                                 IF dist <= 250 THEN
  578.                                     dst = i
  579.                                     pact = 1
  580.                                     EXIT FOR
  581.                                 END IF
  582.                             END IF
  583.                         NEXT
  584.                     ELSE
  585.                         rclk = 0
  586.                         dst = i
  587.                         IF star(i).o = 1 THEN
  588.                             oact = 1
  589.                         END IF
  590.                     END IF
  591.                 END IF
  592.             END IF
  593.         END IF
  594.  
  595.     END IF
  596.  
  597.     'If the star standing orders panel is active
  598.     IF oact = 1 THEN
  599.  
  600.         IF star(src).o = 1 THEN
  601.             OrderPanel dst
  602.         END IF
  603.  
  604.         IF rclk = 1 THEN oact = 0
  605.  
  606.         IF box = 0 THEN
  607.             tmp$ = RTRIM$(strng0)
  608.         ELSE
  609.             tmp$ = RTRIM$(strng1)
  610.         END IF
  611.  
  612.         IF lclk = 1 THEN
  613.  
  614.             x1 = oanx: x2 = oanx + 400 * ratio
  615.             y1 = oany: y2 = oany + 540 * ratio
  616.  
  617.             IF y > y1 + 80 * ratio AND y < y1 + 152 * ratio THEN
  618.                 IF x > x1 + 20 * ratio AND x < x1 + 380 * ratio THEN
  619.                     dig = (x - x1 - 32 * ratio) / (37 * ratio)
  620.                     IF box = 0 THEN
  621.                         n$ = RTRIM$(strng0)
  622.                         l = LEN(n$)
  623.                         IF l < 8 THEN strng0 = tmp$ + STR$(dig)
  624.                     ELSE
  625.                         n$ = RTRIM$(strng1)
  626.                         l = LEN(n$)
  627.                         IF l < 8 THEN strng1 = tmp$ + STR$(dig)
  628.                     END IF
  629.                 END IF
  630.             END IF
  631.  
  632.             IF y > y1 + 166 * ratio AND y < y1 + 200 * ratio THEN
  633.  
  634.                 IF box = 0 THEN
  635.  
  636.                     IF x > x1 + 268 * ratio AND x < x1 + 314 * ratio THEN
  637.                         ord.ovr = INT(VAL(strng0))
  638.                         box = 1
  639.                     END IF
  640.  
  641.                     IF x > x1 + 332 * ratio AND x < x1 + 366 * ratio THEN
  642.                         strng0 = ""
  643.                     END IF
  644.  
  645.                 ELSE
  646.  
  647.                     IF x > x1 + 294 * ratio AND x < x1 + 340 * ratio THEN
  648.                         IF INT(VAL(strng1)) > ord.ovr THEN
  649.                             strng1 = ""
  650.                         ELSE
  651.                             box = 0
  652.                             oact = 0
  653.                             ord.src = src
  654.                             ord.dst = dst
  655.                             ord.shp = VAL(strng1)
  656.                             strng0 = ""
  657.                             strng1 = ""
  658.                         END IF
  659.                     END IF
  660.  
  661.                     IF x > x1 + 356 * ratio AND x < x1 + 390 * ratio THEN
  662.                         strng0 = ""
  663.                         strng1 = ""
  664.                         box = 0
  665.                     END IF
  666.  
  667.                 END IF
  668.  
  669.             END IF
  670.         END IF
  671.         x1 = 10000: y1 = 10000
  672.  
  673.     END IF
  674.  
  675.  
  676.     'If the fleet send panel is active
  677.     IF pact = 1 THEN
  678.         IF rclk = 1 THEN pact = 0
  679.         IF star(src).o = 1 THEN
  680.             ShowPanel dst
  681.         END IF
  682.         IF lclk = 1 THEN
  683.             tmp$ = RTRIM$(strng)
  684.  
  685.             x1 = panx: x2 = panx + 400 * ratio
  686.             y1 = pany: y2 = pany + 540 * ratio
  687.  
  688.             IF y > y1 + 256 * ratio AND y < y1 + 328 * ratio THEN
  689.                 IF x > x1 + 20 * ratio AND x < x1 + 380 * ratio THEN
  690.                     dig = (x - x1 - 32 * ratio) / (37 * ratio)
  691.                     strng = tmp$ + STR$(dig)
  692.                 END IF
  693.             END IF
  694.  
  695.             IF y > y1 + 334 * ratio AND y < y1 + 374 * ratio THEN
  696.                 IF x > x1 + 20 * ratio AND x < x1 + 84 * ratio THEN
  697.                     pact = 0
  698.                     value = star(src).t
  699.                     SendFleet src, dst, value
  700.                     src = 100
  701.                 END IF
  702.                 IF x > x1 + 102 * ratio AND x < x1 + 184 * ratio THEN
  703.                     pact = 0
  704.                     value = star(src).t / 2
  705.                     SendFleet src, dst, value
  706.                     src = 100
  707.                 END IF
  708.                 IF x > x1 + 202 * ratio AND x < x1 + 282 * ratio THEN
  709.                     pact = 0
  710.                     value = star(src).t / 3
  711.                     SendFleet src, dst, value
  712.                     src = 100
  713.                 END IF
  714.                 IF x > x1 + 300 * ratio AND x < x1 + 380 * ratio THEN
  715.                     strng = ""
  716.                 END IF
  717.             END IF
  718.  
  719.             IF y > y1 + 460 * ratio AND y < y1 + 530 * ratio THEN
  720.                 IF x > x1 + 32 * ratio AND x < x1 + 182 * ratio THEN
  721.                     value = VAL(strng)
  722.                     strng = ""
  723.                     pact = 0
  724.                     IF value <= star(src).t THEN
  725.                         SendFleet src, dst, value
  726.                     END IF
  727.                     src = 100
  728.                 END IF
  729.                 IF x > x1 + 212 * ratio AND x < x1 + 362 * ratio THEN
  730.                     pact = 0
  731.                     src = 100
  732.                     strng = ""
  733.                 END IF
  734.             END IF
  735.         END IF
  736.     END IF
  737.  
  738. SUB SendFleet (src, dst, ships)
  739.     FOR i = 0 TO 999
  740.         IF fleet(i).o = 0 THEN
  741.             fleet(i).o = star(src).o
  742.             fleet(i).d = dst
  743.             fleet(i).x1 = star(src).x
  744.             fleet(i).y1 = star(src).y
  745.             fleet(i).x2 = star(dst).x
  746.             fleet(i).y2 = star(dst).y
  747.             fleet(i).t = ships
  748.             star(src).t = star(src).t - ships
  749.             fltcnt = fltcnt + 1
  750.             EXIT FOR
  751.         END IF
  752.     NEXT
  753.     LL = LL + 1
  754.  
  755. SUB ShowPanel (i)
  756.     x1 = star(i).x - 420 * ratio
  757.     IF star(i).x < sw / 2 THEN x1 = star(i).x + 20 * ratio
  758.     x2 = x1 + 400 * ratio
  759.     y1 = star(i).y
  760.     IF y1 > sh - 560 * ratio THEN y1 = sh - 560 * ratio
  761.     y2 = y1 + 540 * ratio
  762.     _DEST sp
  763.     CLS 0, 8
  764.     COLOR 0, 8
  765.     _FONT ttf72
  766.     n$ = RTRIM$(star(src).n)
  767.     l = _PRINTWIDTH(n$)
  768.     _PRINTSTRING ((400 * ratio - l) / 2, 12 * ratio), n$, sp
  769.     n$ = "to"
  770.     l = _PRINTWIDTH(n$)
  771.     _PRINTSTRING ((400 * ratio - l) / 2, 80 * ratio), n$, sp
  772.     n$ = RTRIM$(star(dst).n)
  773.     l = _PRINTWIDTH(n$)
  774.     _PRINTSTRING ((400 * ratio - l) / 2, 152 * ratio), n$, sp
  775.     LINE (20 * ratio, 239 * ratio)-(380 * ratio, 239 * ratio), 0
  776.     _PRINTSTRING (20 * ratio, 256 * ratio), "0123456789", sp
  777.     n$ = RTRIM$(strng)
  778.     l = _PRINTWIDTH(n$)
  779.     _PRINTSTRING ((400 * ratio - l) / 2, 383 * ratio), n$, sp
  780.     xo = 20 * ratio: xd = 84 * ratio: yo = 334 * ratio: yd = 374 * ratio
  781.     LINE (xo, yo)-(xd, yd), 7, BF
  782.     xo = 102 * ratio: xd = 184 * ratio: yo = 334 * ratio: yd = 374 * ratio
  783.     LINE (xo, yo)-(xd, yd), 7, BF
  784.     xo = 202 * ratio: xd = 282 * ratio: yo = 334 * ratio: yd = 374 * ratio
  785.     LINE (xo, yo)-(xd, yd), 7, BF
  786.     xo = 300 * ratio: xd = 380 * ratio: yo = 334 * ratio: yd = 374 * ratio
  787.     LINE (xo, yo)-(xd, yd), 7, BF
  788.     xo = 32 * ratio: xd = 182 * ratio: yo = 458 * ratio: yd = 530 * ratio
  789.     LINE (xo, yo)-(xd, yd), 7, BF
  790.     xo = 212 * ratio: xd = 362 * ratio: yo = 458 * ratio: yd = 530 * ratio
  791.     LINE (xo, yo)-(xd, yd), 7, BF
  792.     _FONT ttf24
  793.     COLOR 7, 8
  794.     n$ = RTRIM$(STR$(star(src).t))
  795.     l = _PRINTWIDTH(n$)
  796.     _PRINTSTRING (120 * ratio - l, 112 * ratio), n$, sp
  797.     n$ = RTRIM$(STR$(star(dst).t))
  798.     l = _PRINTWIDTH(n$)
  799.     _PRINTSTRING (300 * ratio - l, 112 * ratio), n$, sp
  800.     _FONT ttf16
  801.     COLOR 0, 7
  802.     _PRINTSTRING (38 * ratio, 347 * ratio), "ALL", sp
  803.     _PRINTSTRING (122 * ratio, 347 * ratio), "HALF", sp
  804.     _PRINTSTRING (214 * ratio, 347 * ratio), "THIRD", sp
  805.     _PRINTSTRING (312 * ratio, 347 * ratio), "CLEAR", sp
  806.     _FONT ttf72
  807.     _PRINTSTRING (60 * ratio, 458 * ratio), "Ok", sp
  808.     _PRINTSTRING (216 * ratio, 458 * ratio), "Quit", sp
  809.     _PUTIMAGE (x1, y1), sp, 0, (0, 0)-(400 * ratio, 540 * ratio)
  810.     panx = x1: pany = y1
  811.     _DEST 0
  812.  
  813. SUB NewGame
  814.     DIM k AS INTEGER
  815.     DIM r AS INTEGER
  816.     DIM dx AS INTEGER
  817.     DIM dy AS INTEGER
  818.     DIM n AS STRING * 10
  819.     paused = 1
  820.     FOR i = 0 TO 999
  821.         fleet(i).o = 0
  822.     NEXT
  823.     slct = 0
  824.     fltcnt = 0
  825.     LL = 25
  826.     seed = RND * 1000
  827.     FOR i = 0 TO 99
  828.         k = 1
  829.         WHILE k
  830.             k = 0
  831.             x = RND * (sw - sww) + swn
  832.             y = RND * (sh - shw) + shn
  833.             r = INT(RND * 200)
  834.             n = names(r)
  835.             FOR j = 0 TO i - 1
  836.                 dx = x - star(j).x
  837.                 dy = y - star(j).y
  838.                 IF ABS(dx) < sww AND ABS(dy) < shw THEN
  839.                     k = 1
  840.                 END IF
  841.                 IF n = star(j).n THEN
  842.                     k = 1
  843.                 END IF
  844.             NEXT
  845.         WEND
  846.         star(i).n = n
  847.         star(i).x = x
  848.         star(i).y = y
  849.         star(i).c = RND * 6 + 9
  850.         star(i).s = RND * 5
  851.         star(i).o = 0
  852.         star(i).p = star(i).s + (RND * 5) + 3
  853.         star(i).t = 0
  854.         order(i).src = 100
  855.     NEXT
  856.     FOR i = 1 TO 6
  857.         ok = 0
  858.         WHILE (ok < 1)
  859.             ok = 1
  860.             j = RND * 100
  861.             FOR k = 1 TO i - 1
  862.                 dist = SQR(ABS(star(j).x - star(home(k)).x) ^ 2 + ABS(star(j).y - star(home(k)).y) ^ 2)
  863.                 IF dist < 500 * ratio THEN
  864.                     ok = 0
  865.                     EXIT FOR
  866.                 END IF
  867.             NEXT
  868.             IF ok = 1 THEN
  869.                 ok = -1
  870.                 FOR k = 0 TO 99
  871.                     dist = SQR(ABS(star(j).x - star(k).x) ^ 2 + ABS(star(j).y - star(k).y) ^ 2)
  872.                     IF dist <= 200 THEN ok = ok + 1
  873.                     IF ok = 1 THEN EXIT FOR
  874.                 NEXT
  875.             END IF
  876.         WEND
  877.         home(i) = j
  878.         star(j).o = i
  879.         star(j).p = 10
  880.         star(j).t = 100
  881.         star(j).s = 4
  882.     NEXT
  883.     star(home(1)).n = "Sol"
  884.     star(home(1)).c = 14
  885.     away = 0
  886.     from = home(1)
  887.     FOR i = 2 TO 6
  888.         too = home(i)
  889.         dist = SQR(ABS(star(from).x - star(too).x ^ 2 - ABS(star(from).y - star(too).y) ^ 2))
  890.         IF dist > away THEN
  891.             away = dist
  892.             hid = i
  893.         END IF
  894.     NEXT
  895.  
  896. ' A lot of star names I made up
  897.  
  898. SUB StarNames
  899.     names(0) = "Acamar"
  900.     names(1) = "Arcab"
  901.     names(2) = "Acrux"
  902.     names(3) = "Adhara"
  903.     names(4) = "Arneb"
  904.     names(5) = "Antares"
  905.     names(6) = "Arcturus"
  906.     names(7) = "Atria"
  907.     names(8) = "Beid"
  908.     names(9) = "Betelgeuse"
  909.     names(10) = "Botein"
  910.     names(11) = "Beemim"
  911.     names(12) = "Bellatrix"
  912.     names(13) = "Bharani"
  913.     names(14) = "Biham"
  914.     names(15) = "Brachium"
  915.     names(16) = "Canopus"
  916.     names(17) = "Capella"
  917.     names(18) = "Castor"
  918.     names(19) = "Chara"
  919.     names(20) = "Cursa"
  920.     names(21) = "Copernicus"
  921.     names(22) = "Chalawan"
  922.     names(23) = "Chertan"
  923.     names(24) = "Dabih"
  924.     names(25) = "Dalim"
  925.     names(26) = "Deneb"
  926.     names(27) = "Denebola"
  927.     names(28) = "Diadem"
  928.     names(29) = "Diphda"
  929.     names(30) = "Dschubba"
  930.     names(31) = "Dziban"
  931.     names(32) = "Edasich"
  932.     names(33) = "Electra"
  933.     names(34) = "Elgafar"
  934.     names(35) = "Elkurud"
  935.     names(36) = "Elnath"
  936.     names(37) = "Eltanin"
  937.     names(38) = "Enif"
  938.     names(39) = "Errai"
  939.     names(40) = "Fafnir"
  940.     names(41) = "Fang"
  941.     names(42) = "Fawaris"
  942.     names(43) = "Felis"
  943.     names(44) = "Fomalhaut"
  944.     names(45) = "Fulu"
  945.     names(46) = "Fumal"
  946.     names(47) = "Furud"
  947.     names(48) = "Garnet"
  948.     names(49) = "Giausar"
  949.     names(50) = "Gienah"
  950.     names(51) = "Ginan"
  951.     names(52) = "Gomeisa"
  952.     names(53) = "Graffias"
  953.     names(54) = "Grumium"
  954.     names(55) = "Gudja"
  955.     names(56) = "Hadar"
  956.     names(57) = "Haedus"
  957.     names(58) = "Hamal"
  958.     names(59) = "Hassaleh"
  959.     names(60) = "Hatysa"
  960.     names(61) = "Helvetios"
  961.     names(62) = "Heze"
  962.     names(63) = "Homan"
  963.     names(64) = "Iklil"
  964.     names(65) = "Imai"
  965.     names(66) = "Intercrus"
  966.     names(67) = "Izar"
  967.     names(68) = "Iccar"
  968.     names(69) = "Inar"
  969.     names(70) = "Iaeth"
  970.     names(71) = "Imaous"
  971.     names(72) = "Jabbah"
  972.     names(73) = "Jishui"
  973.     names(74) = "Jax"
  974.     names(75) = "Jalae"
  975.     names(76) = "Jewel"
  976.     names(77) = "Jumbo"
  977.     names(78) = "Jerue"
  978.     names(79) = "Jabear"
  979.     names(80) = "Kakkab"
  980.     names(81) = "Kang"
  981.     names(82) = "Kekouan"
  982.     names(83) = "Keid"
  983.     names(84) = "Kitalpha"
  984.     names(85) = "Kochab"
  985.     names(86) = "Kolob"
  986.     names(87) = "Kobol"
  987.     names(88) = "Larawag"
  988.     names(89) = "Lesath"
  989.     names(90) = "Libertas"
  990.     names(91) = "Lich"
  991.     names(92) = "Lilly"
  992.     names(93) = "Laddel"
  993.     names(94) = "Luminous"
  994.     names(95) = "Lasacious"
  995.     names(96) = "Mizar"
  996.     names(97) = "Markab"
  997.     names(98) = "Matar"
  998.     names(99) = "Mintaka"
  999.     names(100) = "Meleph"
  1000.     names(101) = "Menkar"
  1001.     names(102) = "Merga"
  1002.     names(103) = "Merope"
  1003.     names(104) = "Nahn"
  1004.     names(105) = "Naos"
  1005.     names(106) = "Nashira"
  1006.     names(107) = "Navi"
  1007.     names(108) = "Nekkar"
  1008.     names(109) = "Nembus"
  1009.     names(110) = "Nihal"
  1010.     names(111) = "Nunki"
  1011.     names(112) = "Ogma"
  1012.     names(113) = "Okab"
  1013.     names(114) = "Ohmy"
  1014.     names(115) = "Oragami"
  1015.     names(116) = "Origen"
  1016.     names(117) = "Omanii"
  1017.     names(118) = "Obytewa"
  1018.     names(119) = "Oglok"
  1019.     names(120) = "Phact"
  1020.     names(121) = "Pherkad"
  1021.     names(122) = "Pleione"
  1022.     names(122) = "Polaris"
  1023.     names(123) = "Pollux"
  1024.     names(124) = "Procyon"
  1025.     names(125) = "Proxima"
  1026.     names(126) = "Polis"
  1027.     names(127) = "Quaint"
  1028.     names(128) = "Quazzat"
  1029.     names(129) = "Quetzal"
  1030.     names(130) = "Qussol"
  1031.     names(131) = "Quella"
  1032.     names(132) = "Quyaeo"
  1033.     names(133) = "Ququdas"
  1034.     names(134) = "Quekak"
  1035.     names(135) = "Rasalas"
  1036.     names(136) = "Regor"
  1037.     names(137) = "Regulus"
  1038.     names(138) = "Rigel"
  1039.     names(139) = "Revati"
  1040.     names(140) = "Rotenev"
  1041.     names(141) = "Rukbat"
  1042.     names(142) = "Rastaban"
  1043.     names(143) = "Sabik"
  1044.     names(144) = "Sadr"
  1045.     names(145) = "Saiph"
  1046.     names(146) = "Sargas"
  1047.     names(147) = "Sarin"
  1048.     names(148) = "Syrma"
  1049.     names(149) = "Spica"
  1050.     names(150) = "Sirius"
  1051.     names(151) = "Tarazed"
  1052.     names(152) = "Taygeta"
  1053.     names(153) = "Tejat"
  1054.     names(154) = "Thabit"
  1055.     names(155) = "Thuban"
  1056.     names(156) = "Tiaki"
  1057.     names(157) = "Toliman"
  1058.     names(158) = "Torcular"
  1059.     names(157) = "Umala"
  1060.     names(158) = "Ulatte"
  1061.     names(159) = "Ubbessa"
  1062.     names(160) = "Unoless"
  1063.     names(161) = "Umaddem"
  1064.     names(162) = "Ummbra"
  1065.     names(162) = "Uniqu"
  1066.     names(163) = "Uzzaal"
  1067.     names(164) = "Vega"
  1068.     names(165) = "Veritate"
  1069.     names(166) = "Vindetrix"
  1070.     names(167) = "Vedas"
  1071.     names(168) = "Vergg"
  1072.     names(169) = "Vacant"
  1073.     names(170) = "Vucae"
  1074.     names(171) = "Vicar"
  1075.     names(172) = "Wasat"
  1076.     names(173) = "Wazn"
  1077.     names(174) = "Wezen"
  1078.     names(175) = "Waiten"
  1079.     names(176) = "Wachar"
  1080.     names(177) = "Wheelz"
  1081.     names(178) = "Whatsp"
  1082.     names(179) = "Wassand"
  1083.     names(180) = "Xenno"
  1084.     names(181) = "Xyphod"
  1085.     names(182) = "Xu"
  1086.     names(183) = "Xaal"
  1087.     names(184) = "Xyross"
  1088.     names(185) = "Xiggot"
  1089.     names(186) = "Xirrks"
  1090.     names(187) = "Yed"
  1091.     names(188) = "Yildun"
  1092.     names(189) = "Yundun"
  1093.     names(190) = "Yavyo"
  1094.     names(191) = "Yotrac"
  1095.     names(192) = "Yxzoqu"
  1096.     names(193) = "Ynnot"
  1097.     names(194) = "Zaniah"
  1098.     names(195) = "Zaurak"
  1099.     names(196) = "Zhang"
  1100.     names(197) = "Zibal"
  1101.     names(198) = "Zosma"
  1102.     names(199) = "Zuben"
  1103.  
Title: Re: Beyond Sol
Post by: romichess on December 30, 2019, 07:25:47 pm
 The instructions are in the attachment.

Starbases are still in development. To do them well is proving more difficult than expected. When and where to build them is not easy. Unless one gets off to a good start it is very hard to beat the computer. If beating the computer is too difficult I may add starbases for the human player first.

Code: QB64: [Select]
  1. TYPE stars
  2.     n AS STRING * 10 '                 Name of star
  3.     x AS INTEGER '                     x-position
  4.     y AS INTEGER '                     y-position
  5.     o AS INTEGER '                     Owner
  6.     c AS INTEGER '                     Color
  7.     s AS INTEGER '                     Size
  8.     t AS LONG '                        Ships
  9.     p AS INTEGER '
  10.     d AS INTEGER '                   (Population) For now ships production
  11.  
  12. TYPE FLEETS
  13.     t AS LONG
  14.     x1 AS INTEGER
  15.     y1 AS INTEGER
  16.     x2 AS INTEGER
  17.     y2 AS INTEGER
  18.     o AS INTEGER
  19.     d AS INTEGER
  20.  
  21. TYPE ORDERS
  22.     src AS LONG
  23.     ovr AS LONG
  24.     shp AS LONG
  25.     dst AS LONG
  26.  
  27. ' Global variables shared because they are needed in more than one routine
  28. DIM SHARED sw AS INTEGER '             Screen Width
  29. DIM SHARED sh AS INTEGER '             Screen Height
  30. DIM SHARED sww AS INTEGER '            Screen Width Wide margin
  31. DIM SHARED swn AS INTEGER '            Screen Width Narrow adjustment
  32. DIM SHARED shw AS INTEGER '            Screen Height Wide margine
  33. DIM SHARED shn AS INTEGER '            Screen Height Narrow adjustment
  34. DIM SHARED nw AS INTEGER '             games Natural screen Width
  35. DIM SHARED nh AS INTEGER '             games Natural screen Height
  36. DIM SHARED ratio AS _FLOAT '           the Ratio of the games natural screen width to the actual
  37. DIM SHARED star(100) AS stars '        100 stars - may change
  38. DIM SHARED names(200) AS STRING * 10 ' 200 star names
  39. DIM SHARED seed AS INTEGER '           Seed to prime the Randomizer to display identical background each frame
  40. DIM SHARED home(7) AS INTEGER '        The starting star for each player. The human always has star(0), Sol
  41. DIM SHARED tt AS INTEGER '             tt = 0 star names displayed, tt = 0 star names not didplayed
  42. DIM SHARED ch AS STRING * 1 '          Game loop key input variable
  43. DIM SHARED repeat AS INTEGER '         Game loop control variable
  44. DIM SHARED fleet(2000) AS FLEETS
  45. DIM SHARED panx, pany AS INTEGER
  46. DIM SHARED oanx, oany AS INTEGER
  47. DIM SHARED strng AS STRING * 14
  48. 'DIM SHARED hate(7, 7) AS INTEGER
  49. DIM SHARED strng0 AS STRING * 10
  50. DIM SHARED strng1 AS STRING * 10
  51. DIM SHARED order(100) AS ORDERS
  52. DIM SHARED ord AS ORDERS
  53. DIM SHARED hate(7, 7) AS LONG
  54.  
  55.  
  56. sw = _DESKTOPWIDTH '                   native video with of syatem
  57. sww = sw / 24 '                        margin based on native video width to keep stars away from edge
  58. swn = sw / 48 '                        adjustment that works with sww to keep stars away from left and top of screen
  59. nw = 1920
  60.  
  61. ratio = sw / 1920 '                    Used to adjust distances and sizes for various screen modes
  62.  
  63. shw = sh / 20
  64. shn = sh / 40
  65. nh = 1080
  66.  
  67. tt = 0
  68. lcx = sw
  69. rcx = sw
  70. cp = 100
  71. h = 100
  72. ar = 0
  73. rng = 200
  74. slct = 0
  75. strng = ""
  76. strng0 = ""
  77. strng1 = ""
  78. src = 100
  79. dst = 100
  80. ord.src = 100
  81.  
  82. SCREEN _NEWIMAGE(sw, sh, 256) '        creates a screen the resolution of the users native system
  83.  
  84.  
  85. sp = _NEWIMAGE(400 * ratio, 540 * ratio, 256)
  86. op = _NEWIMAGE(400 * ratio, 225 * ratio, 256)
  87.  
  88. StarNames '                            Routine to load star names into string array stars(200)
  89.  
  90. NewGame
  91.  
  92. ttf16 = _LOADFONT("cyberbit.ttf", 16 * ratio, "BOLD")
  93. ttf24 = _LOADFONT("cyberbit.ttf", 24 * ratio, "BOLD")
  94. ttf36 = _LOADFONT("cyberbit.ttf", 36 * ratio, "BOLD")
  95. ttf72 = _LOADFONT("cyberbit.ttf", 72 * ratio, "BOLD")
  96.  
  97. repeat = 1
  98.  
  99. WHILE repeat
  100.  
  101.     id = INT(RND * 5 + 2)
  102.  
  103.     CLS
  104.  
  105.     PaintBackground
  106.  
  107.     PaintStars
  108.  
  109.     PaintFleet
  110.  
  111.     FOR it = 0 TO speed
  112.  
  113.         GetInput
  114.  
  115.         Player
  116.  
  117.         Computer
  118.  
  119.     NEXT
  120.  
  121.     PRINT LL
  122.  
  123.     _DISPLAY
  124.  
  125.  
  126.  
  127. SUB Computer
  128.  
  129.     IF paused = 0 THEN
  130.         RANDOMIZE TIMER
  131.         FOR i = 0 TO 99
  132.             r = INT(RND * 60)
  133.             IF r < star(i).p THEN
  134.                 IF star(i).o > 0 THEN
  135.                     star(i).t = star(i).t + 1
  136.                 ELSE
  137.                     IF INT(RND * 10) < 3 THEN
  138.                         star(i).t = star(i).t + 1
  139.                     END IF
  140.                 END IF
  141.             END IF
  142.         NEXT
  143.  
  144.         i = home(id)
  145.         IF star(i).o <> id THEN
  146.             FOR j = 0 TO 99
  147.                 IF star(j).o = id THEN home(id) = j: i = j: EXIT FOR
  148.             NEXT
  149.         END IF
  150.  
  151.         dis = 0
  152.         hid = 0
  153.         FOR j = 1 TO 6
  154.             IF j <> id THEN
  155.                 IF hate(id, j) > dis THEN
  156.                     dis = hate(id, j)
  157.                     hid = j
  158.                 END IF
  159.             END IF
  160.         NEXT
  161.  
  162.         FOR p = 0 TO 3
  163.  
  164.             IF p = 0 THEN
  165.                 IF star(i).t > LL THEN
  166.                     away = 10000
  167.                     jay = 100
  168.                     FOR j = 0 TO 99
  169.                         IF star(j).d > 0 THEN
  170.                             star(j).d = star(j).d - 1
  171.                         ELSE
  172.                             IF star(j).o = hid THEN th = 3 ELSE th = 4
  173.                             IF star(j).o <> id AND star(i).t > star(j).t * th THEN
  174.                                 ok = 0
  175.                                 FOR k = 0 TO 99
  176.                                     IF star(k).o = id THEN
  177.                                         dist = SQR(ABS(star(j).x - star(k).x) ^ 2 + ABS(star(j).y - star(k).y) ^ 2)
  178.                                         IF dist < 251 THEN
  179.                                             ok = 1
  180.                                             EXIT FOR
  181.                                         END IF
  182.                                     END IF
  183.                                 NEXT
  184.                                 IF ok = 1 THEN
  185.                                     dist = SQR(ABS(star(j).x - star(i).x) ^ 2 + ABS(star(j).y - star(i).y) ^ 2)
  186.                                     IF dist < away THEN
  187.                                         away = dist
  188.                                         jay = j
  189.                                     END IF
  190.                                 END IF
  191.                             END IF
  192.                         END IF
  193.                     NEXT
  194.                     IF jay < 100 THEN
  195.                         SendFleet i, jay, star(i).t / 1.5
  196.                         star(jay).d = 1000
  197.                     END IF
  198.                 END IF
  199.             END IF
  200.  
  201.             IF p = 1 THEN
  202.                 sf2 = 100
  203.                 FOR i = 0 TO 99
  204.                     IF star(i).o = id AND i <> home(id) AND star(i).t > LL * 1.5 THEN
  205.                         sf3 = star(i).t / 2
  206.                         FOR j = 0 TO 99
  207.                             IF star(j).d > 0 THEN
  208.                                 star(j).d = star(j).d - 1
  209.                             ELSE
  210.                                 IF star(j).o <> id AND star(i).t > star(j).t * 4 THEN
  211.                                     FOR k = 0 TO 99
  212.                                         IF star(k).o = id THEN
  213.                                             dist = SQR(ABS(star(k).x - star(j).x) ^ 2 + ABS(star(k).y - star(j).y) ^ 2)
  214.                                             IF dist <= 250 * ratio THEN
  215.                                                 sf1 = i
  216.                                                 sf2 = j
  217.                                                 EXIT FOR
  218.                                             END IF
  219.                                         END IF
  220.                                     NEXT
  221.                                 END IF
  222.                             END IF
  223.                         NEXT
  224.                         IF sf2 < 100 THEN EXIT FOR
  225.                     END IF
  226.                 NEXT
  227.                 IF sf2 < 100 THEN
  228.                     SendFleet sf1, sf2, sf3
  229.                     star(sf2).d = 1000
  230.                     EXIT FOR
  231.                 END IF
  232.             END IF
  233.  
  234.             IF p = 2 THEN
  235.                 FOR i = 0 TO 99
  236.                     IF i <> home(id) AND star(i).o = id THEN
  237.                         IF star(i).t > LL / 2 THEN
  238.                             ok = 1
  239.                             FOR j = 0 TO 99
  240.                                 IF star(j).o <> id AND star(j).o <> 0 THEN
  241.                                     dist = SQR(ABS(star(i).x - star(j).x) ^ 2 + ABS(star(i).y - star(j).y) ^ 2)
  242.                                     IF dist <= 350 * ratio THEN
  243.                                         ok = 0
  244.                                         EXIT FOR
  245.                                     END IF
  246.                                 END IF
  247.                             NEXT
  248.                             IF ok = 1 THEN
  249.                                 SendFleet i, home(id), star(i).t / 2
  250.                                 EXIT FOR
  251.                             END IF
  252.                         END IF
  253.                     END IF
  254.                 NEXT
  255.                 IF ok = 1 THEN EXIT FOR
  256.             END IF
  257.  
  258.             IF p = 3 THEN
  259.                 ok = 0
  260.                 FOR i = 0 TO 99
  261.                     IF i <> home(id) AND star(i).o = id THEN
  262.                         IF star(i).t > LL * 1.5 + star(i).p * 50 THEN
  263.                             ok = 1
  264.                             EXIT FOR
  265.                         END IF
  266.                     END IF
  267.                 NEXT
  268.                 IF ok = 1 THEN
  269.                     SendFleet i, home(id), star(i).t / 4
  270.                     EXIT FOR
  271.                 END IF
  272.             END IF
  273.  
  274.         NEXT
  275.  
  276.         count = fltcnt
  277.         i = 0
  278.         WHILE count
  279.             IF fleet(i).o <> 0 THEN
  280.                 count = count - 1
  281.                 IF fleet(i).x2 > fleet(i).x1 THEN
  282.                     fleet(i).x1 = fleet(i).x1 + 1
  283.                 END IF
  284.                 IF fleet(i).x2 < fleet(i).x1 THEN
  285.                     fleet(i).x1 = fleet(i).x1 - 1
  286.                 END IF
  287.                 IF fleet(i).y2 > fleet(i).y1 THEN
  288.                     fleet(i).y1 = fleet(i).y1 + 1
  289.                 END IF
  290.                 IF fleet(i).y2 < fleet(i).y1 THEN
  291.                     fleet(i).y1 = fleet(i).y1 - 1
  292.                 END IF
  293.                 IF fleet(i).x1 = fleet(i).x2 AND fleet(i).y1 = fleet(i).y2 THEN
  294.                     dest = fleet(i).d
  295.                     IF star(dest).o = fleet(i).o THEN
  296.                         star(dest).t = star(dest).t + fleet(i).t
  297.                         fleet(i).o = 0
  298.                         fltcnt = fltcnt - 1
  299.                     ELSE
  300.                         o = star(dest).o
  301.                         IF o > 0 AND star(dest).t < fleet(i).t * 0.6 THEN
  302.                             SendFleet dest, home(o), star(dest).t * 0.9
  303.                             star(dest).t = 0
  304.                             star(dest).o = fleet(i).o
  305.                             star(dest).t = fleet(i).t
  306.                             star(dest).o = fleet(i).o
  307.                             fleet(i).o = 0
  308.                             fltcnt = fltcnt - 1
  309.                         ELSE
  310.                             IF fleet(i).t * 1.1 > star(dest).t THEN
  311.                                 alive = 1
  312.                                 WHILE alive
  313.                                     alive = 0
  314.                                     damorg = fleet(i).t / 10 + 1
  315.                                     damdst = star(dest).t / 8 + 1
  316.                                     fleet(i).t = fleet(i).t - damdst
  317.                                     star(dest).t = star(dest).t - damorg
  318.                                     IF fleet(i).t > 0 AND star(dest).t > 0 THEN
  319.                                         alive = 1
  320.                                     END IF
  321.                                 WEND
  322.                                 IF star(dest).t < 1 THEN
  323.                                     star(dest).t = fleet(i).t
  324.                                     star(dest).o = fleet(i).o
  325.                                 END IF
  326.                                 fleet(i).o = 0
  327.                                 fltcnt = fltcnt - 1
  328.                             ELSE
  329.                                 k = 100
  330.                                 shortest = 10000
  331.                                 FOR j = 0 TO 99
  332.                                     IF star(j).o = fleet(i).o THEN
  333.                                         dist = SQR(ABS(star(j).x - fleet(i).x1) ^ 2 + ABS(star(j).y - fleet(i).y1) ^ 2)
  334.                                         IF dist < shortest THEN
  335.                                             shortest = dist
  336.                                             k = j
  337.                                         END IF
  338.                                     END IF
  339.                                 NEXT
  340.                                 IF k < 100 THEN
  341.                                     fleet(i).x2 = star(k).x
  342.                                     fleet(i).y2 = star(k).y
  343.                                     fleet(i).d = k
  344.                                 ELSE
  345.                                     fleet(i).o = 0
  346.                                     fltcnt = fltcnt - 1
  347.                                 END IF
  348.                             END IF
  349.                         END IF
  350.                     END IF
  351.                 END IF
  352.             END IF
  353.             i = i + 1
  354.         WEND
  355.     END IF
  356.  
  357. SUB GetInput
  358.  
  359.     IF ch = CHR$(27) THEN repeat = 0
  360.     IF ch = "n" THEN NewGame
  361.     IF ch = "t" THEN tt = 1 - tt
  362.     IF ch = "p" THEN paused = 1 - paused
  363.     IF ch = "+" THEN
  364.         IF speed < 10 THEN speed = speed + 1
  365.     END IF
  366.     IF ch = "-" THEN
  367.         IF speed > 0 THEN speed = speed - 1
  368.     END IF
  369.     ch = INKEY$
  370.  
  371.  
  372.     lclk = 0
  373.     rclk = 0
  374.  
  375.  
  376.         x = _MOUSEX
  377.         y = _MOUSEY
  378.         lmb = _MOUSEBUTTON(1)
  379.         rmb = _MOUSEBUTTON(2)
  380.  
  381.         IF lmb AND lcx = sw THEN lcx = x
  382.         IF rmb AND rcx = sw THEN rcx = x
  383.     WEND
  384.  
  385.     IF lmb = 0 AND lcx < sw THEN lclk = 1
  386.     IF rmb = 0 AND rcx < sw THEN rclk = 1
  387.  
  388.     lcx = sw
  389.     rcx = sw
  390.  
  391.     x = _MOUSEX
  392.     y = _MOUSEY
  393.  
  394.     IF rclk = 1 THEN
  395.         i = Identify
  396.         IF i = 100 THEN
  397.             IF src = 100 THEN
  398.                 paused = 1 - paused
  399.                 ch = ""
  400.             ELSE
  401.                 src = 100
  402.                 oact = 0
  403.                 pact = 0
  404.             END IF
  405.             rclk = 0
  406.         END IF
  407.         IF pact = 1 OR oact = 1 THEN
  408.             rclk = 0
  409.         END IF
  410.     END IF
  411.  
  412.  
  413. FUNCTION Identify
  414.     ii = 100
  415.     FOR i = 0 TO 99
  416.         dx = star(i).x - x
  417.         dy = star(i).y - y
  418.         IF ABS(dx) <= star(i).s + 8 AND ABS(dy) <= star(i).s + 8 THEN
  419.             ii = i
  420.             EXIT FOR
  421.         END IF
  422.     NEXT
  423.     Identify = ii
  424.  
  425. SUB OrderPanel (i)
  426.     x1 = star(i).x - 420 * ratio
  427.     IF star(i).x < sw / 2 THEN x1 = star(i).x + 20 * ratio
  428.     x2 = x1 + 400 * ratio
  429.     y1 = star(i).y
  430.     IF y1 > sh - 225 * ratio THEN y1 = sh - 225 * ratio
  431.     y2 = y1 + 225 * ratio
  432.     _DEST op
  433.     CLS 0, 8
  434.     COLOR 0, 8
  435.     _FONT ttf72
  436.     n$ = RTRIM$(star(i).n)
  437.     l = _PRINTWIDTH(n$)
  438.     _PRINTSTRING ((400 * ratio - l) / 2, 4 * ratio), n$, op
  439.     LINE (20 * ratio, 76 * ratio)-(380 * ratio, 76 * ratio), 0
  440.     _PRINTSTRING (20 * ratio, 80 * ratio), "0123456789", op
  441.     COLOR 7, 8
  442.     _FONT ttf36
  443.     IF box = 0 THEN
  444.         _PRINTSTRING (20 * ratio, 166 * ratio), "If Over", op
  445.         xo = 142 * ratio: xd = 250 * ratio: yo = 166 * ratio: yd = 200 * ratio
  446.         LINE (xo, yo)-(xd, yd), 7, BF
  447.         xo = 268 * ratio: xd = 314 * ratio: yo = 166 * ratio: yd = 200 * ratio
  448.         LINE (xo, yo)-(xd, yd), 7, BF
  449.         xo = 332 * ratio: xd = 366 * ratio: yo = 166 * ratio: yd = 200 * ratio
  450.         LINE (xo, yo)-(xd, yd), 7, BF
  451.         n$ = RTRIM$(strng0)
  452.         COLOR 0, 7
  453.         _FONT ttf24
  454.         _PRINTSTRING (148 * ratio, 172 * ratio), n$, op
  455.         _PRINTSTRING (273 * ratio, 172 * ratio), "OK", op
  456.         _PRINTSTRING (341 * ratio, 172 * ratio), "X", op
  457.     END IF
  458.     IF box = 1 THEN
  459.         _PRINTSTRING (20 * ratio, 166 * ratio), "Then Send", op
  460.         xo = 198 * ratio: xd = 278 * ratio: yo = 166 * ratio: yd = 200 * ratio
  461.         LINE (xo, yo)-(xd, yd), 7, BF
  462.         xo = 294 * ratio: xd = 340 * ratio: yo = 166 * ratio: yd = 200 * ratio
  463.         LINE (xo, yo)-(xd, yd), 7, BF
  464.         xo = 356 * ratio: xd = 390 * ratio: yo = 166 * ratio: yd = 200 * ratio
  465.         LINE (xo, yo)-(xd, yd), 7, BF
  466.         n$ = RTRIM$(strng1)
  467.         COLOR 0, 7
  468.         _FONT ttf24
  469.         _PRINTSTRING (200 * ratio, 172 * ratio), n$, op
  470.         _PRINTSTRING (299 * ratio, 172 * ratio), "OK", op
  471.         _PRINTSTRING (365 * ratio, 172 * ratio), "X", op
  472.     END IF
  473.     _PUTIMAGE (x1, y1), op, 0, (0, 0)-(400 * ratio, 225 * ratio)
  474.     _DEST 0
  475.     oanx = x1: oany = y1
  476.  
  477. SUB PaintBackground
  478.     x = RND * sw
  479.     y = RND * sh
  480.     c = RND * 14 + 1
  481.     PSET (x, y), c
  482.     RANDOMIZE USING seed
  483.     FOR i = 1 TO 600 * ratio
  484.         x = RND * sw
  485.         y = RND * sh
  486.         c = RND * 14 + 1
  487.         PSET (x, y), c
  488.     NEXT
  489.  
  490. SUB PaintFleet
  491.     count = fltcnt
  492.     i = 0
  493.     WHILE count
  494.         IF fleet(i).o <> 0 THEN
  495.             CIRCLE (fleet(i).x1, fleet(i).y1), 3, fleet(i).o + 8
  496.             count = count - 1
  497.         END IF
  498.         i = i + 1
  499.     WEND
  500.  
  501. SUB PaintStars
  502.     FOR i = 0 TO 99
  503.         c = star(i).c
  504.         x = star(i).x
  505.         y = star(i).y
  506.         o = star(i).o
  507.         CIRCLE (x, y), (star(i).s + 8) * ratio, c
  508.         COLOR 15
  509.         IF o > 0 THEN
  510.             PAINT (x, y), o + 8, c
  511.         END IF
  512.         _FONT ttf16
  513.         IF tt THEN
  514.             n$ = star(i).n
  515.             n$ = RTRIM$(n$)
  516.             l = _PRINTWIDTH(n$)
  517.             _PRINTSTRING (x + 10, y), STR$(star(i).p), 0
  518.         ELSE
  519.             n$ = STR$(star(i).t)
  520.             l = _PRINTWIDTH(n$)
  521.         END IF
  522.         _PRINTSTRING (x - l / 2, y + 14), n$, 0
  523.     NEXT
  524.  
  525. SUB Player
  526.     'Add new order to standing orders
  527.     IF ord.src <> 100 THEN
  528.         i = ord.src
  529.         IF ord.shp = 0 THEN
  530.             order(i).src = 100
  531.         ELSE
  532.             order(i) = ord
  533.         END IF
  534.         src = 100
  535.         ord.src = 100
  536.     END IF
  537.  
  538.     'execute standing orders
  539.     FOR i = 0 TO 99
  540.         IF order(i).src <> 100 THEN
  541.             IF star(i).o <> 1 OR star(order(i).dst).o <> 1 THEN
  542.                 order(i).src = 100
  543.             ELSE
  544.                 LINE (star(i).x, star(i).y)-(star(order(i).dst).x, star(order(i).dst).y), 17
  545.                 IF star(i).t >= order(i).ovr THEN
  546.                     SendFleet order(i).src, order(i).dst, order(i).shp
  547.                 END IF
  548.             END IF
  549.         END IF
  550.     NEXT
  551.  
  552.     IF pact = 0 AND oact = 0 THEN
  553.  
  554.         'If there is no source star see if we can get one
  555.         IF src = 100 THEN
  556.             IF lclk = 1 OR rclk = 1 THEN
  557.                 lclk = 0
  558.                 rclk = 0
  559.                 src = Identify
  560.             END IF
  561.         END IF
  562.  
  563.         ' If there is a source star then look for a right click else draw a range line
  564.         IF src <> 100 THEN
  565.             c = 12
  566.             FOR i = 0 TO 99
  567.                 IF star(i).o = 1 THEN
  568.                     dist = SQR(ABS(star(i).x - x) ^ 2 + ABS(star(i).y - y) ^ 2)
  569.                     IF dist <= 251 * ratio THEN
  570.                         c = 10
  571.                         EXIT FOR
  572.                     END IF
  573.                 END IF
  574.             NEXT
  575.             i = Identify
  576.             IF i <> 100 THEN
  577.                 x = star(i).x
  578.                 y = star(i).y
  579.             END IF
  580.             rang = SQR(ABS(star(src).x - x) ^ 2 + ABS(star(src).y - y) ^ 2)
  581.             LINE (star(src).x, star(src).y)-(x, y), c
  582.             n$ = STR$(INT(rang))
  583.             _FONT ttf16
  584.             _PRINTSTRING (x + 20, y), n$, 0
  585.         END IF
  586.  
  587.         'If we have a source star see if we clicked on a destination star
  588.         IF src <> 100 THEN
  589.             IF lclk = 1 OR rclk = 1 THEN
  590.                 i = Identify
  591.                 IF i < 100 AND i <> src THEN
  592.                     IF lclk = 1 THEN
  593.                         lclk = 0
  594.                         FOR j = 0 TO 99
  595.                             IF star(j).o = 1 THEN
  596.                                 dist = SQR(ABS(star(i).x - star(j).x) ^ 2 + ABS(star(i).y - star(j).y) ^ 2)
  597.                                 IF dist <= 250 THEN
  598.                                     dst = i
  599.                                     pact = 1
  600.                                     EXIT FOR
  601.                                 END IF
  602.                             END IF
  603.                         NEXT
  604.                     ELSE
  605.                         rclk = 0
  606.                         dst = i
  607.                         IF star(i).o = 1 THEN
  608.                             oact = 1
  609.                         END IF
  610.                     END IF
  611.                 END IF
  612.             END IF
  613.         END IF
  614.  
  615.     END IF
  616.  
  617.     'If the star standing orders panel is active
  618.     IF oact = 1 THEN
  619.  
  620.         IF star(src).o = 1 THEN
  621.             OrderPanel dst
  622.         END IF
  623.  
  624.         IF rclk = 1 THEN oact = 0
  625.  
  626.         IF box = 0 THEN
  627.             tmp$ = RTRIM$(strng0)
  628.         ELSE
  629.             tmp$ = RTRIM$(strng1)
  630.         END IF
  631.  
  632.         IF lclk = 1 THEN
  633.  
  634.             x1 = oanx: x2 = oanx + 400 * ratio
  635.             y1 = oany: y2 = oany + 540 * ratio
  636.  
  637.             IF y > y1 + 80 * ratio AND y < y1 + 152 * ratio THEN
  638.                 IF x > x1 + 20 * ratio AND x < x1 + 380 * ratio THEN
  639.                     dig = (x - x1 - 32 * ratio) / (37 * ratio)
  640.                     IF box = 0 THEN
  641.                         n$ = RTRIM$(strng0)
  642.                         l = LEN(n$)
  643.                         IF l < 8 THEN strng0 = tmp$ + STR$(dig)
  644.                     ELSE
  645.                         n$ = RTRIM$(strng1)
  646.                         l = LEN(n$)
  647.                         IF l < 8 THEN strng1 = tmp$ + STR$(dig)
  648.                     END IF
  649.                 END IF
  650.             END IF
  651.  
  652.             IF y > y1 + 166 * ratio AND y < y1 + 200 * ratio THEN
  653.  
  654.                 IF box = 0 THEN
  655.  
  656.                     IF x > x1 + 268 * ratio AND x < x1 + 314 * ratio THEN
  657.                         ord.ovr = INT(VAL(strng0))
  658.                         box = 1
  659.                     END IF
  660.  
  661.                     IF x > x1 + 332 * ratio AND x < x1 + 366 * ratio THEN
  662.                         strng0 = ""
  663.                     END IF
  664.  
  665.                 ELSE
  666.  
  667.                     IF x > x1 + 294 * ratio AND x < x1 + 340 * ratio THEN
  668.                         IF INT(VAL(strng1)) > ord.ovr THEN
  669.                             strng1 = ""
  670.                         ELSE
  671.                             box = 0
  672.                             oact = 0
  673.                             ord.src = src
  674.                             ord.dst = dst
  675.                             ord.shp = VAL(strng1)
  676.                             strng0 = ""
  677.                             strng1 = ""
  678.                         END IF
  679.                     END IF
  680.  
  681.                     IF x > x1 + 356 * ratio AND x < x1 + 390 * ratio THEN
  682.                         strng0 = ""
  683.                         strng1 = ""
  684.                         box = 0
  685.                     END IF
  686.  
  687.                 END IF
  688.  
  689.             END IF
  690.         END IF
  691.         x1 = 10000: y1 = 10000
  692.  
  693.     END IF
  694.  
  695.  
  696.     'If the fleet send panel is active
  697.     IF pact = 1 THEN
  698.         IF rclk = 1 THEN pact = 0
  699.         IF star(src).o = 1 THEN
  700.             ShowPanel dst
  701.         END IF
  702.         IF lclk = 1 THEN
  703.             tmp$ = RTRIM$(strng)
  704.  
  705.             x1 = panx: x2 = panx + 400 * ratio
  706.             y1 = pany: y2 = pany + 540 * ratio
  707.  
  708.             IF y > y1 + 256 * ratio AND y < y1 + 328 * ratio THEN
  709.                 IF x > x1 + 20 * ratio AND x < x1 + 380 * ratio THEN
  710.                     dig = (x - x1 - 32 * ratio) / (37 * ratio)
  711.                     strng = tmp$ + STR$(dig)
  712.                 END IF
  713.             END IF
  714.  
  715.             IF y > y1 + 334 * ratio AND y < y1 + 374 * ratio THEN
  716.                 IF x > x1 + 20 * ratio AND x < x1 + 84 * ratio THEN
  717.                     pact = 0
  718.                     value = star(src).t
  719.                     SendFleet src, dst, value
  720.                     src = 100
  721.                 END IF
  722.                 IF x > x1 + 102 * ratio AND x < x1 + 184 * ratio THEN
  723.                     pact = 0
  724.                     value = star(src).t / 2
  725.                     SendFleet src, dst, value
  726.                     src = 100
  727.                 END IF
  728.                 IF x > x1 + 202 * ratio AND x < x1 + 282 * ratio THEN
  729.                     pact = 0
  730.                     value = star(src).t / 3
  731.                     SendFleet src, dst, value
  732.                     src = 100
  733.                 END IF
  734.                 IF x > x1 + 300 * ratio AND x < x1 + 380 * ratio THEN
  735.                     strng = ""
  736.                 END IF
  737.             END IF
  738.  
  739.             IF y > y1 + 460 * ratio AND y < y1 + 530 * ratio THEN
  740.                 IF x > x1 + 32 * ratio AND x < x1 + 182 * ratio THEN
  741.                     value = VAL(strng)
  742.                     strng = ""
  743.                     pact = 0
  744.                     IF value <= star(src).t AND star(src).t <> o THEN
  745.                         SendFleet src, dst, value
  746.                     END IF
  747.                     src = 100
  748.                 END IF
  749.                 IF x > x1 + 212 * ratio AND x < x1 + 362 * ratio THEN
  750.                     pact = 0
  751.                     src = 100
  752.                     strng = ""
  753.                 END IF
  754.             END IF
  755.         END IF
  756.     END IF
  757.  
  758. SUB SendFleet (src, dst, ships)
  759.     IF fltcnt < 2000 THEN
  760.         hate(star(src).o, star(dst).o) = hate(star(src).o, star(dst).o) + 1
  761.         FOR i = 0 TO 1999
  762.             IF fleet(i).o = 0 THEN
  763.                 fleet(i).o = star(src).o
  764.                 fleet(i).d = dst
  765.                 fleet(i).x1 = star(src).x
  766.                 fleet(i).y1 = star(src).y
  767.                 fleet(i).x2 = star(dst).x
  768.                 fleet(i).y2 = star(dst).y
  769.                 fleet(i).t = ships
  770.                 star(src).t = star(src).t - ships
  771.                 fltcnt = fltcnt + 1
  772.                 EXIT FOR
  773.             END IF
  774.         NEXT
  775.         LL = LL + 1
  776.         IF LL > 20000 THEN LL = 20000
  777.     END IF
  778.  
  779. SUB ShowPanel (i)
  780.     x1 = star(i).x - 420 * ratio
  781.     IF star(i).x < sw / 2 THEN x1 = star(i).x + 20 * ratio
  782.     x2 = x1 + 400 * ratio
  783.     y1 = star(i).y
  784.     IF y1 > sh - 560 * ratio THEN y1 = sh - 560 * ratio
  785.     y2 = y1 + 540 * ratio
  786.     _DEST sp
  787.     CLS 0, 8
  788.     COLOR 0, 8
  789.     _FONT ttf72
  790.     n$ = RTRIM$(star(src).n)
  791.     l = _PRINTWIDTH(n$)
  792.     _PRINTSTRING ((400 * ratio - l) / 2, 12 * ratio), n$, sp
  793.     n$ = "to"
  794.     l = _PRINTWIDTH(n$)
  795.     _PRINTSTRING ((400 * ratio - l) / 2, 80 * ratio), n$, sp
  796.     n$ = RTRIM$(star(dst).n)
  797.     l = _PRINTWIDTH(n$)
  798.     _PRINTSTRING ((400 * ratio - l) / 2, 152 * ratio), n$, sp
  799.     LINE (20 * ratio, 239 * ratio)-(380 * ratio, 239 * ratio), 0
  800.     _PRINTSTRING (20 * ratio, 256 * ratio), "0123456789", sp
  801.     n$ = RTRIM$(strng)
  802.     l = _PRINTWIDTH(n$)
  803.     _PRINTSTRING ((400 * ratio - l) / 2, 383 * ratio), n$, sp
  804.     xo = 20 * ratio: xd = 84 * ratio: yo = 334 * ratio: yd = 374 * ratio
  805.     LINE (xo, yo)-(xd, yd), 7, BF
  806.     xo = 102 * ratio: xd = 184 * ratio: yo = 334 * ratio: yd = 374 * ratio
  807.     LINE (xo, yo)-(xd, yd), 7, BF
  808.     xo = 202 * ratio: xd = 282 * ratio: yo = 334 * ratio: yd = 374 * ratio
  809.     LINE (xo, yo)-(xd, yd), 7, BF
  810.     xo = 300 * ratio: xd = 380 * ratio: yo = 334 * ratio: yd = 374 * ratio
  811.     LINE (xo, yo)-(xd, yd), 7, BF
  812.     xo = 32 * ratio: xd = 182 * ratio: yo = 458 * ratio: yd = 530 * ratio
  813.     LINE (xo, yo)-(xd, yd), 7, BF
  814.     xo = 212 * ratio: xd = 362 * ratio: yo = 458 * ratio: yd = 530 * ratio
  815.     LINE (xo, yo)-(xd, yd), 7, BF
  816.     _FONT ttf24
  817.     COLOR 7, 8
  818.     n$ = RTRIM$(STR$(star(src).t))
  819.     l = _PRINTWIDTH(n$)
  820.     _PRINTSTRING (120 * ratio - l, 112 * ratio), n$, sp
  821.     n$ = RTRIM$(STR$(star(dst).t))
  822.     l = _PRINTWIDTH(n$)
  823.     _PRINTSTRING (300 * ratio - l, 112 * ratio), n$, sp
  824.     _FONT ttf16
  825.     COLOR 0, 7
  826.     _PRINTSTRING (38 * ratio, 347 * ratio), "ALL", sp
  827.     _PRINTSTRING (122 * ratio, 347 * ratio), "HALF", sp
  828.     _PRINTSTRING (214 * ratio, 347 * ratio), "THIRD", sp
  829.     _PRINTSTRING (312 * ratio, 347 * ratio), "CLEAR", sp
  830.     _FONT ttf72
  831.     _PRINTSTRING (60 * ratio, 458 * ratio), "Ok", sp
  832.     _PRINTSTRING (216 * ratio, 458 * ratio), "Quit", sp
  833.     _PUTIMAGE (x1, y1), sp, 0, (0, 0)-(400 * ratio, 540 * ratio)
  834.     panx = x1: pany = y1
  835.     _DEST 0
  836.  
  837. SUB NewGame
  838.     DIM k AS INTEGER
  839.     DIM r AS INTEGER
  840.     DIM dx AS INTEGER
  841.     DIM dy AS INTEGER
  842.     DIM n AS STRING * 10
  843.     paused = 1
  844.     FOR i = 0 TO 999
  845.         fleet(i).o = 0
  846.     NEXT
  847.     slct = 0
  848.     fltcnt = 0
  849.     LL = 25
  850.     seed = RND * 1000
  851.     FOR i = 0 TO 99
  852.         k = 1
  853.         WHILE k
  854.             k = 0
  855.             x = RND * (sw - sww) + swn
  856.             y = RND * (sh - shw) + shn
  857.             r = INT(RND * 200)
  858.             n = names(r)
  859.             FOR j = 0 TO i - 1
  860.                 dx = x - star(j).x
  861.                 dy = y - star(j).y
  862.                 IF ABS(dx) < sww AND ABS(dy) < shw THEN
  863.                     k = 1
  864.                 END IF
  865.                 IF n = star(j).n THEN
  866.                     k = 1
  867.                 END IF
  868.             NEXT
  869.         WEND
  870.         star(i).n = n
  871.         star(i).x = x
  872.         star(i).y = y
  873.         star(i).c = RND * 6 + 9
  874.         star(i).s = RND * 5
  875.         star(i).o = 0
  876.         star(i).p = star(i).s + (RND * 5) + 3
  877.         star(i).t = 0
  878.         order(i).src = 100
  879.     NEXT
  880.     FOR i = 1 TO 6
  881.         ok = 0
  882.         WHILE (ok < 1)
  883.             ok = 1
  884.             j = RND * 100
  885.             FOR k = 1 TO i - 1
  886.                 dist = SQR(ABS(star(j).x - star(home(k)).x) ^ 2 + ABS(star(j).y - star(home(k)).y) ^ 2)
  887.                 IF dist < 500 * ratio THEN
  888.                     ok = 0
  889.                     EXIT FOR
  890.                 END IF
  891.             NEXT
  892.             IF ok = 1 THEN
  893.                 ok = -1
  894.                 FOR k = 0 TO 99
  895.                     dist = SQR(ABS(star(j).x - star(k).x) ^ 2 + ABS(star(j).y - star(k).y) ^ 2)
  896.                     IF dist <= 200 THEN ok = ok + 1
  897.                     IF ok = 2 THEN EXIT FOR
  898.                 NEXT
  899.             END IF
  900.         WEND
  901.         home(i) = j
  902.         star(j).o = i
  903.         star(j).p = 10
  904.         star(j).t = 100
  905.         star(j).s = 4
  906.     NEXT
  907.     star(home(1)).n = "Sol"
  908.     star(home(1)).c = 14
  909.  
  910. ' A lot of star names I made up
  911.  
  912. SUB StarNames
  913.     names(0) = "Acamar"
  914.     names(1) = "Arcab"
  915.     names(2) = "Acrux"
  916.     names(3) = "Adhara"
  917.     names(4) = "Arneb"
  918.     names(5) = "Antares"
  919.     names(6) = "Arcturus"
  920.     names(7) = "Atria"
  921.     names(8) = "Beid"
  922.     names(9) = "Betelgeuse"
  923.     names(10) = "Botein"
  924.     names(11) = "Beemim"
  925.     names(12) = "Bellatrix"
  926.     names(13) = "Bharani"
  927.     names(14) = "Biham"
  928.     names(15) = "Brachium"
  929.     names(16) = "Canopus"
  930.     names(17) = "Capella"
  931.     names(18) = "Castor"
  932.     names(19) = "Chara"
  933.     names(20) = "Cursa"
  934.     names(21) = "Copernicus"
  935.     names(22) = "Chalawan"
  936.     names(23) = "Chertan"
  937.     names(24) = "Dabih"
  938.     names(25) = "Dalim"
  939.     names(26) = "Deneb"
  940.     names(27) = "Denebola"
  941.     names(28) = "Diadem"
  942.     names(29) = "Diphda"
  943.     names(30) = "Dschubba"
  944.     names(31) = "Dziban"
  945.     names(32) = "Edasich"
  946.     names(33) = "Electra"
  947.     names(34) = "Elgafar"
  948.     names(35) = "Elkurud"
  949.     names(36) = "Elnath"
  950.     names(37) = "Eltanin"
  951.     names(38) = "Enif"
  952.     names(39) = "Errai"
  953.     names(40) = "Fafnir"
  954.     names(41) = "Fang"
  955.     names(42) = "Fawaris"
  956.     names(43) = "Felis"
  957.     names(44) = "Fomalhaut"
  958.     names(45) = "Fulu"
  959.     names(46) = "Fumal"
  960.     names(47) = "Furud"
  961.     names(48) = "Garnet"
  962.     names(49) = "Giausar"
  963.     names(50) = "Gienah"
  964.     names(51) = "Ginan"
  965.     names(52) = "Gomeisa"
  966.     names(53) = "Graffias"
  967.     names(54) = "Grumium"
  968.     names(55) = "Gudja"
  969.     names(56) = "Hadar"
  970.     names(57) = "Haedus"
  971.     names(58) = "Hamal"
  972.     names(59) = "Hassaleh"
  973.     names(60) = "Hatysa"
  974.     names(61) = "Helvetios"
  975.     names(62) = "Heze"
  976.     names(63) = "Homan"
  977.     names(64) = "Iklil"
  978.     names(65) = "Imai"
  979.     names(66) = "Intercrus"
  980.     names(67) = "Izar"
  981.     names(68) = "Iccar"
  982.     names(69) = "Inar"
  983.     names(70) = "Iaeth"
  984.     names(71) = "Imaous"
  985.     names(72) = "Jabbah"
  986.     names(73) = "Jishui"
  987.     names(74) = "Jax"
  988.     names(75) = "Jalae"
  989.     names(76) = "Jewel"
  990.     names(77) = "Jumbo"
  991.     names(78) = "Jerue"
  992.     names(79) = "Jabear"
  993.     names(80) = "Kakkab"
  994.     names(81) = "Kang"
  995.     names(82) = "Kekouan"
  996.     names(83) = "Keid"
  997.     names(84) = "Kitalpha"
  998.     names(85) = "Kochab"
  999.     names(86) = "Kolob"
  1000.     names(87) = "Kobol"
  1001.     names(88) = "Larawag"
  1002.     names(89) = "Lesath"
  1003.     names(90) = "Libertas"
  1004.     names(91) = "Lich"
  1005.     names(92) = "Lilly"
  1006.     names(93) = "Laddel"
  1007.     names(94) = "Luminous"
  1008.     names(95) = "Lasacious"
  1009.     names(96) = "Mizar"
  1010.     names(97) = "Markab"
  1011.     names(98) = "Matar"
  1012.     names(99) = "Mintaka"
  1013.     names(100) = "Meleph"
  1014.     names(101) = "Menkar"
  1015.     names(102) = "Merga"
  1016.     names(103) = "Merope"
  1017.     names(104) = "Nahn"
  1018.     names(105) = "Naos"
  1019.     names(106) = "Nashira"
  1020.     names(107) = "Navi"
  1021.     names(108) = "Nekkar"
  1022.     names(109) = "Nembus"
  1023.     names(110) = "Nihal"
  1024.     names(111) = "Nunki"
  1025.     names(112) = "Ogma"
  1026.     names(113) = "Okab"
  1027.     names(114) = "Ohmy"
  1028.     names(115) = "Oragami"
  1029.     names(116) = "Origen"
  1030.     names(117) = "Omanii"
  1031.     names(118) = "Obytewa"
  1032.     names(119) = "Oglok"
  1033.     names(120) = "Phact"
  1034.     names(121) = "Pherkad"
  1035.     names(122) = "Pleione"
  1036.     names(122) = "Polaris"
  1037.     names(123) = "Pollux"
  1038.     names(124) = "Procyon"
  1039.     names(125) = "Proxima"
  1040.     names(126) = "Polis"
  1041.     names(127) = "Quaint"
  1042.     names(128) = "Quazzat"
  1043.     names(129) = "Quetzal"
  1044.     names(130) = "Qussol"
  1045.     names(131) = "Quella"
  1046.     names(132) = "Quyaeo"
  1047.     names(133) = "Ququdas"
  1048.     names(134) = "Quekak"
  1049.     names(135) = "Rasalas"
  1050.     names(136) = "Regor"
  1051.     names(137) = "Regulus"
  1052.     names(138) = "Rigel"
  1053.     names(139) = "Revati"
  1054.     names(140) = "Rotenev"
  1055.     names(141) = "Rukbat"
  1056.     names(142) = "Rastaban"
  1057.     names(143) = "Sabik"
  1058.     names(144) = "Sadr"
  1059.     names(145) = "Saiph"
  1060.     names(146) = "Sargas"
  1061.     names(147) = "Sarin"
  1062.     names(148) = "Syrma"
  1063.     names(149) = "Spica"
  1064.     names(150) = "Sirius"
  1065.     names(151) = "Tarazed"
  1066.     names(152) = "Taygeta"
  1067.     names(153) = "Tejat"
  1068.     names(154) = "Thabit"
  1069.     names(155) = "Thuban"
  1070.     names(156) = "Tiaki"
  1071.     names(157) = "Toliman"
  1072.     names(158) = "Torcular"
  1073.     names(157) = "Umala"
  1074.     names(158) = "Ulatte"
  1075.     names(159) = "Ubbessa"
  1076.     names(160) = "Unoless"
  1077.     names(161) = "Umaddem"
  1078.     names(162) = "Ummbra"
  1079.     names(162) = "Uniqu"
  1080.     names(163) = "Uzzaal"
  1081.     names(164) = "Vega"
  1082.     names(165) = "Veritate"
  1083.     names(166) = "Vindetrix"
  1084.     names(167) = "Vedas"
  1085.     names(168) = "Vergg"
  1086.     names(169) = "Vacant"
  1087.     names(170) = "Vucae"
  1088.     names(171) = "Vicar"
  1089.     names(172) = "Wasat"
  1090.     names(173) = "Wazn"
  1091.     names(174) = "Wezen"
  1092.     names(175) = "Waiten"
  1093.     names(176) = "Wachar"
  1094.     names(177) = "Wheelz"
  1095.     names(178) = "Whatsp"
  1096.     names(179) = "Wassand"
  1097.     names(180) = "Xenno"
  1098.     names(181) = "Xyphod"
  1099.     names(182) = "Xu"
  1100.     names(183) = "Xaal"
  1101.     names(184) = "Xyross"
  1102.     names(185) = "Xiggot"
  1103.     names(186) = "Xirrks"
  1104.     names(187) = "Yed"
  1105.     names(188) = "Yildun"
  1106.     names(189) = "Yundun"
  1107.     names(190) = "Yavyo"
  1108.     names(191) = "Yotrac"
  1109.     names(192) = "Yxzoqu"
  1110.     names(193) = "Ynnot"
  1111.     names(194) = "Zaniah"
  1112.     names(195) = "Zaurak"
  1113.     names(196) = "Zhang"
  1114.     names(197) = "Zibal"
  1115.     names(198) = "Zosma"
  1116.     names(199) = "Zuben"
  1117.  


 [ This attachment cannot be displayed inline in 'Print Page' view ]  
Title: Re: Beyond Sol
Post by: romichess on December 30, 2019, 07:46:47 pm
Updated Readme

"Beyond Sol - Pre Alpha Version

A space 4x conquest game by Michael Sherwin

Every thing so far in the game

Game starts off paused but when paused one can still enter orders
Right clicking the mouse on the map will pause unpause the game
If a panel is displayed right clicking will cancel the panel
Left or right clicking on a star brings up the distance line
If the distance line is green ships can be sent
To send ships left click on a destination star and the send panel will appear
Click on the numbers to send ships by then clicking "OK"
The "clear" button clears the numbers
The "All" button sends all ships
There is a send "Half" and send "Third" button as well
The "Quit" button quits the panel
Right clicking on a self owned destination brings up the standing orders panel
Enter number that ships must be greator than in order to send, click "OK"
Or click "X" to clear
Then enter number of ships to send, click "OK" or click "X" to start over
For now untill a "Cancel" button is added just enter 0 and 0 to cancel
The "+" and "-" keys will speed up and slow down the game
If attacking fleets are too out matched they will turn around
If defending fleets are too out matched they will evacuate
The computer player will hate the player that has attacked them the most
A hated player will more likely be attacked
Pressing "p" will pause and unpause the game
Pressing "t" will show star names and production
"t" can be pressed while game is paused
And pressing "Esc" exits the game, no questions asked, so be careful
Pressing "n" stars a new game, no questions asked, be careful
More work needed, remember it is still pre alpha!

The computer is now a very dangerous opponent. However, if one gets off to a very good start the game is not that difficult
There are many features left to be added before it reaches, alpha"
Title: Re: Beyond Sol
Post by: romichess on December 30, 2019, 08:58:21 pm
Oh no! I just discovered that there is a game on Steam that is already named Beyond Sol. And I thought I was being so original, LOL. Back to the name hunt!
Title: Re: Beyond Sol
Post by: romichess on December 30, 2019, 09:28:39 pm
Okay, I have a couple of name ideas.

Et Go Home
We're Not Alone
Star Trak
It's a Cookbook
Deep Space
Planet of the Rabbits
We Should Not Have Sent That Probe Out
Aliens? Just Pretend They Aren't Real
Journey to the Center of the Galaxy
Stupid Aliens
Annoy the Aliens Until They leave
Those Human Hybrids Sure Look Funny
That Should Have Been Our Planet
Let's Irradiate Our Entire Planet With Nuclear Waste So They Won't Want It
Your Step Father is a What
They Are preparing a Stew and We Are Invited
Final Frontier (probably taken)
Time to Move
Mandela Effect
Earth and Beyond (?)
The Sky's the Limit
Beware the Wife Swappers (snatchers?)

Still working on it. I'll need some time!
Title: Re: Beyond Sol
Post by: Kazman on December 31, 2019, 05:03:48 am
Hi Romichess! As I said before, I'm trying now your game at my home's desktop PC. It runs very much faster! :D
I love it, and I can't wait until the new update ;)
Thank u very much :)
Title: Re: Beyond Sol
Post by: romichess on December 31, 2019, 06:00:19 pm
Hi Romichess! As I said before, I'm trying now your game at my home's desktop PC. It runs very much faster! :D
I love it, and I can't wait until the new update ;)
Thank u very much :)
You are very welcome Kazman! And thank you for the feedback. Feedback is extremely important for development. So anything you can tell me, what you like, what you don't like, any suggestions, anything. I can't promise I'll add a suggestion but I will certainly consider whether or not it should be added. I'm working on a game menu so save and load game can be added as well as other options like playing with a different color, etc.
Title: Re: Beyond Sol
Post by: Kazman on January 02, 2020, 05:24:55 am
Ok, I will try to send you feedback as long as I can :P

One thing, I don't know if it is important. Remember my work PC? I said that the game and clicks were slow. Well, today I tried it on QB64 64 BITS and OMG speed has increased!!! And mouse behaviour! ;)

I like your idea of a game menu :)

What are your plans of graphics? I read before that these are not the final ones...

Happy 2020 ;)
Title: Re: Beyond Sol
Post by: romichess on January 02, 2020, 12:39:48 pm
Ok, I will try to send you feedback as long as I can :P

One thing, I don't know if it is important. Remember my work PC? I said that the game and clicks were slow. Well, today I tried it on QB64 64 BITS and OMG speed has increased!!! And mouse behaviour! ;)

I like your idea of a game menu :)

What are your plans of graphics? I read before that these are not the final ones...

Happy 2020 ;)

For graphics I have downloaded some nice Hubble pictures. One is a nice star background. And the others have some really nice stars. The plan is to make sprites out of the stars. The next update will have a game menu! It is tedious to make panels by hand using trial and small adjustments. So I am working on a visual panel designer. It won't produce code, but it will give me all the x, y coordinates!
Title: Re: Beyond Sol
Post by: romichess on January 05, 2020, 06:55:39 pm
There was a request for some kind of a save and load so I added a quick save "q" and quick restore "r". IT DOES NOT SAVE TO DISK. The new game is saved so one can restart the exact game by pressing "r". But once "q" is pressed the start is replaced by a new save. See attached readme for some minor changes.

Code: QB64: [Select]
  1. TYPE stars
  2.     n AS STRING * 10 '                 Name of star
  3.     x AS INTEGER '                     x-position
  4.     y AS INTEGER '                     y-position
  5.     o AS INTEGER '                     Owner
  6.     c AS INTEGER '                     Color
  7.     s AS INTEGER '                     Size
  8.     t AS LONG '                        Ships
  9.     p AS INTEGER '
  10.     d AS INTEGER '                   (Population) For now ships production
  11.  
  12. TYPE FLEETS
  13.     t AS LONG
  14.     x1 AS INTEGER
  15.     y1 AS INTEGER
  16.     x2 AS INTEGER
  17.     y2 AS INTEGER
  18.     o AS INTEGER
  19.     d AS INTEGER
  20.  
  21. TYPE ORDERS
  22.     src AS LONG
  23.     ovr AS LONG
  24.     shp AS LONG
  25.     dst AS LONG
  26.  
  27. ' Global variables shared because they are needed in more than one routine
  28. DIM SHARED sw AS INTEGER '             Screen Width
  29. DIM SHARED sh AS INTEGER '             Screen Height
  30. DIM SHARED sww AS INTEGER '            Screen Width Wide margin
  31. DIM SHARED swn AS INTEGER '            Screen Width Narrow adjustment
  32. DIM SHARED shw AS INTEGER '            Screen Height Wide margine
  33. DIM SHARED shn AS INTEGER '            Screen Height Narrow adjustment
  34. DIM SHARED nw AS INTEGER '             games Natural screen Width
  35. DIM SHARED nh AS INTEGER '             games Natural screen Height
  36. DIM SHARED ratio AS _FLOAT '           the Ratio of the games natural screen width to the actual
  37. DIM SHARED star(100) AS stars '        100 stars - may change
  38. DIM SHARED qstar(100) AS stars
  39. DIM SHARED names(200) AS STRING * 10 ' 200 star names
  40. DIM SHARED seed AS INTEGER '           Seed to prime the Randomizer to display identical background each frame
  41. DIM SHARED home(7) AS INTEGER '        The starting star for each player. The human always has star(0), Sol
  42. DIM SHARED qhome(7) AS INTEGER
  43. DIM SHARED tt AS INTEGER '             tt = 0 star names displayed, tt = 0 star names not didplayed
  44. DIM SHARED ch AS STRING * 1 '          Game loop key input variable
  45. DIM SHARED repeat AS INTEGER '         Game loop control variable
  46. DIM SHARED fleet(2000) AS FLEETS
  47. DIM SHARED qfleet(2000) AS FLEETS
  48. DIM SHARED panx, pany AS INTEGER
  49. DIM SHARED oanx, oany AS INTEGER
  50. DIM SHARED strng AS STRING * 14
  51. DIM SHARED strng0 AS STRING * 10
  52. DIM SHARED strng1 AS STRING * 10
  53. DIM SHARED order(100) AS ORDERS
  54. DIM SHARED qorder(100) AS ORDERS
  55. DIM SHARED ord AS ORDERS
  56. DIM SHARED hate(7, 7) AS LONG
  57. DIM SHARED qhate(7, 7) AS LONG
  58.  
  59.  
  60. sw = _DESKTOPWIDTH '                   native video with of syatem
  61. sww = sw / 24 '                        margin based on native video width to keep stars away from edge
  62. swn = sw / 48 '                        adjustment that works with sww to keep stars away from left and top of screen
  63. nw = 1920
  64.  
  65. ratio = sw / 1920 '                    Used to adjust distances and sizes for various screen modes
  66.  
  67. shw = sh / 20
  68. shn = sh / 40
  69. nh = 1080
  70.  
  71. tt = 0
  72. lcx = sw
  73. rcx = sw
  74. cp = 100
  75. h = 100
  76. ar = 0
  77. rng = 200
  78. slct = 0
  79. strng = ""
  80. strng0 = ""
  81. strng1 = ""
  82. src = 100
  83. dst = 100
  84. ord.src = 100
  85.  
  86. SCREEN _NEWIMAGE(sw, sh, 256) '        creates a screen the resolution of the users native system
  87.  
  88.  
  89. sp = _NEWIMAGE(400 * ratio, 540 * ratio, 256)
  90. op = _NEWIMAGE(400 * ratio, 225 * ratio, 256)
  91.  
  92. StarNames '                            Routine to load star names into string array stars(200)
  93.  
  94. NewGame
  95.  
  96. ttf16 = _LOADFONT("cyberbit.ttf", 16 * ratio, "BOLD")
  97. ttf24 = _LOADFONT("cyberbit.ttf", 24 * ratio, "BOLD")
  98. ttf36 = _LOADFONT("cyberbit.ttf", 36 * ratio, "BOLD")
  99. ttf72 = _LOADFONT("cyberbit.ttf", 72 * ratio, "BOLD")
  100.  
  101. repeat = 1
  102.  
  103. WHILE repeat
  104.  
  105.     id = INT(RND * 5 + 2)
  106.  
  107.     CLS
  108.  
  109.     PaintBackground
  110.  
  111.     PaintStars
  112.  
  113.     PaintFleet
  114.  
  115.     FOR it = 0 TO speed
  116.  
  117.         GetInput
  118.  
  119.         Player
  120.  
  121.         Computer
  122.  
  123.     NEXT
  124.  
  125.     _DISPLAY
  126.  
  127.  
  128.  
  129. SUB Computer
  130.  
  131.     IF paused = 0 THEN
  132.         RANDOMIZE TIMER
  133.         FOR i = 0 TO 99
  134.             r = INT(RND * 60)
  135.             IF r < star(i).p THEN
  136.                 IF star(i).o > 0 THEN
  137.                     star(i).t = star(i).t + 1
  138.                 ELSE
  139.                     IF INT(RND * 10) < 3 THEN
  140.                         star(i).t = star(i).t + 1
  141.                     END IF
  142.                 END IF
  143.             END IF
  144.         NEXT
  145.  
  146.         i = home(id)
  147.         IF star(i).o <> id THEN
  148.             FOR j = 0 TO 99
  149.                 IF star(j).o = id THEN home(id) = j: i = j: EXIT FOR
  150.             NEXT
  151.         END IF
  152.  
  153.         dis = 0
  154.         hid = 0
  155.         FOR j = 1 TO 6
  156.             IF j <> id THEN
  157.                 IF hate(id, j) > dis THEN
  158.                     dis = hate(id, j)
  159.                     hid = j
  160.                 END IF
  161.             END IF
  162.         NEXT
  163.  
  164.         FOR p = 0 TO 3
  165.  
  166.             IF p = 0 THEN
  167.                 IF star(i).t > LL THEN
  168.                     away = 10000
  169.                     jay = 100
  170.                     FOR j = 0 TO 99
  171.                         IF star(j).d > 0 THEN
  172.                             star(j).d = star(j).d - 1
  173.                         ELSE
  174.                             IF star(j).o = hid THEN th = 3 ELSE th = 4
  175.                             IF star(j).o <> id AND star(i).t > star(j).t * th THEN
  176.                                 ok = 0
  177.                                 FOR k = 0 TO 99
  178.                                     IF star(k).o = id THEN
  179.                                         dist = SQR(ABS(star(j).x - star(k).x) ^ 2 + ABS(star(j).y - star(k).y) ^ 2)
  180.                                         IF dist < 251 THEN
  181.                                             ok = 1
  182.                                             EXIT FOR
  183.                                         END IF
  184.                                     END IF
  185.                                 NEXT
  186.                                 IF ok = 1 THEN
  187.                                     dist = SQR(ABS(star(j).x - star(i).x) ^ 2 + ABS(star(j).y - star(i).y) ^ 2)
  188.                                     IF dist < away THEN
  189.                                         away = dist
  190.                                         jay = j
  191.                                     END IF
  192.                                 END IF
  193.                             END IF
  194.                         END IF
  195.                     NEXT
  196.                     IF jay < 100 THEN
  197.                         SendFleet i, jay, star(i).t / 1.6
  198.                         star(jay).d = 1000
  199.                     END IF
  200.                 END IF
  201.             END IF
  202.  
  203.             IF p = 1 THEN
  204.                 sf2 = 100
  205.                 FOR i = 0 TO 99
  206.                     IF star(i).o = id AND i <> home(id) AND star(i).t > LL * 1.6 THEN
  207.                         sf3 = star(i).t / 2.5
  208.                         FOR j = 0 TO 99
  209.                             IF star(j).d > 0 THEN
  210.                                 star(j).d = star(j).d - 1
  211.                             ELSE
  212.                                 IF star(j).o <> id AND star(i).t > star(j).t * 4 THEN
  213.                                     FOR k = 0 TO 99
  214.                                         IF star(k).o = id THEN
  215.                                             dist = SQR(ABS(star(k).x - star(j).x) ^ 2 + ABS(star(k).y - star(j).y) ^ 2)
  216.                                             IF dist <= 250 * ratio THEN
  217.                                                 sf1 = i
  218.                                                 sf2 = j
  219.                                                 EXIT FOR
  220.                                             END IF
  221.                                         END IF
  222.                                     NEXT
  223.                                 END IF
  224.                             END IF
  225.                         NEXT
  226.                         IF sf2 < 100 THEN EXIT FOR
  227.                     END IF
  228.                 NEXT
  229.                 IF sf2 < 100 THEN
  230.                     SendFleet sf1, sf2, sf3
  231.                     star(sf2).d = 1000
  232.                     EXIT FOR
  233.                 END IF
  234.             END IF
  235.  
  236.             IF p = 2 THEN
  237.                 FOR i = 0 TO 99
  238.                     IF i <> home(id) AND star(i).o = id THEN
  239.                         IF star(i).t > LL / 2 THEN
  240.                             ok = 1
  241.                             FOR j = 0 TO 99
  242.                                 IF star(j).o <> id AND star(j).o <> 0 THEN
  243.                                     dist = SQR(ABS(star(i).x - star(j).x) ^ 2 + ABS(star(i).y - star(j).y) ^ 2)
  244.                                     IF dist <= 350 * ratio THEN
  245.                                         ok = 0
  246.                                         EXIT FOR
  247.                                     END IF
  248.                                 END IF
  249.                             NEXT
  250.                             IF ok = 1 THEN
  251.                                 SendFleet i, home(id), star(i).t / 2
  252.                                 EXIT FOR
  253.                             END IF
  254.                         END IF
  255.                     END IF
  256.                 NEXT
  257.                 IF ok = 1 THEN EXIT FOR
  258.             END IF
  259.  
  260.             IF p = 3 THEN
  261.                 ok = 0
  262.                 FOR i = 0 TO 99
  263.                     IF i <> home(id) AND star(i).o = id THEN
  264.                         IF star(i).t > LL * 1.5 + star(i).p * 50 THEN
  265.                             ok = 1
  266.                             EXIT FOR
  267.                         END IF
  268.                     END IF
  269.                 NEXT
  270.                 IF ok = 1 THEN
  271.                     SendFleet i, home(id), star(i).t / 4
  272.                     EXIT FOR
  273.                 END IF
  274.             END IF
  275.  
  276.         NEXT
  277.  
  278.         count = fltcnt
  279.         i = 0
  280.         WHILE count
  281.             IF fleet(i).o <> 0 THEN
  282.                 count = count - 1
  283.                 IF fleet(i).x2 > fleet(i).x1 THEN
  284.                     fleet(i).x1 = fleet(i).x1 + 1
  285.                 END IF
  286.                 IF fleet(i).x2 < fleet(i).x1 THEN
  287.                     fleet(i).x1 = fleet(i).x1 - 1
  288.                 END IF
  289.                 IF fleet(i).y2 > fleet(i).y1 THEN
  290.                     fleet(i).y1 = fleet(i).y1 + 1
  291.                 END IF
  292.                 IF fleet(i).y2 < fleet(i).y1 THEN
  293.                     fleet(i).y1 = fleet(i).y1 - 1
  294.                 END IF
  295.                 IF fleet(i).x1 = fleet(i).x2 AND fleet(i).y1 = fleet(i).y2 THEN
  296.                     dest = fleet(i).d
  297.                     IF star(dest).o = fleet(i).o THEN
  298.                         star(dest).t = star(dest).t + fleet(i).t
  299.                         fleet(i).o = 0
  300.                         fltcnt = fltcnt - 1
  301.                     ELSE
  302.                         o = star(dest).o
  303.                         IF o > 0 AND star(dest).t < fleet(i).t * 0.6 THEN
  304.                             SendFleet dest, home(o), star(dest).t * 0.9
  305.                             star(dest).t = 0
  306.                             star(dest).o = fleet(i).o
  307.                             star(dest).t = fleet(i).t
  308.                             star(dest).o = fleet(i).o
  309.                             fleet(i).o = 0
  310.                             fltcnt = fltcnt - 1
  311.                         ELSE
  312.                             IF fleet(i).t * 1.1 > star(dest).t THEN
  313.                                 alive = 1
  314.                                 WHILE alive
  315.                                     alive = 0
  316.                                     damorg = fleet(i).t / 10 + 1
  317.                                     damdst = star(dest).t / 8 + 1
  318.                                     fleet(i).t = fleet(i).t - damdst
  319.                                     star(dest).t = star(dest).t - damorg
  320.                                     IF fleet(i).t > 0 AND star(dest).t > 0 THEN
  321.                                         alive = 1
  322.                                     END IF
  323.                                 WEND
  324.                                 IF star(dest).t < 1 THEN
  325.                                     star(dest).t = fleet(i).t
  326.                                     star(dest).o = fleet(i).o
  327.                                 END IF
  328.                                 fleet(i).o = 0
  329.                                 fltcnt = fltcnt - 1
  330.                             ELSE
  331.                                 k = 100
  332.                                 shortest = 10000
  333.                                 FOR j = 0 TO 99
  334.                                     IF star(j).o = fleet(i).o THEN
  335.                                         dist = SQR(ABS(star(j).x - fleet(i).x1) ^ 2 + ABS(star(j).y - fleet(i).y1) ^ 2)
  336.                                         IF dist < shortest THEN
  337.                                             shortest = dist
  338.                                             k = j
  339.                                         END IF
  340.                                     END IF
  341.                                 NEXT
  342.                                 IF k < 100 THEN
  343.                                     fleet(i).x2 = star(k).x
  344.                                     fleet(i).y2 = star(k).y
  345.                                     fleet(i).d = k
  346.                                 ELSE
  347.                                     fleet(i).o = 0
  348.                                     fltcnt = fltcnt - 1
  349.                                 END IF
  350.                             END IF
  351.                         END IF
  352.                     END IF
  353.                 END IF
  354.             END IF
  355.             i = i + 1
  356.         WEND
  357.     END IF
  358.  
  359. SUB GetInput
  360.  
  361.     IF ch = CHR$(27) THEN repeat = 0
  362.     IF ch = "n" THEN NewGame
  363.     IF ch = "t" THEN tt = 1 - tt
  364.     IF ch = "p" THEN paused = 1 - paused
  365.     IF ch = "+" THEN
  366.         IF speed < 10 THEN speed = speed + 1
  367.     END IF
  368.     IF ch = "-" THEN
  369.         IF speed > 0 THEN speed = speed - 1
  370.     END IF
  371.     IF ch = "q" THEN QuickSave
  372.     IF ch = "l" THEN QuickRestore
  373.     ch = INKEY$
  374.  
  375.  
  376.     lclk = 0
  377.     rclk = 0
  378.  
  379.  
  380.         x = _MOUSEX
  381.         y = _MOUSEY
  382.         lmb = _MOUSEBUTTON(1)
  383.         rmb = _MOUSEBUTTON(2)
  384.  
  385.         IF lmb AND lcx = sw THEN lcx = x
  386.         IF rmb AND rcx = sw THEN rcx = x
  387.     WEND
  388.  
  389.     IF lmb = 0 AND lcx < sw THEN lclk = 1
  390.     IF rmb = 0 AND rcx < sw THEN rclk = 1
  391.  
  392.     lcx = sw
  393.     rcx = sw
  394.  
  395.     x = _MOUSEX
  396.     y = _MOUSEY
  397.  
  398.     IF rclk = 1 THEN
  399.         i = Identify
  400.         IF i = 100 THEN
  401.             IF src = 100 THEN
  402.                 paused = 1 - paused
  403.                 ch = ""
  404.             ELSE
  405.                 src = 100
  406.                 oact = 0
  407.                 pact = 0
  408.             END IF
  409.             rclk = 0
  410.         END IF
  411.         IF pact = 1 OR oact = 1 THEN
  412.             rclk = 0
  413.         END IF
  414.     END IF
  415.  
  416.  
  417. FUNCTION Identify
  418.     ii = 100
  419.     FOR i = 0 TO 99
  420.         dx = star(i).x - x
  421.         dy = star(i).y - y
  422.         IF ABS(dx) <= star(i).s + 8 AND ABS(dy) <= star(i).s + 8 THEN
  423.             ii = i
  424.             EXIT FOR
  425.         END IF
  426.     NEXT
  427.     Identify = ii
  428.  
  429. SUB OrderPanel (i)
  430.     x1 = star(i).x - 420 * ratio
  431.     IF star(i).x < sw / 2 THEN x1 = star(i).x + 20 * ratio
  432.     x2 = x1 + 400 * ratio
  433.     y1 = star(i).y
  434.     IF y1 > sh - 225 * ratio THEN y1 = sh - 225 * ratio
  435.     y2 = y1 + 225 * ratio
  436.     _DEST op
  437.     CLS 0, 8
  438.     COLOR 0, 8
  439.     _FONT ttf72
  440.     n$ = RTRIM$(star(i).n)
  441.     l = _PRINTWIDTH(n$)
  442.     _PRINTSTRING ((400 * ratio - l) / 2, 4 * ratio), n$, op
  443.     LINE (20 * ratio, 76 * ratio)-(380 * ratio, 76 * ratio), 0
  444.     _PRINTSTRING (20 * ratio, 80 * ratio), "0123456789", op
  445.     COLOR 7, 8
  446.     _FONT ttf36
  447.     IF box = 0 THEN
  448.         _PRINTSTRING (20 * ratio, 166 * ratio), "If Over", op
  449.         xo = 142 * ratio: xd = 250 * ratio: yo = 166 * ratio: yd = 200 * ratio
  450.         LINE (xo, yo)-(xd, yd), 7, BF
  451.         xo = 268 * ratio: xd = 314 * ratio: yo = 166 * ratio: yd = 200 * ratio
  452.         LINE (xo, yo)-(xd, yd), 7, BF
  453.         xo = 332 * ratio: xd = 366 * ratio: yo = 166 * ratio: yd = 200 * ratio
  454.         LINE (xo, yo)-(xd, yd), 7, BF
  455.         n$ = RTRIM$(strng0)
  456.         COLOR 0, 7
  457.         _FONT ttf24
  458.         _PRINTSTRING (148 * ratio, 172 * ratio), n$, op
  459.         _PRINTSTRING (273 * ratio, 172 * ratio), "OK", op
  460.         _PRINTSTRING (341 * ratio, 172 * ratio), "X", op
  461.     END IF
  462.     IF box = 1 THEN
  463.         _PRINTSTRING (20 * ratio, 166 * ratio), "Then Send", op
  464.         xo = 198 * ratio: xd = 278 * ratio: yo = 166 * ratio: yd = 200 * ratio
  465.         LINE (xo, yo)-(xd, yd), 7, BF
  466.         xo = 294 * ratio: xd = 340 * ratio: yo = 166 * ratio: yd = 200 * ratio
  467.         LINE (xo, yo)-(xd, yd), 7, BF
  468.         xo = 356 * ratio: xd = 390 * ratio: yo = 166 * ratio: yd = 200 * ratio
  469.         LINE (xo, yo)-(xd, yd), 7, BF
  470.         n$ = RTRIM$(strng1)
  471.         COLOR 0, 7
  472.         _FONT ttf24
  473.         _PRINTSTRING (200 * ratio, 172 * ratio), n$, op
  474.         _PRINTSTRING (299 * ratio, 172 * ratio), "OK", op
  475.         _PRINTSTRING (365 * ratio, 172 * ratio), "X", op
  476.     END IF
  477.     _PUTIMAGE (x1, y1), op, 0, (0, 0)-(400 * ratio, 225 * ratio)
  478.     _DEST 0
  479.     oanx = x1: oany = y1
  480.  
  481. SUB PaintBackground
  482.     x = RND * sw
  483.     y = RND * sh
  484.     c = RND * 14 + 1
  485.     PSET (x, y), c
  486.     RANDOMIZE USING seed
  487.     FOR i = 1 TO 600 * ratio
  488.         x = RND * sw
  489.         y = RND * sh
  490.         c = RND * 14 + 1
  491.         PSET (x, y), c
  492.     NEXT
  493.  
  494. SUB PaintFleet
  495.     count = fltcnt
  496.     i = 0
  497.     WHILE count
  498.         IF fleet(i).o <> 0 THEN
  499.             CIRCLE (fleet(i).x1, fleet(i).y1), 3, fleet(i).o + 8
  500.             count = count - 1
  501.         END IF
  502.         i = i + 1
  503.     WEND
  504.  
  505. SUB PaintStars
  506.     FOR i = 0 TO 99
  507.         c = star(i).c
  508.         x = star(i).x
  509.         y = star(i).y
  510.         o = star(i).o
  511.         CIRCLE (x, y), (star(i).s + 8) * ratio, c
  512.         COLOR 15
  513.         IF o > 0 THEN
  514.             PAINT (x, y), o + 8, c
  515.         END IF
  516.         _FONT ttf16
  517.         IF tt THEN
  518.             n$ = star(i).n
  519.             n$ = RTRIM$(n$)
  520.             l = _PRINTWIDTH(n$)
  521.             _PRINTSTRING (x + 10, y), STR$(star(i).p), 0
  522.         ELSE
  523.             n$ = STR$(star(i).t)
  524.             l = _PRINTWIDTH(n$)
  525.         END IF
  526.         _PRINTSTRING (x - l / 2, y + 14), n$, 0
  527.     NEXT
  528.  
  529. SUB Player
  530.     'Add new order to standing orders
  531.     IF ord.src <> 100 THEN
  532.         i = ord.src
  533.         IF ord.shp = 0 THEN
  534.             order(i).src = 100
  535.         ELSE
  536.             order(i) = ord
  537.         END IF
  538.         src = 100
  539.         ord.src = 100
  540.     END IF
  541.  
  542.     'execute standing orders
  543.     FOR i = 0 TO 99
  544.         IF order(i).src <> 100 THEN
  545.             IF star(i).o <> 1 OR star(order(i).dst).o <> 1 THEN
  546.                 order(i).src = 100
  547.             ELSE
  548.                 LINE (star(i).x, star(i).y)-(star(order(i).dst).x, star(order(i).dst).y), 17
  549.                 IF star(i).t >= order(i).ovr THEN
  550.                     SendFleet order(i).src, order(i).dst, order(i).shp
  551.                 END IF
  552.             END IF
  553.         END IF
  554.     NEXT
  555.  
  556.     IF pact = 0 AND oact = 0 THEN
  557.  
  558.         'If there is no source star see if we can get one
  559.         IF src = 100 THEN
  560.             IF lclk = 1 OR rclk = 1 THEN
  561.                 lclk = 0
  562.                 rclk = 0
  563.                 src = Identify
  564.             END IF
  565.         END IF
  566.  
  567.         ' If there is a source star then draw a range line that snaps to center of destination, if one
  568.         IF src <> 100 THEN
  569.             c = 12
  570.             FOR i = 0 TO 99
  571.                 IF star(i).o = 1 THEN
  572.                     dist = SQR(ABS(star(i).x - x) ^ 2 + ABS(star(i).y - y) ^ 2)
  573.                     IF dist <= 251 * ratio THEN
  574.                         c = 10
  575.                         EXIT FOR
  576.                     END IF
  577.                 END IF
  578.             NEXT
  579.             i = Identify
  580.             IF i <> 100 THEN
  581.                 x = star(i).x
  582.                 y = star(i).y
  583.             END IF
  584.             rang = SQR(ABS(star(src).x - x) ^ 2 + ABS(star(src).y - y) ^ 2)
  585.             LINE (star(src).x, star(src).y)-(x, y), c
  586.             n$ = STR$(INT(rang))
  587.             _FONT ttf16
  588.             _PRINTSTRING (x + 20, y), n$, 0
  589.         END IF
  590.  
  591.         'If we have a source star see if we clicked on a destination star
  592.         IF src <> 100 THEN
  593.             IF lclk = 1 OR rclk = 1 THEN
  594.                 i = Identify
  595.                 IF i = src THEN
  596.                     lclk = 0
  597.                     src = 100
  598.                     IF rclk = 1 THEN
  599.                         rclk = 0
  600.                         order(i).src = 100
  601.                     END IF
  602.                 ELSE
  603.                     IF i < 100 AND i <> src THEN
  604.                         IF lclk = 1 THEN
  605.                             lclk = 0
  606.                             FOR j = 0 TO 99
  607.                                 IF star(j).o = 1 THEN
  608.                                     dist = SQR(ABS(star(i).x - star(j).x) ^ 2 + ABS(star(i).y - star(j).y) ^ 2)
  609.                                     IF dist <= 250 THEN
  610.                                         dst = i
  611.                                         pact = 1
  612.                                         EXIT FOR
  613.                                     END IF
  614.                                 END IF
  615.                             NEXT
  616.                         ELSE
  617.                             rclk = 0
  618.                             dst = i
  619.                             IF star(i).o = 1 THEN
  620.                                 oact = 1
  621.                             END IF
  622.                         END IF
  623.                     END IF
  624.                 END IF
  625.             END IF
  626.         END IF
  627.     END IF
  628.  
  629.     'If the star standing orders panel is active
  630.     IF oact = 1 THEN
  631.  
  632.         IF star(src).o = 1 THEN
  633.             OrderPanel dst
  634.         END IF
  635.  
  636.         IF rclk = 1 THEN oact = 0
  637.  
  638.         IF box = 0 THEN
  639.             tmp$ = RTRIM$(strng0)
  640.         ELSE
  641.             tmp$ = RTRIM$(strng1)
  642.         END IF
  643.  
  644.         IF lclk = 1 THEN
  645.  
  646.             x1 = oanx: x2 = oanx + 400 * ratio
  647.             y1 = oany: y2 = oany + 540 * ratio
  648.  
  649.             IF y > y1 + 80 * ratio AND y < y1 + 152 * ratio THEN
  650.                 IF x > x1 + 20 * ratio AND x < x1 + 380 * ratio THEN
  651.                     dig = (x - x1 - 32 * ratio) / (37 * ratio)
  652.                     IF box = 0 THEN
  653.                         n$ = RTRIM$(strng0)
  654.                         l = LEN(n$)
  655.                         IF l < 8 THEN strng0 = tmp$ + STR$(dig)
  656.                     ELSE
  657.                         n$ = RTRIM$(strng1)
  658.                         l = LEN(n$)
  659.                         IF l < 8 THEN strng1 = tmp$ + STR$(dig)
  660.                     END IF
  661.                 END IF
  662.             END IF
  663.  
  664.             IF y > y1 + 166 * ratio AND y < y1 + 200 * ratio THEN
  665.  
  666.                 IF box = 0 THEN
  667.  
  668.                     IF x > x1 + 268 * ratio AND x < x1 + 314 * ratio THEN
  669.                         ord.ovr = INT(VAL(strng0))
  670.                         box = 1
  671.                     END IF
  672.  
  673.                     IF x > x1 + 332 * ratio AND x < x1 + 366 * ratio THEN
  674.                         strng0 = ""
  675.                     END IF
  676.  
  677.                 ELSE
  678.  
  679.                     IF x > x1 + 294 * ratio AND x < x1 + 340 * ratio THEN
  680.                         IF INT(VAL(strng1)) > ord.ovr THEN
  681.                             strng1 = ""
  682.                         ELSE
  683.                             box = 0
  684.                             oact = 0
  685.                             ord.src = src
  686.                             ord.dst = dst
  687.                             ord.shp = VAL(strng1)
  688.                             strng0 = ""
  689.                             strng1 = ""
  690.                         END IF
  691.                     END IF
  692.  
  693.                     IF x > x1 + 356 * ratio AND x < x1 + 390 * ratio THEN
  694.                         strng0 = ""
  695.                         strng1 = ""
  696.                         box = 0
  697.                     END IF
  698.  
  699.                 END IF
  700.  
  701.             END IF
  702.         END IF
  703.         x1 = 10000: y1 = 10000
  704.  
  705.     END IF
  706.  
  707.  
  708.     'If the fleet send panel is active
  709.     IF pact = 1 THEN
  710.         IF rclk = 1 THEN pact = 0
  711.         IF star(src).o = 1 THEN
  712.             ShowPanel dst
  713.         END IF
  714.         IF lclk = 1 THEN
  715.             tmp$ = RTRIM$(strng)
  716.  
  717.             x1 = panx: x2 = panx + 400 * ratio
  718.             y1 = pany: y2 = pany + 540 * ratio
  719.  
  720.             IF y > y1 + 256 * ratio AND y < y1 + 328 * ratio THEN
  721.                 IF x > x1 + 20 * ratio AND x < x1 + 380 * ratio THEN
  722.                     dig = (x - x1 - 32 * ratio) / (37 * ratio)
  723.                     strng = tmp$ + STR$(dig)
  724.                 END IF
  725.             END IF
  726.  
  727.             IF y > y1 + 334 * ratio AND y < y1 + 374 * ratio THEN
  728.                 IF x > x1 + 20 * ratio AND x < x1 + 84 * ratio THEN
  729.                     pact = 0
  730.                     value = star(src).t
  731.                     SendFleet src, dst, value
  732.                     src = 100
  733.                 END IF
  734.                 IF x > x1 + 102 * ratio AND x < x1 + 184 * ratio THEN
  735.                     pact = 0
  736.                     value = star(src).t / 2
  737.                     SendFleet src, dst, value
  738.                     src = 100
  739.                 END IF
  740.                 IF x > x1 + 202 * ratio AND x < x1 + 282 * ratio THEN
  741.                     pact = 0
  742.                     value = star(src).t / 3
  743.                     SendFleet src, dst, value
  744.                     src = 100
  745.                 END IF
  746.                 IF x > x1 + 300 * ratio AND x < x1 + 380 * ratio THEN
  747.                     strng = ""
  748.                 END IF
  749.             END IF
  750.  
  751.             IF y > y1 + 460 * ratio AND y < y1 + 530 * ratio THEN
  752.                 IF x > x1 + 32 * ratio AND x < x1 + 182 * ratio THEN
  753.                     value = VAL(strng)
  754.                     strng = ""
  755.                     pact = 0
  756.                     IF value <= star(src).t AND star(src).t <> o THEN
  757.                         SendFleet src, dst, value
  758.                     END IF
  759.                     src = 100
  760.                 END IF
  761.                 IF x > x1 + 212 * ratio AND x < x1 + 362 * ratio THEN
  762.                     pact = 0
  763.                     src = 100
  764.                     strng = ""
  765.                 END IF
  766.             END IF
  767.         END IF
  768.     END IF
  769.  
  770. SUB QuickSave
  771.     FOR i = 0 TO 99: qstar(i) = star(i): qorder(i) = order(i): NEXT
  772.     FOR i = 0 TO 1999: qfleet(i) = fleet(i): NEXT
  773.     FOR i = 0 TO 6
  774.         qhome(i) = home(i)
  775.         FOR j = 0 TO 7
  776.             qhate(i, j) = hate(i, j)
  777.         NEXT
  778.     NEXT
  779.     qfltcnt = fltcnt
  780.     qLL = LL
  781.  
  782. SUB QuickRestore
  783.     FOR i = 0 TO 99: star(i) = qstar(i): order(i) = qorder(i): NEXT
  784.     FOR i = 0 TO 1999: fleet(i) = qfleet(i): NEXT
  785.     FOR i = 0 TO 6
  786.         home(i) = qhome(i)
  787.         FOR j = 0 TO 7
  788.             hate(i, j) = qhate(i, j)
  789.         NEXT
  790.     NEXT
  791.     fltcnt = qfltcnt
  792.     LL = qLL
  793.     paused = 1
  794.  
  795. SUB SendFleet (src, dst, ships)
  796.     IF fltcnt < 2000 THEN
  797.         hate(star(src).o, star(dst).o) = hate(star(src).o, star(dst).o) + 1
  798.         FOR i = 0 TO 1999
  799.             IF fleet(i).o = 0 THEN
  800.                 fleet(i).o = star(src).o
  801.                 fleet(i).d = dst
  802.                 fleet(i).x1 = star(src).x
  803.                 fleet(i).y1 = star(src).y
  804.                 fleet(i).x2 = star(dst).x
  805.                 fleet(i).y2 = star(dst).y
  806.                 fleet(i).t = ships
  807.                 star(src).t = star(src).t - ships
  808.                 fltcnt = fltcnt + 1
  809.                 EXIT FOR
  810.             END IF
  811.         NEXT
  812.         IF fleet(i).o > 1 AND LL < 10000 THEN LL = LL + 1
  813.     END IF
  814.  
  815. SUB ShowPanel (i)
  816.     x1 = star(i).x - 420 * ratio
  817.     IF star(i).x < sw / 2 THEN x1 = star(i).x + 20 * ratio
  818.     x2 = x1 + 400 * ratio
  819.     y1 = star(i).y
  820.     IF y1 > sh - 560 * ratio THEN y1 = sh - 560 * ratio
  821.     y2 = y1 + 540 * ratio
  822.     _DEST sp
  823.     CLS 0, 8
  824.     COLOR 0, 8
  825.     _FONT ttf72
  826.     n$ = RTRIM$(star(src).n)
  827.     l = _PRINTWIDTH(n$)
  828.     _PRINTSTRING ((400 * ratio - l) / 2, 12 * ratio), n$, sp
  829.     n$ = "to"
  830.     l = _PRINTWIDTH(n$)
  831.     _PRINTSTRING ((400 * ratio - l) / 2, 80 * ratio), n$, sp
  832.     n$ = RTRIM$(star(dst).n)
  833.     l = _PRINTWIDTH(n$)
  834.     _PRINTSTRING ((400 * ratio - l) / 2, 152 * ratio), n$, sp
  835.     LINE (20 * ratio, 239 * ratio)-(380 * ratio, 239 * ratio), 0
  836.     _PRINTSTRING (20 * ratio, 256 * ratio), "0123456789", sp
  837.     n$ = RTRIM$(strng)
  838.     l = _PRINTWIDTH(n$)
  839.     _PRINTSTRING ((400 * ratio - l) / 2, 383 * ratio), n$, sp
  840.     xo = 20 * ratio: xd = 84 * ratio: yo = 334 * ratio: yd = 374 * ratio
  841.     LINE (xo, yo)-(xd, yd), 7, BF
  842.     xo = 102 * ratio: xd = 184 * ratio: yo = 334 * ratio: yd = 374 * ratio
  843.     LINE (xo, yo)-(xd, yd), 7, BF
  844.     xo = 202 * ratio: xd = 282 * ratio: yo = 334 * ratio: yd = 374 * ratio
  845.     LINE (xo, yo)-(xd, yd), 7, BF
  846.     xo = 300 * ratio: xd = 380 * ratio: yo = 334 * ratio: yd = 374 * ratio
  847.     LINE (xo, yo)-(xd, yd), 7, BF
  848.     xo = 32 * ratio: xd = 182 * ratio: yo = 458 * ratio: yd = 530 * ratio
  849.     LINE (xo, yo)-(xd, yd), 7, BF
  850.     xo = 212 * ratio: xd = 362 * ratio: yo = 458 * ratio: yd = 530 * ratio
  851.     LINE (xo, yo)-(xd, yd), 7, BF
  852.     _FONT ttf24
  853.     COLOR 7, 8
  854.     n$ = RTRIM$(STR$(star(src).t))
  855.     l = _PRINTWIDTH(n$)
  856.     _PRINTSTRING (120 * ratio - l, 112 * ratio), n$, sp
  857.     n$ = RTRIM$(STR$(star(dst).t))
  858.     l = _PRINTWIDTH(n$)
  859.     _PRINTSTRING (300 * ratio - l, 112 * ratio), n$, sp
  860.     _FONT ttf16
  861.     COLOR 0, 7
  862.     _PRINTSTRING (38 * ratio, 347 * ratio), "ALL", sp
  863.     _PRINTSTRING (122 * ratio, 347 * ratio), "HALF", sp
  864.     _PRINTSTRING (214 * ratio, 347 * ratio), "THIRD", sp
  865.     _PRINTSTRING (312 * ratio, 347 * ratio), "CLEAR", sp
  866.     _FONT ttf72
  867.     _PRINTSTRING (60 * ratio, 458 * ratio), "Ok", sp
  868.     _PRINTSTRING (216 * ratio, 458 * ratio), "Quit", sp
  869.     _PUTIMAGE (x1, y1), sp, 0, (0, 0)-(400 * ratio, 540 * ratio)
  870.     panx = x1: pany = y1
  871.     _DEST 0
  872.  
  873. SUB NewGame
  874.     DIM k AS INTEGER
  875.     DIM r AS INTEGER
  876.     DIM dx AS INTEGER
  877.     DIM dy AS INTEGER
  878.     DIM n AS STRING * 10
  879.     paused = 1
  880.     FOR i = 0 TO 999
  881.         fleet(i).o = 0
  882.     NEXT
  883.     slct = 0
  884.     fltcnt = 0
  885.     LL = 25
  886.     seed = RND * 1000
  887.     FOR i = 0 TO 99
  888.         k = 1
  889.         WHILE k
  890.             k = 0
  891.             x = RND * (sw - sww) + swn
  892.             y = RND * (sh - shw) + shn
  893.             r = INT(RND * 200)
  894.             n = names(r)
  895.             FOR j = 0 TO i - 1
  896.                 dx = x - star(j).x
  897.                 dy = y - star(j).y
  898.                 IF ABS(dx) < sww AND ABS(dy) < shw THEN
  899.                     k = 1
  900.                 END IF
  901.                 IF n = star(j).n THEN
  902.                     k = 1
  903.                 END IF
  904.             NEXT
  905.         WEND
  906.         star(i).n = n
  907.         star(i).x = x
  908.         star(i).y = y
  909.         star(i).c = RND * 6 + 9
  910.         star(i).s = RND * 5
  911.         star(i).o = 0
  912.         star(i).p = star(i).s + (RND * 5) + 3
  913.         star(i).t = 0
  914.         order(i).src = 100
  915.     NEXT
  916.     FOR i = 1 TO 6
  917.         ok = 0
  918.         WHILE (ok < 1)
  919.             ok = 1
  920.             j = RND * 100
  921.             FOR k = 1 TO i - 1
  922.                 dist = SQR(ABS(star(j).x - star(home(k)).x) ^ 2 + ABS(star(j).y - star(home(k)).y) ^ 2)
  923.                 IF dist < 500 * ratio THEN
  924.                     ok = 0
  925.                     EXIT FOR
  926.                 END IF
  927.             NEXT
  928.             IF ok = 1 THEN
  929.                 ok = -1
  930.                 FOR k = 0 TO 99
  931.                     dist = SQR(ABS(star(j).x - star(k).x) ^ 2 + ABS(star(j).y - star(k).y) ^ 2)
  932.                     IF dist <= 200 THEN ok = ok + 1
  933.                     IF ok = 2 THEN EXIT FOR
  934.                 NEXT
  935.             END IF
  936.         WEND
  937.         home(i) = j
  938.         star(j).o = i
  939.         star(j).p = 10
  940.         star(j).t = 100
  941.         star(j).s = 4
  942.     NEXT
  943.     star(home(1)).n = "Sol"
  944.     star(home(1)).c = 14
  945.     QuickSave
  946.  
  947. ' A lot of star names I made up
  948.  
  949. SUB StarNames
  950.     names(0) = "Acamar"
  951.     names(1) = "Arcab"
  952.     names(2) = "Acrux"
  953.     names(3) = "Adhara"
  954.     names(4) = "Arneb"
  955.     names(5) = "Antares"
  956.     names(6) = "Arcturus"
  957.     names(7) = "Atria"
  958.     names(8) = "Beid"
  959.     names(9) = "Betelgeuse"
  960.     names(10) = "Botein"
  961.     names(11) = "Beemim"
  962.     names(12) = "Bellatrix"
  963.     names(13) = "Bharani"
  964.     names(14) = "Biham"
  965.     names(15) = "Brachium"
  966.     names(16) = "Canopus"
  967.     names(17) = "Capella"
  968.     names(18) = "Castor"
  969.     names(19) = "Chara"
  970.     names(20) = "Cursa"
  971.     names(21) = "Copernicus"
  972.     names(22) = "Chalawan"
  973.     names(23) = "Chertan"
  974.     names(24) = "Dabih"
  975.     names(25) = "Dalim"
  976.     names(26) = "Deneb"
  977.     names(27) = "Denebola"
  978.     names(28) = "Diadem"
  979.     names(29) = "Diphda"
  980.     names(30) = "Dschubba"
  981.     names(31) = "Dziban"
  982.     names(32) = "Edasich"
  983.     names(33) = "Electra"
  984.     names(34) = "Elgafar"
  985.     names(35) = "Elkurud"
  986.     names(36) = "Elnath"
  987.     names(37) = "Eltanin"
  988.     names(38) = "Enif"
  989.     names(39) = "Errai"
  990.     names(40) = "Fafnir"
  991.     names(41) = "Fang"
  992.     names(42) = "Fawaris"
  993.     names(43) = "Felis"
  994.     names(44) = "Fomalhaut"
  995.     names(45) = "Fulu"
  996.     names(46) = "Fumal"
  997.     names(47) = "Furud"
  998.     names(48) = "Garnet"
  999.     names(49) = "Giausar"
  1000.     names(50) = "Gienah"
  1001.     names(51) = "Ginan"
  1002.     names(52) = "Gomeisa"
  1003.     names(53) = "Graffias"
  1004.     names(54) = "Grumium"
  1005.     names(55) = "Gudja"
  1006.     names(56) = "Hadar"
  1007.     names(57) = "Haedus"
  1008.     names(58) = "Hamal"
  1009.     names(59) = "Hassaleh"
  1010.     names(60) = "Hatysa"
  1011.     names(61) = "Helvetios"
  1012.     names(62) = "Heze"
  1013.     names(63) = "Homan"
  1014.     names(64) = "Iklil"
  1015.     names(65) = "Imai"
  1016.     names(66) = "Intercrus"
  1017.     names(67) = "Izar"
  1018.     names(68) = "Iccar"
  1019.     names(69) = "Inar"
  1020.     names(70) = "Iaeth"
  1021.     names(71) = "Imaous"
  1022.     names(72) = "Jabbah"
  1023.     names(73) = "Jishui"
  1024.     names(74) = "Jax"
  1025.     names(75) = "Jalae"
  1026.     names(76) = "Jewel"
  1027.     names(77) = "Jumbo"
  1028.     names(78) = "Jerue"
  1029.     names(79) = "Jabear"
  1030.     names(80) = "Kakkab"
  1031.     names(81) = "Kang"
  1032.     names(82) = "Kekouan"
  1033.     names(83) = "Keid"
  1034.     names(84) = "Kitalpha"
  1035.     names(85) = "Kochab"
  1036.     names(86) = "Kolob"
  1037.     names(87) = "Kobol"
  1038.     names(88) = "Larawag"
  1039.     names(89) = "Lesath"
  1040.     names(90) = "Libertas"
  1041.     names(91) = "Lich"
  1042.     names(92) = "Lilly"
  1043.     names(93) = "Laddel"
  1044.     names(94) = "Luminous"
  1045.     names(95) = "Lasacious"
  1046.     names(96) = "Mizar"
  1047.     names(97) = "Markab"
  1048.     names(98) = "Matar"
  1049.     names(99) = "Mintaka"
  1050.     names(100) = "Meleph"
  1051.     names(101) = "Menkar"
  1052.     names(102) = "Merga"
  1053.     names(103) = "Merope"
  1054.     names(104) = "Nahn"
  1055.     names(105) = "Naos"
  1056.     names(106) = "Nashira"
  1057.     names(107) = "Navi"
  1058.     names(108) = "Nekkar"
  1059.     names(109) = "Nembus"
  1060.     names(110) = "Nihal"
  1061.     names(111) = "Nunki"
  1062.     names(112) = "Ogma"
  1063.     names(113) = "Okab"
  1064.     names(114) = "Ohmy"
  1065.     names(115) = "Oragami"
  1066.     names(116) = "Origen"
  1067.     names(117) = "Omanii"
  1068.     names(118) = "Obytewa"
  1069.     names(119) = "Oglok"
  1070.     names(120) = "Phact"
  1071.     names(121) = "Pherkad"
  1072.     names(122) = "Pleione"
  1073.     names(122) = "Polaris"
  1074.     names(123) = "Pollux"
  1075.     names(124) = "Procyon"
  1076.     names(125) = "Proxima"
  1077.     names(126) = "Polis"
  1078.     names(127) = "Quaint"
  1079.     names(128) = "Quazzat"
  1080.     names(129) = "Quetzal"
  1081.     names(130) = "Qussol"
  1082.     names(131) = "Quella"
  1083.     names(132) = "Quyaeo"
  1084.     names(133) = "Ququdas"
  1085.     names(134) = "Quekak"
  1086.     names(135) = "Rasalas"
  1087.     names(136) = "Regor"
  1088.     names(137) = "Regulus"
  1089.     names(138) = "Rigel"
  1090.     names(139) = "Revati"
  1091.     names(140) = "Rotenev"
  1092.     names(141) = "Rukbat"
  1093.     names(142) = "Rastaban"
  1094.     names(143) = "Sabik"
  1095.     names(144) = "Sadr"
  1096.     names(145) = "Saiph"
  1097.     names(146) = "Sargas"
  1098.     names(147) = "Sarin"
  1099.     names(148) = "Syrma"
  1100.     names(149) = "Spica"
  1101.     names(150) = "Sirius"
  1102.     names(151) = "Tarazed"
  1103.     names(152) = "Taygeta"
  1104.     names(153) = "Tejat"
  1105.     names(154) = "Thabit"
  1106.     names(155) = "Thuban"
  1107.     names(156) = "Tiaki"
  1108.     names(157) = "Toliman"
  1109.     names(158) = "Torcular"
  1110.     names(157) = "Umala"
  1111.     names(158) = "Ulatte"
  1112.     names(159) = "Ubbessa"
  1113.     names(160) = "Unoless"
  1114.     names(161) = "Umaddem"
  1115.     names(162) = "Ummbra"
  1116.     names(162) = "Uniqu"
  1117.     names(163) = "Uzzaal"
  1118.     names(164) = "Vega"
  1119.     names(165) = "Veritate"
  1120.     names(166) = "Vindetrix"
  1121.     names(167) = "Vedas"
  1122.     names(168) = "Vergg"
  1123.     names(169) = "Vacant"
  1124.     names(170) = "Vucae"
  1125.     names(171) = "Vicar"
  1126.     names(172) = "Wasat"
  1127.     names(173) = "Wazn"
  1128.     names(174) = "Wezen"
  1129.     names(175) = "Waiten"
  1130.     names(176) = "Wachar"
  1131.     names(177) = "Wheelz"
  1132.     names(178) = "Whatsp"
  1133.     names(179) = "Wassand"
  1134.     names(180) = "Xenno"
  1135.     names(181) = "Xyphod"
  1136.     names(182) = "Xu"
  1137.     names(183) = "Xaal"
  1138.     names(184) = "Xyross"
  1139.     names(185) = "Xiggot"
  1140.     names(186) = "Xirrks"
  1141.     names(187) = "Yed"
  1142.     names(188) = "Yildun"
  1143.     names(189) = "Yundun"
  1144.     names(190) = "Yavyo"
  1145.     names(191) = "Yotrac"
  1146.     names(192) = "Yxzoqu"
  1147.     names(193) = "Ynnot"
  1148.     names(194) = "Zaniah"
  1149.     names(195) = "Zaurak"
  1150.     names(196) = "Zhang"
  1151.     names(197) = "Zibal"
  1152.     names(198) = "Zosma"
  1153.     names(199) = "Zuben"
  1154.  
 
Title: Re: Beyond Sol
Post by: romichess on January 06, 2020, 02:57:41 am
It was too easy to hit the "r" by mistake when pressing the "t".  So the above source was edited to "l" for Quick Load but now it is next to the "p" for pause. SO if it is a problem then just change it to anything best for you before compiling. It is in get input. The subroutines are alphabetized.
Title: Re: Beyond Sol
Post by: dajan on January 06, 2020, 11:47:22 am
If the "Beyond Sol" is already taken, just name it "Beyond two Sols".
Title: Re: Beyond Sol
Post by: SMcNeill on January 06, 2020, 11:58:28 am
If the "Beyond Sol" is already taken, just name it "Beyond two Sols".

I like, "Beyond The Beyond!!!"
Title: Re: Beyond Sol
Post by: romichess on January 06, 2020, 09:34:01 pm
Very cool names, but you can only help name the game if you play it! :)
Title: Re: Beyond Sol
Post by: Kazman on January 07, 2020, 04:30:04 am
"Beyond Stars", maybe? ;)
Title: Re: Beyond Sol
Post by: Cobalt on January 07, 2020, 11:31:25 am
I like, "Beyond The Beyond!!!"

made me think of this...
"From the land beyond beyond.
  From the world past hope and fear.
  I bid you, genie, now appear."

Anyway, how about "QB64 Beyond Sol!" ?
Title: Re: Beyond Sol
Post by: romichess on January 07, 2020, 11:57:03 am
If I add a QB64 star, it can be called Master of QB64! Whoever takes QB64 first wins the game. But beware it will be protected by a powerful starbase. "Beyond the Stars", maybe? I don't think people here would like, "Beyond QB64". Or maybe just, "The Beyond". Or, "Yonder Star".
Title: Re: Beyond Sol
Post by: Kazman on January 14, 2020, 08:07:33 am
Any game update news? Me want !!! :P

I like "Beyond the stars" :)
Title: Re: Beyond Sol
Post by: romichess on January 14, 2020, 12:41:12 pm
Any game update news? Me want !!! :P

I like "Beyond the stars" :)

Thanks Kazman! Yes, Beyond the Stars seems pretty good. It was really your suggestion anyway. All I did was add the, "the". I do have an updated version. Except, I have not added the game menu yet like I said I was going to do. I've not been feeling very well and I'm a bit burned out. However, for my game's only fan I will load up on caffeine and work on it today. And here is the latest version. The computer's playing AI is finalized for the alpha version. As always if the human gets off to a good start the game is easy but maybe not as easy. And if one of the computer players gets off to a good start then it can be a real bear. The only cosmetic change is that now the stars paint over the standing order lines and therefore the lines only go to the edge of the star. I have to say that if it weren't for your support I'd have stopped working on it by now!

Code: QB64: [Select]
  1. TYPE stars
  2.     n AS STRING * 10 '                 Name of star
  3.     x AS INTEGER '                     x-position
  4.     y AS INTEGER '                     y-position
  5.     o AS INTEGER '                     Owner
  6.     c AS INTEGER '                     Color
  7.     s AS INTEGER '                     Size
  8.     t AS LONG '                        Ships
  9.     p AS INTEGER '
  10.     d AS INTEGER '                   (Population) For now ships production
  11.  
  12. TYPE FLEETS
  13.     t AS LONG
  14.     x1 AS INTEGER
  15.     y1 AS INTEGER
  16.     x2 AS INTEGER
  17.     y2 AS INTEGER
  18.     o AS INTEGER
  19.     d AS INTEGER
  20.  
  21. TYPE ORDERS
  22.     src AS LONG
  23.     ovr AS LONG
  24.     shp AS LONG
  25.     dst AS LONG
  26.  
  27. ' Global variables shared because they are needed in more than one routine
  28. DIM SHARED sw AS INTEGER '             Screen Width
  29. DIM SHARED sh AS INTEGER '             Screen Height
  30. DIM SHARED sww AS INTEGER '            Screen Width Wide margin
  31. DIM SHARED swn AS INTEGER '            Screen Width Narrow adjustment
  32. DIM SHARED shw AS INTEGER '            Screen Height Wide margine
  33. DIM SHARED shn AS INTEGER '            Screen Height Narrow adjustment
  34. DIM SHARED nw AS INTEGER '             games Natural screen Width
  35. DIM SHARED nh AS INTEGER '             games Natural screen Height
  36. DIM SHARED ratio AS _FLOAT '           the Ratio of the games natural screen width to the actual
  37. DIM SHARED star(100) AS stars '        100 stars - may change
  38. DIM SHARED qstar(100) AS stars
  39. DIM SHARED names(200) AS STRING * 10 ' 200 star names
  40. DIM SHARED seed AS INTEGER '           Seed to prime the Randomizer to display identical background each frame
  41. DIM SHARED home(7) AS INTEGER '        The starting star for each player. The human always has star(0), Sol
  42. DIM SHARED qhome(7) AS INTEGER
  43. DIM SHARED tt AS INTEGER '             tt = 0 star names displayed, tt = 0 star names not didplayed
  44. DIM SHARED ch AS STRING * 1 '          Game loop key input variable
  45. DIM SHARED repeat AS INTEGER '         Game loop control variable
  46. DIM SHARED fleet(2000) AS FLEETS
  47. DIM SHARED qfleet(2000) AS FLEETS
  48. DIM SHARED panx, pany AS INTEGER
  49. DIM SHARED oanx, oany AS INTEGER
  50. DIM SHARED strng AS STRING * 14
  51. DIM SHARED strng0 AS STRING * 10
  52. DIM SHARED strng1 AS STRING * 10
  53. DIM SHARED order(100) AS ORDERS
  54. DIM SHARED qorder(100) AS ORDERS
  55. DIM SHARED ord AS ORDERS
  56.  
  57.  
  58. sw = _DESKTOPWIDTH '                   native video with of syatem
  59. sww = sw / 24 '                        margin based on native video width to keep stars away from edge
  60. swn = sw / 48 '                        adjustment that works with sww to keep stars away from left and top of screen
  61. nw = 1920
  62.  
  63. ratio = sw / 1920 '                    Used to adjust distances and sizes for various screen modes
  64.  
  65. shw = sh / 20
  66. shn = sh / 40
  67. nh = 1080
  68.  
  69. tt = 0
  70. lcx = sw
  71. rcx = sw
  72. cp = 100
  73. h = 100
  74. ar = 0
  75. rng = 200
  76. slct = 0
  77. strng = ""
  78. strng0 = ""
  79. strng1 = ""
  80. src = 100
  81. dst = 100
  82. ord.src = 100
  83.  
  84. SCREEN _NEWIMAGE(sw, sh, 256) '        creates a screen the resolution of the users native system
  85.  
  86.  
  87. sp = _NEWIMAGE(400 * ratio, 540 * ratio, 256)
  88. op = _NEWIMAGE(400 * ratio, 225 * ratio, 256)
  89.  
  90. StarNames '                            Routine to load star names into string array stars(200)
  91.  
  92. NewGame
  93.  
  94. ttf16 = _LOADFONT("cyberbit.ttf", 16 * ratio, "BOLD")
  95. ttf24 = _LOADFONT("cyberbit.ttf", 24 * ratio, "BOLD")
  96. ttf36 = _LOADFONT("cyberbit.ttf", 36 * ratio, "BOLD")
  97. ttf72 = _LOADFONT("cyberbit.ttf", 72 * ratio, "BOLD")
  98.  
  99. repeat = 1
  100.  
  101. WHILE repeat
  102.  
  103.     CLS
  104.  
  105.     PaintBackground
  106.  
  107.     PaintStars
  108.  
  109.     PaintFleet
  110.  
  111.     FOR it = 0 TO speed
  112.  
  113.         Update
  114.  
  115.         GetInput
  116.  
  117.         Player
  118.  
  119.         Computer
  120.  
  121.     NEXT
  122.  
  123.     _DISPLAY
  124.  
  125.  
  126.  
  127. SUB Computer
  128.  
  129.     IF paused = 0 THEN
  130.         id = INT(RND * 5) + 2
  131.         i = home(id)
  132.         IF star(i).o <> id THEN
  133.             FOR j = 0 TO 99
  134.                 IF star(j).o = id THEN home(id) = j: i = j: EXIT FOR
  135.             NEXT
  136.         END IF
  137.  
  138.         FOR p = 0 TO 3
  139.  
  140.             IF p = 0 THEN
  141.                 IF star(i).t > LL THEN
  142.                     away = 10000
  143.                     jay = 100
  144.                     FOR j = 0 TO 99
  145.                         IF star(j).o <> id THEN
  146.                             IF star(j).d > 0 THEN
  147.                                 star(j).d = star(j).d - 1
  148.                             ELSE
  149.                                 ok = 0
  150.                                 FOR k = 0 TO 99
  151.                                     IF star(k).o = id THEN
  152.                                         dist = SQR(ABS(star(j).x - star(k).x) ^ 2 + ABS(star(j).y - star(k).y) ^ 2)
  153.                                         IF dist < 251 THEN
  154.                                             ok = 1
  155.                                             EXIT FOR
  156.                                         END IF
  157.                                     END IF
  158.                                 NEXT
  159.                                 IF ok = 1 THEN
  160.                                     dist = SQR(ABS(star(j).x - star(i).x) ^ 2 + ABS(star(j).y - star(i).y) ^ 2)
  161.                                     IF dist < away THEN
  162.                                         IF LL > 299 THEN
  163.                                             away = dist
  164.                                             jay = j
  165.                                         ELSE
  166.                                             IF star(i).t > star(j).t * 3 + dist / 4 - star(j).p ^ 2 THEN
  167.                                                 away = dist
  168.                                                 jay = j
  169.                                             END IF
  170.                                         END IF
  171.                                     END IF
  172.                                 END IF
  173.                             END IF
  174.                         END IF
  175.                     NEXT
  176.                     IF LL > 299 AND star(i).t < star(jay).t * 3 THEN jay = 100
  177.                     IF jay < 100 THEN
  178.                         SendFleet i, jay, star(i).t / 2
  179.                         star(jay).d = 400
  180.                     END IF
  181.                 END IF
  182.             END IF
  183.  
  184.             IF p = 1 THEN
  185.                 sf2 = 100
  186.                 FOR i = 0 TO 99
  187.                     IF star(i).o = id AND i <> home(id) AND star(i).t > LL * 1.6 THEN
  188.                         sf3 = star(i).t / 2.5
  189.                         FOR j = 0 TO 99
  190.                             IF star(j).d > 0 THEN
  191.                                 star(j).d = star(j).d - 1
  192.                             ELSE
  193.                                 IF star(j).o <> id AND star(i).t > star(j).t * 4 THEN
  194.                                     FOR k = 0 TO 99
  195.                                         IF star(k).o = id THEN
  196.                                             dist = SQR(ABS(star(k).x - star(j).x) ^ 2 + ABS(star(k).y - star(j).y) ^ 2)
  197.                                             IF dist <= 250 * ratio THEN
  198.                                                 sf1 = i
  199.                                                 sf2 = j
  200.                                                 EXIT FOR
  201.                                             END IF
  202.                                         END IF
  203.                                     NEXT
  204.                                 END IF
  205.                             END IF
  206.                         NEXT
  207.                         IF sf2 < 100 THEN EXIT FOR
  208.                     END IF
  209.                 NEXT
  210.                 IF sf2 < 100 THEN
  211.                     SendFleet sf1, sf2, sf3
  212.                     star(sf2).d = 400
  213.                     EXIT FOR
  214.                 END IF
  215.             END IF
  216.  
  217.             IF p = 2 THEN
  218.                 FOR i = 0 TO 99
  219.                     IF i <> home(id) AND star(i).o = id THEN
  220.                         IF star(i).t > 49 THEN
  221.                             ok = 1
  222.                             FOR j = 0 TO 99
  223.                                 IF star(j).o <> id AND star(j).o <> 0 THEN
  224.                                     dist = SQR(ABS(star(i).x - star(j).x) ^ 2 + ABS(star(i).y - star(j).y) ^ 2)
  225.                                     IF dist <= 400 * ratio THEN
  226.                                         ok = 0
  227.                                         EXIT FOR
  228.                                     END IF
  229.                                 END IF
  230.                             NEXT
  231.                             IF ok = 1 THEN
  232.                                 SendFleet i, home(id), star(i).t
  233.                                 EXIT FOR
  234.                             END IF
  235.                         END IF
  236.                     END IF
  237.                 NEXT
  238.                 IF ok = 1 THEN EXIT FOR
  239.             END IF
  240.  
  241.             IF p = 3 THEN
  242.                 ok = 0
  243.                 FOR i = 0 TO 99
  244.                     IF i <> home(id) AND star(i).o = id THEN
  245.                         IF star(i).t > LL * 1.5 + star(i).p * 100 THEN
  246.                             ok = 1
  247.                             EXIT FOR
  248.                         END IF
  249.                     END IF
  250.                 NEXT
  251.                 IF ok = 1 THEN
  252.                     SendFleet i, home(id), star(i).t / 4
  253.                     EXIT FOR
  254.                 END IF
  255.             END IF
  256.  
  257.         NEXT
  258.  
  259.     END IF
  260.  
  261. SUB GetInput
  262.  
  263.     IF ch = CHR$(27) THEN repeat = 0
  264.     IF ch = "n" THEN NewGame
  265.     IF ch = "t" THEN tt = 1 - tt
  266.     IF ch = "p" THEN paused = 1 - paused
  267.     IF ch = "+" THEN
  268.         IF speed < 10 THEN speed = speed + 1
  269.     END IF
  270.     IF ch = "-" THEN
  271.         IF speed > 0 THEN speed = speed - 1
  272.     END IF
  273.     IF ch = "q" THEN QuickSave
  274.     IF ch = "l" THEN QuickRestore
  275.     ch = INKEY$
  276.  
  277.  
  278.     lclk = 0
  279.     rclk = 0
  280.  
  281.  
  282.         lmb = _MOUSEBUTTON(1)
  283.         rmb = _MOUSEBUTTON(2)
  284.  
  285.         x = _MOUSEX
  286.  
  287.         IF lmb AND lcx = sw THEN lcx = x
  288.         IF rmb AND rcx = sw THEN rcx = x
  289.  
  290.     WEND
  291.  
  292.     x = _MOUSEX
  293.     y = _MOUSEY
  294.  
  295.     IF lmb = 0 AND lcx < sw THEN lclk = 1
  296.     IF rmb = 0 AND rcx < sw THEN rclk = 1
  297.  
  298.     lcx = sw
  299.     rcx = sw
  300.  
  301.     IF rclk = 1 THEN
  302.         i = Identify
  303.         IF i = 100 THEN
  304.             IF src = 100 THEN
  305.                 paused = 1 - paused
  306.                 ch = ""
  307.             ELSE
  308.                 src = 100
  309.                 oact = 0
  310.                 pact = 0
  311.             END IF
  312.             rclk = 0
  313.         END IF
  314.         IF pact = 1 OR oact = 1 THEN
  315.             rclk = 0
  316.         END IF
  317.     END IF
  318.  
  319.  
  320. FUNCTION Identify
  321.     ii = 100
  322.     FOR i = 0 TO 99
  323.         dx = star(i).x - x
  324.         dy = star(i).y - y
  325.         IF ABS(dx) <= star(i).s + 8 AND ABS(dy) <= star(i).s + 8 THEN
  326.             ii = i
  327.             EXIT FOR
  328.         END IF
  329.     NEXT
  330.     Identify = ii
  331.  
  332. SUB OrderPanel (i)
  333.     x1 = star(i).x - 420 * ratio
  334.     IF star(i).x < sw / 2 THEN x1 = star(i).x + 20 * ratio
  335.     x2 = x1 + 400 * ratio
  336.     y1 = star(i).y
  337.     IF y1 > sh - 225 * ratio THEN y1 = sh - 225 * ratio
  338.     y2 = y1 + 225 * ratio
  339.     _DEST op
  340.     CLS 0, 8
  341.     COLOR 0, 8
  342.     _FONT ttf72
  343.     n$ = RTRIM$(star(i).n)
  344.     l = _PRINTWIDTH(n$)
  345.     _PRINTSTRING ((400 * ratio - l) / 2, 4 * ratio), n$, op
  346.     LINE (20 * ratio, 76 * ratio)-(380 * ratio, 76 * ratio), 0
  347.     _PRINTSTRING (20 * ratio, 80 * ratio), "0123456789", op
  348.     COLOR 7, 8
  349.     _FONT ttf36
  350.     IF box = 0 THEN
  351.         _PRINTSTRING (20 * ratio, 166 * ratio), "If Over", op
  352.         xo = 142 * ratio: xd = 250 * ratio: yo = 166 * ratio: yd = 200 * ratio
  353.         LINE (xo, yo)-(xd, yd), 7, BF
  354.         xo = 268 * ratio: xd = 314 * ratio: yo = 166 * ratio: yd = 200 * ratio
  355.         LINE (xo, yo)-(xd, yd), 7, BF
  356.         xo = 332 * ratio: xd = 366 * ratio: yo = 166 * ratio: yd = 200 * ratio
  357.         LINE (xo, yo)-(xd, yd), 7, BF
  358.         n$ = RTRIM$(strng0)
  359.         COLOR 0, 7
  360.         _FONT ttf24
  361.         _PRINTSTRING (148 * ratio, 172 * ratio), n$, op
  362.         _PRINTSTRING (273 * ratio, 172 * ratio), "OK", op
  363.         _PRINTSTRING (341 * ratio, 172 * ratio), "X", op
  364.     END IF
  365.     IF box = 1 THEN
  366.         _PRINTSTRING (20 * ratio, 166 * ratio), "Then Send", op
  367.         xo = 198 * ratio: xd = 278 * ratio: yo = 166 * ratio: yd = 200 * ratio
  368.         LINE (xo, yo)-(xd, yd), 7, BF
  369.         xo = 294 * ratio: xd = 340 * ratio: yo = 166 * ratio: yd = 200 * ratio
  370.         LINE (xo, yo)-(xd, yd), 7, BF
  371.         xo = 356 * ratio: xd = 390 * ratio: yo = 166 * ratio: yd = 200 * ratio
  372.         LINE (xo, yo)-(xd, yd), 7, BF
  373.         n$ = RTRIM$(strng1)
  374.         COLOR 0, 7
  375.         _FONT ttf24
  376.         _PRINTSTRING (200 * ratio, 172 * ratio), n$, op
  377.         _PRINTSTRING (299 * ratio, 172 * ratio), "OK", op
  378.         _PRINTSTRING (365 * ratio, 172 * ratio), "X", op
  379.     END IF
  380.     _PUTIMAGE (x1, y1), op, 0, (0, 0)-(400 * ratio, 225 * ratio)
  381.     _DEST 0
  382.     oanx = x1: oany = y1
  383.  
  384. SUB PaintBackground
  385.     x = RND * sw
  386.     y = RND * sh
  387.     c = RND * 14 + 1
  388.     PSET (x, y), c
  389.     RANDOMIZE USING seed
  390.     FOR i = 1 TO 600 * ratio
  391.         x = RND * sw
  392.         y = RND * sh
  393.         c = RND * 14 + 1
  394.         PSET (x, y), c
  395.     NEXT
  396.  
  397. SUB PaintFleet
  398.     count = fltcnt
  399.     i = 0
  400.     WHILE count
  401.         IF fleet(i).o <> 0 THEN
  402.             CIRCLE (fleet(i).x1, fleet(i).y1), 3, fleet(i).o + 8
  403.             count = count - 1
  404.         END IF
  405.         i = i + 1
  406.     WEND
  407.  
  408. SUB PaintStars
  409.  
  410.     'execute standing orders
  411.     FOR i = 0 TO 99
  412.         IF order(i).src <> 100 THEN
  413.             IF star(i).o <> 1 OR star(order(i).dst).o <> 1 THEN
  414.                 order(i).src = 100
  415.             ELSE
  416.                 LINE (star(i).x, star(i).y)-(star(order(i).dst).x, star(order(i).dst).y), 17
  417.                 IF star(i).t >= order(i).ovr THEN
  418.                     SendFleet order(i).src, order(i).dst, order(i).shp
  419.                 END IF
  420.             END IF
  421.         END IF
  422.     NEXT
  423.  
  424.     FOR i = 0 TO 99
  425.         c = star(i).c
  426.         x = star(i).x
  427.         y = star(i).y
  428.         o = star(i).o
  429.         CIRCLE (x, y), (star(i).s + 8) * ratio, c
  430.         COLOR 15
  431.         IF o > 0 THEN
  432.             PAINT (x, y), o + 8, c
  433.         END IF
  434.         _FONT ttf16
  435.         IF tt THEN
  436.             n$ = star(i).n
  437.             n$ = RTRIM$(n$)
  438.             l = _PRINTWIDTH(n$)
  439.             _PRINTSTRING (x + 10, y), STR$(star(i).p), 0
  440.         ELSE
  441.             n$ = STR$(star(i).t)
  442.             l = _PRINTWIDTH(n$)
  443.         END IF
  444.         _PRINTSTRING (x - l / 2, y + 14), n$, 0
  445.     NEXT
  446.  
  447.  
  448. SUB Player
  449.     'Add new order to standing orders
  450.     IF ord.src <> 100 THEN
  451.         i = ord.src
  452.         IF ord.shp = 0 THEN
  453.             order(i).src = 100
  454.         ELSE
  455.             order(i) = ord
  456.         END IF
  457.         src = 100
  458.         ord.src = 100
  459.     END IF
  460.  
  461.     IF pact = 0 AND oact = 0 THEN
  462.  
  463.         'If there is no source star see if we can get one
  464.         IF src = 100 THEN
  465.             IF lclk = 1 OR rclk = 1 THEN
  466.                 lclk = 0
  467.                 rclk = 0
  468.                 src = Identify
  469.             END IF
  470.         END IF
  471.  
  472.         ' If there is a source star then draw a range line that snaps to center of destination, if one
  473.         IF src <> 100 THEN
  474.             c = 12
  475.             FOR i = 0 TO 99
  476.                 IF star(i).o = 1 THEN
  477.                     dist = SQR(ABS(star(i).x - x) ^ 2 + ABS(star(i).y - y) ^ 2)
  478.                     IF dist <= 251 * ratio THEN
  479.                         c = 10
  480.                         EXIT FOR
  481.                     END IF
  482.                 END IF
  483.             NEXT
  484.             i = Identify
  485.             IF i <> 100 THEN
  486.                 x = star(i).x
  487.                 y = star(i).y
  488.             END IF
  489.             rang = SQR(ABS(star(src).x - x) ^ 2 + ABS(star(src).y - y) ^ 2)
  490.             LINE (star(src).x, star(src).y)-(x, y), c
  491.             n$ = STR$(INT(rang))
  492.             _FONT ttf16
  493.             _PRINTSTRING (x + 20, y), n$, 0
  494.         END IF
  495.  
  496.         'If we have a source star see if we clicked on a destination star
  497.         IF src <> 100 THEN
  498.             IF lclk = 1 OR rclk = 1 THEN
  499.                 i = Identify
  500.                 IF i = src THEN
  501.                     lclk = 0
  502.                     src = 100
  503.                     IF rclk = 1 THEN
  504.                         rclk = 0
  505.                         order(i).src = 100
  506.                     END IF
  507.                 ELSE
  508.                     IF i < 100 AND i <> src THEN
  509.                         IF lclk = 1 THEN
  510.                             lclk = 0
  511.                             FOR j = 0 TO 99
  512.                                 IF star(j).o = 1 THEN
  513.                                     dist = SQR(ABS(star(i).x - star(j).x) ^ 2 + ABS(star(i).y - star(j).y) ^ 2)
  514.                                     IF dist <= 250 THEN
  515.                                         dst = i
  516.                                         pact = 1
  517.                                         EXIT FOR
  518.                                     END IF
  519.                                 END IF
  520.                             NEXT
  521.                         ELSE
  522.                             rclk = 0
  523.                             dst = i
  524.                             IF star(i).o = 1 THEN
  525.                                 oact = 1
  526.                             END IF
  527.                         END IF
  528.                     END IF
  529.                 END IF
  530.             END IF
  531.         END IF
  532.     END IF
  533.  
  534.     'If the star standing orders panel is active
  535.     IF oact = 1 THEN
  536.  
  537.         IF star(src).o = 1 THEN
  538.             OrderPanel dst
  539.         END IF
  540.  
  541.         IF rclk = 1 THEN oact = 0
  542.  
  543.         IF box = 0 THEN
  544.             tmp$ = RTRIM$(strng0)
  545.         ELSE
  546.             tmp$ = RTRIM$(strng1)
  547.         END IF
  548.  
  549.         IF lclk = 1 THEN
  550.  
  551.             x1 = oanx: x2 = oanx + 400 * ratio
  552.             y1 = oany: y2 = oany + 540 * ratio
  553.  
  554.             IF y > y1 + 80 * ratio AND y < y1 + 152 * ratio THEN
  555.                 IF x > x1 + 20 * ratio AND x < x1 + 380 * ratio THEN
  556.                     dig = (x - x1 - 32 * ratio) / (37 * ratio)
  557.                     IF box = 0 THEN
  558.                         n$ = RTRIM$(strng0)
  559.                         l = LEN(n$)
  560.                         IF l < 8 THEN strng0 = tmp$ + STR$(dig)
  561.                     ELSE
  562.                         n$ = RTRIM$(strng1)
  563.                         l = LEN(n$)
  564.                         IF l < 8 THEN strng1 = tmp$ + STR$(dig)
  565.                     END IF
  566.                 END IF
  567.             END IF
  568.  
  569.             IF y > y1 + 166 * ratio AND y < y1 + 200 * ratio THEN
  570.  
  571.                 IF box = 0 THEN
  572.  
  573.                     IF x > x1 + 268 * ratio AND x < x1 + 314 * ratio THEN
  574.                         ord.ovr = INT(VAL(strng0))
  575.                         box = 1
  576.                     END IF
  577.  
  578.                     IF x > x1 + 332 * ratio AND x < x1 + 366 * ratio THEN
  579.                         strng0 = ""
  580.                     END IF
  581.  
  582.                 ELSE
  583.  
  584.                     IF x > x1 + 294 * ratio AND x < x1 + 340 * ratio THEN
  585.                         IF INT(VAL(strng1)) > ord.ovr THEN
  586.                             strng1 = ""
  587.                         ELSE
  588.                             box = 0
  589.                             oact = 0
  590.                             ord.src = src
  591.                             ord.dst = dst
  592.                             ord.shp = VAL(strng1)
  593.                             strng0 = ""
  594.                             strng1 = ""
  595.                         END IF
  596.                     END IF
  597.  
  598.                     IF x > x1 + 356 * ratio AND x < x1 + 390 * ratio THEN
  599.                         strng0 = ""
  600.                         strng1 = ""
  601.                         box = 0
  602.                     END IF
  603.  
  604.                 END IF
  605.  
  606.             END IF
  607.         END IF
  608.         x1 = 10000: y1 = 10000
  609.  
  610.     END IF
  611.  
  612.  
  613.     'If the fleet send panel is active
  614.     IF pact = 1 THEN
  615.         IF rclk = 1 THEN pact = 0
  616.         IF star(src).o = 1 THEN
  617.             ShowPanel dst
  618.         END IF
  619.         IF lclk = 1 THEN
  620.             tmp$ = RTRIM$(strng)
  621.  
  622.             x1 = panx: x2 = panx + 400 * ratio
  623.             y1 = pany: y2 = pany + 540 * ratio
  624.  
  625.             IF y > y1 + 256 * ratio AND y < y1 + 328 * ratio THEN
  626.                 IF x > x1 + 20 * ratio AND x < x1 + 380 * ratio THEN
  627.                     dig = (x - x1 - 32 * ratio) / (37 * ratio)
  628.                     strng = tmp$ + STR$(dig)
  629.                 END IF
  630.             END IF
  631.  
  632.             IF y > y1 + 334 * ratio AND y < y1 + 374 * ratio THEN
  633.                 IF x > x1 + 20 * ratio AND x < x1 + 84 * ratio THEN
  634.                     pact = 0
  635.                     value = star(src).t
  636.                     SendFleet src, dst, value
  637.                     src = 100
  638.                 END IF
  639.                 IF x > x1 + 102 * ratio AND x < x1 + 184 * ratio THEN
  640.                     pact = 0
  641.                     value = star(src).t / 2
  642.                     SendFleet src, dst, value
  643.                     src = 100
  644.                 END IF
  645.                 IF x > x1 + 202 * ratio AND x < x1 + 282 * ratio THEN
  646.                     pact = 0
  647.                     value = star(src).t / 3
  648.                     SendFleet src, dst, value
  649.                     src = 100
  650.                 END IF
  651.                 IF x > x1 + 300 * ratio AND x < x1 + 380 * ratio THEN
  652.                     strng = ""
  653.                 END IF
  654.             END IF
  655.  
  656.             IF y > y1 + 460 * ratio AND y < y1 + 530 * ratio THEN
  657.                 IF x > x1 + 32 * ratio AND x < x1 + 182 * ratio THEN
  658.                     value = VAL(strng)
  659.                     strng = ""
  660.                     pact = 0
  661.                     IF value <= star(src).t AND star(src).t <> o THEN
  662.                         SendFleet src, dst, value
  663.                     END IF
  664.                     src = 100
  665.                 END IF
  666.                 IF x > x1 + 212 * ratio AND x < x1 + 362 * ratio THEN
  667.                     pact = 0
  668.                     src = 100
  669.                     strng = ""
  670.                 END IF
  671.             END IF
  672.         END IF
  673.     END IF
  674.  
  675. SUB QuickSave
  676.     FOR i = 0 TO 99: qstar(i) = star(i): qorder(i) = order(i): NEXT
  677.     FOR i = 0 TO 1999: qfleet(i) = fleet(i): NEXT
  678.     FOR i = 0 TO 6: qhome(i) = home(i): NEXT
  679.     qfltcnt = fltcnt
  680.     qLL = LL
  681.  
  682. SUB QuickRestore
  683.     FOR i = 0 TO 99: star(i) = qstar(i): order(i) = qorder(i): NEXT
  684.     FOR i = 0 TO 1999: fleet(i) = qfleet(i): NEXT
  685.     FOR i = 0 TO 6: home(i) = qhome(i): NEXT
  686.     fltcnt = qfltcnt
  687.     LL = qLL
  688.     paused = 1
  689.  
  690. SUB SendFleet (src, dst, ships)
  691.     IF fltcnt < 2000 THEN
  692.         FOR i = 0 TO 1999
  693.             IF fleet(i).o = 0 THEN
  694.                 fleet(i).o = star(src).o
  695.                 fleet(i).d = dst
  696.                 fleet(i).x1 = star(src).x
  697.                 fleet(i).y1 = star(src).y
  698.                 fleet(i).x2 = star(dst).x
  699.                 fleet(i).y2 = star(dst).y
  700.                 fleet(i).t = ships
  701.                 star(src).t = star(src).t - ships
  702.                 fltcnt = fltcnt + 1
  703.                 EXIT FOR
  704.             END IF
  705.         NEXT
  706.         IF LL < 20000 AND fleet(i).o <> 1 THEN LL = LL + 2
  707.     END IF
  708.  
  709. SUB ShowPanel (i)
  710.     x1 = star(i).x - 420 * ratio
  711.     IF star(i).x < sw / 2 THEN x1 = star(i).x + 20 * ratio
  712.     x2 = x1 + 400 * ratio
  713.     y1 = star(i).y
  714.     IF y1 > sh - 560 * ratio THEN y1 = sh - 560 * ratio
  715.     y2 = y1 + 540 * ratio
  716.     _DEST sp
  717.     CLS 0, 8
  718.     COLOR 0, 8
  719.     _FONT ttf72
  720.     n$ = RTRIM$(star(src).n)
  721.     l = _PRINTWIDTH(n$)
  722.     _PRINTSTRING ((400 * ratio - l) / 2, 12 * ratio), n$, sp
  723.     n$ = "to"
  724.     l = _PRINTWIDTH(n$)
  725.     _PRINTSTRING ((400 * ratio - l) / 2, 80 * ratio), n$, sp
  726.     n$ = RTRIM$(star(dst).n)
  727.     l = _PRINTWIDTH(n$)
  728.     _PRINTSTRING ((400 * ratio - l) / 2, 152 * ratio), n$, sp
  729.     LINE (20 * ratio, 239 * ratio)-(380 * ratio, 239 * ratio), 0
  730.     _PRINTSTRING (20 * ratio, 256 * ratio), "0123456789", sp
  731.     n$ = RTRIM$(strng)
  732.     l = _PRINTWIDTH(n$)
  733.     _PRINTSTRING ((400 * ratio - l) / 2, 383 * ratio), n$, sp
  734.     xo = 20 * ratio: xd = 84 * ratio: yo = 334 * ratio: yd = 374 * ratio
  735.     LINE (xo, yo)-(xd, yd), 7, BF
  736.     xo = 102 * ratio: xd = 184 * ratio: yo = 334 * ratio: yd = 374 * ratio
  737.     LINE (xo, yo)-(xd, yd), 7, BF
  738.     xo = 202 * ratio: xd = 282 * ratio: yo = 334 * ratio: yd = 374 * ratio
  739.     LINE (xo, yo)-(xd, yd), 7, BF
  740.     xo = 300 * ratio: xd = 380 * ratio: yo = 334 * ratio: yd = 374 * ratio
  741.     LINE (xo, yo)-(xd, yd), 7, BF
  742.     xo = 32 * ratio: xd = 182 * ratio: yo = 458 * ratio: yd = 530 * ratio
  743.     LINE (xo, yo)-(xd, yd), 7, BF
  744.     xo = 212 * ratio: xd = 362 * ratio: yo = 458 * ratio: yd = 530 * ratio
  745.     LINE (xo, yo)-(xd, yd), 7, BF
  746.     _FONT ttf24
  747.     COLOR 7, 8
  748.     n$ = RTRIM$(STR$(star(src).t))
  749.     l = _PRINTWIDTH(n$)
  750.     _PRINTSTRING (120 * ratio - l, 112 * ratio), n$, sp
  751.     n$ = RTRIM$(STR$(star(dst).t))
  752.     l = _PRINTWIDTH(n$)
  753.     _PRINTSTRING (300 * ratio - l, 112 * ratio), n$, sp
  754.     _FONT ttf16
  755.     COLOR 0, 7
  756.     _PRINTSTRING (38 * ratio, 347 * ratio), "ALL", sp
  757.     _PRINTSTRING (122 * ratio, 347 * ratio), "HALF", sp
  758.     _PRINTSTRING (214 * ratio, 347 * ratio), "THIRD", sp
  759.     _PRINTSTRING (312 * ratio, 347 * ratio), "CLEAR", sp
  760.     _FONT ttf72
  761.     _PRINTSTRING (60 * ratio, 458 * ratio), "Ok", sp
  762.     _PRINTSTRING (216 * ratio, 458 * ratio), "Quit", sp
  763.     _PUTIMAGE (x1, y1), sp, 0, (0, 0)-(400 * ratio, 540 * ratio)
  764.     panx = x1: pany = y1
  765.     _DEST 0
  766.  
  767. SUB Update
  768.     IF paused = 0 THEN
  769.         RANDOMIZE TIMER
  770.         FOR i = 0 TO 99
  771.             r = INT(RND * 60)
  772.             IF r < star(i).p THEN
  773.                 IF star(i).o > 0 THEN
  774.                     star(i).t = star(i).t + 1
  775.                 ELSE
  776.                     IF INT(RND * 10) < 3 THEN
  777.                         star(i).t = star(i).t + 1
  778.                     END IF
  779.                 END IF
  780.             END IF
  781.         NEXT
  782.  
  783.         count = fltcnt
  784.         i = 0
  785.         WHILE count
  786.             IF fleet(i).o <> 0 THEN
  787.                 count = count - 1
  788.                 IF fleet(i).x2 > fleet(i).x1 THEN
  789.                     fleet(i).x1 = fleet(i).x1 + 1
  790.                 END IF
  791.                 IF fleet(i).x2 < fleet(i).x1 THEN
  792.                     fleet(i).x1 = fleet(i).x1 - 1
  793.                 END IF
  794.                 IF fleet(i).y2 > fleet(i).y1 THEN
  795.                     fleet(i).y1 = fleet(i).y1 + 1
  796.                 END IF
  797.                 IF fleet(i).y2 < fleet(i).y1 THEN
  798.                     fleet(i).y1 = fleet(i).y1 - 1
  799.                 END IF
  800.                 IF fleet(i).x1 = fleet(i).x2 AND fleet(i).y1 = fleet(i).y2 THEN
  801.                     dest = fleet(i).d
  802.                     IF star(dest).o = fleet(i).o THEN
  803.                         star(dest).t = star(dest).t + fleet(i).t
  804.                         fleet(i).o = 0
  805.                         fltcnt = fltcnt - 1
  806.                     ELSE
  807.                         o = star(dest).o
  808.                         IF o > 0 AND star(dest).t < fleet(i).t * 0.6 THEN
  809.                             k = 100
  810.                             shortest = 10000
  811.                             FOR j = 0 TO 99
  812.                                 IF star(j).o = o THEN
  813.                                     dist = SQR(ABS(star(j).x - star(dest).x) ^ 2 + ABS(star(j).y - star(dest).y) ^ 2)
  814.                                     IF dist < shortest THEN
  815.                                         shortest = dist
  816.                                         k = j
  817.                                     END IF
  818.                                 END IF
  819.                             NEXT
  820.                             SendFleet dest, k, star(dest).t * 0.90
  821.                             star(dest).t = 0
  822.                             star(dest).o = fleet(i).o
  823.                             star(dest).t = fleet(i).t
  824.                             star(dest).o = fleet(i).o
  825.                             fleet(i).o = 0
  826.                             fltcnt = fltcnt - 1
  827.                         ELSE
  828.                             IF fleet(i).t * 1.1 > star(dest).t THEN
  829.                                 alive = 1
  830.                                 WHILE alive
  831.                                     alive = 0
  832.                                     damorg = fleet(i).t / 10 + 1
  833.                                     damdst = star(dest).t / 8 + 1
  834.                                     fleet(i).t = fleet(i).t - damdst
  835.                                     star(dest).t = star(dest).t - damorg
  836.                                     IF fleet(i).t > 0 AND star(dest).t > 0 THEN
  837.                                         alive = 1
  838.                                     END IF
  839.                                 WEND
  840.                                 IF star(dest).t < 1 THEN
  841.                                     star(dest).t = fleet(i).t
  842.                                     star(dest).o = fleet(i).o
  843.                                 END IF
  844.                                 fleet(i).o = 0
  845.                                 fltcnt = fltcnt - 1
  846.                             ELSE
  847.                                 k = 100
  848.                                 shortest = 10000
  849.                                 FOR j = 0 TO 99
  850.                                     IF star(j).o = fleet(i).o THEN
  851.                                         dist = SQR(ABS(star(j).x - fleet(i).x1) ^ 2 + ABS(star(j).y - fleet(i).y1) ^ 2)
  852.                                         IF dist < shortest THEN
  853.                                             shortest = dist
  854.                                             k = j
  855.                                         END IF
  856.                                     END IF
  857.                                 NEXT
  858.                                 IF k < 100 THEN
  859.                                     fleet(i).x2 = star(k).x
  860.                                     fleet(i).y2 = star(k).y
  861.                                     fleet(i).d = k
  862.                                 ELSE
  863.                                     fleet(i).o = 0
  864.                                     fltcnt = fltcnt - 1
  865.                                 END IF
  866.                             END IF
  867.                         END IF
  868.                     END IF
  869.                 END IF
  870.             END IF
  871.             i = i + 1
  872.         WEND
  873.     END IF
  874.  
  875. SUB NewGame
  876.     DIM k AS INTEGER
  877.     DIM r AS INTEGER
  878.     DIM dx AS INTEGER
  879.     DIM dy AS INTEGER
  880.     DIM n AS STRING * 10
  881.     paused = 1
  882.     FOR i = 0 TO 999
  883.         fleet(i).o = 0
  884.     NEXT
  885.     slct = 0
  886.     fltcnt = 0
  887.     LL = 0
  888.     seed = RND * 1000
  889.     FOR i = 0 TO 99
  890.         k = 1
  891.         WHILE k
  892.             k = 0
  893.             x = RND * (sw - sww) + swn
  894.             y = RND * (sh - shw) + shn
  895.             r = INT(RND * 200)
  896.             n = names(r)
  897.             FOR j = 0 TO i - 1
  898.                 dx = x - star(j).x
  899.                 dy = y - star(j).y
  900.                 IF ABS(dx) < sww AND ABS(dy) < shw THEN
  901.                     k = 1
  902.                 END IF
  903.                 IF n = star(j).n THEN
  904.                     k = 1
  905.                 END IF
  906.             NEXT
  907.         WEND
  908.         star(i).n = n
  909.         star(i).x = x
  910.         star(i).y = y
  911.         star(i).c = RND * 6 + 9
  912.         star(i).s = RND * 5
  913.         star(i).o = 0
  914.         star(i).p = star(i).s + (RND * 5) + 3
  915.         star(i).t = 0
  916.         order(i).src = 100
  917.     NEXT
  918.     FOR i = 1 TO 6
  919.         ok = 0
  920.         WHILE (ok < 1)
  921.             ok = 1
  922.             j = RND * 100
  923.             FOR k = 1 TO i - 1
  924.                 dist = SQR(ABS(star(j).x - star(home(k)).x) ^ 2 + ABS(star(j).y - star(home(k)).y) ^ 2)
  925.                 IF dist < 500 * ratio THEN
  926.                     ok = 0
  927.                     EXIT FOR
  928.                 END IF
  929.             NEXT
  930.             IF ok = 1 THEN
  931.                 ok = -1
  932.                 FOR k = 0 TO 99
  933.                     dist = SQR(ABS(star(j).x - star(k).x) ^ 2 + ABS(star(j).y - star(k).y) ^ 2)
  934.                     IF dist <= 200 THEN ok = ok + 1
  935.                     IF ok = 2 THEN EXIT FOR
  936.                 NEXT
  937.             END IF
  938.         WEND
  939.         home(i) = j
  940.         star(j).o = i
  941.         star(j).p = 10
  942.         star(j).t = 100
  943.         star(j).s = 4
  944.     NEXT
  945.     star(home(1)).n = "Sol"
  946.     star(home(1)).c = 14
  947.     QuickSave
  948.  
  949. ' A lot of star names I made up
  950.  
  951. SUB StarNames
  952.     names(0) = "Acamar"
  953.     names(1) = "Arcab"
  954.     names(2) = "Acrux"
  955.     names(3) = "Adhara"
  956.     names(4) = "Arneb"
  957.     names(5) = "Antares"
  958.     names(6) = "Arcturus"
  959.     names(7) = "Atria"
  960.     names(8) = "Beid"
  961.     names(9) = "Betelgeuse"
  962.     names(10) = "Botein"
  963.     names(11) = "Beemim"
  964.     names(12) = "Bellatrix"
  965.     names(13) = "Bharani"
  966.     names(14) = "Biham"
  967.     names(15) = "Brachium"
  968.     names(16) = "Canopus"
  969.     names(17) = "Capella"
  970.     names(18) = "Castor"
  971.     names(19) = "Chara"
  972.     names(20) = "Cursa"
  973.     names(21) = "Copernicus"
  974.     names(22) = "Chalawan"
  975.     names(23) = "Chertan"
  976.     names(24) = "Dabih"
  977.     names(25) = "Dalim"
  978.     names(26) = "Deneb"
  979.     names(27) = "Denebola"
  980.     names(28) = "Diadem"
  981.     names(29) = "Diphda"
  982.     names(30) = "Dschubba"
  983.     names(31) = "Dziban"
  984.     names(32) = "Edasich"
  985.     names(33) = "Electra"
  986.     names(34) = "Elgafar"
  987.     names(35) = "Elkurud"
  988.     names(36) = "Elnath"
  989.     names(37) = "Eltanin"
  990.     names(38) = "Enif"
  991.     names(39) = "Errai"
  992.     names(40) = "Fafnir"
  993.     names(41) = "Fang"
  994.     names(42) = "Fawaris"
  995.     names(43) = "Felis"
  996.     names(44) = "Fomalhaut"
  997.     names(45) = "Fulu"
  998.     names(46) = "Fumal"
  999.     names(47) = "Furud"
  1000.     names(48) = "Garnet"
  1001.     names(49) = "Giausar"
  1002.     names(50) = "Gienah"
  1003.     names(51) = "Ginan"
  1004.     names(52) = "Gomeisa"
  1005.     names(53) = "Graffias"
  1006.     names(54) = "Grumium"
  1007.     names(55) = "Gudja"
  1008.     names(56) = "Hadar"
  1009.     names(57) = "Haedus"
  1010.     names(58) = "Hamal"
  1011.     names(59) = "Hassaleh"
  1012.     names(60) = "Hatysa"
  1013.     names(61) = "Helvetios"
  1014.     names(62) = "Heze"
  1015.     names(63) = "Homan"
  1016.     names(64) = "Iklil"
  1017.     names(65) = "Imai"
  1018.     names(66) = "Intercrus"
  1019.     names(67) = "Izar"
  1020.     names(68) = "Iccar"
  1021.     names(69) = "Inar"
  1022.     names(70) = "Iaeth"
  1023.     names(71) = "Imaous"
  1024.     names(72) = "Jabbah"
  1025.     names(73) = "Jishui"
  1026.     names(74) = "Jax"
  1027.     names(75) = "Jalae"
  1028.     names(76) = "Jewel"
  1029.     names(77) = "Jumbo"
  1030.     names(78) = "Jerue"
  1031.     names(79) = "Jabear"
  1032.     names(80) = "Kakkab"
  1033.     names(81) = "Kang"
  1034.     names(82) = "Kekouan"
  1035.     names(83) = "Keid"
  1036.     names(84) = "Kitalpha"
  1037.     names(85) = "Kochab"
  1038.     names(86) = "Kolob"
  1039.     names(87) = "Kobol"
  1040.     names(88) = "Larawag"
  1041.     names(89) = "Lesath"
  1042.     names(90) = "Libertas"
  1043.     names(91) = "Lich"
  1044.     names(92) = "Lilly"
  1045.     names(93) = "Laddel"
  1046.     names(94) = "Luminous"
  1047.     names(95) = "Lasacious"
  1048.     names(96) = "Mizar"
  1049.     names(97) = "Markab"
  1050.     names(98) = "Matar"
  1051.     names(99) = "Mintaka"
  1052.     names(100) = "Meleph"
  1053.     names(101) = "Menkar"
  1054.     names(102) = "Merga"
  1055.     names(103) = "Merope"
  1056.     names(104) = "Nahn"
  1057.     names(105) = "Naos"
  1058.     names(106) = "Nashira"
  1059.     names(107) = "Navi"
  1060.     names(108) = "Nekkar"
  1061.     names(109) = "Nembus"
  1062.     names(110) = "Nihal"
  1063.     names(111) = "Nunki"
  1064.     names(112) = "Ogma"
  1065.     names(113) = "Okab"
  1066.     names(114) = "Ohmy"
  1067.     names(115) = "Oragami"
  1068.     names(116) = "Origen"
  1069.     names(117) = "Omanii"
  1070.     names(118) = "Obytewa"
  1071.     names(119) = "Oglok"
  1072.     names(120) = "Phact"
  1073.     names(121) = "Pherkad"
  1074.     names(122) = "Pleione"
  1075.     names(122) = "Polaris"
  1076.     names(123) = "Pollux"
  1077.     names(124) = "Procyon"
  1078.     names(125) = "Proxima"
  1079.     names(126) = "Polis"
  1080.     names(127) = "Quaint"
  1081.     names(128) = "Quazzat"
  1082.     names(129) = "Quetzal"
  1083.     names(130) = "Qussol"
  1084.     names(131) = "Quella"
  1085.     names(132) = "Quyaeo"
  1086.     names(133) = "Ququdas"
  1087.     names(134) = "Quekak"
  1088.     names(135) = "Rasalas"
  1089.     names(136) = "Regor"
  1090.     names(137) = "Regulus"
  1091.     names(138) = "Rigel"
  1092.     names(139) = "Revati"
  1093.     names(140) = "Rotenev"
  1094.     names(141) = "Rukbat"
  1095.     names(142) = "Rastaban"
  1096.     names(143) = "Sabik"
  1097.     names(144) = "Sadr"
  1098.     names(145) = "Saiph"
  1099.     names(146) = "Sargas"
  1100.     names(147) = "Sarin"
  1101.     names(148) = "Syrma"
  1102.     names(149) = "Spica"
  1103.     names(150) = "Sirius"
  1104.     names(151) = "Tarazed"
  1105.     names(152) = "Taygeta"
  1106.     names(153) = "Tejat"
  1107.     names(154) = "Thabit"
  1108.     names(155) = "Thuban"
  1109.     names(156) = "Tiaki"
  1110.     names(157) = "Toliman"
  1111.     names(158) = "Torcular"
  1112.     names(157) = "Umala"
  1113.     names(158) = "Ulatte"
  1114.     names(159) = "Ubbessa"
  1115.     names(160) = "Unoless"
  1116.     names(161) = "Umaddem"
  1117.     names(162) = "Ummbra"
  1118.     names(162) = "Uniqu"
  1119.     names(163) = "Uzzaal"
  1120.     names(164) = "Vega"
  1121.     names(165) = "Veritate"
  1122.     names(166) = "Vindetrix"
  1123.     names(167) = "Vedas"
  1124.     names(168) = "Vergg"
  1125.     names(169) = "Vacant"
  1126.     names(170) = "Vucae"
  1127.     names(171) = "Vicar"
  1128.     names(172) = "Wasat"
  1129.     names(173) = "Wazn"
  1130.     names(174) = "Wezen"
  1131.     names(175) = "Waiten"
  1132.     names(176) = "Wachar"
  1133.     names(177) = "Wheelz"
  1134.     names(178) = "Whatsp"
  1135.     names(179) = "Wassand"
  1136.     names(180) = "Xenno"
  1137.     names(181) = "Xyphod"
  1138.     names(182) = "Xu"
  1139.     names(183) = "Xaal"
  1140.     names(184) = "Xyross"
  1141.     names(185) = "Xiggot"
  1142.     names(186) = "Xirrks"
  1143.     names(187) = "Yed"
  1144.     names(188) = "Yildun"
  1145.     names(189) = "Yundun"
  1146.     names(190) = "Yavyo"
  1147.     names(191) = "Yotrac"
  1148.     names(192) = "Yxzoqu"
  1149.     names(193) = "Ynnot"
  1150.     names(194) = "Zaniah"
  1151.     names(195) = "Zaurak"
  1152.     names(196) = "Zhang"
  1153.     names(197) = "Zibal"
  1154.     names(198) = "Zosma"
  1155.     names(199) = "Zuben"
  1156.  
  1157.