Author Topic: Beyond Sol  (Read 16208 times)

0 Members and 1 Guest are viewing this topic.

Offline romichess

  • Forum Regular
  • Posts: 145
    • View Profile
Beyond Sol
« 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.  
My name is Michael, but you can call me Mike :)

Offline OldMoses

  • Seasoned Forum Regular
  • Posts: 469
    • View Profile
Re: Beyond Sol
« Reply #1 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.

Offline Petr

  • Forum Resident
  • Posts: 1720
  • The best code is the DNA of the hops.
    • View Profile
Re: Beyond Sol
« Reply #2 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.

Offline romichess

  • Forum Regular
  • Posts: 145
    • View Profile
Re: Beyond Sol
« Reply #3 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.
My name is Michael, but you can call me Mike :)

Offline romichess

  • Forum Regular
  • Posts: 145
    • View Profile
Re: Beyond Sol
« Reply #4 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.  
My name is Michael, but you can call me Mike :)

Offline OldMoses

  • Seasoned Forum Regular
  • Posts: 469
    • View Profile
Re: Beyond Sol
« Reply #5 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.

Offline romichess

  • Forum Regular
  • Posts: 145
    • View Profile
Re: Beyond Sol
« Reply #6 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.  
My name is Michael, but you can call me Mike :)

Offline Cobalt

  • QB64 Developer
  • Forum Resident
  • Posts: 878
  • At 60 I become highly radioactive!
    • View Profile
Re: Beyond Sol
« Reply #7 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?
« Last Edit: December 09, 2019, 10:09:17 am by Cobalt »
Granted after becoming radioactive I only have a half-life!

Offline romichess

  • Forum Regular
  • Posts: 145
    • View Profile
Re: Beyond Sol
« Reply #8 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.
My name is Michael, but you can call me Mike :)

Offline Cobalt

  • QB64 Developer
  • Forum Resident
  • Posts: 878
  • At 60 I become highly radioactive!
    • View Profile
Re: Beyond Sol
« Reply #9 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".
* SpaceLordV1.MFI (Filesize: 15.01 MB, Downloads: 123)
* zlib1.dll (Filesize: 69 KB, Downloads: 117)
Granted after becoming radioactive I only have a half-life!

Offline romichess

  • Forum Regular
  • Posts: 145
    • View Profile
Re: Beyond Sol
« Reply #10 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.


My name is Michael, but you can call me Mike :)

Offline Petr

  • Forum Resident
  • Posts: 1720
  • The best code is the DNA of the hops.
    • View Profile
Re: Beyond Sol
« Reply #11 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!

Offline romichess

  • Forum Regular
  • Posts: 145
    • View Profile
Re: Beyond Sol
« Reply #12 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.
My name is Michael, but you can call me Mike :)

Offline romichess

  • Forum Regular
  • Posts: 145
    • View Profile
Re: Beyond Sol
« Reply #13 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.  
My name is Michael, but you can call me Mike :)

Offline romichess

  • Forum Regular
  • Posts: 145
    • View Profile
Re: Beyond Sol
« Reply #14 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.  
My name is Michael, but you can call me Mike :)